html,
body {
  color: #333;
  margin: 0;
  height: 100%;
  font-family: 'Myriad Set Pro', 'Helvetica Neue', Helvetica, Arial, Verdana,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

a,
label,
button,
input,
select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
}

body {
  background: #fff;
  color: #666;
}

html,
body,
div,
dl,
dt,
dd,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
button,
fieldset,
form,
input,
legend,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #08acee;
}

button {
  outline: 0;
}

img {
  border: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  outline: none;
}

li {
  list-style: none;
}

a {
  color: #666;
}

/* 必要布局样式css */
.aui-flexView {
  position: relative;
  max-width: 650px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.aui-scrollView {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.aui-navBar {
  height: 21px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 102;
  background: #f6dc00;
}

.aui-navBar-item {
  height: 44px;
  min-width: 25%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  padding: 0 0.9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  color: #808080;
  position: relative;
  margin-top: 30px;
}

.aui-navBar-item:first-child {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-right: -25%;
  font-size: 0.9rem;
  font-weight: bold;
}

.aui-navBar-item:last-child {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.aui-center {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 21px;
  width: 50%;
  margin-left: 25%;
  margin-top: 30px;
}

.aui-center-title {
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  font-size: 1.25rem;
  color: black;
  margin-right: 1rem;
  margin-top: -0.75rem;
}

.m-slider {
  overflow-x: hidden;
  width: 92%;
  margin: 1rem auto;
  border-radius: 5px;
  position: relative;
  filter: progid:DXImageTransform.Microsoft.Shadow(color=#ffedc6,direction=120,strength=4);
  -moz-box-shadow: 2px 2px 10px #ffedc6;
  -webkit-box-shadow: 2px 2px 10px #ffedc6;
  box-shadow: 2px 2px 10px #ffedc6;
}
.slider-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  position: relative;
  z-index: 1;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.slider-item {
  width: 100%;
  height: 100%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #f6f6f6;
}

.slider-item img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.slider-pagination {
  text-align: right;
  position: absolute;
  width: 100%;
  z-index: 2;
  right: 0;
  bottom: 10px;
  pointer-events: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slider-pagination > .slider-pagination-item {
  margin: 0 0.25rem;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}

.slider-pagination > .slider-pagination-item.slider-pagination-item-active {
  background-color: #fff;
  border-radius: 100%;
}
.aui-fresh-box {
  width: 100%;
  height: 9rem;
  background-color: #f6dc00;
  position: relative;
  margin-bottom: 3rem;
}
.aui-fresh-box-detail {
  width: 100%;
  height: 3rem;
  background-color: #f6dc00;
  position: relative;
}

.aui-search-box {
  height: 11.6rem;
  background: url('../images/banner.png') top center no-repeat;
  background-size: cover;
}

.aui-list-theme-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  padding: 1rem 0 1rem 1rem;
  overflow: hidden;
  position: relative;
}

.aui-list-theme-img {
  width: 85%;
  margin: 0.625rem 0.625rem 0.625rem 0.625rem;
}

.aui-list-theme-img img{
  max-width: 162px;
  max-height: 164px;
}

.aui-list-item {
  width: 30%;
  float: left;
  margin: 1% 2% 1% 0;
  background: #fff;
  position: relative;
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
}
.list-item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.aui-list-item-end {
  float: left;
  background: #e1e1e1;
  position: relative;
  box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
}

.aui-list-item-end .sold {
  width: 4.125rem;
  height: 3.625rem;
  position: absolute;
  top: 2.01rem;
  left: 1.55rem;
}

.aui-list-theme-message-end {
  background: #e1e1e1;
  padding: 0.3rem 0;
  border-radius: 10px;
}

.aui-list-theme-title {
  color: #333;
  font-size: 0.75rem;
  margin: 0.2rem;
  margin-bottom: 0.425rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
  font-weight: normal;
  text-overflow: ellipsis;
}

.aui-list-theme-message p {
  color: #fd883b;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.325rem;
}

.aui-list-theme-message-end p {
  color: #fd883b;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.aui-goods-item {
  border-radius: 5px;
  width: 100%;
  margin: -0.625rem auto;
}

.aui-text {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  padding: 2rem 0;
}

/*
	商品区域样式	
*/
.product {
  width: 94%;
  background: #ffffff;
  border-radius: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
.product .product-box {
  width: 100%;
  height: 5.8rem;
  position: relative;
  margin-top: 0.87rem;
}
.product-box .product-ckb {
  width: 3rem;
  height: 100%;
  display: inline-block;
  float: left;
  text-align: center;
  line-height: 5.9rem;
  z-index: 99;
  position: absolute;
}
.product-ckb em {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 1px solid #b8b4b4;
  display: inline-block;
  cursor: pointer;
}
.product-ckb .product-xz {
  background: url(../img/gouico.png) no-repeat 0 0;
  background-size: 1.1rem;
  border: 0;
  display: inline-block;
}
.product-sx {
  float: left;
  height: 5.8rem;
  padding: 0.6rem 0;
  padding-left: 3rem;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
}
.product-sx .product-img {
  border-radius: 4px 4px 4px 4px;
  width: 4.5rem;
  height: 4.5rem;
  display: inline-block;
  float: left;
  margin-left: -2.375rem;
  background-color: #f2f2f2;
}
.product-sx .product-name {
  font-size: 0.8rem;
  color: #000;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding-left: 10px;
}
.product-sx .product-price {
  font-size: 1rem;
  color: #ee8e4d;
  margin: 18px 0 0 14px;
  display: inline-block;
  float: left;
}

/*
	设备区域样式
*/
.device {
  width: 100%;
  background: #ffffff;
  margin-top: 0.625rem;
}
.device .device-box-one {
  width: 100%;
  height: 3.8rem;
  list-height: 3.8rem;
  position: relative;
}
.device .device-box-one .device-box-one-card {
  width: 40%;
  float: left;
  margin-left: 0.625rem;
  margin-top: 1.323rem;
}
.device .device-box-one .device-box-one-name {
  width: 34%;
  float: right;
  margin-left: 0.625rem;
  margin-top: 1.423rem;
}

.device .device-box-two {
  width: 100%;
  height: 3.8rem;
  list-height: 3.8rem;
  position: relative;
}

.device .device-box-two .device-box-two-card {
  width: 38%;
  float: left;
  margin-left: 0.625rem;
  margin-top: 1.223rem;
}
.device .device-box-two .device-box-two-name {
  width: 34%;
  float: right;
  margin-left: 0.625rem;
  margin-top: 1.223rem;
}

/*
   支付方式区域样式
*/
.pay {
  width: 100%;
  background: #ffffff;
  margin-top: 0.625rem;
}
.pay .pay-box-one {
  width: 100%;
  height: 3.8rem;
  position: relative;
}
.pay .pay-box-one .pay-box-one-img {
  width: 2.125rem;
  height: 2.125rem;
  float: left;
  margin-left: 0.3125rem;
  margin-top: 0.923rem;
}
.pay .pay-box-one .pay-box-one-name {
  width: 40%;
  float: left;
  margin-left: 0.625rem;
  margin-top: 1.25rem;
}

.pay .pay-box-one .pay-box-one-radio {
  width: 40%;
  float: right;
  margin-left: 0.625rem;
  margin-top: 1.375rem;
}
.pay .pay-box-one .pay-box-one-radio img {
  width: 1.125rem;
  height: 1.125rem;
  float: right;
  margin-right: 1.3125rem;
}

.pay .pay-box-two {
  width: 100%;
  height: 3.8rem;
  position: relative;
}

.pay .pay-box-two .pay-box-two-img {
  width: 2.125rem;
  height: 2.125rem;
  float: left;
  margin-left: 0.3125rem;
  margin-top: 0.625rem;
}

.pay .pay-box-two .pay-box-two-name {
  width: 40%;
  float: left;
  margin-left: 0.625rem;
  margin-top: 0.875rem;
}
.pay .pay-box-two .pay-box-two-radio {
  width: 40%;
  float: right;
  margin-left: 0.625rem;
  margin-top: 0.875rem;
}
.pay .pay-box-two .pay-box-two-radio span {
  margin-left: 2.25rem;
}
.pay .pay-box-two .pay-box-two-radio img {
  width: 1.625rem;
  height: 1.625rem;
  float: right;
  margin-right: 1.3125rem;
}
.pay .pay-box-three {
  width: 100%;
  height: 3.8rem;
  position: relative;
}
.pay .pay-box-three .pay-box-three-img {
  width: 2.125rem;
  height: 2.125rem;
  float: left;
  margin-left: 0.3125rem;
  margin-top: 0.625rem;
}
.pay .pay-box-three .pay-box-three-name {
  width: 40%;
  float: left;
  margin-left: 0.625rem;
  margin-top: 0.875rem;
}
.pay .pay-box-three .pay-box-three-radio {
  width: 40%;
  float: right;
  margin-left: 0.625rem;
  margin-top: 0.875rem;
}
.pay .pay-box-three .pay-box-three-radio img {
  width: 1.625rem;
  height: 1.625rem;
  float: right;
  margin-right: 1.3125rem;
}

/*
	去支付区域
*/
.pay-wait {
  position: fixed;
  width: 100%;
  background: #ffffff;
  border-radius: 0.625rem;
  left: 0rem;
  bottom: 0rem;
}

.pay-wait .pay-price {
  width: 40%;
  float: left;
  margin-left: 0.625rem;
  margin-top: 1.2rem;
  font-size: 18px;
}

.pay-wait .pay-price span {
  color: #ee8e4d;
}
.pay-wait .pay-go {
  width: 40%;
  float: right;
  background: #ffc837;
  height: 3.9rem;
  margin-right: -0.575rem;
  text-align: center;
}

.product-sx .product-img {
  border-radius: 4px 4px 4px 4px;
  width: 4.5rem;
  height: 4.5rem;
  display: inline-block;
  float: left;
  margin-left: -2.375rem;
  background-color: #f2f2f2;
}
.product-sx .product-name {
  font-size: 0.8rem;
  color: #000;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding-left: 10px;
}
.product-sx .product-price {
  font-size: 1rem;
  color: #ee8e4d;
  margin: 18px 0 0 14px;
  display: inline-block;
  float: left;
}

.mask {
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
}
.mask .payInfo {
  position: relative;
  border-radius: 8px;
  width: 65%;
  top: 20%;
  left: 50%;
  transform: translate(-50%);
  background: #fff;
  padding: 20px;
}
.mask .payInfo .cls {
  position: absolute;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: #ccc;
  color: #fff;
}
.mask .payInfo .info {
  display: flex;
  text-align: right;
  border-top: solid 2px #f4f4f4;
  padding-top: 10px;
  margin-top: 15px;
}
.mask .payInfo .info img {
  width: 70px;
  height: 70px;
}
.mask .payInfo .info .tit {
  line-height: 40px;
  flex: 1;
}
.selectedpay {
  margin-top: 20px;
  /* height: 382.5px; */
}
.selectedpay .title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #000;
  position: relative;
  top: 20px;
}
.selectedpay .selectedpays {
  height: 100%;
  padding: 40px 0;
  display: flex;
  align-items: center;
  align-content: flex-end;
  justify-content: space-evenly;
}
.selectedpay .selectedpays .Payment {
  cursor: pointer;
  display: flex;
  height: 100px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
