html {
  height: 100%;
}

body {
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pointer {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit !important;
}

a:hover {
  text-decoration: none !important;
}

p {
  margin: 0;
}

li {
  list-style: none;
}

input {
  outline: none;
  font-size: .875rem !important;
}

textarea {
  outline: none;
}

select {
  outline: none;
}

button {
  outline: none !important;
  border: none;
}

button:foucs {
  outline: 0;
}

input::input-placeholder {
  color: #AAAAAA;
}

input::-webkit-input-placeholder {
  color: #AAAAAA;
}

input::-moz-placeholder {
  color: #AAAAAA;
}

input::-moz-placeholder {
  color: #AAAAAA;
}

input::-ms-input-placeholder {
  color: #AAAAAA;
}

/* 登录注册input */
.input_item {
  display: flex;
  align-items: center;
  height: 2.75rem;
  background: #F8F8F8;
  border-radius: 1.4375rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.input_item input {
  flex: 1;
  border: none;
  background-color: #F8F8F8;
}

.input_item img {
  width: 1.375rem;
  height: 1.375rem;
}

.input_item .obtain_code {
  border-left: .0625rem solid #ECECEC;
  padding-left: .5625rem;
  font-size: .875rem;
  font-weight: 400;
  color: #419DFF;
}


/* 获取图片验证码 */
.image_verification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.image_verification input {
  width: 57.6%;
  flex: 1;
  border: none;
  margin-right: .625rem;
  height: 2.75rem;
  background: #F8F8F8;
  border-radius: 1.4375rem;
  padding: 0 1rem;
}

.image_verification img {
  width: 7.5rem;
  height: 2.75rem;
}


.bottom_10 {
  margin-bottom: .625rem;
}

.coco-msg-icon {
  display: none !important;
}

.coco-msg-wait {
  opacity: 0 !important;
  /* display: none !important; */
}

.navigation {
  width: 100%;
  height: 3.125rem;
}

.navigation footer {
  width: 100%;
  height: 3.125rem;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: white;
  border-top: 1px solid #F8F8F8;
  z-index: 99;
}

.navigation footer .nav-item {
  text-align: center;
}

::-webkit-scrollbar {
  display: none;
}

.navigation footer .nav-item p {
  font-size: .625rem;
  font-weight: 400;
  color: #777777;
}

.navigation footer .nav-item .selected_img {
  width: 1.5rem;
}

.navigation footer .nav-item .notSelected_img {
  width: 1.5rem;
}

.return_title {
  width: 100%;
  height: 2.75rem;
}

.return_title .ret_content {
  height: 2.75rem;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(217, 217, 217, 0.2);
  margin-bottom: .625rem;
  z-index: 99;
}

.return_title .ret_content .fhui_img {
  position: absolute;
  left: 1rem;
  width: 1.125rem;
  height: 1.125rem;
}

.return_title .ret_content a {
  position: absolute;
  right: 1rem;
  width: 1.625rem;
  height: 1.625rem;
}

.return_title .ret_content .kfu_img {
  /* position: absolute;
  right: 1rem;
  width: 1.625rem;
  height: 1.625rem; */
  width: 100%;
  height: 100%;
}

.return_title .ret_content p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333333;
}

.return_title .ret_content .ind_search {
  display: flex;
  align-items: center;
}

.ovfHiden {
  overflow: hidden;
  height: 100%;
}


.agreement {
  display: flex;
  align-items: center;
  margin-bottom: 2.125rem;
}

.agr_radio:checked {
  background: #1673ff
}

/* //设置复选框样式 */
.agr_radio {
  width: 1.125rem;
  height: 1.125rem;
  background-color: #ffffff;
  border: solid .0625rem #dddddd;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  font-size: 12.8px;
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  vertical-align: top;
  cursor: default;
  -webkit-appearance: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: background-color ease 0.1s;
  transition: background-color ease 0.1s;
}

/* //设置伪类，即显现的对勾样式 */
.agr_radio:checked::after {
  content: '';
  top: .1875rem;
  left: .1875rem;
  position: absolute;
  background: transparent;
  border: #fff solid .125rem;
  border-top: none;
  border-right: none;
  height: .375rem;
  width: .625rem;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.agreement p {
  margin-left: .3125rem;
  font-size: .75rem;
  font-weight: 400;
  color: #AAAAAA;
}



/* ----- lodding 数据加载 DIV 样式   ----- */
.lodding-mask {
  /* 蒙版 */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  z-index: 99999;
  background: rgba(51, 51, 51, 0.5);
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

/* ----- 带按钮的弹窗样式   ----- */
.popup-dialog {
  position: fixed;
  width: 280px;
  left: 50%;
  top: 35%;
  margin-left: -140px;
  background: #fff;
  z-index: 999999;
  border: none;
  border-radius: 12px;
  border-color: #ddd;
  text-align: center;
  /* box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.6); */
  font-family: "Microsoft YaHei";
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.popup-dialog p.margin-top-15 {
  margin-top: 15px;
}

.popup-dialog .message {
  margin: 5px;
  padding: 10px 5px;
  font-size: 14px;
  color: #111;
}

.popup-dialog h3 {
  display: block;
  font-size: 1.17em;
  font-weight: bold;
  color: #111;
  margin: 0;
  margin-top: 15px;
  padding: 0px 10px;
}

.popup-dialog input {
  width: 85%;
  height: 30px;
  border: #B5B5B5 solid 1px;
  border-radius: 5px;
  padding-left: 5px;
  -webkit-appearance: none;
  outline: none;
  margin-top: 5px;
  border: none;
}

.popup-dialog .ui-grid-a {
  line-height: 45px;
  color: #228BFE;
  font-size: 16px;
  font-weight: bold;
  border-top: #B5B5B5 solid 1px;
}

.ui-grid-a.group {
  margin-top: 15px;
}

.popup-dialog .ui-grid-a.hide {
  display: none;
}

.popup-dialog .ui-block-a,
.popup-dialog .ui-block-b {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  width: 49.8%;
  float: left;
}

.popup-dialog .ui-block-a {
  border-right: #B5B5B5 solid 1px;
}


/* 订单item */
.search_back {
  background-color: #F8F8F8;
}

.goods_back {
  background-color: white;
}

.order_item {
  padding: 0 .75rem;
  box-shadow: 0rem .125rem .25rem 0rem rgba(0, 0, 0, 0.04);
  border-radius: .5rem;
  margin-bottom: .625rem;
}

.order_item .item_code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F8F8F8;
  padding: .75rem 0;
}

.order_item .item_code p:nth-of-type(1) {
  font-size: .75rem;
  font-weight: 400;
  color: #777777;
  display: flex;
  align-items: center;

}

.order_item .item_code p:nth-of-type(1) img {
  width: .875rem;
  height: .875rem;
}

.order_item .item_code p:nth-of-type(2) {
  font-size: 12px;
  font-weight: 400;
}


.order_item .item_introduce {
  display: flex;
  padding: .6875rem 0 .875rem;
}

.order_item .item_introduce .shop_img {
  width: 3.75rem;
  height: 3.75rem;
  margin-right: .625rem;
}

.order_item .item_introduce .int_text {
  flex: 1;
}

.order_item .item_introduce .int_text .int_title {
  font-size: .875rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: .375rem;
}

.order_item .item_introduce .int_text .int_plist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: .25rem;
  font-size: .75rem;
  font-weight: 400;
  color: #777777;
}

.order_item .item_payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .75rem;
}

.order_item .item_payment .pay_price span:nth-of-type(1) {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
}

.order_item .item_payment .pay_price span:nth-of-type(2) {
  font-size: .875rem;
  font-weight: 500;
  color: #F03500;
}

.order_item .item_payment .pay_button {
  display: flex;
  align-items: center;
}

.order_item .item_payment .pay_button .left_button {
  font-size: .875rem;
  font-weight: 400;
  color: #333333;
  border-radius: 1rem;
  border: .0625rem solid #EBEBEB;
  padding: .25rem .75rem;
}

.order_item .item_payment .pay_button .right_button {
  font-size: .875rem;
  font-weight: 400;
  color: #419DFF;
  border-radius: 1rem;
  border: .0625rem solid #419DFF;
  padding: .25rem .75rem;
  margin-left: .625rem;
}


/* 支付六位密码弹窗 */
.pop-box {
  display: none;
}

.pop-box .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.pwd-wrapper {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 17.5rem;
  height: 13rem;
  margin-left: -8.75rem;
  margin-top: -5rem;
  border-radius: .4375rem;
}

.pwd-top {
  padding: 2.5rem 0 1.875rem;
}

.pwd-top .title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
}

.pwd-top i {
  font-size: 1.25rem;
  position: absolute;
  top: .75rem;
  right: .875rem;
}

.pwd-box {
  width: 14rem;
  position: relative;
  border: .0625rem solid #E5E5E5;
  overflow: hidden;
  margin: 0 auto;
}

.pwd-box input[type="number"] {
  width: 100%;
  height: 2.2813rem;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  font-size: 1.125rem;
  opacity: 0;
  z-index: 1;
  letter-spacing: 1.875rem;
  padding: 0;
}

.fake-box input {
  padding: 0;
  width: 2.2813rem;
  height: 2.2813rem;
  border: 0;
  border-right: .0625rem solid #E5E5E5;
  text-align: center;
  font-size: 1.875rem;
  background-color: transparent;
  float: left;
}

.fake-box input:nth-last-child(1) {
  border: 0;
}


/* 弹窗遮罩层 */
.popupback {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  background: rgba(0, 0, 0, .5);
}


/* 缺省页 */
.default_page {
  text-align: center;
  padding-top: 3.125rem;
}

.default_page img {
  width: 12.5rem;
  height: 12.5rem;
  margin-bottom: .375rem;
}

.default_page p {
  font-size: .875rem;
  font-weight: 400;
  color: #777777;
}