/**
 * Entry of basic styles
 */
html {
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
}
a {
  text-decoration: none;
}
input,
button,
textarea {
  color: inherit;
  font: inherit;
}
a:focus,
input:focus,
button:focus,
textarea:focus,
[class*='van-']:focus {
  outline: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.van-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.van-multi-ellipsis--l2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}
.van-multi-ellipsis--l3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}
.van-clearfix::after {
  display: table;
  clear: both;
  content: '';
}
[class*='van-hairline']::after {
  position: absolute;
  box-sizing: border-box;
  content: ' ';
  pointer-events: none;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  border: 0 solid #ebedf0;
  transform: scale(0.5);
}
.van-hairline,
.van-hairline--top,
.van-hairline--left,
.van-hairline--right,
.van-hairline--bottom,
.van-hairline--surround,
.van-hairline--top-bottom {
  position: relative;
}
.van-hairline--top::after {
  border-top-width: 1px;
}
.van-hairline--left::after {
  border-left-width: 1px;
}
.van-hairline--right::after {
  border-right-width: 1px;
}
.van-hairline--bottom::after {
  border-bottom-width: 1px;
}
.van-hairline--top-bottom::after,
.van-hairline-unset--top-bottom::after {
  border-width: 1px 0;
}
.van-hairline--surround::after {
  border-width: 1px;
}
@keyframes van-slide-up-enter {
  from {
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes van-slide-up-leave {
  to {
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes van-slide-down-enter {
  from {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes van-slide-down-leave {
  to {
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes van-slide-left-enter {
  from {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes van-slide-left-leave {
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes van-slide-right-enter {
  from {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes van-slide-right-leave {
  to {
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes van-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes van-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes van-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.van-fade-enter-active {
  animation: 0.3s van-fade-in both ease-out;
}
.van-fade-leave-active {
  animation: 0.3s van-fade-out both ease-in;
}
.van-slide-up-enter-active {
  animation: van-slide-up-enter 0.3s both ease-out;
}
.van-slide-up-leave-active {
  animation: van-slide-up-leave 0.3s both ease-in;
}
.van-slide-down-enter-active {
  animation: van-slide-down-enter 0.3s both ease-out;
}
.van-slide-down-leave-active {
  animation: van-slide-down-leave 0.3s both ease-in;
}
.van-slide-left-enter-active {
  animation: van-slide-left-enter 0.3s both ease-out;
}
.van-slide-left-leave-active {
  animation: van-slide-left-leave 0.3s both ease-in;
}
.van-slide-right-enter-active {
  animation: van-slide-right-enter 0.3s both ease-out;
}
.van-slide-right-leave-active {
  animation: van-slide-right-leave 0.3s both ease-in;
}
.van-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.van-info {
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  min-width: 0.427rem;
  padding: 0 0.08rem;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.32rem;
  font-family: -apple-system-font, Helvetica Neue, Arial, sans-serif;
  line-height: 1.2;
  text-align: center;
  background-color: #ee0a24;
  border: 1px solid #FFFFFF;
  border-radius: 0.427rem;
  transform: translate(50%, -50%);
  transform-origin: 100%;
}
.van-info--dot {
  width: 0.213rem;
  min-width: 0;
  height: 0.213rem;
  background-color: #ee0a24;
  border-radius: 100%;
}
.van-sidebar-item {
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 0.533rem 0.32rem;
  overflow: hidden;
  color: #323233;
  font-size: 0.373rem;
  line-height: 0.533rem;
  background-color: #f7f8fa;
  cursor: pointer;
  user-select: none;
}
.van-sidebar-item:active {
  background-color: #f2f3f5;
}
.van-sidebar-item__text {
  position: relative;
  display: inline-block;
  word-break: break-all;
}
.van-sidebar-item:not(:last-child)::after {
  border-bottom-width: 1px;
}
.van-sidebar-item--select {
  color: #323233;
  font-weight: 500;
}
.van-sidebar-item--select,
.van-sidebar-item--select:active {
  background-color: #FFFFFF;
}
.van-sidebar-item--select::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.107rem;
  height: 0.427rem;
  background-color: #ee0a24;
  transform: translateY(-50%);
  content: '';
}
.van-sidebar-item--disabled {
  color: #c8c9cc;
  cursor: not-allowed;
}
.van-sidebar-item--disabled:active {
  background-color: #f7f8fa;
}
.van-icon {
  position: relative;
  display: inline-block;
  font: normal normal normal 0.373rem/1 'vant-icon';
  font: normal normal normal 0.373rem/1 var(--van-icon-font-family, 'vant-icon');
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.van-icon:before {
  display: inline-block;
}
.van-icon-contact:before {
  content: '\e753';
}
.van-icon-notes:before {
  content: '\e63c';
}
.van-icon-records:before {
  content: '\e63d';
}
.van-icon-cash-back-record:before {
  content: '\e63e';
}
.van-icon-newspaper:before {
  content: '\e63f';
}
.van-icon-discount:before {
  content: '\e640';
}
.van-icon-completed:before {
  content: '\e641';
}
.van-icon-user:before {
  content: '\e642';
}
.van-icon-description:before {
  content: '\e643';
}
.van-icon-list-switch:before {
  content: '\e6ad';
}
.van-icon-list-switching:before {
  content: '\e65a';
}
.van-icon-link-o:before {
  content: '\e751';
}
.van-icon-miniprogram-o:before {
  content: '\e752';
}
.van-icon-qq:before {
  content: '\e74e';
}
.van-icon-wechat-moments:before {
  content: '\e74f';
}
.van-icon-weibo:before {
  content: '\e750';
}
.van-icon-cash-o:before {
  content: '\e74d';
}
.van-icon-guide-o:before {
  content: '\e74c';
}
.van-icon-invitation:before {
  content: '\e6d6';
}
.van-icon-shield-o:before {
  content: '\e74b';
}
.van-icon-exchange:before {
  content: '\e6af';
}
.van-icon-eye:before {
  content: '\e6b0';
}
.van-icon-enlarge:before {
  content: '\e6b1';
}
.van-icon-expand-o:before {
  content: '\e6b2';
}
.van-icon-eye-o:before {
  content: '\e6b3';
}
.van-icon-expand:before {
  content: '\e6b4';
}
.van-icon-filter-o:before {
  content: '\e6b5';
}
.van-icon-fire:before {
  content: '\e6b6';
}
.van-icon-fail:before {
  content: '\e6b7';
}
.van-icon-failure:before {
  content: '\e6b8';
}
.van-icon-fire-o:before {
  content: '\e6b9';
}
.van-icon-flag-o:before {
  content: '\e6ba';
}
.van-icon-font:before {
  content: '\e6bb';
}
.van-icon-font-o:before {
  content: '\e6bc';
}
.van-icon-gem-o:before {
  content: '\e6bd';
}
.van-icon-flower-o:before {
  content: '\e6be';
}
.van-icon-gem:before {
  content: '\e6bf';
}
.van-icon-gift-card:before {
  content: '\e6c0';
}
.van-icon-friends:before {
  content: '\e6c1';
}
.van-icon-friends-o:before {
  content: '\e6c2';
}
.van-icon-gold-coin:before {
  content: '\e6c3';
}
.van-icon-gold-coin-o:before {
  content: '\e6c4';
}
.van-icon-good-job-o:before {
  content: '\e6c5';
}
.van-icon-gift:before {
  content: '\e6c6';
}
.van-icon-gift-o:before {
  content: '\e6c7';
}
.van-icon-gift-card-o:before {
  content: '\e6c8';
}
.van-icon-good-job:before {
  content: '\e6c9';
}
.van-icon-home-o:before {
  content: '\e6ca';
}
.van-icon-goods-collect:before {
  content: '\e6cb';
}
.van-icon-graphic:before {
  content: '\e6cc';
}
.van-icon-goods-collect-o:before {
  content: '\e6cd';
}
.van-icon-hot-o:before {
  content: '\e6ce';
}
.van-icon-info:before {
  content: '\e6cf';
}
.van-icon-hotel-o:before {
  content: '\e6d0';
}
.van-icon-info-o:before {
  content: '\e6d1';
}
.van-icon-hot-sale-o:before {
  content: '\e6d2';
}
.van-icon-hot:before {
  content: '\e6d3';
}
.van-icon-like:before {
  content: '\e6d4';
}
.van-icon-idcard:before {
  content: '\e6d5';
}
.van-icon-like-o:before {
  content: '\e6d7';
}
.van-icon-hot-sale:before {
  content: '\e6d8';
}
.van-icon-location-o:before {
  content: '\e6d9';
}
.van-icon-location:before {
  content: '\e6da';
}
.van-icon-label:before {
  content: '\e6db';
}
.van-icon-lock:before {
  content: '\e6dc';
}
.van-icon-label-o:before {
  content: '\e6dd';
}
.van-icon-map-marked:before {
  content: '\e6de';
}
.van-icon-logistics:before {
  content: '\e6df';
}
.van-icon-manager:before {
  content: '\e6e0';
}
.van-icon-more:before {
  content: '\e6e1';
}
.van-icon-live:before {
  content: '\e6e2';
}
.van-icon-manager-o:before {
  content: '\e6e3';
}
.van-icon-medal:before {
  content: '\e6e4';
}
.van-icon-more-o:before {
  content: '\e6e5';
}
.van-icon-music-o:before {
  content: '\e6e6';
}
.van-icon-music:before {
  content: '\e6e7';
}
.van-icon-new-arrival-o:before {
  content: '\e6e8';
}
.van-icon-medal-o:before {
  content: '\e6e9';
}
.van-icon-new-o:before {
  content: '\e6ea';
}
.van-icon-free-postage:before {
  content: '\e6eb';
}
.van-icon-newspaper-o:before {
  content: '\e6ec';
}
.van-icon-new-arrival:before {
  content: '\e6ed';
}
.van-icon-minus:before {
  content: '\e6ee';
}
.van-icon-orders-o:before {
  content: '\e6ef';
}
.van-icon-new:before {
  content: '\e6f0';
}
.van-icon-paid:before {
  content: '\e6f1';
}
.van-icon-notes-o:before {
  content: '\e6f2';
}
.van-icon-other-pay:before {
  content: '\e6f3';
}
.van-icon-pause-circle:before {
  content: '\e6f4';
}
.van-icon-pause:before {
  content: '\e6f5';
}
.van-icon-pause-circle-o:before {
  content: '\e6f6';
}
.van-icon-peer-pay:before {
  content: '\e6f7';
}
.van-icon-pending-payment:before {
  content: '\e6f8';
}
.van-icon-passed:before {
  content: '\e6f9';
}
.van-icon-plus:before {
  content: '\e6fa';
}
.van-icon-phone-circle-o:before {
  content: '\e6fb';
}
.van-icon-phone-o:before {
  content: '\e6fc';
}
.van-icon-printer:before {
  content: '\e6fd';
}
.van-icon-photo-fail:before {
  content: '\e6fe';
}
.van-icon-phone:before {
  content: '\e6ff';
}
.van-icon-photo-o:before {
  content: '\e700';
}
.van-icon-play-circle:before {
  content: '\e701';
}
.van-icon-play:before {
  content: '\e702';
}
.van-icon-phone-circle:before {
  content: '\e703';
}
.van-icon-point-gift-o:before {
  content: '\e704';
}
.van-icon-point-gift:before {
  content: '\e705';
}
.van-icon-play-circle-o:before {
  content: '\e706';
}
.van-icon-shrink:before {
  content: '\e707';
}
.van-icon-photo:before {
  content: '\e708';
}
.van-icon-qr:before {
  content: '\e709';
}
.van-icon-qr-invalid:before {
  content: '\e70a';
}
.van-icon-question-o:before {
  content: '\e70b';
}
.van-icon-revoke:before {
  content: '\e70c';
}
.van-icon-replay:before {
  content: '\e70d';
}
.van-icon-service:before {
  content: '\e70e';
}
.van-icon-question:before {
  content: '\e70f';
}
.van-icon-search:before {
  content: '\e710';
}
.van-icon-refund-o:before {
  content: '\e711';
}
.van-icon-service-o:before {
  content: '\e712';
}
.van-icon-scan:before {
  content: '\e713';
}
.van-icon-share:before {
  content: '\e714';
}
.van-icon-send-gift-o:before {
  content: '\e715';
}
.van-icon-share-o:before {
  content: '\e716';
}
.van-icon-setting:before {
  content: '\e717';
}
.van-icon-points:before {
  content: '\e718';
}
.van-icon-photograph:before {
  content: '\e719';
}
.van-icon-shop:before {
  content: '\e71a';
}
.van-icon-shop-o:before {
  content: '\e71b';
}
.van-icon-shop-collect-o:before {
  content: '\e71c';
}
.van-icon-shop-collect:before {
  content: '\e71d';
}
.van-icon-smile:before {
  content: '\e71e';
}
.van-icon-shopping-cart-o:before {
  content: '\e71f';
}
.van-icon-sign:before {
  content: '\e720';
}
.van-icon-sort:before {
  content: '\e721';
}
.van-icon-star-o:before {
  content: '\e722';
}
.van-icon-smile-comment-o:before {
  content: '\e723';
}
.van-icon-stop:before {
  content: '\e724';
}
.van-icon-stop-circle-o:before {
  content: '\e725';
}
.van-icon-smile-o:before {
  content: '\e726';
}
.van-icon-star:before {
  content: '\e727';
}
.van-icon-success:before {
  content: '\e728';
}
.van-icon-stop-circle:before {
  content: '\e729';
}
.van-icon-records-o:before {
  content: '\e72a';
}
.van-icon-shopping-cart:before {
  content: '\e72b';
}
.van-icon-tosend:before {
  content: '\e72c';
}
.van-icon-todo-list:before {
  content: '\e72d';
}
.van-icon-thumb-circle-o:before {
  content: '\e72e';
}
.van-icon-thumb-circle:before {
  content: '\e72f';
}
.van-icon-umbrella-circle:before {
  content: '\e730';
}
.van-icon-underway:before {
  content: '\e731';
}
.van-icon-upgrade:before {
  content: '\e732';
}
.van-icon-todo-list-o:before {
  content: '\e733';
}
.van-icon-tv-o:before {
  content: '\e734';
}
.van-icon-underway-o:before {
  content: '\e735';
}
.van-icon-user-o:before {
  content: '\e736';
}
.van-icon-vip-card-o:before {
  content: '\e737';
}
.van-icon-vip-card:before {
  content: '\e738';
}
.van-icon-send-gift:before {
  content: '\e739';
}
.van-icon-wap-home:before {
  content: '\e73a';
}
.van-icon-wap-nav:before {
  content: '\e73b';
}
.van-icon-volume-o:before {
  content: '\e73c';
}
.van-icon-video:before {
  content: '\e73d';
}
.van-icon-wap-home-o:before {
  content: '\e73e';
}
.van-icon-volume:before {
  content: '\e73f';
}
.van-icon-warning:before {
  content: '\e740';
}
.van-icon-weapp-nav:before {
  content: '\e741';
}
.van-icon-wechat-pay:before {
  content: '\e742';
}
.van-icon-warning-o:before {
  content: '\e743';
}
.van-icon-wechat:before {
  content: '\e744';
}
.van-icon-setting-o:before {
  content: '\e745';
}
.van-icon-youzan-shield:before {
  content: '\e746';
}
.van-icon-warn-o:before {
  content: '\e747';
}
.van-icon-smile-comment:before {
  content: '\e748';
}
.van-icon-user-circle-o:before {
  content: '\e749';
}
.van-icon-video-o:before {
  content: '\e74a';
}
.van-icon-add-square:before {
  content: '\e65c';
}
.van-icon-add:before {
  content: '\e65d';
}
.van-icon-arrow-down:before {
  content: '\e65e';
}
.van-icon-arrow-up:before {
  content: '\e65f';
}
.van-icon-arrow:before {
  content: '\e660';
}
.van-icon-after-sale:before {
  content: '\e661';
}
.van-icon-add-o:before {
  content: '\e662';
}
.van-icon-alipay:before {
  content: '\e663';
}
.van-icon-ascending:before {
  content: '\e664';
}
.van-icon-apps-o:before {
  content: '\e665';
}
.van-icon-aim:before {
  content: '\e666';
}
.van-icon-award:before {
  content: '\e667';
}
.van-icon-arrow-left:before {
  content: '\e668';
}
.van-icon-award-o:before {
  content: '\e669';
}
.van-icon-audio:before {
  content: '\e66a';
}
.van-icon-bag-o:before {
  content: '\e66b';
}
.van-icon-balance-list:before {
  content: '\e66c';
}
.van-icon-back-top:before {
  content: '\e66d';
}
.van-icon-bag:before {
  content: '\e66e';
}
.van-icon-balance-pay:before {
  content: '\e66f';
}
.van-icon-balance-o:before {
  content: '\e670';
}
.van-icon-bar-chart-o:before {
  content: '\e671';
}
.van-icon-bars:before {
  content: '\e672';
}
.van-icon-balance-list-o:before {
  content: '\e673';
}
.van-icon-birthday-cake-o:before {
  content: '\e674';
}
.van-icon-bookmark:before {
  content: '\e675';
}
.van-icon-bill:before {
  content: '\e676';
}
.van-icon-bell:before {
  content: '\e677';
}
.van-icon-browsing-history-o:before {
  content: '\e678';
}
.van-icon-browsing-history:before {
  content: '\e679';
}
.van-icon-bookmark-o:before {
  content: '\e67a';
}
.van-icon-bulb-o:before {
  content: '\e67b';
}
.van-icon-bullhorn-o:before {
  content: '\e67c';
}
.van-icon-bill-o:before {
  content: '\e67d';
}
.van-icon-calendar-o:before {
  content: '\e67e';
}
.van-icon-brush-o:before {
  content: '\e67f';
}
.van-icon-card:before {
  content: '\e680';
}
.van-icon-cart-o:before {
  content: '\e681';
}
.van-icon-cart-circle:before {
  content: '\e682';
}
.van-icon-cart-circle-o:before {
  content: '\e683';
}
.van-icon-cart:before {
  content: '\e684';
}
.van-icon-cash-on-deliver:before {
  content: '\e685';
}
.van-icon-cash-back-record-o:before {
  content: '\e686';
}
.van-icon-cashier-o:before {
  content: '\e687';
}
.van-icon-chart-trending-o:before {
  content: '\e688';
}
.van-icon-certificate:before {
  content: '\e689';
}
.van-icon-chat:before {
  content: '\e68a';
}
.van-icon-clear:before {
  content: '\e68b';
}
.van-icon-chat-o:before {
  content: '\e68c';
}
.van-icon-checked:before {
  content: '\e68d';
}
.van-icon-clock:before {
  content: '\e68e';
}
.van-icon-clock-o:before {
  content: '\e68f';
}
.van-icon-close:before {
  content: '\e690';
}
.van-icon-closed-eye:before {
  content: '\e691';
}
.van-icon-circle:before {
  content: '\e692';
}
.van-icon-cluster-o:before {
  content: '\e693';
}
.van-icon-column:before {
  content: '\e694';
}
.van-icon-comment-circle-o:before {
  content: '\e695';
}
.van-icon-cluster:before {
  content: '\e696';
}
.van-icon-comment:before {
  content: '\e697';
}
.van-icon-comment-o:before {
  content: '\e698';
}
.van-icon-comment-circle:before {
  content: '\e699';
}
.van-icon-completed-o:before {
  content: '\e69a';
}
.van-icon-credit-pay:before {
  content: '\e69b';
}
.van-icon-coupon:before {
  content: '\e69c';
}
.van-icon-debit-pay:before {
  content: '\e69d';
}
.van-icon-coupon-o:before {
  content: '\e69e';
}
.van-icon-contact-o:before {
  content: '\e69f';
}
.van-icon-descending:before {
  content: '\e6a0';
}
.van-icon-desktop-o:before {
  content: '\e6a1';
}
.van-icon-diamond-o:before {
  content: '\e6a2';
}
.van-icon-description-o:before {
  content: '\e6a3';
}
.van-icon-delete:before {
  content: '\e6a4';
}
.van-icon-diamond:before {
  content: '\e6a5';
}
.van-icon-delete-o:before {
  content: '\e6a6';
}
.van-icon-cross:before {
  content: '\e6a7';
}
.van-icon-edit:before {
  content: '\e6a8';
}
.van-icon-ellipsis:before {
  content: '\e6a9';
}
.van-icon-down:before {
  content: '\e6aa';
}
.van-icon-discount-o:before {
  content: '\e6ab';
}
.van-icon-ecard-pay:before {
  content: '\e6ac';
}
.van-icon-envelop-o:before {
  content: '\e6ae';
}
@font-face {
  font-weight: normal;
  font-family: 'vant-icon';
  font-style: normal;
  font-display: auto;
  src: url('data:font/woff2;charset=utf-8;base64,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') format('woff2'), url('//at.alicdn.com/t/c/font_2553510_kfwma2yq1rs.woff?t=1694918397022') format('woff');
}
.van-icon__image {
  display: block;
  width: 1em;
  height: 1em;
  object-fit: contain;
}
.van-tabbar-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #646566;
  font-size: 0.32rem;
  line-height: 1;
  cursor: pointer;
}
.van-tabbar-item__icon {
  position: relative;
  margin-bottom: 0.107rem;
  font-size: 0.587rem;
}
.van-tabbar-item__icon .van-icon {
  display: block;
}
.van-tabbar-item__icon img {
  display: block;
  height: 0.533rem;
}
.van-tabbar-item--active {
  color: #1DB278;
  background-color: #FFFFFF;
}
.van-tabbar-item .van-info {
  margin-top: 0.107rem;
}
.van-step {
  position: relative;
  flex: 1;
  color: #969799;
  font-size: 0.373rem;
}
.van-step__circle {
  display: block;
  width: 0.133rem;
  height: 0.133rem;
  background-color: #969799;
  border-radius: 50%;
}
.van-step__line {
  position: absolute;
  background-color: #ebedf0;
  transition: background-color 0.3s;
}
.van-step--horizontal {
  float: left;
}
.van-step--horizontal:first-child .van-step__title {
  margin-left: 0;
  transform: none;
}
.van-step--horizontal:last-child {
  position: absolute;
  right: 1px;
  width: auto;
}
.van-step--horizontal:last-child .van-step__title {
  margin-left: 0;
  transform: none;
}
.van-step--horizontal:last-child .van-step__circle-container {
  right: -0.24rem;
  left: auto;
}
.van-step--horizontal .van-step__circle-container {
  position: absolute;
  top: 0.8rem;
  left: -0.213rem;
  z-index: 1;
  padding: 0 0.213rem;
  background-color: #FFFFFF;
  transform: translateY(-50%);
}
.van-step--horizontal .van-step__title {
  display: inline-block;
  margin-left: 0.08rem;
  font-size: 0.32rem;
  transform: translateX(-50%);
}
@media (max-width: 321px) {
  .van-step--horizontal .van-step__title {
    font-size: 0.293rem;
  }
}
.van-step--horizontal .van-step__line {
  top: 0.8rem;
  left: 0;
  width: 100%;
  height: 1px;
}
.van-step--horizontal .van-step__icon {
  display: block;
  font-size: 0.32rem;
}
.van-step--horizontal .van-step--process {
  color: #323233;
}
.van-step--vertical {
  display: block;
  float: none;
  padding: 0.267rem 0.267rem 0.267rem 0;
  line-height: 0.48rem;
}
.van-step--vertical:not(:last-child)::after {
  border-bottom-width: 1px;
}
.van-step--vertical .van-step__circle-container {
  position: absolute;
  top: 0.507rem;
  left: -0.4rem;
  z-index: 1;
  font-size: 0.32rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}
.van-step--vertical .van-step__line {
  top: 0.427rem;
  left: -0.4rem;
  width: 1px;
  height: 100%;
}
.van-step:last-child .van-step__line {
  width: 0;
}
.van-step--finish {
  color: #323233;
}
.van-step--finish .van-step__circle,
.van-step--finish .van-step__line {
  background-color: #07c160;
}
.van-step__icon,
.van-step__title {
  transition: color 0.3s;
}
.van-step__icon--active,
.van-step__title--active,
.van-step__icon--finish,
.van-step__title--finish {
  color: #07c160;
}
.van-rate {
  display: inline-flex;
  flex-wrap: wrap;
  cursor: pointer;
  user-select: none;
}
.van-rate__item {
  position: relative;
}
.van-rate__item:not(:last-child) {
  padding-right: 0.107rem;
}
.van-rate__icon {
  display: block;
  width: 1em;
  color: #c8c9cc;
  font-size: 0.533rem;
}
.van-rate__icon--half {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5em;
  overflow: hidden;
}
.van-rate__icon--full {
  color: #FFA10A;
}
.van-rate__icon--disabled {
  color: #c8c9cc;
}
.van-rate--disabled {
  cursor: not-allowed;
}
.van-rate--readonly {
  cursor: default;
}
.van-notice-bar {
  position: relative;
  display: flex;
  align-items: center;
  height: 1.067rem;
  padding: 0 0.427rem;
  color: #ed6a0c;
  font-size: 0.373rem;
  line-height: 0.64rem;
  background-color: #fffbe8;
}
.van-notice-bar__left-icon,
.van-notice-bar__right-icon {
  min-width: 0.64rem;
  font-size: 0.427rem;
}
.van-notice-bar__right-icon {
  text-align: right;
  cursor: pointer;
}
.van-notice-bar__wrap {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.van-notice-bar__content {
  position: absolute;
  white-space: nowrap;
  transition-timing-function: linear;
}
.van-notice-bar__content.van-ellipsis {
  max-width: 100%;
}
.van-notice-bar--wrapable {
  height: auto;
  padding: 0.213rem 0.427rem;
}
.van-notice-bar--wrapable .van-notice-bar__wrap {
  height: auto;
}
.van-notice-bar--wrapable .van-notice-bar__content {
  position: relative;
  white-space: normal;
  word-wrap: break-word;
}
.van-nav-bar {
  position: relative;
  z-index: 1;
  line-height: 0.587rem;
  text-align: center;
  background-color: #FFFFFF;
  user-select: none;
}
.van-nav-bar--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.van-nav-bar--safe-area-inset-top {
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}
.van-nav-bar .van-icon {
  color: #60656E;
}
.van-nav-bar__content {
  position: relative;
  display: flex;
  align-items: center;
  height: 1.173rem;
}
.van-nav-bar__arrow {
  margin-right: 0.107rem;
  font-size: 0.427rem;
}
.van-nav-bar__title {
  max-width: 60%;
  margin: 0 auto;
  color: #13161B;
  font-weight: 500;
  font-size: 0.48rem;
}
.van-nav-bar__left,
.van-nav-bar__right {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 0.427rem;
  font-size: 0.373rem;
  cursor: pointer;
}
.van-nav-bar__left:active,
.van-nav-bar__right:active {
  opacity: 0.7;
}
.van-nav-bar__left {
  left: 0;
}
.van-nav-bar__right {
  right: 0;
}
.van-nav-bar__text {
  color: #60656E;
}
.van-grid-item {
  position: relative;
  box-sizing: border-box;
}
.van-grid-item--square {
  height: 0;
}
.van-grid-item__icon {
  font-size: 0.747rem;
}
.van-grid-item__icon-wrapper {
  position: relative;
}
.van-grid-item__text {
  color: #646566;
  font-size: 0.32rem;
  line-height: 1.5;
  word-break: break-all;
}
.van-grid-item__icon + .van-grid-item__text {
  margin-top: 0.213rem;
}
.van-grid-item__content {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  padding: 0.427rem 0.213rem;
  background-color: #FFFFFF;
}
.van-grid-item__content::after {
  z-index: 1;
  border-width: 0 1px 1px 0;
}
.van-grid-item__content--square {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.van-grid-item__content--center {
  align-items: center;
  justify-content: center;
}
.van-grid-item__content--horizontal {
  flex-direction: row;
}
.van-grid-item__content--horizontal .van-grid-item__icon + .van-grid-item__text {
  margin-top: 0;
  margin-left: 0.213rem;
}
.van-grid-item__content--surround::after {
  border-width: 1px;
}
.van-grid-item__content--clickable {
  cursor: pointer;
}
.van-grid-item__content--clickable:active {
  background-color: #f2f3f5;
}
.van-goods-action-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 1.28rem;
  height: 100%;
  color: #646566;
  font-size: 0.267rem;
  line-height: 1;
  text-align: center;
  background-color: #FFFFFF;
  cursor: pointer;
}
.van-goods-action-icon:active {
  background-color: #f2f3f5;
}
.van-goods-action-icon__icon {
  position: relative;
  width: 1em;
  margin: 0 auto 0.133rem;
  color: #323233;
  font-size: 0.48rem;
}
.van-checkbox {
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}
.van-checkbox--disabled {
  cursor: not-allowed;
}
.van-checkbox--label-disabled {
  cursor: default;
}
.van-checkbox--horizontal {
  margin-right: 0.32rem;
}
.van-checkbox__icon {
  flex: none;
  height: 1em;
  font-size: 0.533rem;
  line-height: 1em;
  cursor: pointer;
}
.van-checkbox__icon .van-icon {
  display: block;
  box-sizing: border-box;
  width: 1.25em;
  height: 1.25em;
  color: transparent;
  font-size: 0.8em;
  line-height: 1.25;
  text-align: center;
  border: 1px solid #dcdcdc;
  transition-duration: 0.2s;
  transition-property: color, border-color, background-color;
}
.van-checkbox__icon--round .van-icon {
  border-radius: 100%;
}
.van-checkbox__icon--checked .van-icon {
  color: #FFFFFF;
  background-color: #1DB278;
  border-color: #1DB278;
}
.van-checkbox__icon--disabled {
  cursor: not-allowed;
}
.van-checkbox__icon--disabled .van-icon {
  background-color: #ebedf0;
  border-color: #c8c9cc;
}
.van-checkbox__icon--disabled.van-checkbox__icon--checked .van-icon {
  color: #c8c9cc;
}
.van-checkbox__label {
  margin-left: 0.213rem;
  color: #323233;
  line-height: 0.533rem;
}
.van-checkbox__label--left {
  margin: 0 0.213rem 0 0;
}
.van-checkbox__label--disabled {
  color: #c8c9cc;
}
.van-coupon {
  margin: 0 0.32rem 0.32rem;
  overflow: hidden;
  background-color: #FFFFFF;
  border-radius: 0.213rem;
  box-shadow: 0 0 0.107rem rgba(0, 0, 0, 0.1);
}
.van-coupon:active {
  background-color: #f2f3f5;
}
.van-coupon__content {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 2.24rem;
  padding: 0.373rem 0;
  color: #323233;
}
.van-coupon__head {
  position: relative;
  min-width: 2.56rem;
  padding: 0 0.213rem;
  color: #ee0a24;
  text-align: center;
}
.van-coupon__amount,
.van-coupon__condition,
.van-coupon__name,
.van-coupon__valid {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.van-coupon__amount {
  margin-bottom: 0.16rem;
  font-weight: 500;
  font-size: 0.8rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.van-coupon__amount span {
  font-weight: normal;
  font-size: 40%;
}
.van-coupon__amount span:not(:empty) {
  margin-left: 0.053rem;
}
.van-coupon__condition {
  font-size: 0.32rem;
  line-height: 0.427rem;
  white-space: pre-wrap;
}
.van-coupon__body {
  position: relative;
  flex: 1;
  border-radius: 0 0.213rem 0.213rem 0;
}
.van-coupon__name {
  margin-bottom: 0.267rem;
  font-weight: bold;
  font-size: 0.373rem;
  line-height: 0.533rem;
}
.van-coupon__valid {
  font-size: 0.32rem;
}
.van-coupon__corner {
  position: absolute;
  top: 0;
  right: 0.427rem;
  bottom: 0;
}
.van-coupon__description {
  padding: 0.213rem 0.427rem;
  font-size: 0.32rem;
  border-top: 1px dashed #ebedf0;
}
.van-coupon--disabled:active {
  background-color: #FFFFFF;
}
.van-coupon--disabled .van-coupon-item__content {
  height: 1.973rem;
}
.van-coupon--disabled .van-coupon__head {
  color: inherit;
}
.van-image {
  position: relative;
  display: inline-block;
}
.van-image--round {
  overflow: hidden;
  border-radius: 50%;
}
.van-image--round img {
  border-radius: inherit;
}
.van-image__img,
.van-image__error,
.van-image__loading {
  display: block;
  width: 100%;
  height: 100%;
}
.van-image__error,
.van-image__loading {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #969799;
  font-size: 0.373rem;
  background-color: #f7f8fa;
}
.van-image__loading-icon {
  color: #dcdee0;
  font-size: 0.853rem;
}
.van-image__error-icon {
  color: #dcdee0;
  font-size: 0.853rem;
}
.van-radio {
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}
.van-radio--disabled {
  cursor: not-allowed;
}
.van-radio--label-disabled {
  cursor: default;
}
.van-radio--horizontal {
  margin-right: 0.32rem;
}
.van-radio__icon {
  flex: none;
  height: 1em;
  font-size: 0.533rem;
  line-height: 1em;
  cursor: pointer;
}
.van-radio__icon .van-icon {
  display: block;
  box-sizing: border-box;
  width: 1.25em;
  height: 1.25em;
  color: transparent;
  font-size: 0.8em;
  line-height: 1.25;
  text-align: center;
  border: 1px solid #dcdcdc;
  transition-duration: 0.2s;
  transition-property: color, border-color, background-color;
}
.van-radio__icon--round .van-icon {
  border-radius: 100%;
}
.van-radio__icon--checked .van-icon {
  color: #FFFFFF;
  background-color: #1DB278;
  border-color: #1DB278;
}
.van-radio__icon--disabled {
  cursor: not-allowed;
}
.van-radio__icon--disabled .van-icon {
  background-color: #ebedf0;
  border-color: #c8c9cc;
}
.van-radio__icon--disabled.van-radio__icon--checked .van-icon {
  color: #c8c9cc;
}
.van-radio__label {
  margin-left: 0.213rem;
  color: #323233;
  line-height: 0.533rem;
}
.van-radio__label--left {
  margin: 0 0.213rem 0 0;
}
.van-radio__label--disabled {
  color: #c8c9cc;
}
.van-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 0.107rem;
  color: #FFFFFF;
  font-size: 0.32rem;
  line-height: 0.427rem;
  border-radius: 0.053rem;
}
.van-tag--default {
  background-color: #969799;
}
.van-tag--default.van-tag--plain {
  color: #969799;
}
.van-tag--danger {
  background-color: #ee0a24;
}
.van-tag--danger.van-tag--plain {
  color: #ee0a24;
}
.van-tag--primary {
  background-color: #1DB278;
}
.van-tag--primary.van-tag--plain {
  color: #1DB278;
}
.van-tag--success {
  background-color: #07c160;
}
.van-tag--success.van-tag--plain {
  color: #07c160;
}
.van-tag--warning {
  background-color: #ff976a;
}
.van-tag--warning.van-tag--plain {
  color: #ff976a;
}
.van-tag--plain {
  background-color: #FFFFFF;
  border-color: currentColor;
}
.van-tag--plain::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid;
  border-color: inherit;
  border-radius: inherit;
  content: '';
  pointer-events: none;
}
.van-tag--medium {
  padding: 0.053rem 0.16rem;
}
.van-tag--large {
  padding: 0.107rem 0.213rem;
  font-size: 0.373rem;
  border-radius: 0.107rem;
}
.van-tag--mark {
  border-radius: 0 26.64rem 26.64rem 0;
}
.van-tag--mark::after {
  display: block;
  width: 0.053rem;
  content: '';
}
.van-tag--round {
  border-radius: 26.64rem;
}
.van-tag__close {
  margin-left: 0.053rem;
  cursor: pointer;
}
.van-card {
  position: relative;
  box-sizing: border-box;
  padding: 0.213rem 0.427rem;
  color: #323233;
  font-size: 0.32rem;
  background-color: #fafafa;
}
.van-card:not(:first-child) {
  margin-top: 0.213rem;
}
.van-card__header {
  display: flex;
}
.van-card__thumb {
  position: relative;
  flex: none;
  width: 2.347rem;
  height: 2.347rem;
  margin-right: 0.213rem;
}
.van-card__thumb img {
  border-radius: 0.213rem;
}
.van-card__content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  /* hack for flex box ellipsis */
  min-height: 2.347rem;
}
.van-card__content--centered {
  justify-content: center;
}
.van-card__title,
.van-card__desc {
  word-wrap: break-word;
}
.van-card__title {
  max-height: 0.853rem;
  font-weight: 500;
  line-height: 0.427rem;
}
.van-card__desc {
  max-height: 0.533rem;
  color: #646566;
  line-height: 0.533rem;
}
.van-card__bottom {
  line-height: 0.533rem;
}
.van-card__price {
  display: inline-block;
  color: #323233;
  font-weight: 500;
  font-size: 0.32rem;
}
.van-card__price-integer {
  font-size: 0.427rem;
  font-family: Avenir-Heavy, PingFang SC, Helvetica Neue, Arial, sans-serif;
}
.van-card__price-decimal {
  font-family: Avenir-Heavy, PingFang SC, Helvetica Neue, Arial, sans-serif;
}
.van-card__origin-price {
  display: inline-block;
  margin-left: 0.133rem;
  color: #969799;
  font-size: 0.267rem;
  text-decoration: line-through;
}
.van-card__num {
  float: right;
  color: #969799;
}
.van-card__tag {
  position: absolute;
  top: 0.053rem;
  left: 0;
}
.van-card__footer {
  flex: none;
  text-align: right;
}
.van-card__footer .van-button {
  margin-left: 0.133rem;
}
.van-cell {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: 0.267rem 0.427rem;
  overflow: hidden;
  color: #323233;
  font-size: 0.373rem;
  line-height: 0.64rem;
  background-color: #FFFFFF;
}
.van-cell::after {
  position: absolute;
  box-sizing: border-box;
  content: ' ';
  pointer-events: none;
  right: 0.427rem;
  bottom: 0;
  left: 0.427rem;
  border-bottom: 1px solid #ebedf0;
  transform: scaleY(0.5);
}
.van-cell:last-child::after,
.van-cell--borderless::after {
  display: none;
}
.van-cell__label {
  margin-top: 0.107rem;
  color: #969799;
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.van-cell__title,
.van-cell__value {
  flex: 1;
}
.van-cell__value {
  position: relative;
  overflow: hidden;
  color: #969799;
  text-align: right;
  vertical-align: middle;
  word-wrap: break-word;
}
.van-cell__value--alone {
  color: #323233;
  text-align: left;
}
.van-cell__left-icon,
.van-cell__right-icon {
  height: 0.64rem;
  font-size: 0.427rem;
  line-height: 0.64rem;
}
.van-cell__left-icon {
  margin-right: 0.107rem;
}
.van-cell__right-icon {
  margin-left: 0.107rem;
  color: #969799;
}
.van-cell--clickable {
  cursor: pointer;
}
.van-cell--clickable:active {
  background-color: #f2f3f5;
}
.van-cell--required {
  overflow: visible;
}
.van-cell--required::before {
  position: absolute;
  left: 0.213rem;
  color: #ee0a24;
  font-size: 0.373rem;
  content: '*';
}
.van-cell--center {
  align-items: center;
}
.van-cell--large {
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
}
.van-cell--large .van-cell__title {
  font-size: 0.427rem;
}
.van-cell--large .van-cell__label {
  font-size: 0.373rem;
}
.van-coupon-cell__value--selected {
  color: #323233;
}
.van-contact-card {
  padding: 0.427rem;
}
.van-contact-card__value {
  margin-left: 0.133rem;
  line-height: 0.533rem;
}
.van-contact-card--add .van-contact-card__value {
  line-height: 1.067rem;
}
.van-contact-card--add .van-cell__left-icon {
  color: #1DB278;
  font-size: 1.067rem;
}
.van-contact-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.053rem;
  background: repeating-linear-gradient(-45deg, #ff6c6c 0, #ff6c6c 20%, transparent 0, transparent 25%, #1DB278 0, #1DB278 45%, transparent 0, transparent 50%);
  background-size: 2.133rem;
  content: '';
}
.van-collapse-item {
  position: relative;
}
.van-collapse-item--border::after {
  position: absolute;
  box-sizing: border-box;
  content: ' ';
  pointer-events: none;
  top: 0;
  right: 0.427rem;
  left: 0.427rem;
  border-top: 1px solid #ebedf0;
  transform: scaleY(0.5);
}
.van-collapse-item__title .van-cell__right-icon::before {
  transform: rotate(90deg) translateZ(0);
  transition: transform 0.3s;
}
.van-collapse-item__title::after {
  right: 0.427rem;
  display: none;
}
.van-collapse-item__title--expanded .van-cell__right-icon::before {
  transform: rotate(-90deg);
}
.van-collapse-item__title--expanded::after {
  display: block;
}
.van-collapse-item__title--borderless::after {
  display: none;
}
.van-collapse-item__title--disabled {
  cursor: not-allowed;
}
.van-collapse-item__title--disabled,
.van-collapse-item__title--disabled .van-cell__right-icon {
  color: #c8c9cc;
}
.van-collapse-item__title--disabled:active {
  background-color: #FFFFFF;
}
.van-collapse-item__wrapper {
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  will-change: height;
}
.van-collapse-item__content {
  padding: 0.32rem 0.427rem;
  color: #969799;
  font-size: 0.373rem;
  line-height: 1.5;
  background-color: #FFFFFF;
}
.van-field__label {
  flex: none;
  box-sizing: border-box;
  width: 6.2em;
  margin-right: 0.32rem;
  color: #646566;
  text-align: left;
  word-wrap: break-word;
}
.van-field__label--center {
  text-align: center;
}
.van-field__label--right {
  text-align: right;
}
.van-field--disabled .van-field__label {
  color: #c8c9cc;
}
.van-field__value {
  overflow: visible;
}
.van-field__body {
  display: flex;
  align-items: center;
}
.van-field__control {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: #323233;
  line-height: inherit;
  text-align: left;
  background-color: transparent;
  border: 0;
  resize: none;
}
.van-field__control::placeholder {
  color: #8D949F;
}
.van-field__control:disabled {
  color: #c8c9cc;
  cursor: not-allowed;
  opacity: 1;
  -webkit-text-fill-color: #c8c9cc;
}
.van-field__control:read-only {
  cursor: default;
}
.van-field__control--center {
  justify-content: center;
  text-align: center;
}
.van-field__control--right {
  justify-content: flex-end;
  text-align: right;
}
.van-field__control--custom {
  display: flex;
  align-items: center;
  min-height: 0.64rem;
}
.van-field__control[type='date'],
.van-field__control[type='time'],
.van-field__control[type='datetime-local'] {
  min-height: 0.64rem;
}
.van-field__control[type='search'] {
  -webkit-appearance: none;
}
.van-field__clear,
.van-field__icon,
.van-field__button,
.van-field__right-icon {
  flex-shrink: 0;
}
.van-field__clear,
.van-field__right-icon {
  margin-right: -0.213rem;
  padding: 0 0.213rem;
  line-height: inherit;
}
.van-field__clear {
  color: #c8c9cc;
  font-size: 0.427rem;
  cursor: pointer;
}
.van-field__left-icon .van-icon,
.van-field__right-icon .van-icon {
  display: block;
  font-size: 0.427rem;
  line-height: inherit;
}
.van-field__left-icon {
  margin-right: 0.107rem;
}
.van-field__right-icon {
  color: #969799;
}
.van-field__button {
  padding-left: 0.213rem;
}
.van-field__error-message {
  color: #ee0a24;
  font-size: 0.32rem;
  text-align: left;
}
.van-field__error-message--center {
  text-align: center;
}
.van-field__error-message--right {
  text-align: right;
}
.van-field__word-limit {
  margin-top: 0.107rem;
  color: #646566;
  font-size: 0.32rem;
  line-height: 0.427rem;
  text-align: right;
}
.van-field--error .van-field__control,
.van-field--error .van-field__control::placeholder {
  color: #ee0a24;
  -webkit-text-fill-color: currentColor;
}
.van-field--min-height .van-field__control {
  min-height: 1.6rem;
}
.van-search {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
  background-color: #FFFFFF;
}
.van-search__content {
  display: flex;
  flex: 1;
  padding-left: 0.32rem;
  background-color: #FFFFFF;
  border-radius: 0.053rem;
}
.van-search__content--round {
  border-radius: 26.64rem;
}
.van-search__label {
  padding: 0 0.427rem;
  color: #13161B;
  font-size: 0.373rem;
  line-height: 0.853rem;
}
.van-search .van-cell {
  flex: 1;
  padding: 0.133rem 0.213rem 0.133rem 0;
  background-color: transparent;
}
.van-search .van-cell .van-field__left-icon {
  color: #8D949F;
}
.van-search--show-action {
  padding-right: 0;
}
.van-search input::-webkit-search-decoration,
.van-search input::-webkit-search-cancel-button,
.van-search input::-webkit-search-results-button,
.van-search input::-webkit-search-results-decoration {
  display: none;
}
.van-search__action {
  padding: 0 0 0 0.427rem;
  color: #13161B;
  font-size: 0.373rem;
  line-height: 0.853rem;
  cursor: pointer;
  user-select: none;
}
.van-search__action:active {
  background-color: #f2f3f5;
}
.van-overflow-hidden {
  overflow: hidden !important;
}
.van-popup {
  position: fixed;
  max-height: 100%;
  overflow-y: auto;
  background-color: #FFFFFF;
  transition: transform 0.3s;
  -webkit-overflow-scrolling: touch;
}
.van-popup--center {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.van-popup--center.van-popup--round {
  border-radius: 0.427rem;
}
.van-popup--top {
  top: 0;
  left: 0;
  width: 100%;
}
.van-popup--top.van-popup--round {
  border-radius: 0 0 0.427rem 0.427rem;
}
.van-popup--right {
  top: 50%;
  right: 0;
  transform: translate3d(0, -50%, 0);
}
.van-popup--right.van-popup--round {
  border-radius: 0.427rem 0 0 0.427rem;
}
.van-popup--bottom {
  bottom: 0;
  left: 0;
  width: 100%;
}
.van-popup--bottom.van-popup--round {
  border-radius: 0.427rem 0.427rem 0 0;
}
.van-popup--left {
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
}
.van-popup--left.van-popup--round {
  border-radius: 0 0.427rem 0.427rem 0;
}
.van-popup--safe-area-inset-bottom {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.van-popup-slide-top-enter-active,
.van-popup-slide-left-enter-active,
.van-popup-slide-right-enter-active,
.van-popup-slide-bottom-enter-active {
  transition-timing-function: ease-out;
}
.van-popup-slide-top-leave-active,
.van-popup-slide-left-leave-active,
.van-popup-slide-right-leave-active,
.van-popup-slide-bottom-leave-active {
  transition-timing-function: ease-in;
}
.van-popup-slide-top-enter,
.van-popup-slide-top-leave-active {
  transform: translate3d(0, -100%, 0);
}
.van-popup-slide-right-enter,
.van-popup-slide-right-leave-active {
  transform: translate3d(100%, -50%, 0);
}
.van-popup-slide-bottom-enter,
.van-popup-slide-bottom-leave-active {
  transform: translate3d(0, 100%, 0);
}
.van-popup-slide-left-enter,
.van-popup-slide-left-leave-active {
  transform: translate3d(-100%, -50%, 0);
}
.van-popup__close-icon {
  position: absolute;
  z-index: 1;
  color: #c8c9cc;
  font-size: 0.587rem;
  cursor: pointer;
}
.van-popup__close-icon:active {
  color: #969799;
}
.van-popup__close-icon--top-left {
  top: 0.427rem;
  left: 0.427rem;
}
.van-popup__close-icon--top-right {
  top: 0.427rem;
  right: 0.427rem;
}
.van-popup__close-icon--bottom-left {
  bottom: 0.427rem;
  left: 0.427rem;
}
.van-popup__close-icon--bottom-right {
  right: 0.427rem;
  bottom: 0.427rem;
}
.van-share-sheet__header {
  padding: 0.32rem 0.427rem 0.107rem;
  text-align: center;
}
.van-share-sheet__title {
  margin-top: 0.213rem;
  color: #323233;
  font-weight: normal;
  font-size: 0.373rem;
  line-height: 0.533rem;
}
.van-share-sheet__description {
  display: block;
  margin-top: 0.213rem;
  color: #969799;
  font-size: 0.32rem;
  line-height: 0.427rem;
}
.van-share-sheet__options {
  position: relative;
  display: flex;
  padding: 0.427rem 0 0.427rem 0.213rem;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}
.van-share-sheet__options--border::before {
  position: absolute;
  box-sizing: border-box;
  content: ' ';
  pointer-events: none;
  top: 0;
  right: 0;
  left: 0.427rem;
  border-top: 1px solid #ebedf0;
  transform: scaleY(0.5);
}
.van-share-sheet__options::-webkit-scrollbar {
  height: 0;
}
.van-share-sheet__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.van-share-sheet__option:active {
  opacity: 0.7;
}
.van-share-sheet__icon {
  width: 1.28rem;
  height: 1.28rem;
  margin: 0 0.427rem;
}
.van-share-sheet__name {
  margin-top: 0.213rem;
  padding: 0 0.107rem;
  color: #646566;
  font-size: 0.32rem;
}
.van-share-sheet__option-description {
  padding: 0 0.107rem;
  color: #c8c9cc;
  font-size: 0.32rem;
}
.van-share-sheet__cancel {
  display: block;
  width: 100%;
  padding: 0;
  font-size: 0.427rem;
  line-height: 1.28rem;
  text-align: center;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
}
.van-share-sheet__cancel::before {
  display: block;
  height: 0.213rem;
  background-color: #f7f8fa;
  content: ' ';
}
.van-share-sheet__cancel:active {
  background-color: #f2f3f5;
}
.van-popover {
  position: absolute;
  overflow: visible;
  background-color: transparent;
  transition: opacity 0.15s, transform 0.15s;
}
.van-popover__wrapper {
  display: inline-block;
}
.van-popover__arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 0.16rem;
}
.van-popover__content {
  overflow: hidden;
  border-radius: 0.213rem;
}
.van-popover__action {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 3.413rem;
  height: 1.173rem;
  padding: 0 0.427rem;
  font-size: 0.373rem;
  line-height: 0.533rem;
  cursor: pointer;
}
.van-popover__action:last-child .van-popover__action-text::after {
  display: none;
}
.van-popover__action-text {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.van-popover__action-icon {
  margin-right: 0.213rem;
  font-size: 0.533rem;
}
.van-popover__action--with-icon .van-popover__action-text {
  justify-content: flex-start;
}
.van-popover[data-popper-placement^='top'] .van-popover__arrow {
  bottom: 0;
  border-top-color: currentColor;
  border-bottom-width: 0;
  transform: translate(-50%, 100%);
}
.van-popover[data-popper-placement='top'] {
  transform-origin: 50% 100%;
}
.van-popover[data-popper-placement='top'] .van-popover__arrow {
  left: 50%;
}
.van-popover[data-popper-placement='top-start'] {
  transform-origin: 0 100%;
}
.van-popover[data-popper-placement='top-start'] .van-popover__arrow {
  left: 0.427rem;
}
.van-popover[data-popper-placement='top-end'] {
  transform-origin: 100% 100%;
}
.van-popover[data-popper-placement='top-end'] .van-popover__arrow {
  right: 0.427rem;
}
.van-popover[data-popper-placement^='left'] .van-popover__arrow {
  right: 0;
  border-right-width: 0;
  border-left-color: currentColor;
  transform: translate(100%, -50%);
}
.van-popover[data-popper-placement='left'] {
  transform-origin: 100% 50%;
}
.van-popover[data-popper-placement='left'] .van-popover__arrow {
  top: 50%;
}
.van-popover[data-popper-placement='left-start'] {
  transform-origin: 100% 0;
}
.van-popover[data-popper-placement='left-start'] .van-popover__arrow {
  top: 0.427rem;
}
.van-popover[data-popper-placement='left-end'] {
  transform-origin: 100% 100%;
}
.van-popover[data-popper-placement='left-end'] .van-popover__arrow {
  bottom: 0.427rem;
}
.van-popover[data-popper-placement^='right'] .van-popover__arrow {
  left: 0;
  border-right-color: currentColor;
  border-left-width: 0;
  transform: translate(-100%, -50%);
}
.van-popover[data-popper-placement='right'] {
  transform-origin: 0 50%;
}
.van-popover[data-popper-placement='right'] .van-popover__arrow {
  top: 50%;
}
.van-popover[data-popper-placement='right-start'] {
  transform-origin: 0 0;
}
.van-popover[data-popper-placement='right-start'] .van-popover__arrow {
  top: 0.427rem;
}
.van-popover[data-popper-placement='right-end'] {
  transform-origin: 0 100%;
}
.van-popover[data-popper-placement='right-end'] .van-popover__arrow {
  bottom: 0.427rem;
}
.van-popover[data-popper-placement^='bottom'] .van-popover__arrow {
  top: 0;
  border-top-width: 0;
  border-bottom-color: currentColor;
  transform: translate(-50%, -100%);
}
.van-popover[data-popper-placement='bottom'] {
  transform-origin: 50% 0;
}
.van-popover[data-popper-placement='bottom'] .van-popover__arrow {
  left: 50%;
}
.van-popover[data-popper-placement='bottom-start'] {
  transform-origin: 0 0;
}
.van-popover[data-popper-placement='bottom-start'] .van-popover__arrow {
  left: 0.427rem;
}
.van-popover[data-popper-placement='bottom-end'] {
  transform-origin: 100% 0;
}
.van-popover[data-popper-placement='bottom-end'] .van-popover__arrow {
  right: 0.427rem;
}
.van-popover--light {
  color: #323233;
}
.van-popover--light .van-popover__content {
  background-color: #FFFFFF;
  box-shadow: 0 0.053rem 0.32rem rgba(50, 50, 51, 0.12);
}
.van-popover--light .van-popover__arrow {
  color: #FFFFFF;
}
.van-popover--light .van-popover__action:active {
  background-color: #f2f3f5;
}
.van-popover--light .van-popover__action--disabled {
  color: #c8c9cc;
  cursor: not-allowed;
}
.van-popover--light .van-popover__action--disabled:active {
  background-color: transparent;
}
.van-popover--dark {
  color: #FFFFFF;
}
.van-popover--dark .van-popover__content {
  background-color: #4a4a4a;
}
.van-popover--dark .van-popover__arrow {
  color: #4a4a4a;
}
.van-popover--dark .van-popover__action:active {
  background-color: rgba(0, 0, 0, 0.2);
}
.van-popover--dark .van-popover__action--disabled {
  color: #969799;
}
.van-popover--dark .van-popover__action--disabled:active {
  background-color: transparent;
}
.van-popover--dark .van-popover__action-text::after {
  border-color: #646566;
}
.van-popover-zoom-enter,
.van-popover-zoom-leave-active {
  transform: scale(0.8);
  opacity: 0;
}
.van-popover-zoom-enter-active {
  transition-timing-function: ease-out;
}
.van-popover-zoom-leave-active {
  transition-timing-function: ease-in;
}
.van-notify {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.213rem 0.427rem;
  color: #FFFFFF;
  font-size: 0.373rem;
  line-height: 0.533rem;
  white-space: pre-wrap;
  text-align: center;
  word-wrap: break-word;
}
.van-notify--primary {
  background-color: #1DB278;
}
.van-notify--success {
  background-color: #07c160;
}
.van-notify--danger {
  background-color: #ee0a24;
}
.van-notify--warning {
  background-color: #ff976a;
}
.van-dropdown-item {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
}
.van-dropdown-item__icon {
  display: block;
  line-height: inherit;
}
.van-dropdown-item__option {
  text-align: left;
}
.van-dropdown-item__option--active {
  color: #1DB278;
}
.van-dropdown-item__option--active .van-dropdown-item__icon {
  color: #1DB278;
}
.van-dropdown-item--up {
  top: 0;
}
.van-dropdown-item--down {
  bottom: 0;
}
.van-dropdown-item__content {
  position: absolute;
  max-height: 80%;
}
.van-loading {
  position: relative;
  color: #c8c9cc;
  font-size: 0;
  vertical-align: middle;
}
.van-loading__spinner {
  position: relative;
  display: inline-block;
  width: 0.8rem;
  max-width: 100%;
  height: 0.8rem;
  max-height: 100%;
  vertical-align: middle;
  animation: van-rotate 0.8s linear infinite;
}
.van-loading__spinner--spinner {
  animation-timing-function: steps(12);
}
.van-loading__spinner--spinner i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.van-loading__spinner--spinner i::before {
  display: block;
  width: 0.053rem;
  height: 25%;
  margin: 0 auto;
  background-color: currentColor;
  border-radius: 40%;
  content: ' ';
}
.van-loading__spinner--circular {
  animation-duration: 2s;
}
.van-loading__circular {
  display: block;
  width: 100%;
  height: 100%;
}
.van-loading__circular circle {
  animation: van-circular 1.5s ease-in-out infinite;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}
.van-loading__text {
  display: inline-block;
  margin-left: 0.213rem;
  color: #969799;
  font-size: 0.373rem;
  vertical-align: middle;
}
.van-loading--vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.van-loading--vertical .van-loading__text {
  margin: 0.213rem 0 0;
}
@keyframes van-circular {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120;
  }
}
.van-loading__spinner--spinner i:nth-of-type(1) {
  transform: rotate(30deg);
  opacity: 1;
}
.van-loading__spinner--spinner i:nth-of-type(2) {
  transform: rotate(60deg);
  opacity: 0.9375;
}
.van-loading__spinner--spinner i:nth-of-type(3) {
  transform: rotate(90deg);
  opacity: 0.875;
}
.van-loading__spinner--spinner i:nth-of-type(4) {
  transform: rotate(120deg);
  opacity: 0.8125;
}
.van-loading__spinner--spinner i:nth-of-type(5) {
  transform: rotate(150deg);
  opacity: 0.75;
}
.van-loading__spinner--spinner i:nth-of-type(6) {
  transform: rotate(180deg);
  opacity: 0.6875;
}
.van-loading__spinner--spinner i:nth-of-type(7) {
  transform: rotate(210deg);
  opacity: 0.625;
}
.van-loading__spinner--spinner i:nth-of-type(8) {
  transform: rotate(240deg);
  opacity: 0.5625;
}
.van-loading__spinner--spinner i:nth-of-type(9) {
  transform: rotate(270deg);
  opacity: 0.5;
}
.van-loading__spinner--spinner i:nth-of-type(10) {
  transform: rotate(300deg);
  opacity: 0.4375;
}
.van-loading__spinner--spinner i:nth-of-type(11) {
  transform: rotate(330deg);
  opacity: 0.375;
}
.van-loading__spinner--spinner i:nth-of-type(12) {
  transform: rotate(360deg);
  opacity: 0.3125;
}
.van-pull-refresh {
  overflow: hidden;
  user-select: none;
}
.van-pull-refresh__track {
  position: relative;
  height: 100%;
  transition-property: transform;
}
.van-pull-refresh__head {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.333rem;
  overflow: hidden;
  color: #969799;
  font-size: 0.373rem;
  line-height: 1.333rem;
  text-align: center;
  transform: translateY(-100%);
}
.van-number-keyboard {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding-bottom: 0.587rem;
  background-color: #f2f3f5;
  user-select: none;
}
.van-number-keyboard--with-title {
  border-radius: 0.533rem 0.533rem 0 0;
}
.van-number-keyboard__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  height: 0.907rem;
  padding-top: 0.16rem;
  color: #646566;
  font-size: 0.427rem;
}
.van-number-keyboard__title {
  display: inline-block;
  font-weight: normal;
}
.van-number-keyboard__title-left {
  position: absolute;
  left: 0;
}
.van-number-keyboard__body {
  display: flex;
  padding: 0.16rem 0 0 0.16rem;
}
.van-number-keyboard__keys {
  display: flex;
  flex: 3;
  flex-wrap: wrap;
}
.van-number-keyboard__close {
  position: absolute;
  right: 0;
  height: 100%;
  padding: 0 0.427rem;
  color: #576b95;
  font-size: 0.373rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.van-number-keyboard__close:active {
  opacity: 0.7;
}
.van-number-keyboard__sidebar {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.van-number-keyboard--unfit {
  padding-bottom: 0;
}
.van-key {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.28rem;
  font-size: 0.747rem;
  line-height: 1.5;
  background-color: #FFFFFF;
  border-radius: 0.213rem;
  cursor: pointer;
}
.van-key--large {
  position: absolute;
  top: 0;
  right: 0.16rem;
  bottom: 0.16rem;
  left: 0;
  height: auto;
}
.van-key--blue,
.van-key--delete {
  font-size: 0.427rem;
}
.van-key--active {
  background-color: #ebedf0;
}
.van-key--blue {
  color: #FFFFFF;
  background-color: #1DB278;
}
.van-key--blue.van-key--active {
  background-color: #16865a;
}
.van-key__wrapper {
  position: relative;
  flex: 1;
  flex-basis: 33%;
  box-sizing: border-box;
  padding: 0 0.16rem 0.16rem 0;
}
.van-key__wrapper--wider {
  flex-basis: 66%;
}
.van-key__delete-icon {
  width: 0.853rem;
  height: 0.587rem;
}
.van-key__collapse-icon {
  width: 0.8rem;
  height: 0.64rem;
}
.van-key__loading-icon {
  color: #FFFFFF;
}
.van-list__loading,
.van-list__finished-text,
.van-list__error-text {
  color: #969799;
  font-size: 0.373rem;
  line-height: 1.333rem;
  text-align: center;
}
.van-list__placeholder {
  height: 0;
  pointer-events: none;
}
.van-switch {
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  width: 2em;
  height: 1em;
  font-size: 0.8rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}
.van-switch__node {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  font-size: inherit;
  background-color: #FFFFFF;
  border-radius: 100%;
  box-shadow: 0 0.08rem 1px 0 rgba(0, 0, 0, 0.05), 0 0.053rem 0.053rem 0 rgba(0, 0, 0, 0.1), 0 0.08rem 0.08rem 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.3, 1.05, 0.4, 1.05);
}
.van-switch__loading {
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  line-height: 1;
}
.van-switch--on {
  background-color: #1DB278;
}
.van-switch--on .van-switch__node {
  transform: translateX(1em);
}
.van-switch--on .van-switch__loading {
  color: #1DB278;
}
.van-switch--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.van-switch--loading {
  cursor: default;
}
.van-switch-cell {
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
}
.van-switch-cell--large {
  padding-top: 0.293rem;
  padding-bottom: 0.293rem;
}
.van-switch-cell .van-switch {
  float: right;
}
.van-button {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: 1.173rem;
  margin: 0;
  padding: 0;
  font-size: 0.427rem;
  line-height: 1.2;
  text-align: center;
  border-radius: 0.053rem;
  cursor: pointer;
  transition: opacity 0.2s;
  -webkit-appearance: none;
}
.van-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #000;
  border: inherit;
  border-color: #000;
  border-radius: inherit;
  /* inherit parent's border radius */
  transform: translate(-50%, -50%);
  opacity: 0;
  content: ' ';
}
.van-button:active::before {
  opacity: 0.1;
}
.van-button--loading::before,
.van-button--disabled::before {
  display: none;
}
.van-button--default {
  color: #323233;
  background-color: #FFFFFF;
  border: 1px solid #ebedf0;
}
.van-button--primary {
  color: rgba(255, 255, 255, 0.9);
  background-color: #1DB278;
  border: 1px solid #1DB278;
}
.van-button--info {
  color: #FFFFFF;
  background-color: #1DB278;
  border: 1px solid #1DB278;
}
.van-button--danger {
  color: #FFFFFF;
  background-color: #ee0a24;
  border: 1px solid #ee0a24;
}
.van-button--warning {
  color: #FFFFFF;
  background-color: #ff976a;
  border: 1px solid #ff976a;
}
.van-button--plain {
  background-color: #FFFFFF;
}
.van-button--plain.van-button--primary {
  color: #1DB278;
}
.van-button--plain.van-button--info {
  color: #1DB278;
}
.van-button--plain.van-button--danger {
  color: #ee0a24;
}
.van-button--plain.van-button--warning {
  color: #ff976a;
}
.van-button--large {
  width: 100%;
  height: 1.333rem;
}
.van-button--normal {
  padding: 0 0.4rem;
  font-size: 0.373rem;
}
.van-button--small {
  height: 0.853rem;
  padding: 0 0.213rem;
  font-size: 0.32rem;
}
.van-button__loading {
  color: inherit;
  font-size: inherit;
}
.van-button--mini {
  height: 0.64rem;
  padding: 0 0.107rem;
  font-size: 0.267rem;
}
.van-button--mini + .van-button--mini {
  margin-left: 0.107rem;
}
.van-button--block {
  display: block;
  width: 100%;
}
.van-button--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.van-button--loading {
  cursor: default;
}
.van-button--round {
  border-radius: 26.64rem;
}
.van-button--square {
  border-radius: 0;
}
.van-button__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.van-button__content::before {
  content: ' ';
}
.van-button__icon {
  font-size: 1.2em;
  line-height: inherit;
}
.van-button__icon + .van-button__text,
.van-button__loading + .van-button__text,
.van-button__text + .van-button__icon,
.van-button__text + .van-button__loading {
  margin-left: 0.107rem;
}
.van-button--hairline {
  border-width: 0;
}
.van-button--hairline::after {
  border-color: inherit;
  border-radius: 0.107rem;
}
.van-button--hairline.van-button--round::after {
  border-radius: 26.64rem;
}
.van-button--hairline.van-button--square::after {
  border-radius: 0;
}
.van-submit-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: #FFFFFF;
  user-select: none;
}
.van-submit-bar__tip {
  padding: 0.213rem 0.32rem;
  color: #f56723;
  font-size: 0.32rem;
  line-height: 1.5;
  background-color: #fff7cc;
}
.van-submit-bar__tip-icon {
  min-width: 0.48rem;
  font-size: 0.32rem;
  vertical-align: middle;
}
.van-submit-bar__tip-text {
  vertical-align: middle;
}
.van-submit-bar__bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 1.333rem;
  padding: 0 0.427rem;
  font-size: 0.373rem;
}
.van-submit-bar__text {
  flex: 1;
  padding-right: 0.32rem;
  color: #323233;
  text-align: right;
}
.van-submit-bar__text span {
  display: inline-block;
}
.van-submit-bar__suffix-label {
  margin-left: 0.133rem;
  font-weight: 500;
}
.van-submit-bar__price {
  color: #ee0a24;
  font-weight: 500;
  font-size: 0.32rem;
}
.van-submit-bar__price--integer {
  font-size: 0.533rem;
  font-family: Avenir-Heavy, PingFang SC, Helvetica Neue, Arial, sans-serif;
}
.van-submit-bar__button {
  width: 2.933rem;
  height: 1.067rem;
  font-weight: 500;
  border: none;
}
.van-submit-bar__button--danger {
  background: linear-gradient(to right, #ff6034, #ee0a24);
}
.van-submit-bar--unfit {
  padding-bottom: 0;
}
.van-goods-action-button {
  flex: 1;
  height: 1.067rem;
  font-weight: 500;
  font-size: 0.373rem;
  border: none;
  border-radius: 0;
}
.van-goods-action-button--first {
  margin-left: 0.133rem;
  border-top-left-radius: 26.64rem;
  border-bottom-left-radius: 26.64rem;
}
.van-goods-action-button--last {
  margin-right: 0.133rem;
  border-top-right-radius: 26.64rem;
  border-bottom-right-radius: 26.64rem;
}
.van-goods-action-button--warning {
  background: linear-gradient(to right, #ffd01e, #ff8917);
}
.van-goods-action-button--danger {
  background: linear-gradient(to right, #ff6034, #ee0a24);
}
@media (max-width: 321px) {
  .van-goods-action-button {
    font-size: 0.347rem;
  }
}
.van-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: content-box;
  width: 2.347rem;
  max-width: 70%;
  min-height: 2.347rem;
  padding: 0.427rem;
  color: #FFFFFF;
  font-size: 0.373rem;
  line-height: 0.533rem;
  white-space: pre-wrap;
  text-align: center;
  word-break: break-all;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0.213rem;
  transform: translate3d(-50%, -50%, 0);
}
.van-toast--unclickable {
  overflow: hidden;
}
.van-toast--unclickable * {
  pointer-events: none;
}
.van-toast--text,
.van-toast--html {
  width: fit-content;
  min-width: 2.56rem;
  min-height: 0;
  padding: 0.213rem 0.32rem;
}
.van-toast--text .van-toast__text,
.van-toast--html .van-toast__text {
  margin-top: 0;
}
.van-toast--top {
  top: 20%;
}
.van-toast--bottom {
  top: auto;
  bottom: 20%;
}
.van-toast__icon {
  font-size: 0.96rem;
}
.van-toast__loading {
  padding: 0.107rem;
  color: #FFFFFF;
}
.van-toast__text {
  margin-top: 0.213rem;
}
.van-calendar {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FFFFFF;
}
.van-calendar__popup.van-popup--top,
.van-calendar__popup.van-popup--bottom {
  height: 80%;
}
.van-calendar__popup.van-popup--left,
.van-calendar__popup.van-popup--right {
  height: 100%;
}
.van-calendar__popup .van-popup__close-icon {
  top: 0.293rem;
}
.van-calendar__header {
  flex-shrink: 0;
  box-shadow: 0 0.053rem 0.267rem rgba(125, 126, 128, 0.16);
}
.van-calendar__month-title,
.van-calendar__header-title,
.van-calendar__header-subtitle {
  height: 1.173rem;
  font-weight: 500;
  line-height: 1.173rem;
  text-align: center;
}
.van-calendar__header-title {
  font-size: 0.427rem;
}
.van-calendar__header-subtitle {
  font-size: 0.373rem;
}
.van-calendar__month-title {
  font-size: 0.373rem;
}
.van-calendar__weekdays {
  display: flex;
}
.van-calendar__weekday {
  flex: 1;
  font-size: 0.32rem;
  line-height: 0.8rem;
  text-align: center;
}
.van-calendar__body {
  flex: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.van-calendar__days {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  user-select: none;
}
.van-calendar__month-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  color: rgba(242, 243, 245, 0.8);
  font-size: 4.267rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.van-calendar__day,
.van-calendar__selected-day {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.van-calendar__day {
  position: relative;
  width: 14.285%;
  height: 1.707rem;
  font-size: 0.427rem;
  cursor: pointer;
}
.van-calendar__day--end,
.van-calendar__day--start,
.van-calendar__day--start-end,
.van-calendar__day--multiple-middle,
.van-calendar__day--multiple-selected {
  color: #FFFFFF;
  background-color: #ee0a24;
}
.van-calendar__day--start {
  border-radius: 0.107rem 0 0 0.107rem;
}
.van-calendar__day--end {
  border-radius: 0 0.107rem 0.107rem 0;
}
.van-calendar__day--start-end,
.van-calendar__day--multiple-selected {
  border-radius: 0.107rem;
}
.van-calendar__day--middle {
  color: #ee0a24;
}
.van-calendar__day--middle::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: currentColor;
  opacity: 0.1;
  content: '';
}
.van-calendar__day--disabled {
  color: #c8c9cc;
  cursor: default;
}
.van-calendar__top-info,
.van-calendar__bottom-info {
  position: absolute;
  right: 0;
  left: 0;
  font-size: 0.267rem;
  line-height: 0.373rem;
}
@media (max-width: 350px) {
  .van-calendar__top-info,
  .van-calendar__bottom-info {
    font-size: 0.24rem;
  }
}
.van-calendar__top-info {
  top: 0.16rem;
}
.van-calendar__bottom-info {
  bottom: 0.16rem;
}
.van-calendar__selected-day {
  width: 1.44rem;
  height: 1.44rem;
  color: #FFFFFF;
  background-color: #ee0a24;
  border-radius: 0.107rem;
}
.van-calendar__footer {
  flex-shrink: 0;
  padding: 0 0.427rem;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.van-calendar__footer--unfit {
  padding-bottom: 0;
}
.van-calendar__confirm {
  height: 0.96rem;
  margin: 0.187rem 0;
}
.van-picker {
  position: relative;
  background-color: #FFFFFF;
  user-select: none;
}
.van-picker__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.173rem;
}
.van-picker__cancel,
.van-picker__confirm {
  height: 100%;
  padding: 0 0.427rem;
  font-size: 0.373rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.van-picker__cancel:active,
.van-picker__confirm:active {
  opacity: 0.7;
}
.van-picker__confirm {
  color: #1DB278;
}
.van-picker__cancel {
  color: #969799;
}
.van-picker__title {
  max-width: 50%;
  font-weight: 500;
  font-size: 0.427rem;
  line-height: 0.533rem;
  text-align: center;
}
.van-picker__columns {
  position: relative;
  display: flex;
  cursor: grab;
}
.van-picker__loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1DB278;
  background-color: rgba(255, 255, 255, 0.9);
}
.van-picker__frame {
  position: absolute;
  top: 50%;
  right: 0.427rem;
  left: 0.427rem;
  z-index: 2;
  transform: translateY(-50%);
  pointer-events: none;
}
.van-picker__mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.4)), linear-gradient(0deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.4));
  background-repeat: no-repeat;
  background-position: top, bottom;
  transform: translateZ(0);
  pointer-events: none;
}
.van-picker-column {
  flex: 1;
  overflow: hidden;
  font-size: 0.427rem;
}
.van-picker-column__wrapper {
  transition-timing-function: cubic-bezier(0.23, 1, 0.68, 1);
}
.van-picker-column__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.107rem;
  color: #000;
}
.van-picker-column__item--disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.van-action-sheet {
  display: flex;
  flex-direction: column;
  max-height: 80%;
  overflow: hidden;
  color: #323233;
}
.van-action-sheet__content {
  flex: 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.van-action-sheet__item,
.van-action-sheet__cancel {
  display: block;
  width: 100%;
  padding: 0.373rem 0.427rem;
  font-size: 0.427rem;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
}
.van-action-sheet__item:active,
.van-action-sheet__cancel:active {
  background-color: #f2f3f5;
}
.van-action-sheet__item {
  line-height: 0.587rem;
}
.van-action-sheet__item--loading,
.van-action-sheet__item--disabled {
  color: #c8c9cc;
}
.van-action-sheet__item--loading:active,
.van-action-sheet__item--disabled:active {
  background-color: #FFFFFF;
}
.van-action-sheet__item--disabled {
  cursor: not-allowed;
}
.van-action-sheet__item--loading {
  cursor: default;
}
.van-action-sheet__cancel {
  flex-shrink: 0;
  box-sizing: border-box;
  color: #646566;
}
.van-action-sheet__subname {
  margin-top: 0.213rem;
  color: #969799;
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.van-action-sheet__gap {
  display: block;
  height: 0.213rem;
  background-color: #f7f8fa;
}
.van-action-sheet__header {
  flex-shrink: 0;
  font-weight: 500;
  font-size: 0.427rem;
  line-height: 1.28rem;
  text-align: center;
}
.van-action-sheet__description {
  position: relative;
  flex-shrink: 0;
  padding: 0.533rem 0.427rem;
  color: #969799;
  font-size: 0.373rem;
  line-height: 0.533rem;
  text-align: center;
}
.van-action-sheet__description::after {
  position: absolute;
  box-sizing: border-box;
  content: ' ';
  pointer-events: none;
  right: 0.427rem;
  bottom: 0;
  left: 0.427rem;
  border-bottom: 1px solid #ebedf0;
  transform: scaleY(0.5);
}
.van-action-sheet__loading-icon .van-loading__spinner {
  width: 0.587rem;
  height: 0.587rem;
}
.van-action-sheet__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 0 0.427rem;
  color: #c8c9cc;
  font-size: 0.587rem;
  line-height: inherit;
}
.van-action-sheet__close:active {
  color: #969799;
}
.van-goods-action {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  box-sizing: content-box;
  height: 1.333rem;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: #FFFFFF;
}
.van-goods-action--unfit {
  padding-bottom: 0;
}
.van-dialog {
  position: fixed;
  top: 45%;
  left: 50%;
  width: 8.533rem;
  overflow: hidden;
  font-size: 0.427rem;
  background-color: #FFFFFF;
  border-radius: 0.427rem;
  transform: translate3d(-50%, -50%, 0);
  backface-visibility: hidden;
  transition: 0.3s;
  transition-property: transform, opacity;
}
@media (max-width: 321px) {
  .van-dialog {
    width: 90%;
  }
}
.van-dialog__header {
  padding-top: 0.693rem;
  font-weight: 500;
  line-height: 0.64rem;
  text-align: center;
}
.van-dialog__header--isolated {
  padding: 0.64rem 0;
}
.van-dialog__content--isolated {
  display: flex;
  align-items: center;
  min-height: 2.773rem;
}
.van-dialog__message {
  flex: 1;
  max-height: 60vh;
  padding: 0.693rem 0.64rem;
  overflow-y: auto;
  font-size: 0.373rem;
  line-height: 0.533rem;
  white-space: pre-wrap;
  text-align: center;
  word-wrap: break-word;
  -webkit-overflow-scrolling: touch;
}
.van-dialog__message--has-title {
  padding-top: 0.213rem;
  color: #646566;
}
.van-dialog__message--left {
  text-align: left;
}
.van-dialog__message--right {
  text-align: right;
}
.van-dialog__footer {
  display: flex;
  overflow: hidden;
  user-select: none;
}
.van-dialog__confirm,
.van-dialog__cancel {
  flex: 1;
  height: 1.28rem;
  margin: 0;
  border: 0;
}
.van-dialog__confirm,
.van-dialog__confirm:active {
  color: #1DB278;
}
.van-dialog--round-button .van-dialog__footer {
  position: relative;
  height: auto;
  padding: 0.213rem 0.64rem 0.427rem;
}
.van-dialog--round-button .van-dialog__message {
  padding-bottom: 0.427rem;
  color: #323233;
}
.van-dialog--round-button .van-dialog__confirm,
.van-dialog--round-button .van-dialog__cancel {
  height: 0.96rem;
}
.van-dialog--round-button .van-dialog__confirm {
  color: #FFFFFF;
}
.van-dialog-bounce-enter {
  transform: translate3d(-50%, -50%, 0) scale(0.7);
  opacity: 0;
}
.van-dialog-bounce-leave-active {
  transform: translate3d(-50%, -50%, 0) scale(0.9);
  opacity: 0;
}
.van-contact-edit {
  padding: 0.427rem;
}
.van-contact-edit__fields {
  overflow: hidden;
  border-radius: 0.107rem;
}
.van-contact-edit__fields .van-field__label {
  width: 4.1em;
}
.van-contact-edit__switch-cell {
  margin-top: 0.267rem;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
  border-radius: 0.107rem;
}
.van-contact-edit__buttons {
  padding: 0.853rem 0;
}
.van-contact-edit .van-button {
  margin-bottom: 0.32rem;
  font-size: 0.427rem;
}
.van-address-edit {
  padding: 0.32rem;
}
.van-address-edit__fields {
  overflow: hidden;
  border-radius: 0.213rem;
}
.van-address-edit__fields .van-field__label {
  width: 4.1em;
}
.van-address-edit__default {
  margin-top: 0.32rem;
  overflow: hidden;
  border-radius: 0.213rem;
}
.van-address-edit__buttons {
  padding: 0.853rem 0.107rem;
}
.van-address-edit__buttons .van-button {
  margin-bottom: 0.32rem;
}
.van-address-edit-detail {
  padding: 0;
}
.van-address-edit-detail__search-item {
  background-color: #f2f3f5;
}
.van-address-edit-detail__keyword {
  color: #ee0a24;
}
.van-address-edit-detail__finish {
  color: #1DB278;
  font-size: 0.32rem;
}
.van-radio-group--horizontal {
  display: flex;
  flex-wrap: wrap;
}
.van-contact-list {
  box-sizing: border-box;
  height: 100%;
  padding-bottom: 2.133rem;
}
.van-contact-list__item {
  padding: 0.427rem;
}
.van-contact-list__item-value {
  display: flex;
  align-items: center;
  padding-right: 0.853rem;
  padding-left: 0.213rem;
}
.van-contact-list__item-tag {
  flex: none;
  margin-left: 0.213rem;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.4em;
}
.van-contact-list__group {
  box-sizing: border-box;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.van-contact-list__edit {
  font-size: 0.427rem;
}
.van-contact-list__bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  padding: 0 0.427rem;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: #FFFFFF;
}
.van-contact-list__add {
  height: 1.067rem;
  margin: 0.133rem 0;
}
.van-address-list {
  box-sizing: border-box;
  height: 100%;
  padding: 0.32rem 0.32rem 2.133rem;
}
.van-address-list__bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
  width: 100%;
  padding: 0 0.427rem;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: #FFFFFF;
}
.van-address-list__add {
  height: 1.067rem;
  margin: 0.133rem 0;
}
.van-address-list__disabled-text {
  padding: 0.533rem 0 0.427rem;
  color: #969799;
  font-size: 0.373rem;
  line-height: 0.533rem;
}
.van-address-item {
  padding: 0.32rem;
  background-color: #FFFFFF;
  border-radius: 0.213rem;
}
.van-address-item:not(:last-child) {
  margin-bottom: 0.32rem;
}
.van-address-item__value {
  padding-right: 1.173rem;
}
.van-address-item__name {
  display: flex;
  align-items: center;
  margin-bottom: 0.213rem;
  font-size: 0.427rem;
  line-height: 0.587rem;
}
.van-address-item__tag {
  flex: none;
  margin-left: 0.213rem;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.4em;
}
.van-address-item__address {
  color: #323233;
  font-size: 0.347rem;
  line-height: 0.48rem;
}
.van-address-item--disabled .van-address-item__name,
.van-address-item--disabled .van-address-item__address {
  color: #c8c9cc;
}
.van-address-item__edit {
  position: absolute;
  top: 50%;
  right: 0.427rem;
  color: #969799;
  font-size: 0.533rem;
  transform: translate(0, -50%);
}
.van-address-item .van-cell {
  padding: 0;
}
.van-address-item .van-radio__label {
  margin-left: 0.32rem;
}
.van-address-item .van-radio__icon--checked .van-icon {
  background-color: #ee0a24;
  border-color: #ee0a24;
}
.van-badge {
  display: inline-block;
  box-sizing: border-box;
  min-width: 0.427rem;
  padding: 0 0.08rem;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.32rem;
  font-family: -apple-system-font, Helvetica Neue, Arial, sans-serif;
  line-height: 1.2;
  text-align: center;
  background-color: #ee0a24;
  border: 1px solid #FFFFFF;
  border-radius: 26.64rem;
}
.van-badge--fixed {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transform-origin: 100%;
}
.van-badge--dot {
  width: 0.213rem;
  min-width: 0;
  height: 0.213rem;
  background-color: #ee0a24;
  border-radius: 100%;
}
.van-badge__wrapper {
  position: relative;
  display: inline-block;
}
.van-tab__pane,
.van-tab__pane-wrapper {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
}
.van-tab__pane-wrapper--inactive {
  height: 0;
  overflow: visible;
}
.van-sticky--fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}
.van-tab {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 0.107rem;
  color: #13161B;
  font-size: 0.427rem;
  line-height: 0.533rem;
  cursor: pointer;
}
.van-tab--active {
  color: #1DB278;
  font-weight: 500;
}
.van-tab--disabled {
  color: #c8c9cc;
  cursor: not-allowed;
}
.van-tab__text--ellipsis {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.van-tab__text-wrapper {
  position: relative;
}
.van-tabs {
  position: relative;
}
.van-tabs__wrap {
  overflow: hidden;
}
.van-tabs__wrap--page-top {
  position: fixed;
}
.van-tabs__wrap--content-bottom {
  top: auto;
  bottom: 0;
}
.van-tabs__wrap--scrollable .van-tab {
  flex: 1 0 auto;
  padding: 0 0.32rem;
}
.van-tabs__wrap--scrollable .van-tabs__nav {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.van-tabs__wrap--scrollable .van-tabs__nav::-webkit-scrollbar {
  display: none;
}
.van-tabs__nav {
  position: relative;
  display: flex;
  background-color: #FFFFFF;
  user-select: none;
}
.van-tabs__nav--line {
  box-sizing: content-box;
  height: 100%;
  padding-bottom: 0.4rem;
  /* 15px padding to hide scrollbar in mobile safari */
}
.van-tabs__nav--line.van-tabs__nav--complete {
  padding-right: 0.213rem;
  padding-left: 0.213rem;
}
.van-tabs__nav--card {
  box-sizing: border-box;
  height: 0.8rem;
  margin: 0 0.427rem;
  border: 1px solid #1DB278;
  border-radius: 0.053rem;
}
.van-tabs__nav--card .van-tab {
  color: #1DB278;
  border-right: 1px solid #1DB278;
}
.van-tabs__nav--card .van-tab:last-child {
  border-right: none;
}
.van-tabs__nav--card .van-tab.van-tab--active {
  color: #FFFFFF;
  background-color: #1DB278;
}
.van-tabs__nav--card .van-tab--disabled {
  color: #c8c9cc;
}
.van-tabs__line {
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  z-index: 1;
  width: 1.067rem;
  height: 0.08rem;
  background-color: #1DB278;
  border-radius: 0.08rem;
}
.van-tabs__track {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  will-change: left;
}
.van-tabs__content--animated {
  overflow: hidden;
}
.van-tabs--line .van-tabs__wrap {
  height: 1.173rem;
}
.van-tabs--card > .van-tabs__wrap {
  height: 0.8rem;
}
.van-coupon-list {
  position: relative;
  height: 100%;
  background-color: #f7f8fa;
}
.van-coupon-list__field {
  padding: 0.133rem 0 0.133rem 0.427rem;
}
.van-coupon-list__field .van-field__body {
  height: 0.907rem;
  padding-left: 0.32rem;
  line-height: 0.907rem;
  background: #f7f8fa;
  border-radius: 0.453rem;
}
.van-coupon-list__field .van-field__body::placeholder {
  color: #c8c9cc;
}
.van-coupon-list__field .van-field__clear {
  margin-right: 0;
}
.van-coupon-list__exchange-bar {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
}
.van-coupon-list__exchange {
  flex: none;
  height: 0.853rem;
  font-size: 0.427rem;
  line-height: 0.8rem;
  border: 0;
}
.van-coupon-list .van-tabs__wrap {
  box-shadow: 0 0.16rem 0.32rem -0.32rem #969799;
}
.van-coupon-list__list {
  box-sizing: border-box;
  padding: 0.427rem 0 0.64rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.van-coupon-list__list--with-bottom {
  padding-bottom: 1.76rem;
}
.van-coupon-list__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
  width: 100%;
  padding: 0.133rem 0.427rem;
  font-weight: 500;
  background-color: #FFFFFF;
}
.van-coupon-list__close {
  height: 1.067rem;
}
.van-coupon-list__empty {
  padding-top: 1.6rem;
  text-align: center;
}
.van-coupon-list__empty p {
  margin: 0.427rem 0;
  color: #60656E;
  font-size: 0.373rem;
  line-height: 0.533rem;
}
.van-coupon-list__empty img {
  width: 5.333rem;
  height: 5.333rem;
}
.van-cascader__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.28rem;
  padding: 0 0.427rem;
}
.van-cascader__title {
  font-weight: 500;
  font-size: 0.427rem;
  line-height: 0.533rem;
}
.van-cascader__close-icon {
  color: #c8c9cc;
  font-size: 0.587rem;
}
.van-cascader__close-icon:active {
  color: #969799;
}
.van-cascader__tabs .van-tab {
  flex: none;
  padding: 0 0.267rem;
}
.van-cascader__tabs.van-tabs--line .van-tabs__wrap {
  height: 1.28rem;
}
.van-cascader__tabs .van-tabs__nav--complete {
  padding-right: 0.16rem;
  padding-left: 0.16rem;
}
.van-cascader__tab {
  color: #323233;
  font-weight: 500;
}
.van-cascader__tab--unselected {
  color: #969799;
  font-weight: normal;
}
.van-cascader__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.267rem 0.427rem;
  font-size: 0.373rem;
  line-height: 0.533rem;
}
.van-cascader__option:active {
  background-color: #f2f3f5;
}
.van-cascader__option--selected {
  color: #ee0a24;
  font-weight: 500;
}
.van-cascader__selected-icon {
  font-size: 0.48rem;
}
.van-cascader__options {
  box-sizing: border-box;
  height: 10.24rem;
  padding-top: 0.16rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.van-cell-group {
  background-color: #FFFFFF;
}
.van-cell-group--inset {
  margin: 0 0.427rem;
  overflow: hidden;
  border-radius: 0.213rem;
}
.van-cell-group__title {
  padding: 0.427rem 0.427rem 0.213rem;
  color: #969799;
  font-size: 0.373rem;
  line-height: 0.427rem;
}
.van-cell-group__title--inset {
  padding: 0.427rem 0.427rem 0.213rem 0.853rem;
}
.van-panel {
  background: #FFFFFF;
}
.van-panel__header-value {
  color: #ee0a24;
}
.van-panel__footer {
  padding: 0.213rem 0.427rem;
}
.van-checkbox-group--horizontal {
  display: flex;
  flex-wrap: wrap;
}
.van-circle {
  position: relative;
  display: inline-block;
  width: 2.667rem;
  height: 2.667rem;
  text-align: center;
}
.van-circle svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.van-circle__layer {
  stroke: #FFFFFF;
}
.van-circle__hover {
  fill: none;
  stroke: #1DB278;
  stroke-linecap: round;
}
.van-circle__text {
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0 0.107rem;
  color: #323233;
  font-weight: 500;
  font-size: 0.373rem;
  line-height: 0.533rem;
  transform: translateY(-50%);
}
.van-col {
  float: left;
  box-sizing: border-box;
  min-height: 1px;
}
.van-col--1 {
  width: 4.16666667%;
}
.van-col--offset-1 {
  margin-left: 4.16666667%;
}
.van-col--2 {
  width: 8.33333333%;
}
.van-col--offset-2 {
  margin-left: 8.33333333%;
}
.van-col--3 {
  width: 12.5%;
}
.van-col--offset-3 {
  margin-left: 12.5%;
}
.van-col--4 {
  width: 16.66666667%;
}
.van-col--offset-4 {
  margin-left: 16.66666667%;
}
.van-col--5 {
  width: 20.83333333%;
}
.van-col--offset-5 {
  margin-left: 20.83333333%;
}
.van-col--6 {
  width: 25%;
}
.van-col--offset-6 {
  margin-left: 25%;
}
.van-col--7 {
  width: 29.16666667%;
}
.van-col--offset-7 {
  margin-left: 29.16666667%;
}
.van-col--8 {
  width: 33.33333333%;
}
.van-col--offset-8 {
  margin-left: 33.33333333%;
}
.van-col--9 {
  width: 37.5%;
}
.van-col--offset-9 {
  margin-left: 37.5%;
}
.van-col--10 {
  width: 41.66666667%;
}
.van-col--offset-10 {
  margin-left: 41.66666667%;
}
.van-col--11 {
  width: 45.83333333%;
}
.van-col--offset-11 {
  margin-left: 45.83333333%;
}
.van-col--12 {
  width: 50%;
}
.van-col--offset-12 {
  margin-left: 50%;
}
.van-col--13 {
  width: 54.16666667%;
}
.van-col--offset-13 {
  margin-left: 54.16666667%;
}
.van-col--14 {
  width: 58.33333333%;
}
.van-col--offset-14 {
  margin-left: 58.33333333%;
}
.van-col--15 {
  width: 62.5%;
}
.van-col--offset-15 {
  margin-left: 62.5%;
}
.van-col--16 {
  width: 66.66666667%;
}
.van-col--offset-16 {
  margin-left: 66.66666667%;
}
.van-col--17 {
  width: 70.83333333%;
}
.van-col--offset-17 {
  margin-left: 70.83333333%;
}
.van-col--18 {
  width: 75%;
}
.van-col--offset-18 {
  margin-left: 75%;
}
.van-col--19 {
  width: 79.16666667%;
}
.van-col--offset-19 {
  margin-left: 79.16666667%;
}
.van-col--20 {
  width: 83.33333333%;
}
.van-col--offset-20 {
  margin-left: 83.33333333%;
}
.van-col--21 {
  width: 87.5%;
}
.van-col--offset-21 {
  margin-left: 87.5%;
}
.van-col--22 {
  width: 91.66666667%;
}
.van-col--offset-22 {
  margin-left: 91.66666667%;
}
.van-col--23 {
  width: 95.83333333%;
}
.van-col--offset-23 {
  margin-left: 95.83333333%;
}
.van-col--24 {
  width: 100%;
}
.van-col--offset-24 {
  margin-left: 100%;
}
.van-count-down {
  color: #323233;
  font-size: 0.373rem;
  line-height: 0.533rem;
}
.van-divider {
  display: flex;
  align-items: center;
  margin: 0.427rem 0;
  color: #969799;
  font-size: 0.373rem;
  line-height: 0.64rem;
  border-color: #ebedf0;
  border-style: solid;
  border-width: 0;
}
.van-divider::before,
.van-divider::after {
  display: block;
  flex: 1;
  box-sizing: border-box;
  height: 1px;
  border-color: inherit;
  border-style: inherit;
  border-width: 1px 0 0;
}
.van-divider::before {
  content: '';
}
.van-divider--hairline::before,
.van-divider--hairline::after {
  transform: scaleY(0.5);
}
.van-divider--dashed {
  border-style: dashed;
}
.van-divider--content-center::before,
.van-divider--content-left::before,
.van-divider--content-right::before {
  margin-right: 0.427rem;
}
.van-divider--content-center::after,
.van-divider--content-left::after,
.van-divider--content-right::after {
  margin-left: 0.427rem;
  content: '';
}
.van-divider--content-left::before {
  max-width: 10%;
}
.van-divider--content-right::after {
  max-width: 10%;
}
.van-dropdown-menu {
  user-select: none;
}
.van-dropdown-menu__bar {
  position: relative;
  display: flex;
  height: 1.28rem;
  background-color: #FFFFFF;
  box-shadow: 0 0.053rem 0.32rem rgba(100, 101, 102, 0.12);
}
.van-dropdown-menu__bar--opened {
  z-index: 11;
}
.van-dropdown-menu__item {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-width: 0;
  cursor: pointer;
}
.van-dropdown-menu__item:active {
  opacity: 0.7;
}
.van-dropdown-menu__item--disabled:active {
  opacity: 1;
}
.van-dropdown-menu__item--disabled .van-dropdown-menu__title {
  color: #969799;
}
.van-dropdown-menu__title {
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0 0.213rem;
  color: #323233;
  font-size: 0.4rem;
  line-height: 0.587rem;
}
.van-dropdown-menu__title::after {
  position: absolute;
  top: 50%;
  right: -0.107rem;
  margin-top: -0.133rem;
  border: 0.08rem solid;
  border-color: transparent transparent #dcdee0 #dcdee0;
  transform: rotate(-45deg);
  opacity: 0.8;
  content: '';
}
.van-dropdown-menu__title--active {
  color: #1DB278;
}
.van-dropdown-menu__title--active::after {
  border-color: transparent transparent currentColor currentColor;
}
.van-dropdown-menu__title--down::after {
  margin-top: -1px;
  transform: rotate(135deg);
}
.van-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.853rem 0;
}
.van-empty__image {
  width: 4.267rem;
  height: 4.267rem;
}
.van-empty__image img {
  width: 100%;
  height: 100%;
}
.van-empty__description {
  margin-top: 0.427rem;
  padding: 0 1.6rem;
  color: #8D949F;
  font-size: 0.373rem;
  line-height: 0.507rem;
}
.van-empty__bottom {
  margin-top: 0.373rem;
}
.van-grid {
  display: flex;
  flex-wrap: wrap;
}
.van-swipe {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  cursor: grab;
  user-select: none;
}
.van-swipe__track {
  display: flex;
  height: 100%;
}
.van-swipe__track--vertical {
  flex-direction: column;
}
.van-swipe__indicators {
  position: absolute;
  bottom: 0.32rem;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
}
.van-swipe__indicators--vertical {
  top: 50%;
  bottom: auto;
  left: 0.32rem;
  flex-direction: column;
  transform: translateY(-50%);
}
.van-swipe__indicators--vertical .van-swipe__indicator:not(:last-child) {
  margin-bottom: 0.16rem;
}
.van-swipe__indicator {
  width: 0.16rem;
  height: 0.16rem;
  background-color: #ebedf0;
  border-radius: 100%;
  opacity: 0.3;
  transition: opacity 0.2s, background-color 0.2s;
}
.van-swipe__indicator:not(:last-child) {
  margin-right: 0.16rem;
}
.van-swipe__indicator--active {
  background-color: #1DB278;
  opacity: 1;
}
.van-swipe-item {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.van-image-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.van-image-preview__swipe {
  height: 100%;
}
.van-image-preview__swipe-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.van-image-preview__cover {
  position: absolute;
  top: 0;
  left: 0;
}
.van-image-preview__image {
  width: 100%;
  transition-property: transform;
}
.van-image-preview__image--vertical {
  width: auto;
  height: 100%;
}
.van-image-preview__image img {
  -webkit-user-drag: none;
}
.van-image-preview__image .van-image__error {
  top: 30%;
  height: 40%;
}
.van-image-preview__image .van-image__error-icon {
  font-size: 0.96rem;
}
.van-image-preview__image .van-image__loading {
  background-color: transparent;
}
.van-image-preview__index {
  position: absolute;
  top: 0.427rem;
  left: 50%;
  color: #FFFFFF;
  font-size: 0.373rem;
  line-height: 0.533rem;
  text-shadow: 0 1px 1px #323233;
  transform: translate(-50%, 0);
}
.van-image-preview__overlay {
  background-color: #13161B;
}
.van-image-preview__close-icon {
  position: absolute;
  z-index: 1;
  color: #c8c9cc;
  font-size: 0.587rem;
  cursor: pointer;
}
.van-image-preview__close-icon:active {
  color: #969799;
}
.van-image-preview__close-icon--top-left {
  top: 0.427rem;
  left: 0.427rem;
}
.van-image-preview__close-icon--top-right {
  top: 0.427rem;
  right: 0.427rem;
}
.van-image-preview__close-icon--bottom-left {
  bottom: 0.427rem;
  left: 0.427rem;
}
.van-image-preview__close-icon--bottom-right {
  right: 0.427rem;
  bottom: 0.427rem;
}
.van-uploader {
  position: relative;
  display: inline-block;
}
.van-uploader__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.van-uploader__wrapper--disabled {
  opacity: 0.5;
}
.van-uploader__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
}
.van-uploader__input-wrapper {
  position: relative;
}
.van-uploader__input:disabled {
  cursor: not-allowed;
}
.van-uploader__upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2.133rem;
  height: 2.133rem;
  margin: 0 0.213rem 0.213rem 0;
  background-color: #f7f8fa;
}
.van-uploader__upload:active {
  background-color: #f2f3f5;
}
.van-uploader__upload--readonly:active {
  background-color: #f7f8fa;
}
.van-uploader__upload-icon {
  color: #dcdee0;
  font-size: 0.64rem;
}
.van-uploader__upload-text {
  margin-top: 0.213rem;
  color: #969799;
  font-size: 0.32rem;
}
.van-uploader__preview {
  position: relative;
  margin: 0 0.213rem 0.213rem 0;
  cursor: pointer;
}
.van-uploader__preview-image {
  display: block;
  width: 2.133rem;
  height: 2.133rem;
  overflow: hidden;
}
.van-uploader__preview-delete {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.373rem;
  height: 0.373rem;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0 0 0 0.32rem;
}
.van-uploader__preview-delete-icon {
  position: absolute;
  top: -0.053rem;
  right: -0.053rem;
  color: #fff;
  color: #FFFFFF;
  font-size: 0.427rem;
  transform: scale(0.5);
}
.van-uploader__preview-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.van-uploader__mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background-color: rgba(50, 50, 51, 0.88);
}
.van-uploader__mask-icon {
  font-size: 0.587rem;
}
.van-uploader__mask-message {
  margin-top: 0.16rem;
  padding: 0 0.107rem;
  font-size: 0.32rem;
  line-height: 0.373rem;
}
.van-uploader__loading {
  width: 0.587rem;
  height: 0.587rem;
  color: #FFFFFF;
}
.van-uploader__file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.133rem;
  height: 2.133rem;
  background-color: #f7f8fa;
}
.van-uploader__file-icon {
  color: #646566;
  font-size: 0.533rem;
}
.van-uploader__file-name {
  box-sizing: border-box;
  width: 100%;
  margin-top: 0.213rem;
  padding: 0 0.107rem;
  color: #646566;
  font-size: 0.32rem;
  text-align: center;
}
.van-index-anchor {
  z-index: 1;
  box-sizing: border-box;
  padding: 0 0.427rem;
  color: #323233;
  font-weight: 500;
  font-size: 0.373rem;
  line-height: 0.853rem;
  background-color: transparent;
}
.van-index-anchor--sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  color: #ee0a24;
  background-color: #FFFFFF;
}
.van-index-bar__sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
}
.van-index-bar__index {
  padding: 0 0.213rem 0 0.427rem;
  font-weight: 500;
  font-size: 0.267rem;
  line-height: 0.373rem;
}
.van-index-bar__index--active {
  color: #ee0a24;
}
.van-pagination {
  display: flex;
  font-size: 0.373rem;
}
.van-pagination__item,
.van-pagination__page-desc {
  display: flex;
  align-items: center;
  justify-content: center;
}
.van-pagination__item {
  flex: 1;
  box-sizing: border-box;
  min-width: 0.96rem;
  height: 1.067rem;
  color: #1DB278;
  background-color: #FFFFFF;
  cursor: pointer;
  user-select: none;
}
.van-pagination__item:active {
  color: #FFFFFF;
  background-color: #1DB278;
}
.van-pagination__item::after {
  border-width: 1px 0 1px 1px;
}
.van-pagination__item:last-child::after {
  border-right-width: 1px;
}
.van-pagination__item--active {
  color: #FFFFFF;
  background-color: #1DB278;
}
.van-pagination__prev,
.van-pagination__next {
  padding: 0 0.107rem;
  cursor: pointer;
}
.van-pagination__item--disabled,
.van-pagination__item--disabled:active {
  color: #646566;
  background-color: #f7f8fa;
  cursor: not-allowed;
  opacity: 0.5;
}
.van-pagination__page {
  flex-grow: 0;
}
.van-pagination__page-desc {
  flex: 1;
  height: 1.067rem;
  color: #646566;
}
.van-pagination--simple .van-pagination__prev::after,
.van-pagination--simple .van-pagination__next::after {
  border-width: 1px;
}
.van-password-input {
  position: relative;
  margin: 0 0.427rem;
  user-select: none;
}
.van-password-input__info,
.van-password-input__error-info {
  margin-top: 0.427rem;
  font-size: 0.373rem;
  text-align: center;
}
.van-password-input__info {
  color: #969799;
}
.van-password-input__error-info {
  color: #ee0a24;
}
.van-password-input__security {
  display: flex;
  width: 100%;
  height: 1.333rem;
  cursor: pointer;
}
.van-password-input__security::after {
  border-radius: 0.16rem;
}
.van-password-input__security li {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 0.533rem;
  line-height: 1.2;
  background-color: #FFFFFF;
}
.van-password-input__security i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.267rem;
  height: 0.267rem;
  background-color: #000;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  visibility: hidden;
}
.van-password-input__cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 40%;
  background-color: #323233;
  transform: translate(-50%, -50%);
  animation: 1s van-cursor-flicker infinite;
}
@keyframes van-cursor-flicker {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.van-progress {
  position: relative;
  height: 0.107rem;
  background: #ebedf0;
  border-radius: 0.107rem;
}
.van-progress__portion {
  position: absolute;
  left: 0;
  height: 100%;
  background: #1DB278;
  border-radius: inherit;
}
.van-progress__pivot {
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  min-width: 3.6em;
  padding: 0 0.133rem;
  color: #FFFFFF;
  font-size: 0.267rem;
  line-height: 1.6;
  text-align: center;
  word-break: keep-all;
  background-color: #1DB278;
  border-radius: 1em;
  transform: translate(0, -50%);
}
.van-row::after {
  display: table;
  clear: both;
  content: '';
}
.van-row--flex {
  display: flex;
  flex-wrap: wrap;
}
.van-row--flex::after {
  display: none;
}
.van-row--justify-center {
  justify-content: center;
}
.van-row--justify-end {
  justify-content: flex-end;
}
.van-row--justify-space-between {
  justify-content: space-between;
}
.van-row--justify-space-around {
  justify-content: space-around;
}
.van-row--align-center {
  align-items: center;
}
.van-row--align-bottom {
  align-items: flex-end;
}
.van-sidebar {
  width: 2.133rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.van-tree-select {
  position: relative;
  display: flex;
  font-size: 0.373rem;
  user-select: none;
}
.van-tree-select__nav {
  flex: 1;
  overflow-y: auto;
  background-color: #f7f8fa;
  -webkit-overflow-scrolling: touch;
}
.van-tree-select__nav-item {
  padding: 0.373rem 0.32rem;
}
.van-tree-select__content {
  flex: 2;
  overflow-y: auto;
  background-color: #FFFFFF;
  -webkit-overflow-scrolling: touch;
}
.van-tree-select__item {
  position: relative;
  padding: 0 0.853rem 0 0.427rem;
  font-weight: 500;
  line-height: 1.28rem;
  cursor: pointer;
}
.van-tree-select__item--active {
  color: #ee0a24;
}
.van-tree-select__item--disabled {
  color: #c8c9cc;
  cursor: not-allowed;
}
.van-tree-select__selected {
  position: absolute;
  top: 50%;
  right: 0.427rem;
  margin-top: -0.213rem;
  font-size: 0.427rem;
}
.van-skeleton {
  display: flex;
  padding: 0 0.427rem;
}
.van-skeleton__avatar {
  flex-shrink: 0;
  width: 0.853rem;
  height: 0.853rem;
  margin-right: 0.427rem;
  background-color: #f2f3f5;
}
.van-skeleton__avatar--round {
  border-radius: 26.64rem;
}
.van-skeleton__content {
  width: 100%;
}
.van-skeleton__avatar + .van-skeleton__content {
  padding-top: 0.213rem;
}
.van-skeleton__row,
.van-skeleton__title {
  height: 0.427rem;
  background-color: #f2f3f5;
}
.van-skeleton__title {
  width: 40%;
  margin: 0;
}
.van-skeleton__row:not(:first-child) {
  margin-top: 0.32rem;
}
.van-skeleton__title + .van-skeleton__row {
  margin-top: 0.533rem;
}
.van-skeleton--animate {
  animation: van-skeleton-blink 1.2s ease-in-out infinite;
}
.van-skeleton--round .van-skeleton__row,
.van-skeleton--round .van-skeleton__title {
  border-radius: 26.64rem;
}
@keyframes van-skeleton-blink {
  50% {
    opacity: 0.6;
  }
}
.van-stepper {
  font-size: 0;
  user-select: none;
}
.van-stepper__minus,
.van-stepper__plus {
  position: relative;
  box-sizing: border-box;
  width: 0.747rem;
  height: 0.747rem;
  margin: 0;
  padding: 0;
  color: #323233;
  vertical-align: middle;
  background-color: #f2f3f5;
  border: 0;
  cursor: pointer;
}
.van-stepper__minus::before,
.van-stepper__plus::before {
  width: 50%;
  height: 1px;
}
.van-stepper__minus::after,
.van-stepper__plus::after {
  width: 1px;
  height: 50%;
}
.van-stepper__minus::before,
.van-stepper__plus::before,
.van-stepper__minus::after,
.van-stepper__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  content: '';
}
.van-stepper__minus:active,
.van-stepper__plus:active {
  background-color: #e8e8e8;
}
.van-stepper__minus--disabled,
.van-stepper__plus--disabled {
  color: #c8c9cc;
  background-color: #f7f8fa;
  cursor: not-allowed;
}
.van-stepper__minus--disabled:active,
.van-stepper__plus--disabled:active {
  background-color: #f7f8fa;
}
.van-stepper__minus {
  border-radius: 0.107rem 0 0 0.107rem;
}
.van-stepper__minus::after {
  display: none;
}
.van-stepper__plus {
  border-radius: 0 0.107rem 0.107rem 0;
}
.van-stepper__input {
  box-sizing: border-box;
  width: 0.853rem;
  height: 0.747rem;
  margin: 0 0.053rem;
  padding: 0;
  color: #323233;
  font-size: 0.373rem;
  line-height: normal;
  text-align: center;
  vertical-align: middle;
  background-color: #f2f3f5;
  border: 0;
  border-width: 1px 0;
  border-radius: 0;
  -webkit-appearance: none;
}
.van-stepper__input:disabled {
  color: #c8c9cc;
  background-color: #f2f3f5;
  -webkit-text-fill-color: #c8c9cc;
  opacity: 1;
}
.van-stepper__input:read-only {
  cursor: default;
}
.van-stepper--round .van-stepper__input {
  background-color: transparent;
}
.van-stepper--round .van-stepper__plus,
.van-stepper--round .van-stepper__minus {
  border-radius: 100%;
}
.van-stepper--round .van-stepper__plus:active,
.van-stepper--round .van-stepper__minus:active {
  opacity: 0.7;
}
.van-stepper--round .van-stepper__plus--disabled,
.van-stepper--round .van-stepper__minus--disabled,
.van-stepper--round .van-stepper__plus--disabled:active,
.van-stepper--round .van-stepper__minus--disabled:active {
  opacity: 0.3;
}
.van-stepper--round .van-stepper__plus {
  color: #FFFFFF;
  background-color: #ee0a24;
}
.van-stepper--round .van-stepper__minus {
  color: #ee0a24;
  background-color: #FFFFFF;
  border: 1px solid #ee0a24;
}
.van-sku {
  /* sku row */
}
.van-sku-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 50%;
  max-height: 80%;
  overflow-y: visible;
  font-size: 0.373rem;
  background: #FFFFFF;
}
.van-sku-body {
  flex: 1 1 auto;
  min-height: 1.173rem;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.van-sku-body::-webkit-scrollbar {
  display: none;
}
.van-sku-header {
  display: flex;
  flex-shrink: 0;
  margin: 0 0.427rem;
}
.van-sku-header__img-wrap {
  flex-shrink: 0;
  width: 2.56rem;
  height: 2.56rem;
  margin: 0.32rem 0.32rem 0.32rem 0;
  overflow: hidden;
  border-radius: 0.107rem;
}
.van-sku-header__goods-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.32rem 0.533rem 0.32rem 0;
}
.van-sku-header-item {
  margin-top: 0.213rem;
  color: #969799;
  font-size: 0.32rem;
  line-height: 0.427rem;
}
.van-sku__price-symbol {
  font-size: 0.427rem;
  vertical-align: bottom;
}
.van-sku__price-num {
  font-weight: 500;
  font-size: 0.587rem;
  vertical-align: bottom;
  word-wrap: break-word;
}
.van-sku__goods-price {
  margin-left: -0.053rem;
  color: #ee0a24;
}
.van-sku__price-tag {
  position: relative;
  display: inline-block;
  margin-left: 0.213rem;
  padding: 0 0.133rem;
  overflow: hidden;
  color: #ee0a24;
  font-size: 0.32rem;
  line-height: 0.427rem;
  border-radius: 0.213rem;
}
.van-sku__price-tag::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0.1;
  content: '';
}
.van-sku-group-container {
  padding-top: 0.32rem;
}
.van-sku-group-container--hide-soldout .van-sku-row__item--disabled {
  display: none;
}
.van-sku-row {
  margin: 0 0.427rem 0.32rem;
}
.van-sku-row:last-child {
  margin-bottom: 0;
}
.van-sku-row__item,
.van-sku-row__image-item {
  position: relative;
  overflow: hidden;
  color: #323233;
  border-radius: 0.107rem;
  cursor: pointer;
}
.van-sku-row__item::before,
.van-sku-row__image-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f8fa;
  content: '';
}
.van-sku-row__item--active,
.van-sku-row__image-item--active {
  color: #ee0a24;
}
.van-sku-row__item--active::before,
.van-sku-row__image-item--active::before {
  background: currentColor;
  opacity: 0.1;
}
.van-sku-row__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.067rem;
  margin: 0 0.32rem 0.32rem 0;
  font-size: 0.347rem;
  line-height: 0.427rem;
  vertical-align: middle;
}
.van-sku-row__item-img {
  z-index: 1;
  width: 0.64rem;
  height: 0.64rem;
  margin: 0.107rem 0 0.107rem 0.107rem;
  object-fit: cover;
  border-radius: 0.053rem;
}
.van-sku-row__item-name {
  z-index: 1;
  padding: 0.213rem;
}
.van-sku-row__item--disabled {
  color: #c8c9cc;
  background: #f2f3f5;
  cursor: not-allowed;
}
.van-sku-row__item--disabled .van-sku-row__item-img {
  opacity: 0.3;
}
.van-sku-row__image {
  margin-right: 0;
}
.van-sku-row__image-item {
  display: flex;
  flex-direction: column;
  width: 2.933rem;
  margin: 0 0.107rem 0.107rem 0;
  border: 1px solid transparent;
}
.van-sku-row__image-item:last-child {
  margin-right: 0;
}
.van-sku-row__image-item-img {
  width: 100%;
  height: 2.933rem;
}
.van-sku-row__image-item-img-icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 0.48rem;
  height: 0.48rem;
  color: #fff;
  line-height: 0.48rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom-left-radius: 0.107rem;
}
.van-sku-row__image-item-name {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 1.067rem;
  padding: 0.107rem;
  font-size: 0.32rem;
  line-height: 0.427rem;
}
.van-sku-row__image-item-name span {
  word-wrap: break-word;
}
.van-sku-row__image-item--active {
  border-color: currentColor;
}
.van-sku-row__image-item--disabled {
  color: #c8c9cc;
  cursor: not-allowed;
}
.van-sku-row__image-item--disabled::before {
  z-index: 2;
  background: #f2f3f5;
  opacity: 0.4;
}
.van-sku-row__title {
  padding-bottom: 0.32rem;
}
.van-sku-row__title-multiple {
  color: #969799;
}
.van-sku-row__scroller {
  margin: 0 -0.427rem;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.van-sku-row__scroller::-webkit-scrollbar {
  display: none;
}
.van-sku-row__row {
  display: inline-flex;
  margin-bottom: 0.107rem;
  padding: 0 0.427rem;
}
.van-sku-row__indicator {
  width: 1.067rem;
  height: 0.107rem;
  background: #ebedf0;
  border-radius: 0.053rem;
}
.van-sku-row__indicator-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 0.427rem;
}
.van-sku-row__indicator-slider {
  width: 50%;
  height: 100%;
  background-color: #ee0a24;
  border-radius: 0.053rem;
}
.van-sku-stepper-stock {
  padding: 0.32rem 0.427rem;
  overflow: hidden;
  line-height: 0.8rem;
}
.van-sku__stepper {
  float: right;
  padding-left: 0.107rem;
}
.van-sku__stepper-title {
  float: left;
}
.van-sku__stepper-quota {
  float: right;
  color: #ee0a24;
  font-size: 0.32rem;
}
.van-sku__stock {
  display: inline-block;
  margin-right: 0.213rem;
  color: #969799;
  font-size: 0.32rem;
}
.van-sku__stock-num--highlight {
  color: #ee0a24;
}
.van-sku-messages {
  padding-bottom: 0.853rem;
}
.van-sku-messages__image-cell .van-cell__title {
  max-width: 6.2em;
  margin-right: 0.32rem;
  color: #646566;
  text-align: left;
  word-wrap: break-word;
}
.van-sku-messages__image-cell .van-cell__value {
  overflow: visible;
  text-align: left;
}
.van-sku-messages__image-cell-label {
  color: #969799;
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.van-sku-messages__cell-block {
  position: relative;
}
.van-sku-messages__cell-block::after {
  position: absolute;
  box-sizing: border-box;
  content: ' ';
  pointer-events: none;
  right: 0.427rem;
  bottom: 0;
  left: 0.427rem;
  border-bottom: 1px solid #ebedf0;
  transform: scaleY(0.5);
}
.van-sku-messages__cell-block:last-child::after {
  display: none;
}
.van-sku-messages__extra-message {
  margin-top: -0.053rem;
  padding: 0 0.427rem 0.32rem;
  color: #969799;
  font-size: 0.32rem;
  line-height: 0.48rem;
}
.van-sku-actions {
  display: flex;
  flex-shrink: 0;
  padding: 0.213rem 0.427rem;
}
.van-sku-actions .van-button {
  height: 1.067rem;
  font-weight: 500;
  font-size: 0.373rem;
  border: none;
  border-radius: 0;
}
.van-sku-actions .van-button:first-of-type {
  border-top-left-radius: 0.533rem;
  border-bottom-left-radius: 0.533rem;
}
.van-sku-actions .van-button:last-of-type {
  border-top-right-radius: 0.533rem;
  border-bottom-right-radius: 0.533rem;
}
.van-sku-actions .van-button--warning {
  background: linear-gradient(to right, #ffd01e, #ff8917);
}
.van-sku-actions .van-button--danger {
  background: linear-gradient(to right, #ff6034, #ee0a24);
}
.van-slider {
  position: relative;
  width: 100%;
  height: 0.053rem;
  background-color: #ebedf0;
  border-radius: 26.64rem;
  cursor: pointer;
}
.van-slider::before {
  position: absolute;
  top: -0.213rem;
  right: 0;
  bottom: -0.213rem;
  left: 0;
  content: '';
}
.van-slider__bar {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #1DB278;
  border-radius: inherit;
  transition: all 0.2s;
}
.van-slider__button {
  width: 0.64rem;
  height: 0.64rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 1px 0.053rem rgba(0, 0, 0, 0.5);
}
.van-slider__button-wrapper,
.van-slider__button-wrapper-right {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(50%, -50%, 0);
  cursor: grab;
}
.van-slider__button-wrapper-left {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(-50%, -50%, 0);
  cursor: grab;
}
.van-slider--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.van-slider--disabled .van-slider__button-wrapper,
.van-slider--disabled .van-slider__button-wrapper-left,
.van-slider--disabled .van-slider__button-wrapper-right {
  cursor: not-allowed;
}
.van-slider--vertical {
  display: inline-block;
  width: 0.053rem;
  height: 100%;
}
.van-slider--vertical .van-slider__button-wrapper,
.van-slider--vertical .van-slider__button-wrapper-right {
  top: auto;
  right: 50%;
  bottom: 0;
  transform: translate3d(50%, 50%, 0);
}
.van-slider--vertical .van-slider__button-wrapper-left {
  top: 0;
  right: 50%;
  left: auto;
  transform: translate3d(50%, -50%, 0);
}
.van-slider--vertical::before {
  top: 0;
  right: -0.213rem;
  bottom: 0;
  left: -0.213rem;
}
.van-steps {
  overflow: hidden;
  background-color: #FFFFFF;
}
.van-steps--horizontal {
  padding: 0.267rem 0.267rem 0;
}
.van-steps--horizontal .van-steps__items {
  position: relative;
  display: flex;
  margin: 0 0 0.267rem;
  padding-bottom: 0.587rem;
}
.van-steps--vertical {
  padding: 0 0 0 0.853rem;
}
.van-swipe-cell {
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.van-swipe-cell__wrapper {
  transition-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1);
  transition-property: transform;
}
.van-swipe-cell__left,
.van-swipe-cell__right {
  position: absolute;
  top: 0;
  height: 100%;
}
.van-swipe-cell__left {
  left: 0;
  transform: translate3d(-100%, 0, 0);
}
.van-swipe-cell__right {
  right: 0;
  transform: translate3d(100%, 0, 0);
}
.van-tabbar {
  z-index: 1;
  display: flex;
  box-sizing: content-box;
  width: 100%;
  height: 1.307rem;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: #FFFFFF;
}
.van-tabbar--fixed {
  position: fixed;
  bottom: 0;
  left: 0;
}
.van-tabbar--unfit {
  padding-bottom: 0;
}

@font-face {
  font-family: DattoDIN;
  font-weight: 700;
  src: url(../font/DattoDIN-Bold.eot);
  src: url(../font/DattoDIN-Bold.woff2) format("woff2"), url(../font/DattoDIN-Bold.woff) format("woff"), url(../font/DattoDIN-Bold.ttf) format("truetype");
}
[v-cloak] {
  display: none;
}
html,
body {
  height: 100%;
}
body {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, "sans-serif", "SimSun";
  color: #131B18;
  background: #f5f5f5;
  word-break: break-all;
  margin: 0 auto;
  max-width: 750Px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.clearfix:after {
  content: '\0020';
  display: block;
  clear: both;
  height: 0;
}
.clearfix {
  zoom: 1;
}
.gk-sticky {
  height: 100%;
}
.gk-sticky .ch-sticky {
  min-height: 100%;
  box-sizing: border-box;
  padding-bottom: 1.707rem;
}
.gk-sticky .wap-footer {
  margin-top: -1.707rem;
}
a {
  color: #1DB278;
}
a.no-color {
  color: #131B18;
}
.van-tab {
  padding: 0 0.107rem;
  font-size: 0.373rem;
  line-height: 0.533rem;
}
.van-tab .van-tab__text--ellipsis {
  display: block;
  flex: 1;
  text-align: center;
  overflow: inherit;
}
.van-ellipsis {
  overflow: visible;
}
.van-tab__text {
  flex: 1;
  text-align: center;
}
.van-tabs--line .van-tabs__wrap {
  height: 1.173rem;
}
.van-nav-bar.van-hairline--bottom:after {
  border-bottom-width: 0;
}
.van-cell:not(:last-child):after {
  left: 0;
  right: 0;
}
.van-sku-actions .van-button:first-of-type {
  border: 1px solid #ebedf0;
}
.van-sku-group-container {
  margin-left: 16Px;
}
.van-sku-row {
  margin: 0 3Px 12Px 0;
}
.van-button--small {
  min-width: 55Px;
}
.index-van-sku .van-sku-header {
  padding: 0.427rem 0.427rem 0.32rem;
  display: flex;
  align-items: center;
  margin-left: 0;
}
.index-van-sku .van-sku-header .text {
  text-align: left;
  height: 0.64rem;
  font-size: 0.427rem;
  font-weight: 700;
  color: #1CB278;
  line-height: 0.64rem;
  flex: 1;
}
.index-van-sku .iconfont {
  font-size: 0.32rem;
  color: #8D9D95;
  line-height: 1;
}
.index-van-sku .van-button--default {
  background: #F3FAF7;
  border-radius: 0.107rem;
  color: #626F69;
  border: 0;
}
.index-van-sku .van-radio__icon--checked .van-button {
  background: #1CB278;
  color: #fff;
  border: 0;
}
.index-van-sku .van-sku-group-container {
  margin-left: 0;
  padding: 0 0.427rem;
}
.index-van-sku .van-sku-actions {
  padding: 0.427rem 0.4rem;
}
.index-van-sku .van-sku-actions .van-button {
  height: 1.2rem;
  line-height: px;
  border: 0;
  background: #1CB278;
  border-radius: 0.107rem;
  font-size: 0.427rem;
}
.index-van-sku .gk-select-radio {
  width: calc((100% - 0.853rem) / 5);
  box-sizing: border-box;
  margin-right: 0.213rem;
  padding: 0;
  margin-bottom: 0.213rem;
}
.index-van-sku .gk-select-radio:nth-child(5n) {
  margin-right: 0;
}
.index-van-sku .gk-select-radio .van-radio__icon .van-button {
  width: 100%;
  padding: 0;
  height: 0.853rem;
  line-height: 0.853rem;
  font-size: 0.373rem;
}
.index-van-sku .van-button {
  margin-right: 0;
}
.index-van-sku .gk-select-radio {
  display: block;
}
.index-van-sku .van-radio-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.wap-footer {
  line-height: normal;
  background: #282828;
  color: #959E9A;
  font-size: 0.32rem;
}
.wap-footer a {
  color: #959E9A;
  text-decoration: none;
}
.wap-footer .wap-footer-list {
  padding: 0.587rem 0.64rem 0.427rem 0.64rem;
}
.wap-footer .wap-footer-list .van-col {
  padding: 0.213rem;
}
.wap-footer .wap-footer-media {
  padding: 0 0.64rem;
}
.wap-footer .wap-footer-media .iconfont {
  line-height: 1;
  margin-right: 0.213rem;
  font-size: 1.067rem;
  vertical-align: middle;
}
.wap-footer .wap-footer-media .divid-line {
  width: 0.053rem;
  height: 0.373rem;
  background: #5A5A5A;
  margin: 0.347rem auto;
}
.wap-footer .wap-footer-units {
  padding: 0.56rem 1.44rem 0.8rem 0.853rem;
}
.wap-footer .wap-footer-units .mail {
  margin-bottom: 0.427rem;
}
.gk-padding-lr {
  padding: 0.293rem;
}
.gk-bg-color {
  height: 0.267rem;
  width: 100%;
  background: #f5f5f5;
}
.gk-bg-img {
  height: 2.533rem;
  background: #1DB278 url(../images/index.png) no-repeat center center;
  background-size: auto 2.533rem;
}
.gk-margin-b {
  margin-bottom: 0.267rem;
}
.gk-padding-32 {
  padding: 0.427rem;
}
.gk-padding-32.card .van-cell__value {
  line-height: 1.067rem;
}
.gk-padding-32.card .van-cell__right-icon {
  line-height: 1.067rem;
}
.gk-padding-28 {
  padding: 0.373rem 0.427rem;
}
.gk-padding-28 .van-cell__title {
  font-size: 0.373rem;
  line-height: 0.533rem;
  padding: 0.053rem 0;
}
.gk-padding-28 .van-button--small {
  padding: 0.08rem 0.347rem;
  font-size: 0.32rem;
  line-height: 0.453rem;
}
.gk-text-center {
  text-align: center;
}
.gk-text-right {
  text-align: right;
}
.gk-block-ss {
  text-align: center;
  height: 0.96rem;
  line-height: 0.96rem;
  font-size: 0.373rem;
  border: 1px solid #E4E4E4;
}
.gk-content {
  background: #fff;
}
.gk-block-bg .gk-block-title {
  padding: 0.24rem 0 0.533rem;
}
.gk-block-bg .gk-block-title h2 {
  font-size: 0.427rem;
  line-height: 0.427rem;
  border-left: 0.16rem solid #1DB278;
  padding-left: 0.267rem;
  font-weight: 400;
  margin: 0;
}
.gk-block-bg .gk-block-item {
  border-radius: 0.107rem;
  background: #f5f5f5;
  padding: 0.213rem 0.32rem;
}
.gk-block-bg .gk-block-item .item-name {
  font-size: 0.373rem;
  line-height: 0.507rem;
  margin-bottom: 0.08rem;
}
.gk-block-bg .gk-block-item .item-time {
  font-size: 0.293rem;
  line-height: 0.4rem;
  margin-bottom: 0.027rem;
  color: #959E9A;
}
.gk-index-tip {
  font-size: 0.267rem;
  color: #959E9A;
  line-height: 0.4rem;
  padding: 0.133rem 0.293rem;
  border-bottom: 1px solid #EBEBEB;
}
.gk-index-about {
  padding: 0.267rem 0;
  display: flex;
  font-size: 0.373rem;
  line-height: 0.507rem;
  text-align: center;
}
.gk-index-about .about-item {
  width: 50%;
}
.gk-index-about .about-item:last-child {
  border-left: 1px solid #EBEBEB;
}
.gk-index-about .about-item .van-icon-arrow {
  font-size: 0.373rem;
  line-height: 0.507rem;
  vertical-align: bottom;
  margin-left: 0.067rem;
  color: #C8C8C8;
}
.gk-tag {
  font-size: 0.24rem;
  margin-left: 0.067rem;
  float: right;
  color: #959E9A;
  border: 1px solid #e6e6e6;
}
.gk-tag:after {
  border: none;
}
.gk-zxdy-sch {
  margin-bottom: 0.2rem;
}
.gk-zxdy-kfsj {
  color: #959E9A;
}
.gk-list-item .van-cell__title {
  line-height: 1.067rem;
}
.gk-ewm {
  display: flex;
}
.gk-ewm .gk-ewm-item {
  width: 50%;
}
.gk-ewm .gk-ewm-item:first-child {
  padding-right: 0.133rem;
}
.gk-ewm .gk-ewm-item:last-child {
  padding-left: 0.133rem;
}
.van-popup--right {
  width: 100%;
  height: 100%;
}
.gk-nav {
  background: #1DB278;
}
.gk-text-count {
  padding: 0.267rem;
  color: #959E9A;
  text-align: right;
  border-bottom: 1px solid #ebedf0;
}
.gk-text-tip {
  padding: 0.267rem;
  color: #959E9A;
  font-size: 0.32rem;
  line-height: 0.453rem;
}
.gk-info-wap .van-cell__title {
  flex: 1;
}
.gk-info-wap .van-cell__value {
  flex: 2;
}
.gk-info {
  margin-left: 0.2rem;
}
.gk-info .gk-info-item {
  color: #131B18;
  font-size: 0.48rem;
  line-height: 0.667rem;
}
.gk-info .gk-info-item.gk-info-other {
  font-size: 0.373rem;
  line-height: 0.533rem;
  color: #959E9A;
  margin-top: 0.053rem;
}
.gk-info .gk-info-item span {
  margin-right: 0.2rem;
}
.gk-info .gk-info-item:first-child {
  margin-top: 0.16rem;
}
.gk-cell-tag .van-cell {
  padding-left: 0;
}
.gk-cell-tag .van-cell.gk-cell-tag_req {
  margin-left: -0.827rem;
  margin-right: 0;
  padding-right: 0;
  width: calc(100% + 0.427rem);
}
.gk-cell-tag .van-cell.gk-cell-tag_req ol {
  padding-left: 15Px;
}
.gk-cell-tag.gk-padding-l15 .van-cell {
  padding-left: 15Px;
}
.gk-cell-tag .van-collapse-item__content {
  padding: 0.2rem 0.827rem;
  overflow-x: auto;
}
.gk-cell-tag .van-tag--mark {
  margin-right: 0.293rem;
  height: 0.4rem;
  line-height: 0.4rem;
}
.gk-cell-tag .gk-cell-tag_title {
  margin-right: 0.067rem;
}
.scorll-fixed-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 4;
}
.van-nav-bar.gk-dialog-nav {
  background: #fff;
}
.van-nav-bar.gk-dialog-nav .van-nav-bar__text,
.van-nav-bar.gk-dialog-nav .van-nav-bar__title {
  color: #131B18;
}
.van-nav-bar.gk-dialog-nav .van-button--default {
  border: #CBCBCB;
  background: #CBCBCB;
  color: #fff;
}
.van-nav-bar.gk-dialog-nav .van-icon {
  color: #131B18;
}
.zxdy-nav-bar {
  background-color: #fff;
}
.zxdy-nav-bar .van-icon {
  color: #131B18;
  font-size: 0.533rem;
}
.zxdy-nav-bar .van-nav-bar__right .van-icon + .van-icon {
  margin-left: 0.267rem;
}
.gk-zxzc-img {
  padding: 0.4rem;
  box-sizing: border-box;
  height: 4.453rem;
  background: #aae0e4 url(../images/zxzc-index.jpg) no-repeat center center;
  background-size: 100% auto;
  text-align: center;
  overflow: hidden;
}
.gk-zxzc-img .gk-zxzc-des {
  font-size: 0.373rem;
  font-weight: 500;
  color: #213A4A;
  line-height: 0.64rem;
}
.gk-zxzc-img .gk-zxzc-title {
  font-size: 1.04rem;
  font-weight: 700;
  color: #213A4A;
  line-height: 1.733rem;
  margin: 0;
}
.gk-zxzc-img .gk-zxzc-time {
  margin: 0 auto;
  width: 6.213rem;
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.32rem;
  font-weight: 400;
  color: #fff;
  border-radius: 0.4rem;
  background: #11A5A7;
  margin-bottom: 0.24rem;
}
.gk-zxzc-img .gk-zxzc-other {
  font-size: 0.267rem;
  line-height: 0.533rem;
  font-weight: 400;
  color: #445F70;
  text-align: left;
  position: relative;
}
.gk-zxzc-img .gk-zxzc-other .gk-zxzc-other_tag {
  background: #183C4C;
  color: #fff;
  height: 0.533rem;
  line-height: 0.533rem;
  border-radius: 0.267rem;
  position: absolute;
  right: -0.587rem;
  padding: 0 0.267rem;
}
.gk-zxzc-tip {
  padding: 0.213rem;
}
.gk-zxzc-tip .gk-zxzc-tip_title {
  position: relative;
  height: 0.72rem;
  text-align: center;
}
.gk-zxzc-tip .gk-zxzc-tip_title .gk-zxzc-tip_line {
  position: absolute;
  height: 1px;
  width: 100%;
  background: #DBDBDB;
  top: 0.32rem;
}
.gk-zxzc-tip .gk-zxzc-tip_title h3 {
  position: absolute;
  height: 0.72rem;
  width: 1.867rem;
  line-height: 0.72rem;
  font-size: 0.32rem;
  font-weight: 400;
  margin: 0;
  left: 50%;
  margin-left: -0.933rem;
  background: #F5F5F5;
  z-index: 2;
}
.gk-zxzc-tip .gk-zxzc-tip_content {
  height: 1.52rem;
  font-size: 0.32rem;
  color: #808080;
  line-height: 0.507rem;
}
.gk-zxzc-tip .gk-zxzc-tip_content .point {
  display: inline-block;
  height: 0.107rem;
  width: 0.107rem;
  border-radius: 0.107rem;
  background: #959E9A;
  vertical-align: middle;
  margin-right: 0.133rem;
}
.gk-zxzc-more {
  height: 1.28rem;
  line-height: 1.28rem;
  text-align: center;
  color: #1DB278;
  font-size: 0.373rem;
}
.gk-zxzc-h2 {
  padding-left: 0.267rem;
  border-left: 0.107rem solid #12A6A8;
  font-size: 0.427rem;
  font-weight: 600;
  margin: 0;
}
.gk-zxzc-h2_card {
  display: inline-block;
  padding: 0.24rem 0.32rem;
  font-size: 0.427rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 0.587rem;
  background: #12A6A8;
  position: relative;
}
.gk-zxzc-h2_card::after {
  position: absolute;
  top: 0.64rem;
  right: -0.4rem;
  width: 0px;
  height: 0px;
  content: "";
  border-top: 0.4rem solid #12A6A8;
  border-right: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  border-left: 0.4rem solid transparent;
}
.gk-zxzc-h3 {
  font-size: 0.373rem;
  font-weight: 600;
  margin: 0;
}
.gk-zxzc-about {
  padding: 0.427rem;
}
.gk-zxzc-about h3 {
  width: 2.24rem;
  height: 0.533rem;
  font-size: 0.373rem;
  font-weight: 600;
  line-height: 0.533rem;
  margin: 0 0 0.373rem;
}
.gk-zxzc-about p {
  margin-bottom: 0.213rem;
  font-size: 0.373rem;
  font-weight: 400;
  line-height: 0.533rem;
}
.fix {
  padding-bottom: 60Px;
}
.fix .fix-bottom {
  position: fixed;
  bottom: 0;
  max-width: 750Px;
}
.gk-seach-tip {
  background: #fff;
  padding: 0 0.427rem 0.267rem;
  font-size: 0.32rem;
  color: #626F69;
  line-height: 0.533rem;
}
.gk-sch-info {
  padding: 0.427rem;
  background: #fff;
}
.gk-sch-info .info-name {
  margin: 0 0 0.133rem;
  font-size: 0.453rem;
  font-weight: 400;
  line-height: 0.64rem;
}
.gk-sch-info .info-detail {
  font-size: 0.373rem;
  font-weight: 400;
  line-height: 0.48rem;
}
.gk-sch-info .info-detail td {
  padding: 0.08rem 0;
}
.gk-sch-info .info-detail td.yxls {
  width: 1.893rem;
}
.gk-sch-info .info-detail td .szd {
  margin-left: 0.133rem;
}
.gk-sch-info .info-detail td.yxlx,
.gk-sch-info .info-detail td.yxlx-detail {
  vertical-align: top;
}
.gk-default-btn {
  font-size: 0.32rem;
  line-height: 0.453rem;
  padding: 0.4rem 0;
  height: auto;
  text-align: left;
  background: #cbcbcb;
  border-color: #cbcbcb;
  color: #fff;
  opacity: 1;
  margin: 0;
}
.gk-news-list {
  padding: 0.427rem;
  font-size: 0.373rem;
  line-height: 0.533rem;
}
.gk-news-list h2 {
  font-size: 0.373rem;
  font-weight: 600;
  margin: 0.2rem 0;
}
.gk-news-list h2:first-child {
  margin-top: 0;
}
.gk-news-list a {
  color: #06c;
}
.gk-check-tags {
  padding: 0.133rem 0.427rem;
  font-size: 12Px;
  background: #fff;
}
.gk-check-tags .van-tag {
  margin-right: 5Px;
  margin-bottom: 5Px;
}
.van-sku-header {
  display: block;
  font-size: 0.373rem;
  line-height: 1.067rem;
  color: #626F69;
  text-align: center;
}
.gk-select-radio {
  display: inline-block;
  padding: 0.027rem 0.047rem;
}
.gk-select-radio .van-radio__icon {
  height: auto;
}
.gk-select-radio .van-radio__icon .van-button {
  padding: 0.027rem 0.133rem;
}
.gk-select-checkbox {
  display: inline-block;
  padding: 0.027rem 0.047rem;
}
.gk-select-checkbox .van-checkbox__icon {
  height: auto;
}
.gk-select-checkbox .van-checkbox__icon .van-button {
  padding: 0.027rem 0.133rem;
}
.van-cell__title {
  flex: 2;
}
.gk-no-data {
  height: 4rem;
  margin: 2.667rem auto 0;
  background: url(../images/nodata-bg.png) no-repeat center center;
  background-size: auto 4rem;
}
.van-cell__title p {
  margin: 0;
}
.gk-padding {
  padding: 0 0.427rem;
}
.gk-select-btn {
  background: #F6F6F6;
  color: #131B18;
  border-color: #F6F6F6;
  opacity: 1;
  margin: 0;
}
.gk-captcha {
  text-align: center;
  margin-bottom: 0.267rem;
}
.gk-captcha img {
  display: block;
  width: 200Px;
  margin: 0.533rem auto 0.267rem;
}
.gk-captcha span {
  color: #959E9A;
  font-size: 0.32rem;
}
.gk-error {
  margin-top: 2.667rem;
  height: 94Px;
  background: url(../images/error.png) center center no-repeat;
  margin-bottom: 0.4rem;
}
.gk-error-des {
  color: #626F69;
  font-size: 0.427rem;
  text-align: center;
}
.gk-score .van-field__control {
  text-align: right;
}
.gk-list .van-list .van-cell__title {
  font-size: 0.373rem;
  line-height: 0.667rem;
}
.gk-list .van-list .custom-text {
  font-size: 0.4rem;
  font-weight: 700;
}
.gk-list .van-list .van-cell__value {
  font-size: 13Px;
  line-height: 0.427rem;
}
.van-search__action .van-button {
  height: 34Px;
  line-height: 34Px;
}
.gk-banner-zxs {
  background: #1DB278;
  background-image: url(../images/book.png), url(../images/pen.png);
  background-repeat: no-repeat, no-repeat;
  background-position: bottom 0.747rem left 0.027rem,bottom right;
  background-size: 1.067rem 0.733rem, 0.507rem 1.467rem;
  color: #fff;
}
.gk-banner-zxs .gk-banner-zxs_title {
  font-size: 0.693rem;
  line-height: 0.987rem;
  text-align: center;
  margin-bottom: 0.16rem;
  margin-top: 0;
  font-weight: 400;
}
.gk-banner-zxs .gk-banner-zxs_content {
  font-size: 0.347rem;
  line-height: 0.48rem;
  padding: 0 0.667rem 0.56rem;
}
.gk-zxs-tip {
  background: #fff;
  padding: 0.48rem 0.427rem;
}
.gk-zxs-tip p {
  font-size: 0.373rem;
  line-height: 0.613rem;
  margin-bottom: 0.267rem;
  margin-top: 0;
}
.gk-zxs-tip p:last-child {
  margin-bottom: 0;
}
.gk-zszc {
  background: #fff;
}
h1.gk-zszc-title {
  text-align: center;
  font-size: 0.64rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 0.133rem;
}
.gk-zszc-subtitle {
  border-bottom: 1Px solid #ccc;
  color: #959E9A;
  font-size: 0.4rem;
  line-height: 0.613rem;
  padding: 0.267rem 0;
  text-align: center;
}
.gk-zszc-content {
  font-size: 0.427rem;
  padding: 0.267rem 0;
}
.gk-zszc-content p {
  margin: 0 0 0.267rem;
  padding: 0;
  line-height: 0.613rem;
  word-wrap: break-word;
  word-break: break-word;
}
.van-dialog {
  max-width: 640Px;
}
.close-filter-box {
  float: right;
  font-size: 18Px;
  margin-top: 12Px;
  margin-right: 10Px;
}
.tbtj-bl {
  background: #fff;
  padding-top: 0.48rem;
  margin-bottom: 0.267rem;
}
.tbtj-bl .tbtj-title {
  padding: 0 0.427rem;
  font-size: 0.427rem;
  color: #131B18;
  font-weight: 700;
  line-height: 0.6rem;
  margin: 0;
  margin-bottom: 0.32rem;
}
.tbtj-bl .tbtj-box {
  overflow-x: auto;
}
.tbtj-bl .tbtj-list {
  font-size: 0;
  padding: 0 0.427rem;
  background: #fff;
  -ms-flex-pack: justify;
  justify-content: space-between;
  white-space: nowrap;
}
.tbtj-bl .tbtj-list .tbtj-item {
  width: 4.267rem;
  position: relative;
  border-radius: 0.107rem;
  margin-right: 0.32rem;
  margin-bottom: 0.32rem;
  display: inline-block;
}
.tbtj-bl .tbtj-list .tbtj-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.tbtj-bl .tbtj-list .tbtj-item img {
  width: 100%;
  border-radius: 0.107rem;
  height: 100%;
}
/* 2021咨询周 */
.base-padding {
  padding-left: 0.427rem;
  padding-right: 0.427rem;
}
.sszb-box {
  padding: 0.427rem 0.053rem 0.427rem 0.427rem;
}
.sszb-box .van-col--6 {
  padding-right: 0.373rem;
}
.gk-header img {
  display: block;
}
.zxz-index-about {
  padding-top: 0.533rem;
}
.zxz-index-about .van-tabs__nav--card {
  margin: 0 2.667rem;
}
.zxz-index-about .van-tabs__wrap {
  padding-bottom: 0.267rem;
}
.zxz-index-about .van-tabs__content {
  padding: 0 0.427rem 0.533rem;
}
.zxz-index-about .zxz-about-content {
  color: #626F69;
  font-weight: 400;
  overflow: auto;
  background: #F6F6F6;
  border-radius: 0.16rem;
}
.zxz-index-about .zxz-about {
  height: 2.933rem;
  padding: 0.32rem 0.32rem 0.16rem 0.32rem;
  box-shadow: inset 0 -0.693rem 0.16rem -0.32rem #e5e5e5;
  line-height: 0.627rem;
  font-size: 0.373rem;
  position: relative;
}
.zxz-index-about .zxz-ewm {
  line-height: 0.48rem;
  font-size: 0.373rem;
  height: 2.373rem;
  padding: 0.32rem 0.32rem 0.72rem 0.32rem;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.zxz-index-about .zxz-ewm img {
  display: block;
  width: 2rem;
}
.zxz-tab-main {
  padding-top: 0.24rem;
  /* .van-tab:nth-child(3){
        flex: 2;
    } */
}
.zxz-tab-main .van-tabs__line {
  display: none;
}
.zxz-tab-main .van-tabs__wrap {
  height: 0.96rem;
}
.zxz-tab-main .van-tab {
  white-space: nowrap;
  color: #818181;
  font-size: 0.373rem;
  position: relative;
  line-height: 0.96rem;
  flex: none;
  padding: 0 0.213rem;
}
.zxz-tab-main .van-tab:first-child {
  padding-left: 0.427rem;
}
.zxz-tab-main .van-tab--active {
  color: #131B18;
  font-size: 0.427rem;
}
.zxz-tab-main .van-tab--active::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.48rem;
  z-index: 1;
  height: 0.08rem;
  background-color: #1db278;
  border-radius: 0.04rem;
}
.zxz-tab-main .van-tabs__nav {
  overflow-x: auto;
}
.zxz-tab-main .van-tabs__wrap::after {
  display: none;
}
.scholl-filter-box {
  padding: 0.4rem 0.427rem 0 0.427rem;
}
.scholl-filter-box .van-search__action {
  padding: 0 0 0 0.213rem;
}
.scholl-filter-box .van-search__action > div {
  display: flex;
}
.scholl-filter-box .right-span {
  font-size: 0.347rem;
  margin-left: 0.267rem;
  color: #1CB278;
  display: inline-block;
  align-items: center;
}
.scholl-filter-box .right-span .van-icon-play {
  transform: rotate(90deg);
  position: relative;
  top: 0.027rem;
  margin-left: 0.053rem;
}
.scholl-filter-box .van-button--primary {
  padding: 0 0.213rem;
  min-width: 1.36rem;
  font-size: 0.347rem;
  background-color: #1cb278;
  border: 1px solid #1cb278;
}
.zxz-filter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.4rem;
}
.zxz-filter-box .scholl-filter-box {
  padding-left: 0;
  padding-top: 0;
}
.zxz-yx-item {
  position: relative;
  padding: 0.4rem 0;
  margin: 0 0.427rem;
}
.zxz-yx-item:not(:last-child):after {
  position: absolute;
  box-sizing: border-box;
  content: " ";
  pointer-events: none;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #e5e5e5;
  transform: scaleY(0.5);
}
.zxz-yx-item .van-row {
  align-items: center;
}
.zxz-yx-item .inner-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.zxz-yx-item .inner-box .van-image {
  width: 1.387rem;
  height: 1.387rem;
}
.zxz-yx-item .inner-box .van-image__error-icon {
  font-size: 1.387rem;
}
.zxz-yx-item .van-col--4 {
  width: 1.707rem;
  padding-right: 0.32rem;
}
.zxz-yx-item .van-col--20 {
  width: calc(100% - 1.707rem);
}
.zxz-yx-item .zxz-item-time {
  font-size: 0.32rem;
  color: #818181;
  line-height: 0.427rem;
  margin-top: 0.133rem;
}
.zxz-yx-item .sch-name {
  color: #131B18;
  font-size: 0.4rem;
  line-height: 0.64rem;
  margin-right: 0.32rem;
}
.zxz-yx-item .sch-tags {
  white-space: nowrap;
  margin-top: 0.027rem;
}
.zxz-yx-item .zxz-tag {
  color: #818181;
  font-size: 0.293rem;
  padding: 0.08rem 0.107rem;
  border-radius: 0.08rem;
}
.zxz-yx-item .zxz-tag::before {
  border-color: #d9d9d9;
  border-radius: 0.053rem;
}
.zxz-yx-item .zxz-tag + .zxz-tag {
  margin-left: 0.16rem;
}
.zxz-yx-item .zxz-item-title * {
  float: left;
}
.zxz-yx-item .zxz-item-title svg {
  width: 0.32rem;
  height: 0.32rem;
  padding-top: 0.12rem;
  padding-bottom: 0.2rem;
  margin-left: -0.213rem;
  margin-right: 0.32rem;
  margin-top: 0.027rem;
}
.zxz-block-ss {
  text-align: center;
  height: 0.907rem;
  line-height: 0.907rem;
  font-size: 0.373rem;
  background: #f5f5f5;
  margin-bottom: 0.373rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zxz-block-ss svg {
  width: 0.32rem;
  height: 0.32rem;
  margin-left: 0.107rem;
}
.zxz-tab {
  padding: 0.533rem 0.427rem 0.4rem;
  background: #fff;
}
.zxz-tab-item {
  font-size: 0.347rem;
  height: 0.48rem;
  line-height: 0.48rem;
  color: #818181;
  float: left;
  position: relative;
  cursor: pointer;
}
.zxz-tab-item.active {
  color: #1CB278;
}
.zxz-tab-item + .zxz-tab-item {
  margin-left: 0.267rem;
  padding-left: 0.267rem;
  position: relative;
}
.zxz-tab-item + .zxz-tab-item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0.2rem;
  background: #828282;
  left: 0;
  top: 0.133rem;
}
.zxz-zb-list {
  padding: 0 0.427rem 0.427rem;
}
.zxz-zb-list .sub-title {
  height: 0.427rem;
  line-height: 0.427rem;
  font-size: 0.4rem;
  font-weight: 400;
  color: #000;
  border-left: 0.08rem solid #1db278;
  padding-left: 0.16rem;
  margin-top: 0.533rem;
  margin-bottom: 0.32rem;
}
.zxz-zb-list .title-right {
  color: #1CB278;
  height: 0.427rem;
  line-height: 0.427rem;
  font-size: 0.32rem;
  float: right;
}
.zxz-zb-item {
  position: relative;
  padding: 0.347rem 0.32rem 0.4rem;
  border-radius: 0.16rem;
  box-shadow: 0 0 0.16rem #e5e5e5;
  overflow: hidden;
  /* .ewm-item:nth-child(2n){
        margin-left: 10px;
    } */
}
.zxz-zb-item + .zxz-zb-item {
  margin-top: 0.533rem;
}
.zxz-zb-item .zb-top {
  position: relative;
}
.zxz-zb-item .zb-school {
  font-size: 0.4rem;
  color: #1CB278;
  line-height: 0.533rem;
  padding-right: 1.76rem;
  margin-top: 0;
  margin-bottom: 0.293rem;
  cursor: pointer;
}
.zxz-zb-item .zb-status {
  position: absolute;
  white-space: nowrap;
  right: 0;
  top: 0;
  line-height: 0.507rem;
  padding: 0 0.24rem 0 0.427rem;
  border-radius: 0.267rem;
  font-size: 0.32rem;
}
.zxz-zb-item .dot {
  display: block;
  position: absolute;
  content: " ";
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 100%;
  top: 0.213rem;
  left: 0.213rem;
}
.zxz-zb-item .live {
  background: #ff5b5a;
  color: #fff;
  border: 1px solid #ff5b5a;
}
.zxz-zb-item .live .dot {
  background: #fff;
}
.zxz-zb-item .coming .dot {
  background: #9B9B9B;
}
.zxz-zb-item .coming {
  background: #ECECEC;
  color: #9B9B9B;
  border: 1px solid #ECECEC;
}
.zxz-zb-item .done .dot {
  background: #F7B500;
}
.zxz-zb-item .zb-top .done {
  background: #FFEFC3;
  color: #F7B500;
  border: 1px solid #FFEFC3;
}
.zxz-zb-item .mid-left {
  float: left;
  width: 3.653rem;
  height: 1.867rem;
  margin-right: 0.2rem;
}
.zxz-zb-item .mid-left .van-image {
  display: block;
}
.zxz-zb-item .mid-left .van-image__error {
  position: static;
}
.zxz-zb-item .mid-left img {
  display: block;
  width: 3.653rem;
  height: 1.867rem;
  border-radius: 0.107rem;
}
.zxz-zb-item .mid-right {
  float: left;
  width: calc(100% - 3.853rem);
}
.zxz-zb-item .zb-title {
  font-weight: 400;
  height: 0.907rem;
  font-size: 0.36rem;
  color: #131B18;
  line-height: 0.453rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0;
  margin-bottom: 0.133rem;
  max-height: 0.907rem;
}
.zxz-zb-item .zb-des {
  font-size: 0.32rem;
  color: #9B9B9B;
  line-height: 0.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0;
  margin-bottom: 0;
  max-height: 0.8rem;
}
.zxz-zb-item .zb-bot {
  margin-top: 0.4rem;
}
.zxz-zb-item .bot-btn {
  float: right;
  height: 0.8rem;
  background-color: #1db278;
  border: 1px solid #1db278;
  font-size: 0.32rem;
  line-height: 0.8rem;
}
.zxz-zb-item .bot-btn .iconfont {
  font-size: 0.32rem;
  margin-right: 0.08rem;
}
.zxz-zb-item .zb-bot .bot-btn {
  padding: 0;
  width: 2.133rem;
}
.zxz-zb-item .popup .bot-btn {
  padding: 0 0.24rem 0 0.16rem;
  margin: 0 0.133rem 0.267rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-size-adjust: unset;
}
.zxz-zb-item .popup .bot-btn .van-button__text {
  overflow: hidden;
}
.zxz-zb-item .bot-left {
  float: left;
  width: calc(100% - 2.666667rem);
}
.zxz-zb-item .bot-left p {
  font-size: 0.293rem;
  color: #131B18;
  line-height: 0.4rem;
  margin-top: 0;
  margin-bottom: 0;
}
.zxz-zb-item .bot-left p + p {
  margin-top: 0.053rem;
}
.zxz-zb-item .bot-left .zb-zjr {
  /* white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis; */
}
.zxz-zb-item .bot-left .zjr-span {
  /*  display: inline-block;
            max-width: 220px;
            overflow: hidden;
            text-overflow: ellipsis;
            vertical-align: bottom; */
}
.zxz-zb-item .bot-left .job-title {
  margin-left: 0.32rem;
  color: #9b9b9b;
}
.zxz-zb-item .popup,
.zxz-zb-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.zxz-zb-item .overlay {
  background-color: rgba(0, 0, 0, 0.6);
}
.zxz-zb-item .pop-content {
  position: relative;
  z-index: 10;
  padding: 0.453rem 0.32rem 0.267rem;
  height: calc(100% - 0.72rem);
  overflow-y: auto;
  /* display: flex;
        flex-direction: column;
        justify-content: center; */
}
.zxz-zb-item .ewm-content,
.zxz-zb-item .link-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.zxz-zb-item .ewm-content.only,
.zxz-zb-item .link-content.only {
  justify-content: center;
  text-align: center;
}
.zxz-zb-item .ewm-content {
  margin-bottom: 0.133rem;
}
.zxz-zb-item .ewm-item {
  display: inline-block;
  margin: 0 0.267rem 0.267rem;
}
.zxz-zb-item .ewm-item img {
  display: block;
  width: 2.08rem;
  margin: 0 auto;
}
.zxz-zb-item .ewm-item p {
  text-align: center;
  text-indent: 0;
  color: #fff;
  font-size: 0.32rem;
  margin-top: 0.053rem;
  margin-bottom: 0;
}
.risk-tip {
  padding-left: 0.427rem;
  padding-right: 0.427rem;
  font-size: 0.293rem;
  line-height: 0.4rem;
  color: #FFA03B;
  margin-top: 0.4rem;
  margin-bottom: -0.053rem;
}
.risk-tip .van-icon {
  vertical-align: middle;
  margin-right: 0.053rem;
}
.gk-zhjy-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 0.427rem;
  min-height: 4rem;
  background: url(../images/banner-2.jpg) no-repeat, linear-gradient(180deg, #49C48D 0%, #1CB278 100%);
  background-size: cover;
}
.gk-zhjy-banner h1 {
  font-size: 0.64rem;
  line-height: 0.853rem;
  margin: 0;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.06);
  text-align: center;
}
.gk-zhjy-banner h3 {
  font-size: 0.32rem;
  font-weight: 400;
  color: #FFEA5F;
  line-height: 0.533rem;
  margin: 0.213rem 0 0;
}
.gk-zhjy-tab-con .tab-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.133rem;
}
.gk-zhjy-tab-con li {
  position: relative;
  height: 0.6rem;
  line-height: 0.6rem;
  font-size: 0.427rem;
  color: #626F69;
  cursor: pointer;
}
.gk-zhjy-tab-con li + li {
  margin-left: 0.533rem;
}
.gk-zhjy-tab-con li.selected {
  color: #131B18;
  font-weight: 700;
}
.gk-zhjy-tab-con li.selected::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.133rem;
  margin-left: -0.267rem;
  width: 0.533rem;
  height: 0.08rem;
  background: #1CB278;
  border-radius: 0.04rem;
}
.gk-zhjy-tab-con li:hover {
  color: #131B18;
}
.no-info {
  text-align: center;
}
.no-info img {
  width: 5.44rem;
}
.no-info .text {
  font-size: 0.373rem;
  color: #959E9A;
  line-height: 0.533rem;
  margin-top: 0.213rem;
}
.gk-gdwz-tab.gk-gdwz-tab-index {
  background: #F5F5F5;
  padding: 20 0.427rem;
}
.gk-gdwz-tab.gk-gdwz-tab-index .tab-list {
  padding: 0 0.427rem;
  justify-content: left;
}
.gk-gdwz-index {
  padding: 0.213rem 0.427rem 0.4rem;
}
.gk-gklc {
  padding: 0.133rem 0.267rem;
  background: #FFFFFF;
  border-radius: 0.08rem;
}
.gk-gklc-item:first-child .gklc-item-title {
  padding-top: 0.267rem;
}
.gk-gklc-item.expand .gklc-item-title {
  padding: 0.267rem 0;
  border-bottom: none;
}
.gk-gklc-item:last-child .gklc-item-title {
  border-bottom: none;
}
.gklc-item-title {
  display: flex;
  align-items: center;
  font-size: 0.427rem;
  font-weight: 400;
  color: #131B18;
  line-height: 0.64rem;
  padding: 0.267rem 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}
.gklc-item-title .text {
  flex: 1;
}
.gklc-item-title .iconfont {
  color: #1CB278;
  font-size: 0.373rem;
}
.gklc-list-item {
  margin-bottom: 0.32rem;
}
.gklc-list-item:last-child {
  margin-bottom: 0;
}
.gklc-item-content {
  padding: 0.347rem 0.24rem;
  background: #F7FBF9;
  margin-bottom: 0.133rem;
}
.gklc-item-content .gklc-list-item .title {
  font-size: 0.373rem;
  font-weight: 400;
  color: #131B18;
  line-height: 0.587rem;
  margin-bottom: 0.107rem;
}
.gklc-item-content .gklc-list-item .text {
  font-size: 0.373rem;
  font-weight: 400;
  color: #626F69;
  line-height: 0.587rem;
}
.gklc-empty-img {
  height: 2.32rem;
  background: url(../images/no-msg.svg) center center no-repeat;
  background-size: contain;
  margin-bottom: 0.32rem;
}
.gklc-empty-text {
  text-align: center;
  font-size: 0.32rem;
  color: #959e9a;
  line-height: 0.427rem;
}
.dfz-dialog {
  position: relative;
  display: flex;
  height: 1.226rem;
  align-items: center;
  justify-content: right;
}
.dfz-dialog.has-icon::after {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: 0;
  display: block;
  content: '';
  width: 0.453rem;
  height: 0.187rem;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAOCAYAAABKKc6PAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIqADAAQAAAABAAAADgAAAAAGS2NRAAABdElEQVQ4Eb2UPy/GQBzHe0W0TUQe47NYxGCyPZtFbJ5NHqORTVi9AyMDmxgtQmLxSIiNPC9A8B6w9F+irc9JK3paR9s8TZrr3f3u+/307tsaRs3L87wt13UvkiSZrClVbTnG4wAccyfyBughCIKZamqGIaosxLgthDgFpqOsfzFNc8W27RtlXNs1tRVKAW/eAWJQACErpxjvA7quLNN2/wXi+/4aireYtcuUmRtl7hDgPZ5HyurU8T8djRQEYpd2WxXQ9PuO46yyg2+aOn1GMG/xdicILenEiuaBeCQ3Xcuynovms7FfdyQMw7kois6Bqfw1pEavaYivM2O1Lc0IgesCcdcAhPRsoXOJ5oYKkPULQcjDDlsqd2IiK6zboiVDfMAx76fPOcnc0VDgAHFE28tVNd+5IsS97yH+AgFgOo7jMzznm/f9qQjEE7lZzkL8eTRALAAxGBaExGLXZ8ngPd6Lsi9kgKCTP58xOTDsC+93vDc/ANkyvA7nM+V/AAAAAElFTkSuQmCC) center center no-repeat;
  background-size: 0.453rem 0.187rem;
}
.dfz-ssmc {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.133rem;
  height: 0.507rem;
  cursor: pointer;
  background: rgba(28, 178, 120, 0.15);
  border-radius: 0.053rem;
}
.dfz-ssmc .text {
  font-size: 0.32rem;
  font-weight: 700;
  color: #1CB278;
  line-height: 0.44rem;
}
.dfz-ssmc .icon {
  margin-left: 0.067rem;
  font-size: 0.16rem;
  color: #1CB278;
}
.news-list-ss {
  display: inline-block;
  text-align: center;
  background: #F5F5F5;
  border-radius: 0.053rem;
  font-size: 0.32rem;
  font-weight: 400;
  color: #5D5D5D;
  line-height: 0.44rem;
  padding: 1px 0.133rem;
  margin-left: 0.187rem;
}
.news-list-ssmc {
  display: flex;
  align-items: center;
}
.tbtj-title {
  display: flex;
  align-items: center;
}
.tbtj-title-text {
  flex: 1;
}
.tbtj-title-more {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.373rem;
  color: #959E9A;
}
.wap-nav-bar.no-border:after {
  border-bottom: none;
}
.index-help-warp {
  margin-bottom: 0.267rem;
}
.index-help {
  padding: 0 0.293rem;
}
.index-help.index-gkcs {
  padding: 0;
}
.index-help.index-gkcs .van-tab:first-child {
  margin-left: 0.267rem;
}
.index-help.index-gkcs .van-tab:nth-last-child(2) {
  margin-right: 0.267rem;
}
.index-help.index-gkcs .index-news-list {
  padding-left: 0.427rem;
  padding-right: 0.427rem;
}
.index-help .van-hairline--top-bottom:after {
  border: 0;
}
.index-help .van-tabs__wrap {
  height: 0.8rem;
  overflow: visible;
}
.index-help .van-tab {
  line-height: 0.8rem;
  padding: 0 0.107rem;
}
.index-help .index-news-list {
  font-size: 0.373rem;
  font-weight: 400;
  color: #131B18;
  line-height: 0.587rem;
  padding: 0.533rem 0.133rem;
}
.index-help .index-news-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.373rem;
}
.index-help .index-news-list li:last-child {
  margin-bottom: 0;
}
.index-help .index-news-list li a {
  flex: 1;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #131B18;
}
.index-help .index-news-list .van-icon {
  font-size: 0.213rem;
  color: #BEEFDD;
  margin-right: 0.107rem;
}
.van-tab--active .index-help-title {
  color: #fff;
  background: #1DB279;
  position: relative;
}
.van-tab--active .index-help-title::after {
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: '';
  width: 0;
  height: 0;
  border: 0.267rem solid transparent;
  border-top-color: #1DB279;
}
.index-help-title {
  font-size: 0.373rem;
  font-weight: 400;
  color: #69716D;
  line-height: 0.587rem;
  background: #F3FAF7;
  border-radius: 0.053rem;
  padding: 0.107rem 0;
}
.gk-index-zs-list {
  display: flex;
  padding: 0.267rem 0.427rem 0.547rem 0.427rem;
  background: #fff;
  justify-content: space-between;
}
.gk-index-zs-list .zs-item {
  position: relative;
  width: 50%;
  border-radius: 0.16rem;
  margin-right: 0.347rem;
  display: flex;
  align-items: center;
  justify-content: center;
  display: block;
  text-decoration: none;
}
.gk-index-zs-list .zs-item img {
  display: block;
  width: 100%;
  border-radius: 0.107rem;
}
.gk-index-zs-list .zs-item:last-child {
  margin-right: 0;
}
.gk-new-bl {
  padding-top: 0.533rem;
  background: #fff;
}
.gk-new-bl .van-skeleton {
  height: 1.707rem;
}
.gk-new-bl .van-skeleton .van-skeleton__avatar {
  margin-top: 0.407rem;
}
.gk-new-bl .van-skeleton__content {
  padding-top: 0.28rem;
}
.gk-new-bl .van-skeleton__content .van-skeleton__row:not(:first-child) {
  margin-bottom: 0.2rem;
}
.gk-new-bl .hot-news-bl {
  margin: 0 0.427rem;
  background: #F5F5F5;
  border-radius: 0.16rem;
  padding: 0.373rem 0.373rem 0.373rem 0.427rem;
  display: flex;
  align-items: center;
}
.gk-new-bl .hot-news-bl .gk-img-bl {
  display: block;
  width: 1.067rem;
  margin-right: 0.4rem;
}
.gk-new-bl .hot-news-bl .news-list-swp {
  width: calc(100% - 1.467rem);
}
.gk-new-bl .hot-news-bl .news-list-swp .van-swipe {
  height: 1.333rem;
}
.gk-new-bl .hot-news-bl .news-list-swp .no-tips {
  line-height: 1.333rem;
}
.gk-new-bl .hot-news-bl .news-list-swp .icon {
  padding: 0 0.213rem;
  height: 0.533rem;
  line-height: 0.533rem;
  border-radius: 0.533rem;
  margin-right: 0;
  font-size: 0.373rem;
  display: inline-block;
  margin-bottom: 0.04rem;
  color: #626f69;
}
.gk-new-bl .hot-news-bl .news-list-swp .msg {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #626f69;
  font-size: 0.373rem;
  font-weight: 400;
  line-height: 0.587rem;
}
.gk-new-bl .hot-news-bl .news-list-swp a {
  color: #131B18;
}
.gk-new-bl .hot-news-bl .news-bl .news-item {
  margin-bottom: 0.16rem;
}
.gk-new-bl .hot-news-bl .news-bl .news-item:last-child {
  margin-bottom: 0;
}
.index-gkyl-warp {
  padding: 0.267rem 0.427rem 0;
  background: #fff;
}
.index-gkyl {
  background: #F7FBF9;
  border-radius: 0.107rem;
  padding: 0.373rem 0.427rem;
}
.index-gkyl .title {
  font-size: 0.427rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.64rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.36rem;
}
.index-gkyl .title::before {
  display: block;
  content: '';
  height: 0.427rem;
  width: 0.427rem;
  background: url(../images/gkyl.svg) center center no-repeat;
  background-size: contain;
  margin-right: 0.213rem;
}
.gkyl-list-month {
  width: 1.067rem;
  padding-right: 0.24rem;
  box-sizing: border-box;
  text-align: right;
  font-size: 0.373rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.533rem;
  white-space: nowrap;
}
.gkyl-list-line {
  height: 100%;
  position: absolute;
  left: 1.067rem;
  background: #BEEFDD;
  width: 1px;
  top: 0.187rem;
  left: 1.04rem;
}
.gkyl-list-line::before {
  content: '';
  display: block;
  width: 6Px;
  height: 6Px;
  background: #1CB278;
  border-radius: 3Px;
  position: absolute;
  top: 0;
  left: -3Px;
}
.gkyl-list-text {
  flex: 1;
  font-size: 0.373rem;
  color: #626F69;
  line-height: 0.533rem;
  padding-left: 0.28rem;
}
.gkyl-list-text .text-item:not(:last-child) {
  margin-bottom: 0.16rem;
}
.gkyl-list-text a:active {
  background-color: rgba(0, 0, 0, 0.05);
}
.gkyl-list li {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 0.373rem;
}
.gkyl-list li:last-child {
  padding-bottom: 0;
}
.gkyl-list li:last-child .gkyl-list-line {
  background: transparent;
}
.gk-grid-other {
  padding: 0 0.32rem 0.16rem;
}
.gk-grid-other .van-grid-item__content {
  padding: 0.107rem 0;
}
.gk-grid-other .grid-box {
  padding: 0.16rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gk-grid-other .grid-box:active {
  background-color: rgba(0, 0, 0, 0.05);
}
.gk-grid-other .van-grid-item__icon-wrapper {
  width: 1.253rem;
  height: 1.253rem;
  margin-bottom: 0.107rem;
}
.gk-grid-other .van-grid-item__icon-wrapper a {
  display: block;
}
.gk-grid-other .van-grid-item__icon-wrapper a img {
  width: 1.253rem;
  height: 1.253rem;
  display: block;
}
.gk-grid-other .van-grid-item__text {
  font-size: 0.32rem;
  color: #131B18;
  line-height: 0.533rem;
}
.tab-swipe {
  background: #fff;
  transition: height 0.3s linear;
}
.tab-swipe .van-swipe-item {
  border-radius: 0;
}
.tab-swipe .van-swipe__indicators {
  bottom: 0;
}
.tab-swipe .van-swipe__indicator {
  width: 0.533rem;
  height: 0.213rem;
  background: #F2F4F3;
  opacity: 1;
  border-radius: 0.107rem;
}
.tab-swipe .van-swipe__indicator--active {
  background: #1CB278;
  width: 0.213rem;
}
.tab-swipe .van-swipe__indicator:not(:last-child) {
  margin-right: 0.133rem;
}
.van-search__content {
  padding-left: 0.213rem;
}
.gk-wap-search {
  padding: 0;
}
.gk-wap-search .van-search__content {
  height: 0.853rem;
  border: 0.027rem solid #1db278;
  border-right: none;
  border-radius: 0.107rem 0px 0px 0.107rem;
  box-sizing: border-box;
  background: #fff;
}
.gk-wap-search .van-search__content:after {
  display: none;
}
.gk-wap-search .van-search__action {
  height: 0.853rem;
  line-height: 0.853rem;
  background: #1db278;
  border-radius: 0px 0.107rem 0.107rem 0px;
  font-size: 0.373rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 0.32rem;
}
.gk-wap-search .van-search__action .gk-wap-search-btn {
  height: 0.853rem;
  line-height: 0.88rem;
}
.gk-wap-search .van-field__body {
  height: 100%;
}
.gk-wap-search .van-field__body input {
  font-size: 0.32rem;
}
.gk-index-active:active {
  background-color: rgba(0, 0, 0, 0.05);
}
@keyframes loader7 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}
.loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: auto;
  background: #f7f7f7;
  z-index: 10;
  max-width: 750Px;
  margin: 0 auto;
}
.loading-bg .loading-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
}
.loading-bg .loading-gif {
  display: inline-block;
  background: rgba(248, 132, 0, 0.6);
  width: 0.8rem;
  height: 0.8rem;
  position: relative;
  text-align: center;
  transform: rotate(20eg);
  animation: loader7 3s linear infinite;
}
.loading-bg .loading-gif:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0.8rem;
  width: 0.8rem;
  background: rgba(248, 132, 0, 0.5);
  transform: rotate(135deg);
}
.loading-bg .tip {
  margin-top: 0.427rem;
  font-size: 0.373rem;
  color: #959E9A;
}
.center {
  text-align: center;
}
.van-dropdown-item {
  max-width: 750Px;
  margin: 0 auto;
}
.van-dropdown-item .van-button {
  border-radius: 0;
}
.van-popup {
  max-width: 750Px;
  margin: 0 auto;
}
.van-popup--bottom {
  left: auto;
}
.van-dialog {
  border-radius: 0.213rem;
}
.van-rate__icon {
  width: auto;
}
.van-rate__icon--half {
  width: 50%;
}
.van-rate__item:not(:last-child) {
  padding-right: 0;
  margin-right: 0.053rem;
}
.gk-myd-dialog {
  width: 9.147rem;
}
.padding32 {
  padding: 0.427rem;
}
.gk-search-nav {
  background: #fff;
}
.gk-search-nav .van-search {
  padding: 0.427rem 0.427rem 1px 0.427rem;
}
.gk-search-nav .van-search .van-cell {
  padding: 0.133rem 0.213rem 0.133rem 0;
}
.gk-search-nav .van-search__content {
  position: relative;
  background: #fff;
}
.gk-search-nav .van-search__content:after {
  position: absolute;
  box-sizing: border-box;
  content: " ";
  pointer-events: none;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  border: 1px solid #D5D5D5;
  transform: scale(0.5);
}
.gk-search-nav .van-dropdown-menu__bar {
  box-shadow: none;
}
.gk-search-nav .van-dropdown-menu__bar:after {
  position: absolute;
  box-sizing: border-box;
  content: " ";
  pointer-events: none;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  border: 0px solid #D5D5D5;
  transform: scale(0.5);
  border-bottom-width: 1px;
}
.gk-search-nav .van-dropdown-menu__title {
  font-size: 0.347rem;
}
.gk-search-nav .van-field__control {
  font-size: 0.373rem;
}
.gk-search-nav .van-dropdown-menu__bar {
  height: 1.147rem;
}
.van-nav-bar.gk-yxk-nav .van-nav-bar__text,
.van-nav-bar.gk-yxk-nav .van-nav-bar__title {
  font-size: 0.453rem;
  color: #131b18;
}
.van-nav-bar.gk-yxk-nav .van-icon {
  color: #131B18;
  font-size: 0.533rem;
}
.van-nav-bar.gk-yxk-nav.van-hairline--bottom:after {
  border-bottom-width: 1px;
  border-color: #D5D5D5;
}
.gk-yxklist-item {
  padding: 0.373rem 0.427rem 0.4rem 0.427rem;
  line-height: normal;
  align-items: center;
}
.gk-yxklist-item .van-cell__title {
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.427rem;
}
.gk-yxklist-item .van-cell__value {
  text-align: left;
  overflow: initial;
}
.gk-yxklist-item .van-image {
  width: 100%;
  height: 100%;
}
.gk-yxklist-item .van-image .van-image__error-icon {
  font-size: 1.6rem;
}
.gk-yxklist-item .yxk-msg {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.gk-yxklist-item .yxk-detail {
  display: flex;
  font-size: 0.32rem;
  align-items: center;
  color: #959E9A;
  height: 0.427rem;
  line-height: 0.427rem;
  margin-top: 0.227rem;
}
.gk-yxklist-item .yxk-detail .iconfont {
  font-size: 0.32rem;
  margin-right: 0.027rem;
}
.gk-yxklist-item .yxk-detail .col-line {
  margin: 0 0.133rem;
}
.gk-yxklist-item .yxk-detail .iconfont,
.gk-yxklist-item .yxk-detail .col-line {
  color: #D8D8D8;
}
.gk-yxklist-item .yxk-detail .yxk-szd,
.gk-yxklist-item .yxk-detail .department {
  color: #626F69;
}
.gk-yxklist-item .yxk-name {
  max-width: 4.4rem;
  height: 0.64rem;
  margin-right: 0.16rem;
  font-size: 0.427rem;
  color: #131B18;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.gk-yxklist-item .yxk-myd {
  font-size: 0.32rem;
  height: 0.587rem;
  width: 2.267rem;
  line-height: 0.587rem;
  padding-left: 0.293rem;
  background: #FFF4E3;
  border-radius: 0.267rem 0px 0px 0.267rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.gk-yxklist-item .yxk-myd .rate {
  display: inline-block;
  font-weight: 700;
  color: #FF9900;
  margin-left: 0.107rem;
}
.yxk-zgsx {
  margin-top: 0.227rem;
  display: flex;
  align-items: center;
  height: 0.427rem;
  font-size: 0.32rem;
  color: #626F69;
  line-height: 0.427rem;
}
.yxk-zgsx .col-line {
  margin: 0 0.133rem;
  color: #D8D8D8;
}
.gk-yxk-col {
  background: #fff;
  margin-bottom: 0.267rem;
}
.gk-yxk-col:last-child {
  margin-bottom: 0;
}
.gk-yxk-col.myd {
  padding: 0.533rem 0;
}
.gk-yxk-col .gk-yxk-title {
  font-size: 0.427rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.64rem;
  display: flex;
  align-items: center;
  padding: 0.533rem 0.427rem;
  position: relative;
}
.gk-yxk-col .gk-yxk-title::before {
  display: block;
  content: '';
  width: 0.533rem;
  height: 0.453rem;
  margin-right: 0.107rem;
  background: url(../images/yxk-yxmyd.svg) center center no-repeat;
  background-size: cover;
}
.gk-yxk-col .gk-yxk-title .van-icon {
  font-size: 0.373rem;
  color: rgba(0, 0, 0, 0.4);
  position: absolute;
  right: 0.427rem;
  top: 50%;
  transform: translateY(-50%);
}
.gk-yxk-col .gk-jcwd-title {
  font-size: 0.427rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.64rem;
  display: flex;
  align-items: center;
  padding: 0.533rem 0.427rem 0;
}
.gk-yxk-col .gk-jcwd-title::before {
  display: block;
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.107rem;
  background: url(../images/yxk-jcwd.svg) center center no-repeat;
  background-size: cover;
}
.gk-yxk-col .gk-yxk-con {
  padding: 0.08rem 0.427rem;
}
.gk-yxk-col p {
  font-size: 0.347rem;
  margin: 0.213rem 0;
  line-height: 0.56rem;
}
.gk-yxk-col h3 {
  margin: 0;
}
.gk-yxk-col a {
  color: #1B72EA;
}
.gk-yxk-col .yxxx-item {
  display: flex;
  margin-bottom: 0.107rem;
  line-height: 0.56rem;
  font-size: 0.347rem;
}
.gk-yxk-col .yxxx-item .yxxx-item-title {
  color: #959E9A;
}
.gk-yxk-col .yxxx-item .yxxx-item-con {
  flex: 1;
}
.gk-yxk-col .yxxx-item p {
  margin: 0;
}
.gk-yxk-col .gk-yxk-more a {
  font-size: 0.373rem;
  font-weight: 400;
  color: #959E9A;
  line-height: 0.587rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gk-yxk-col .gk-yxk-more.gk-jcwd-more {
  padding: 0.213rem 0 0.427rem;
}
.gk-yxk-col .gk-yxk-more .mdgs-no-data {
  margin-bottom: 0.427rem;
  padding-top: 0;
}
.gk-yxk-col .gk-yxk-more .mdgs-no-data img {
  width: 4.827rem;
}
.gk-yxk-yxxx {
  display: flex;
  padding: 0.533rem 0.427rem;
  align-items: center;
}
.gk-yxk-yxxx .xh {
  width: 2.133rem;
  height: 2.133rem;
  margin-right: 0.427rem;
}
.gk-yxk-yxxx .van-image {
  width: 100%;
  max-height: 100%;
}
.gk-yxk-yxxx .van-image .van-image__error-icon {
  font-size: 2.133rem;
}
.gk-yxk-yxxx .yxxx {
  flex: 1;
}
.gk-yxk-yxxx .yxxx-item-position {
  position: relative;
}
.gk-yxk-yxxx .yxxx-item-position .followCount {
  position: absolute;
  right: 0;
  top: 0.027rem;
  padding: 0 0.08rem;
  font-size: 0.267rem;
  height: 0.533rem;
  line-height: 0.533rem;
  border-radius: 0.053rem;
  color: #4b99f4;
  background: #ecf3fb;
}
.yxxx-zbft-list {
  background-color: #fff;
  padding: 0.533rem 0.427rem;
  border-radius: 0.107rem;
}
.yxxx-zbft-list .list-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.427rem;
  border-bottom: 1Px solid #f5f5f5;
  margin-bottom: 0.427rem;
}
.yxxx-zbft-list .list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.yxxx-zbft-list .list-item a {
  font-size: 0.427rem;
  line-height: 0.64rem;
  color: #131b18;
  margin-bottom: 0.213rem;
}
.yxxx-zbft-list .list-item .item-date {
  font-size: 0.373rem;
  line-height: 0.64rem;
  color: #959E9A;
}
.gk-yxk-myd {
  padding: 0.08rem 0 0.453rem 0;
  text-align: center;
}
.gk-yxk-myd .myd-rate {
  font-size: 0.48rem;
  font-weight: 700;
  line-height: 0.587rem;
  font-family: 'DattoDIN';
  margin-bottom: 0.04rem;
}
.gk-yxk-myd .myd-rate.no-data {
  font-weight: 400;
  color: #959E9A;
}
.gk-yxk-myd .myd-title {
  font-size: 0.373rem;
  font-weight: 400;
  color: #131B18;
  line-height: 0.587rem;
}
.gk-yxk-myd .myd-rs {
  font-size: 0.267rem;
  color: #959E9A;
  line-height: 0.373rem;
}
.gk-yxk-myd .van-circle {
  width: 1.867rem;
  height: 1.867rem;
}
.gk-myd-tip {
  margin-top: 0.427rem;
  color: #959E9A;
  font-size: 0.32rem;
}
.gk-yxk-tabs {
  position: relative;
  padding: 0 0.427rem;
}
.gk-yxk-tabs .van-tabs__line {
  display: none;
}
.gk-yxk-tabs .van-icon {
  position: absolute;
  top: 50%;
  right: 0.427rem;
  margin-top: -0.213rem;
  font-size: 0.427rem;
}
.gk-yxk-tabs .van-tab {
  font-size: 0.373rem;
  font-weight: 400;
  color: #818181;
  display: block;
}
.gk-yxk-tabs .van-tab--active {
  color: #131B18;
}
.gk-yxk-tabs .van-tabs--line .van-tabs__wrap {
  height: 1.333rem;
}
.gk-yxk-tabs .van-tabs--line .van-tabs__wrap:after {
  border-width: 0;
}
.rate-star .van-rate__icon {
  font-size: 0.373rem;
  color: #E5E2E0;
}
.rate-star .van-rate__icon--full {
  color: #FF9900;
}
.rate-star .van-rate__icon--cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.gk-yxk-myd-list {
  padding: 0 0.427rem 0 0.48rem;
}
.gk-yxk-myd-list .mdgs-no-data {
  margin-bottom: 0.427rem;
  padding-top: 0;
}
.gk-yxk-myd-list .mdgs-no-data img {
  width: 4.827rem;
}
.myd-item {
  display: flex;
  align-items: center;
  height: 0.587rem;
  line-height: 0.587rem;
  margin-bottom: 0.427rem;
}
.myd-item .num {
  font-size: 0.373rem;
  font-family: 'DattoDIN';
  color: #FFFFFF;
  background: #C4C9C6;
  line-height: 0.4rem;
  width: 0.533rem;
  height: 0.4rem;
  border-radius: 0.053rem;
  text-align: center;
  transform: skewX(-15deg);
  margin-right: 0.2rem;
}
.myd-item .num .text {
  transform: skewX(15deg);
  display: block;
}
.myd-item .num.top1 {
  background: #E64444;
}
.myd-item .num.top2 {
  background: #FE741D;
}
.myd-item .num.top3 {
  background: #F9B407;
}
.myd-item .zymc {
  font-size: 0.373rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.myd-item .rate-con {
  display: flex;
  align-items: center;
  font-size: 0.427rem;
}
.myd-item .rate-star {
  font-size: 0.373rem;
  font-weight: 700;
  color: #FFA10A;
  margin-left: 0.24rem;
}
.myd-item .rs {
  font-size: 0.32rem;
  font-weight: 400;
  color: #959E9A;
  margin-left: 0.107rem;
}
.zxdy-list-item {
  display: flex;
}
.zxdy-list-item .van-tag {
  width: 0.427rem;
  height: 0.427rem;
  line-height: 0.427rem;
  padding: 0;
  margin-top: 0.053rem;
  box-sizing: border-box;
  font-size: 0.267rem;
  justify-content: center;
  text-align: center;
}
.zxdy-list-item .item-content {
  flex: 1;
  color: #626F69;
  font-size: 0.347rem;
}
.zxdy-list-item .item-content .title {
  font-size: 0.373rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.587rem;
}
.zxdy-list-item .item-content .con {
  line-height: 0.56rem;
}
.zxdy-list-item p {
  margin: 0;
}
.zxdy-list-item-q {
  display: flex;
}
.zxdy-list-item-q .title {
  flex: 1;
  margin-left: 0.067rem;
  font-size: 0.373rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.587rem;
}
.zxdy-list-item-q .title.top {
  position: relative;
}
.zxdy-list-item-q .title.top::after {
  content: '置顶';
  width: 0.773rem;
  height: 0.427rem;
  background: rgba(247, 160, 0, 0.1);
  border-radius: 0.24rem;
  border: 0.027rem solid #FF9700;
  font-size: 0.267rem;
  font-weight: 400;
  color: #FF9700;
  line-height: 0.427rem;
  text-align: center;
  display: inline-block;
  margin-left: 0.187rem;
  position: absolute;
  bottom: 0;
}
.zxdy-list-item-q .question {
  margin-top: 0.107rem;
}
.q-con {
  font-size: 0.373rem;
  color: #131B18;
  line-height: 0.64rem;
  margin-bottom: 0.093rem;
}
.q-con-info {
  font-size: 0.32rem;
  color: #959E9A;
  line-height: 0.533rem;
  margin-bottom: 0.107rem;
}
.q-con-info .user {
  margin-right: 0.427rem;
}
.zxdy-list-answer {
  background: #F6F9F8;
  border-radius: 0.053rem;
  padding: 0.267rem;
}
.zxdy-list-answer .answer {
  float: left;
  margin-top: 0.12rem;
}
.zxdy-list-answer .con {
  min-height: 0.64rem;
  font-size: 0.373rem;
  color: #626F69;
  line-height: 0.64rem;
  overflow: auto;
}
.zxdy-list-answer .school {
  font-size: 0.373rem;
  color: #626F69;
  line-height: 0.64rem;
}
.zxdy-list-answer p {
  margin: 0 0 0.373rem;
  line-height: 0.64rem;
}
.zxdy-list-answer p:last-child {
  margin-bottom: 0;
}
.zxdy-list-answer img {
  width: 100% !important;
}
.gk-jcwd-collapse .van-collapse-item__title {
  padding: 0.307rem 0.427rem;
}
.gk-jcwd-collapse .van-collapse-item__content {
  padding: 1px 0.427rem;
}
.gk-jcwd-collapse .van-cell__right-icon {
  color: #B7BCC4;
}
.gk-jcwd-collapse .van-collapse-item__title--expanded {
  padding-bottom: 0.107rem;
}
.gk-jcwd-collapse .van-collapse-item__title--expanded::after {
  display: none;
}
.gk-jcwd-collapse .van-hairline--top:after {
  border-top-width: 1Px;
}
.gk-jcwd-collapse .no-border + .van-collapse-item:after {
  border-top-width: 0;
}
.gk-jcwd-collapse .van-collapse-item:last-child .zxdy-list-answer {
  margin-bottom: 0.307rem;
}
.gk-jcwd-collapse [class*=van-hairline]:after {
  border-color: #DEDEDE;
}
.item-icon {
  margin-right: 0.16rem;
  width: 0.4rem;
  height: 0.4rem;
  text-align: center;
  line-height: 0.4rem;
  border-radius: 0.04rem;
  color: #fff;
}
.item-icon.question {
  background: linear-gradient(180deg, #6BBDF0 0%, #238FED 100%);
}
.item-icon.answer {
  background: linear-gradient(180deg, #FFDBA8 0%, #FDBC56 100%);
}
.item-icon.gonggao {
  background: url(../images/zxzx-gonggao.svg) center center no-repeat;
  background-size: contain;
  margin-top: 0.12rem;
}
.gk-myd-tips {
  padding: 0.8rem 0.427rem 0.427rem 0.427rem;
}
.gk-myd-tips .van-cell {
  padding: 0.267rem 0;
}
.gk-myd-tips .title {
  font-size: 0.373rem;
  font-weight: 700;
  color: #131B18;
}
.gk-myd-tips .van-collapse {
  min-height: 8.533rem;
}
.gk-myd-tips .van-collapse p {
  font-size: 0.347rem;
  line-height: 0.56rem;
  color: #626F69;
  margin: 0 0 0.16rem 0;
}
.gk-myd-tips .van-collapse .van-collapse-item__content {
  padding: 0px 0 0.053rem 0;
}
.gk-myd-tips .van-hairline--top-bottom:after,
.gk-myd-tips .van-cell:not(:last-child):after,
.gk-myd-tips .van-hairline--top:after {
  border-width: 0;
}
.gk-myd-tips .van-button {
  height: 1.12rem;
  border-radius: 0.56rem;
  font-size: 0.347rem;
}
.gk-yxk-nav-popup .close-bar {
  height: 46Px;
  padding: 0 0.427rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.gk-yxk-nav-popup .close-bar .van-icon {
  font-size: 0.533rem;
  color: #131B18;
}
.gk-yxk-nav-popup .van-overlay {
  top: 0;
  left: auto;
  max-width: 750Px;
  margin: 0 auto;
}
.gk-yxk-nav-popup .van-popup {
  top: 0;
  left: auto;
  width: 100%;
}
.gk-yxk-nav-popup .van-popup--center {
  transform: none;
}
.gk-yxk-nav-popup .van-row {
  padding: 0.32rem;
  text-align: center;
}
.gk-yxk-nav-popup .van-row .active {
  background: #F5F5F5;
}
.gk-yxk-nav-popup .van-row a {
  display: block;
  height: 1.12rem;
  line-height: 1.12rem;
  font-size: 0.373rem;
  color: #131B18;
  text-decoration: none;
}
.gk-yxk-white-bg {
  min-height: calc(100vh - 46Px);
  background: #fff;
}
.zszc-bg-wap {
  background: #F5F5F5;
  padding-top: 0.64rem;
}
.gk-yxk-detail-con {
  padding: 0 0.427rem 0.427rem 0.427rem;
}
.gk-yxk-detail-con .second-title {
  position: relative;
  line-height: 0.747rem;
  padding-left: 0.48rem;
  margin: 0.16rem 0 0.32rem 0;
  font-size: 0.533rem;
  font-weight: 700;
}
.gk-yxk-detail-con .second-title::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0.133rem;
  display: block;
  width: 0.107rem;
  height: 0.48rem;
  background: #1DB278;
  border-radius: 0.027rem;
}
.gk-yxk-detail-con .zyjs-second-title {
  line-height: 0.667rem;
  margin: 0.267rem 0 0.053rem 0;
  font-size: 0.48rem;
}
.gk-yxk-detail-con .zyjs-second-title::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0.227rem;
  display: block;
  width: 0.213rem;
  height: 0.213rem;
  background: #1DB278;
  border-radius: 100%;
}
.gk-yxk-detail-con .content {
  font-size: 0.427rem;
  margin-bottom: 0.48rem;
  overflow-x: scroll;
}
.gk-yxk-detail-con .content:last-child {
  margin-bottom: 0;
}
.gk-yxk-detail-con .content p {
  line-height: 0.747rem;
  margin: 0;
  margin-bottom: 0.32rem;
}
.gk-yxk-detail-con table {
  max-width: 100%;
  width: 100%;
  border-top: 1px solid #e9e9e9;
  border-collapse: collapse;
  border-spacing: 0;
  word-break: break-all;
  word-wrap: break-word;
}
.gk-yxk-detail-con table th {
  font-weight: 700;
  border: 1px solid #e9e9e9;
  border-top: 0;
  font-size: 0.427rem;
  text-align: left;
}
.gk-yxk-detail-con table td {
  border: 1px solid #e9e9e9;
  border-top: 0;
  font-size: 0.427rem;
  text-align: left;
  color: #626F69;
}
.gk-yxk-detail-title {
  display: flex;
  height: 1.76rem;
  padding: 0.453rem 0 0.427rem 0;
  box-sizing: border-box;
  align-items: baseline;
}
.gk-yxk-detail-title h2 {
  height: 0.88rem;
  line-height: 0.88rem;
  margin: 0;
  flex: 1;
  font-size: 0.64rem;
  font-weight: 700;
}
.gk-yxk-detail-title .update-time {
  height: 0.427rem;
  line-height: 0.427rem;
  font-size: 0.293rem;
  color: #959E9A;
}
.gk-yxk-detail-list .detail-item {
  padding: 0.373rem 0.427rem;
  line-height: 0.427rem;
  align-items: baseline;
}
.gk-yxk-detail-list .van-cell__title {
  flex: 1;
}
.gk-yxk-detail-list .van-cell__value {
  flex: none;
  margin-left: 0.427rem;
}
.gk-yxk-detail-list a {
  font-size: 0.373rem;
  color: #131B18;
}
.gk-yxk-detail-list .time {
  color: #959E9A;
  font-size: 0.293rem;
}
.zyjs-title {
  position: relative;
  line-height: 0.747rem;
  padding-left: 0.48rem;
  margin: 0 0 0.48rem 0;
  font-weight: 700;
  font-size: 0.533rem;
  color: #131B18;
}
.zyjs-title::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0.133rem;
  display: block;
  width: 0.107rem;
  height: 0.48rem;
  background: #1DB278;
  border-radius: 0.027rem;
}
.zyjs-con {
  margin-bottom: 0.64rem;
}
.zyjs-con:last-child {
  margin-bottom: 0;
}
.zyjs-zy {
  font-size: 0.373rem;
}
.zyjs-zy .van-col {
  line-height: 1.12rem;
  padding-right: 0.427rem;
  color: #959E9A;
}
.zyjs-zy a {
  color: #131B18;
}
.myd-content {
  min-height: calc(100vh - 4.933rem);
}
.gk-myd-sch-con {
  display: inline-block;
}
.gk-myd-sch-msg {
  display: flex;
  align-items: center;
}
.gk-myd-sch-msg .gk-myd-sch-mydtitle {
  flex: 1;
  font-size: 0.32rem;
  color: #626F69;
}
.gk-myd-sch-msg .gk-myd-sch-count {
  font-size: 0.267rem;
  height: auto;
  line-height: normal;
}
.gk-index-nav .van-nav-bar__left .logo {
  height: 0.773rem;
  vertical-align: middle;
}
.gk-index-nav-popup .van-row {
  padding: 0.267rem 0.28rem;
  text-align: center;
}
.gk-index-nav-popup .van-row a {
  display: block;
  height: 0.96rem;
  line-height: 0.96rem;
  border-radius: 0.107rem;
  margin: 0 0.147rem 0.293rem 0.147rem;
  font-size: 0.373rem;
  color: #131B18;
  background: #F5F5F5;
  text-decoration: none;
}
.swipe-bl {
  padding: 0.213rem 0.427rem 0 0.427rem;
  background: #fff;
}
.swipe-bl.padding30 {
  padding-top: 0.4rem;
}
.van-swipe-item {
  border-radius: 0.24rem;
  overflow: hidden;
  width: 100%;
}
.wap-swipe {
  transform: translateY(0);
  background: #fff;
  box-shadow: 0px 0.027rem 0.08rem 0px rgba(0, 0, 0, 0.15);
  border-radius: 0.213rem;
  overflow: hidden;
}
.wap-swipe img {
  display: block;
  width: 100%;
  border-radius: 0.24rem;
}
.gk-card-flex {
  padding: 0.427rem;
  background: #fff;
  margin-bottom: 0.267rem;
}
.gk-card-flex .gk-card-flex-row {
  display: flex;
  align-items: center;
}
.gk-card-flex .gk-card-flex-row:not(:last-child) {
  margin-bottom: 0.267rem;
}
.gk-card-flex .gk-card-flex-col {
  display: block;
  width: 25%;
  border-radius: 0.16rem;
  overflow: hidden;
  height: 1.2rem;
  line-height: 1.2rem;
  text-align: center;
  font-size: 0.347rem;
  color: #001E4E;
  margin-right: 0.267rem;
}
.gk-card-flex .gk-card-flex-col:last-child {
  margin-right: 0;
}
.gk-card-flex .gk-card-flex-col .card-list-item {
  display: block;
  color: #001E4E;
  background-size: 0.667rem auto;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.gk-card-flex .gk-card-flex-col.yxmyd {
  background: linear-gradient(189deg, rgba(157, 141, 234, 0.2) 0%, rgba(105, 69, 243, 0.2) 100%);
}
.gk-card-flex .gk-card-flex-col.yxmyd .card-list-item {
  background-image: url(../images/icon-yxmyd.png);
  background-size: 0.707rem 0.72rem;
}
.gk-card-flex .gk-card-flex-col.zymyd {
  background: linear-gradient(189deg, rgba(248, 214, 48, 0.2) 0%, rgba(251, 154, 3, 0.2) 100%);
}
.gk-card-flex .gk-card-flex-col.zymyd .card-list-item {
  background-image: url(../images/icon-zymyd.png);
  background-size: 0.693rem 0.68rem;
}
.gk-card-flex .gk-card-flex-col.zytj {
  background: linear-gradient(189deg, rgba(254, 115, 63, 0.2) 0%, rgba(239, 54, 40, 0.2) 100%);
}
.gk-card-flex .gk-card-flex-col.zytj .card-list-item {
  background-image: url(../images/icon-zytj.png);
  background-size: 0.64rem 0.64rem;
}
.gk-card-flex .gk-card-flex-col.zyjd {
  background: linear-gradient(189deg, rgba(49, 228, 174, 0.2) 0%, rgba(35, 199, 161, 0.2) 100%);
}
.gk-card-flex .gk-card-flex-col.zyjd .card-list-item {
  background-image: url(../images/icon-zyjd.png);
  background-size: 0.667rem 0.627rem;
}
.gk-card-flex .gk-card-flex-col.zbft {
  background: linear-gradient(189deg, rgba(248, 214, 48, 0.2) 0%, rgba(251, 154, 3, 0.2) 100%);
}
.gk-card-flex .gk-card-flex-col.zbft .card-list-item {
  background-image: url(../images/icon-zbft.png);
  background-size: 0.56rem 0.64rem;
}
.gk-card-flex .gk-card-flex-col.yxk {
  background: linear-gradient(189deg, rgba(252, 171, 94, 0.2) 0%, rgba(251, 110, 49, 0.2) 100%);
}
.gk-card-flex .gk-card-flex-col.yxk .card-list-item {
  background-image: url(../images/icon-yxk.png);
  background-size: 0.667rem 0.693rem;
}
.gk-card-flex .gk-card-flex-col.zyk {
  background: linear-gradient(189deg, rgba(125, 170, 232, 0.2) 0%, rgba(66, 130, 236, 0.2) 100%);
}
.gk-card-flex .gk-card-flex-col.zyk .card-list-item {
  background-image: url(../images/icon-zyk.png);
  background-size: 0.56rem 0.64rem;
}
.gk-card-flex .gk-card-flex-col.mdgs {
  background: linear-gradient(189deg, rgba(125, 170, 232, 0.2) 0%, rgba(66, 130, 236, 0.2) 100%);
}
.gk-card-flex .gk-card-flex-col.mdgs .card-list-item {
  background-image: url(../images/icon-mdgs.png);
  background-size: 0.747rem 0.68rem;
}
.gk-grid-four {
  padding: 0.267rem 0.427rem;
  background: #fff;
}
.gk-grid-four .van-grid {
  box-shadow: 0px 0px 0.107rem 0px rgba(0, 0, 0, 0.15);
  border-radius: 0.213rem;
  padding-top: 0.16rem;
  padding-bottom: 0.293rem;
}
.gk-grid-four .grid-box {
  padding: 0.16rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.gk-grid-four .grid-box:active {
  background-color: rgba(0, 0, 0, 0.05);
}
.gk-grid-four .van-grid-item {
  margin-top: 0.133rem;
}
.gk-grid-four .van-grid-item .van-grid-item__icon-wrapper {
  width: 1.36rem;
  height: 1.36rem;
}
.gk-grid-four .van-grid-item .van-grid-item__icon-wrapper a {
  display: inline-block;
  width: 1.36rem;
  height: 1.36rem;
  text-align: center;
}
.gk-grid-four .van-grid-item .van-grid-item__icon-wrapper a img {
  width: 1.36rem;
}
.gk-grid-four .van-grid-item .van-grid-item__icon-wrapper .svg-icon {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.24rem;
}
.gk-grid-four .van-grid-item__content {
  padding: 0;
}
.gk-grid-four .van-grid-item__text {
  display: block;
  font-size: 0.347rem;
  font-weight: 400;
  color: #131B18;
  line-height: 0.493rem;
  margin-top: 0.08rem;
}
.gk-grid-four .van-info {
  display: flex;
  align-items: center;
  padding: 0 0.16rem;
  height: 0.427rem;
  line-height: 1;
  background: #FE5C37;
  border-radius: 1.333rem 1.333rem 1.333rem 0;
  border: 1px solid #FFFFFF;
  font-size: 0.267rem;
  top: 0.213rem;
  right: 0.133rem;
}
.icontag-list {
  padding: 0 0.4rem 0.427rem 0.453rem;
  background: #fff;
}
.icontag-list li {
  float: left;
  margin-right: 0.72rem;
  width: 1.76rem;
  text-align: center;
  margin-top: 0.48rem;
}
.icontag-list li .icon-box {
  width: 1.36rem;
  height: 1.36rem;
  margin: 0 auto;
}
.icontag-list li img {
  width: 100%;
}
.icontag-list li .text {
  margin-top: 0.08rem;
  height: 0.493rem;
  font-size: 0.347rem;
  font-weight: 400;
  color: #131B18;
  line-height: 0.493rem;
}
.icontag-list li .text a {
  color: #131B18;
}
.icontag-list li:nth-child(4n) {
  margin-right: 0;
}
.icontag-list li:nth-child(4n-1) {
  margin-right: 0.667rem;
}
.gk-index-yw-list {
  padding: 0.4rem 0.427rem;
  background: #fff;
}
.gk-index-yw-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.347rem;
}
.gk-index-yw-list li:last-child {
  margin-bottom: 0;
}
.gk-index-yw-list li .icon {
  padding: 0 0.213rem;
  line-height: 0.373rem;
  border: 1px solid #f65237;
  border-radius: 0.427rem;
  margin-right: 0.24rem;
  font-size: 0.267rem;
  color: #f65237;
}
.gk-index-yw-list li .msg {
  flex: 1;
  line-height: 0.427rem;
  font-size: 0.373rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.gk-index-yw-list li a {
  color: #131B18;
}
.gk-index-bm {
  padding: 0 0.427rem;
  margin: 0.267rem 0;
  align-items: center;
  height: 1.4rem;
  line-height: 1.4rem;
}
.gk-index-bm .bm-icon {
  width: 0.533rem;
  height: 0.533rem;
  margin-right: 0.2rem;
  background: url(../images/in-title.png) no-repeat 0 0;
  background-size: 100%;
}
.gk-index-bm .van-cell__title {
  height: 0.6rem;
  font-size: 0.427rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.6rem;
}
.gk-index-bm .van-icon-arrow {
  font-size: 0.427rem;
  color: #C8C8C8;
}
.gk-index-hot-con {
  padding: 0.427rem 0.427rem 0.267rem 0.427rem;
  background: #fff;
}
.gk-index-hot-con .gk-index-hot {
  display: flex;
  box-sizing: border-box;
  height: 1.067rem;
  border-radius: 0.16rem;
  padding: 0.267rem 0.32rem;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 0.027rem 0.107rem 0px rgba(0, 0, 0, 0.13);
}
.gk-index-hot-con .icon {
  width: 0.96rem;
  height: 0.533rem;
  margin-right: 0.347rem;
  background: url(../images/icon.png) no-repeat -1.28rem 0;
  background-size: 2.24rem 1.013rem;
}
.gk-index-hot-con .title-con {
  flex: 1;
  height: 0.533rem;
  padding-left: 0.293rem;
  border-left: 0.027rem solid #EBEBEB;
  font-size: 0.373rem;
  overflow: hidden;
}
.gk-index-hot-con .van-swipe {
  height: 0.533rem;
}
.gk-index-hot-con .title a {
  display: block;
  height: 0.533rem;
  color: #131B18;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.gk-index-hot-con .anim {
  margin-top: -0.533rem;
  transition: all 1s;
}
.gk-index-tab {
  background: #fff;
}
.gk-index-tab .van-tab__pane {
  background: #fff;
}
.gk-index-tab .van-tabs__wrap {
  height: 0.987rem;
  padding-top: 0.347rem;
}
.gk-index-tab .van-tab {
  line-height: 0.987rem;
  font-size: 0.373rem;
  color: #69716D;
  flex-basis: auto !important;
  padding: 0 0.24rem;
}
.gk-index-tab .van-tab--active {
  font-size: 0.427rem;
  font-weight: 700;
  color: #131B18;
}
.gk-index-tab .van-tab:nth-child(1) {
  padding-left: 0.427rem;
}
.gk-index-tab .van-hairline--top-bottom:after,
.gk-index-tab .van-hairline-unset--top-bottom:after {
  border: none;
}
.gk-index-tab .gk-index-news-list {
  padding-top: 0.133rem;
}
.gk-index-tab .gk-index-news-list li {
  position: relative;
  margin: 0 0.427rem 0 0.427rem;
  line-height: 0.587rem;
  padding: 0.36rem 0 0.373rem 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.gk-index-tab .gk-index-news-list li::after {
  position: absolute;
  box-sizing: border-box;
  content: ' ';
  pointer-events: none;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #f3f3f3;
}
.gk-index-tab .gk-index-news-list li a {
  font-size: 0.373rem;
  font-weight: 400;
  color: #131B18;
}
.gk-index-tab .gk-index-news-list .news-time {
  margin-top: 0.133rem;
  line-height: 0.427rem;
  color: #959E9A;
  font-size: 0.293rem;
}
.gk-index-tab .gk-news-more {
  font-size: 0.347rem;
  font-weight: 400;
  line-height: 0.493rem;
  padding: 0.387rem 0 0.533rem 0;
  text-align: center;
}
.gk-index-tab .gk-news-more a {
  color: #959E9A;
}
.gk-index-tab .gk-news-more .van-icon {
  vertical-align: middle;
  color: #959E9A;
  margin-left: 0.133rem;
  position: relative;
  top: -0.04rem;
}
.van-list__error-text,
.van-list__finished-text,
.van-list__loading {
  font-size: 0.347rem;
  font-weight: 400;
  color: #959E9A;
}
.van-list__error-text .no-display,
.van-list__finished-text .no-display,
.van-list__loading .no-display {
  width: 2.293rem;
  height: 1.947rem;
  margin: 0.88rem auto 0.213rem;
}
.van-list__error-text .no-display img,
.van-list__finished-text .no-display img,
.van-list__loading .no-display img {
  width: 100%;
  height: 100%;
}
.van-list__error-text .no-text,
.van-list__finished-text .no-text,
.van-list__loading .no-text {
  height: 0.493rem;
  font-size: 0.347rem;
  font-weight: 400;
  color: #959E9A;
  line-height: 0.493rem;
  padding-bottom: 1.067rem;
}
.gk-yxk-icon-nav {
  padding: 0.32rem 0;
}
.gk-yxk-icon-nav .van-grid-item:first-child {
  border-right: 1px solid #D5D5D5;
}
.gk-yxk-icon-nav .van-grid-item__content {
  padding: 0 0.213rem;
}
.gk-yxk-icon-nav .van-grid-item__text {
  font-size: 0.347rem;
  line-height: 0.347rem;
  padding-top: 0.067rem;
  color: #131B18;
}
.gk-yxk-icon-nav .van-grid-item__icon + .van-grid-item__text {
  margin-left: 0.107rem;
}
.help-list-con {
  padding: 0.64rem 0.427rem;
}
.help-list-con .van-cell {
  height: 2.133rem;
  line-height: 1;
  padding: 0 0.467rem;
  margin-bottom: 0.427rem;
  box-shadow: 0px 0.027rem 0.187rem 0px rgba(0, 0, 0, 0.11);
  border-radius: 0.133rem;
  font-size: 0.427rem;
  color: #000;
  align-items: center;
}
.help-list-con .van-cell .van-cell__left-icon {
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
}
.help-list-con .van-cell .van-cell__left-icon .van-icon__image {
  margin-right: 0.24rem;
}
.help-list-con .van-cell .van-cell__left-icon:after {
  display: block;
  content: '';
  width: 1Px;
  height: 1.067rem;
  background: #D5D5D5;
  margin-right: 0.213rem;
}
.help-list-con .van-cell::after {
  content: none;
}
.help-list-con .van-cell .van-cell__right-icon {
  font-size: 0.373rem;
  font-weight: 700;
  line-height: 1;
  color: #878787;
}
.gk-banner-nav {
  font-size: 0.56rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 0.787rem;
  text-shadow: 0px 0.027rem 0.027rem rgba(0, 0, 0, 0.06);
  position: relative;
}
.gk-banner-nav img {
  display: block;
  width: 100%;
}
.gk-banner-nav .gk-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.zszc-zszclist-title.zszc-detail-title {
  font-size: 0.507rem;
}
.zszc-zszclist-title {
  padding: 0 0.427rem;
  margin: 0;
  font-size: 0.453rem;
  font-weight: 600;
  color: #2B2B2B;
  line-height: 0.64rem;
  margin-bottom: 0.213rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.zszc-zszclist-title .zszc-zszclist-title-text {
  padding: 0 0.187rem;
  max-width: 60%;
}
.zszc-zszclist-title::before,
.zszc-zszclist-title::after {
  display: block;
  content: "";
  width: 1.96rem;
  height: 0.16rem;
}
.zszc-zszclist-title::after {
  background: url(https://t4.chei.com.cn/gaokao/wap/assets/images/zszc-title-icon-right.png) no-repeat center center;
  background-size: contain;
}
.zszc-zszclist-title::before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJMAAAAMCAYAAABm1Y+DAAAAAXNSR0IArs4c6QAAA6lJREFUWEftmb9vHEUUx7/f92b3zsHmlwgC5SiQEEUiqpPC3wAi7oxEWtzSIiyKOAgE+RfS09hFBH8BJWWaRIiChgsEKBA4wr7bnffQm72TjXzhIiFkydq9YnbevJnZ/X4/s7PaI/qjV2ChwN6WjqrXx1B7w7O/GGEqfzXHdyIYw/09B66UOHAPxJeTw+FtvLs7m8d6LXsFgBe++nBj4Hqd9JdO6uHABgXX4Xh5qU7udyHpncm1zx6wF7JXAHtbeql+bXsJSErB9mNBWkjnfncyXXuzh6lnCaM7H1+F5LdOSUFcBfD2E0lEfNDD9ERKrUjyXRnf/kn/eGUgR8++Kk9P/tTZOqRde0aG+VDbGtLmpLXNtLVGLQ0lWavmqupZzUTNsypUM5pkLqrIamAymKpTjUzupiRK6WRiRnLm5BmJ0Y6cJEpDckQM6cdrn3+66hZHX++8D/fRkrxtEMviy4b8djlM7sfxmzeJG8DW/mViC/jtm4s82PiewBiHaz9wVj/kaLLB6eApzurf2VRrfD4N2eiArR5w+qiRrDXXteLssBWTI9ZVlnY6FJMZs5oMRNk2JpXWkhuTrC6pNYlfzi5Jqu7cWtXsko2q4mIhsrgoVcIMGospLipsm+SEiEQMSqe6mDJ7MqEWY7Inj1dMUs08kabFBPPkkQNLiDjm5sCTOeb16FuMTXQIHBLzwU1iTNAZMZprF3dxdHkgxN1KCUPMWfp1cZe41siPzLjO0gfz/t0YCnjMIDBXoOsXZeQB0Hmdk80vov1fj0t3PtqhoF7yZNoBMFjVP9odOHgMTPGy7vMxbnIXN3Bvf/+fMI3HOLwfMK1zlH7h9OdjmNo05HM64NGjh3OQ6gJS1opNFUAlDqZZ6mRiDJCyBFRV65IDmtYkhfVtVeIpwMke/SQg6qBKYt5qgaWAlVUaqlUqblkZUDkLRAGPuBWopNTnIAmVOScTaFnlUoxNtJycVJQVvoDJU1dfxKycgyKwXAzvoAlDT4Ll2sF2AoZoL8ZbgamDYQFTBwQBKYsgck7DFJh1Y5yC6QR4bjrZvBXXc4YwrZq9bz9WwGPh7cnl/fv610XIbAOy8WBNmwsus3ykFwaQJldqNaTKjWZLasklWdI8m6akdVkUiy0vF1gt1owa2qSILZAa29ki5sbu6RhwiyujjO0OLFtbt83FE9OryeatT1bZ9f9uc6tm79vPlQL9C/i5svOMb6b/NHDGBpyz6fuPlufM0DO/nf/4d8rfaVckeVNDVVUAAAAASUVORK5CYII=) no-repeat center center;
  background-size: contain;
}
.zszc-zszclist-tip {
  margin-bottom: 0.427rem;
  height: 0.533rem;
  font-size: 0.373rem;
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zszc-zszclist-tip span {
  line-height: 1;
}
.zszc-zszclist-tip img {
  display: block;
  width: 0.32rem;
  height: 0.32rem;
  margin-right: 0.107rem;
}
.zszc-zszclist-second-title {
  margin: 0.853rem 0 0.133rem 0;
  line-height: 0.48rem;
  font-size: 0.48rem;
  font-weight: bold;
  text-align: center;
}
.zszc-zszclist-second-title::before {
  content: " ";
  position: relative;
  display: inline-block;
  top: -0.147rem;
  width: 0.613rem;
  height: 0.053rem;
  margin-right: 0.213rem;
  background: #D7D7D7;
}
.zszc-zszclist-second-title::after {
  content: " ";
  position: relative;
  display: inline-block;
  top: -0.147rem;
  width: 0.613rem;
  height: 0.053rem;
  margin-left: 0.213rem;
  background: #D7D7D7;
}
.zszc-zszclist-second-title.green {
  color: #1DB278;
}
.zszc-zszclist-second-title.green::before,
.zszc-zszclist-second-title.green::after {
  background: #1DB278;
}
.zszc-zszclist-item {
  background: #FFFFFF;
  margin-bottom: 0.267rem;
}
.zszc-zszclist-item:last-child {
  margin-bottom: 0;
}
.zszc-zszclist-item .title {
  padding: 0.373rem 0.427rem 0.107rem 0.427rem;
  line-height: 0.587rem;
  font-size: 0.427rem;
  color: #131B18;
}
.zszc-zszclist-item .title.no-msg {
  color: #626F69;
  padding-bottom: 0.4rem;
}
.zszc-zszclist-item .time {
  padding: 0 0.427rem 0.467rem 0.427rem;
  line-height: 0.427rem;
  font-size: 0.373rem;
  color: rgba(0, 0, 0, 0.6);
}
.zszc-schlist-item-nodata-wap,
.zszc-zszclist-item-nodata-wap {
  padding: 1.253rem 0 3.56rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zszc-schlist-item-nodata-wap img,
.zszc-zszclist-item-nodata-wap img {
  display: block;
  width: 5.533rem;
  height: 4.613rem;
}
.zszc-schlist-item-nodata-wap .no-data,
.zszc-zszclist-item-nodata-wap .no-data {
  margin-top: 0.213rem;
  font-size: 0.373rem;
  color: #959E9A;
  line-height: 0.533rem;
}
.zszc-zszclist-item-nodata-wap {
  padding-top: 0.8rem;
}
.gk-zszc-detail-title {
  margin: 0;
  padding: 0.4rem 0.427rem 0.347rem 0.427rem;
  line-height: 0.64rem;
  font-size: 0.64rem;
  font-weight: bold;
  color: #131B18;
  text-align: center;
}
.gk-zszc-detail-subtitle {
  padding-bottom: 0.347rem;
  margin: 0 0.427rem;
  line-height: 0.4rem;
  font-size: 0.373rem;
  color: #B3B3B3;
  text-align: center;
}
.gk-zszc-detail-content {
  font-size: 0.48rem;
  padding: 0.4rem 0.427rem 0.467rem;
  box-sizing: border-box;
  min-height: calc(100vh - 46Px - 2.133rem);
  background: #FFFFFF;
}
.gk-zszc-detail-content p {
  margin: 0 0 0.48rem;
  padding: 0;
  line-height: 0.8rem;
  word-wrap: break-word;
  word-break: break-word;
}
.yxk-schNav-list {
  background: #fff;
}
.yxk-schNav-list .van-tabs__wrap {
  padding-right: 0.853rem;
}
.yxk-schNav-list .more {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 0.96rem;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 0.373rem;
}
.yxk-schNav-list .more .van-dropdown-menu__bar {
  padding-left: 0.107rem;
  height: 44Px;
  background: none;
  box-shadow: none;
  overflow: hidden;
}
.yxk-schNav-list .more .van-dropdown-menu__item {
  box-shadow: 0 0 0.16rem rgba(0, 0, 0, 0.12);
}
.yxk-schNav-list .van-tabs__nav {
  padding-left: 0.16rem;
  padding-right: 0.16rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.yxk-schNav-list .van-tab {
  flex: 1 0 auto;
  padding: 0 0.267rem;
  color: #626F69;
}
.yxk-schNav-list .van-tab--active {
  color: #131B18;
  font-weight: 700;
}
.yxk-schNav-list .van-dropdown-menu__title {
  line-height: 1;
}
.yxk-schNav-list .van-dropdown-menu__title:after {
  display: none;
}
.gk-search-nav .yxk-search-wap {
  padding: 0.533rem 0.427rem 0;
}
.yxk-search-wap .van-search__content {
  border: 0.027rem solid #1CB278;
  border-right: none;
  border-radius: 0.107rem 0px 0px 0.107rem;
  height: 0.853rem;
  box-sizing: border-box;
}
.yxk-search-wap .van-search__content:after {
  display: none;
}
.yxk-search-wap .van-search__action {
  height: 0.853rem;
  line-height: 0.853rem;
  background: #1CB278;
  border-radius: 0px 0.107rem 0.107rem 0px;
  font-size: 0.373rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 0.32rem;
}
.yxk-search-wap .van-search__action div {
  height: 0.853rem;
  line-height: 0.88rem;
}
.yxk-search-wap .van-field__body {
  height: -webkit-fill-available;
  line-height: initial;
}
.yxk-search-wap .van-field__body input {
  font-size: 0.373rem;
}
.yxk-search-box-wap .van-button--plain {
  color: #131B18;
}
.yxk-search-box-wap .van-hairline--bottom:after {
  border-bottom-width: 0;
}
.yxk-search-box-wap .van-dropdown-menu__title:after {
  border-color: transparent transparent rgba(0, 0, 0, 0.6) rgba(0, 0, 0, 0.6);
  opacity: 1;
}
.yxk-search-box-wap .van-dropdown-menu__title--active:after {
  border-color: transparent transparent currentColor currentColor;
  opacity: 0.8;
}
.yxk-search-box-wap .van-dropdown-menu {
  margin-top: 0.067rem;
}
.yxk-search-box-wap .van-dropdown-menu__bar {
  height: 1.173rem;
}
.yxk-search-box-wap .van-dropdown-menu__bar .van-ellipsis {
  font-size: 0.373rem;
  color: rgba(0, 0, 0, 0.6);
}
.yxk-search-box-wap .van-dropdown-menu__bar::after {
  display: none;
}
.yxk-search-box-wap .van-sku-group-container {
  padding: 0.6rem 0.427rem 0;
  margin-left: 0;
}
.yxk-search-box-wap .xlcc-row {
  margin: 0;
  margin-bottom: 0.747rem;
}
.yxk-search-box-wap .xlcc-row .van-button--default {
  border: none;
}
.yxk-search-box-wap .xlcc-row .van-radio-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.yxk-search-box-wap .xlcc-row .van-radio-group .van-radio {
  width: calc(33.333% - 0.173rem);
  height: 1.067rem;
  background: #F6F6F6;
  border-radius: 0.107rem;
  padding: 0;
  overflow: visible;
}
.yxk-search-box-wap .xlcc-row .van-radio-group .gk-select-radio .van-radio__icon {
  height: 100%;
  border-radius: 0.107rem;
}
.yxk-search-box-wap .xlcc-row .van-radio-group .gk-select-radio .van-radio__icon .van-button {
  padding: 0;
  width: 100%;
  height: 100%;
  background: #f6f6f6;
  border-radius: 0.107rem;
}
.yxk-search-box-wap .xlcc-row .van-radio-group .van-button__text {
  font-size: 0.373rem;
}
.yxk-search-box-wap .yxtx-row {
  margin: 0;
}
.yxk-search-box-wap .yxtx-row .yxtx-item-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.yxk-search-box-wap .yxtx-row .yxtx-item {
  width: calc(50% - 0.12rem);
  height: 1.067rem;
  line-height: 1.067rem;
  background: #F6F6F6;
  border-radius: 0.107rem;
  text-align: center;
  margin-bottom: 0.24rem;
  font-size: 0.373rem;
  box-sizing: border-box;
  border: 1px solid transparent;
}
.yxk-search-box-wap .yxtx-row .yxtx-item:last-child {
  width: 100%;
  margin-bottom: 0;
}
.yxk-search-box-wap .yxtx-row .selected.last-item {
  margin-bottom: 0px;
}
.yxk-search-box-wap .yxtx-row .selected {
  border: 1px solid #1db278;
  background: #fff;
  height: 1.067rem;
  line-height: 1.067rem;
  color: #1db278;
}
.yxk-search-box-wap .xlcc-row .van-sku-row__title,
.yxk-search-box-wap .yxtx-row .van-sku-row__title {
  height: 0.427rem;
  font-size: 0.427rem;
  font-weight: 600;
  color: #131B18;
  line-height: 0.427rem;
  padding-bottom: 0;
  margin-bottom: 0.427rem;
}
.yxk-search-box-wap .btn-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.747rem 0.427rem 0.453rem;
}
.yxk-search-box-wap .btn-box .van-button {
  width: calc(50% - 0.12rem);
  height: 1.2rem;
  font-size: 0.427rem;
  border-radius: 0.107rem;
  border: none;
}
.yxk-search-box-wap .btn-box .van-button:first-child {
  background: #E4F7EF;
  color: #1CB278;
}
.yxk-search-box-wap .btn-box .van-button:last-child {
  background: #1CB278;
  color: #FFFFFF;
}
.zszc-schlist-box-wap .van-list,
.myd-schlist-box-wap .van-list {
  background: #f5f5f5;
}
.zszc-schlist-box-wap .gk-yxklist-item,
.myd-schlist-box-wap .gk-yxklist-item {
  margin-bottom: 0.267rem;
  padding: 0.4rem 0 0.4rem 0.44rem;
  align-items: flex-start;
}
.zszc-schlist-box-wap .gk-yxklist-item .van-cell__title,
.myd-schlist-box-wap .gk-yxklist-item .van-cell__title {
  margin-right: 0.213rem;
}
.zszc-schlist-box-wap .gk-yxklist-item::after,
.myd-schlist-box-wap .gk-yxklist-item::after {
  display: none;
}
.zszc-schlist-box-wap .gk-yxklist-item .yxk-msg,
.myd-schlist-box-wap .gk-yxklist-item .yxk-msg {
  align-items: center;
  justify-content: space-between;
}
.zszc-schlist-box-wap .gk-yxklist-item .yxk-name,
.myd-schlist-box-wap .gk-yxklist-item .yxk-name {
  height: 0.587rem;
  line-height: 0.587rem;
}
.zszc-schlist-box-wap .gk-yxklist-item:first-child,
.myd-schlist-box-wap .gk-yxklist-item:first-child {
  margin-top: 0.267rem;
}
.zszc-schlist-box-wap {
  position: relative;
}
.zszc-schlist-box-wap .zszc-item-zszc-box {
  width: 2.133rem;
  height: 0.587rem;
  border-radius: 0.293rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DBDBDB;
  font-size: 0.32rem;
  color: #959E9A;
  box-sizing: border-box;
}
.zszc-schlist-box-wap .has-info-zszc {
  border: 1px solid #1CB278;
  color: #1CB278;
}
.zszc-schlist-box-wap .yxk-msg {
  padding-right: 0.413rem;
}
.zszc-banner-wap {
  position: relative;
  background: linear-gradient(180deg, #49c48d, #1cb278);
}
.zszc-banner-wap img {
  display: block;
  width: 100%;
}
.zszc-banner-wap h2 {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  height: 0.8rem;
  font-size: 0.56rem;
  line-height: 0.8rem;
  transform: translateY(-50%);
  margin: 0;
  text-align: center;
  color: #FFFFFF;
}
div.myd-page-wap2022 .gk-myd-dialog {
  border-radius: 0.107rem;
}
div.myd-page-wap2022 .van-dialog__header {
  height: 1.493rem;
  padding: 0;
  line-height: 1.493rem;
  text-align: center;
  font-weight: 400;
  border: none;
  border-bottom: 1px solid #E7E7E7;
}
div.myd-page-wap2022 .gk-myd-new {
  padding: 0px 0.533rem 0.107rem;
  border: none;
}
div.myd-page-wap2022 .gk-myd-new-star {
  padding: 0.347rem 0 0.16rem;
}
div.myd-page-wap2022 .gk-myd-score-num {
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 0.8rem;
  font-family: 'PingFangSC-Medium', 'PingFang SC';
  margin-bottom: 0.16rem;
  margin-top: 0.08rem;
}
div.myd-page-wap2022 .gk-myd-score-star {
  margin-bottom: 0.12rem;
}
div.myd-page-wap2022 .gk-myd-score-star .van-rate__icon {
  font-size: 0.267rem;
}
div.myd-page-wap2022 .gk-myd-score-count {
  font-size: 0.32rem;
  font-weight: 400;
  line-height: 0.4rem;
}
div.myd-page-wap2022 .gk-myd-score-right {
  padding-right: 0;
  padding-top: 0.2rem;
  padding-left: 0.64rem;
}
div.myd-page-wap2022 .gk-myd-score-item {
  margin-top: 0.147rem;
}
div.myd-page-wap2022 .gk-myd-score-item .num,
div.myd-page-wap2022 .gk-myd-score-item .star {
  margin-right: 0.107rem;
}
div.myd-page-wap2022 .gk-myd-score-item .num {
  font-size: 0.32rem;
  color: #959E9A;
}
div.myd-page-wap2022 .gk-myd-score-item .star {
  font-size: 0.267rem;
  color: #E0E0E0;
  position: relative;
}
div.myd-page-wap2022 .gk-myd-score-item .progress {
  background: #E0E0E0;
  border-radius: 0.08rem;
}
div.myd-page-wap2022 .gk-myd-score-item .van-progress__portion {
  background: #FFA10A;
}
div.myd-page-wap2022 .gk-myd-score-item .percentage {
  width: 0.853rem;
  color: #959E9A;
  margin-left: 0.107rem;
}
div.myd-page-wap2022 .myd-part-border {
  width: 8.293rem;
  height: 1px;
  background: #E7E7E7;
  margin: 0 auto;
}
div.myd-page-wap2022 .van-dialog__footer {
  border-top: 1px solid #E7E7E7;
}
div.myd-page-wap2022 .van-dialog__footer::after {
  border-top-width: 0;
}
div.myd-page-wap2022 .van-button--large {
  height: 1.493rem;
}
.gk-yxxx-box {
  margin-bottom: 0;
}
.gk-yxxx-box .gk-yxk-yxxx {
  background: url(../images/yxxx_header_banner.png) left top no-repeat;
  background-size: 100% auto;
  padding: 0.467rem 0.4rem 0.6rem 0.4rem;
  align-items: flex-start;
}
.gk-yxxx-box .gk-yxk-yxxx .van-image {
  height: 100%;
}
.gk-yxxx-box .gk-yxk-yxxx .xh {
  margin-right: 0.213rem;
  border-radius: 0.107rem;
  padding: 0.147rem;
  background-color: #fff;
  box-sizing: border-box;
}
.gk-yxxx-box .gk-yxk-yxxx .yxxx {
  min-height: 2.133rem;
}
.gk-yxxx-box .gk-yxk-yxxx .yxxx-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gk-yxxx-box .gk-yxk-yxxx .yxxx-item-top .yxxx-item-name {
  font-size: 0.48rem;
  line-height: 0.627rem;
  color: #fff;
}
.gk-yxxx-box .gk-yxk-yxxx .yxxx-item-top .yxxx-item-myd {
  display: inline-flex;
  align-items: center;
  height: 0.48rem;
  line-height: 0.48rem;
  background: linear-gradient(270deg, #FFE984 0%, #FEF0B0 100%);
  border-radius: 0.373rem;
  padding: 0 0.267rem;
  font-size: 0.32rem;
  color: #626F69;
  text-decoration: none;
}
.gk-yxxx-box .gk-yxk-yxxx .yxxx-item-top .yxxx-item-myd .rate {
  color: #FF9F11;
  margin-left: 0.107rem;
}
.gk-yxxx-box .gk-yxk-yxxx .yxxx-item-mid {
  margin: 0.213rem 0 0.147rem 0;
  color: #fff;
  font-size: 0.32rem;
  line-height: 0.6rem;
}
.gk-yxxx-box .gk-yxk-yxxx .yxxx-item-mid .text-name {
  font-weight: bold;
}
.gk-yxxx-box .gk-yxk-yxxx .yxxx-tag-con {
  margin-top: 0;
}
.gk-yxxx-box .gk-yxk-yxxx .yxxx-tag-con .yxk-tag {
  display: inline-flex;
  align-items: center;
  height: 0.533rem;
  border-radius: 0.107rem;
  border: 1px solid #FFFFFF;
  padding: 0 0.187rem 0 0.133rem;
  font-size: 0.32rem;
  color: #FFFFFF;
  margin: 0 0.213rem 0 0;
}
.gk-yxxx-box .gk-yxk-content-bg {
  background: #F3FAF7;
}
.gk-yxxx-box .gk-yxk-content {
  padding: 0.387rem 0 0.4rem;
  background: url(../images/yxxx_info_bg.png) right top no-repeat;
}
.gk-yxxx-box .gk-yxk-content .p-32 {
  padding: 0 0.427rem;
}
.gk-yxxx-box .gk-yxk-content .gk-yxk-content-item {
  padding-left: 0.56rem;
  font-size: 0.373rem;
  color: #131B18;
  line-height: 0.747rem;
  position: relative;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAHqADAAQAAAABAAAAHgAAAADKQTcFAAADWklEQVRIDZ1XzUtUURQ/5044uciFtJwxCSKIIFpGUtnGqZmmICwk2ygSRRuhyMmwWZQjJP4BoSIWLSoqHLUP+7CPRdQuolokgWMJBS0qyWDeO507+PS+O/d9jA+Gez5+5/zuOee+j0EIedVNZnbaFhxBgB1EsBGRaojwFyAU2PYKgPKzqdwUsiNMSo7xvzZMXthrWcUBINjmj2Qv4idEOFdI5caCsL7E8bGubt7+paAkup/Jh9tTazuymLV1n6OvcQR9jY9nrpBNZ3R7GJ1H0TaUXxRE1ObVemPF8fGuAbKhMwxJAObqXLrvhAlTRrw008c80zKfKUGQTUTE0dlk700dJ3SDVSz2+5IiTKOAHoHYzL8Mb+++nkPVbYv69zzLlo3UZYiNZXbzbbFdDVTk30KIU7Op3uuKTYp9fB7SPM8h3vB6zccqxb8s/EuzcEf1uSpGQQdVpyp7kJYgpdtHwHEVr8o2wWFVl7KLmHe8SweUdG6voVIXdC7Z94Bvo1su45JCQA263UXMT6J6HSB1TvjUZDfYzDjCWJayLi6Xwsd4nSEZIOFHk1238cY9cCRGpqFGxbuImeGv6lyRadOK7CMhmnEIVA/wR410EwPOqE5H5krMs3cAyysZcfzamJ9uzBaXYSy4iRHeqk5H5sORiE90e554iavLdzfw4TzmxKgrP4teq7qUXcQ8S+OplECyrcHYRFdCyvolSW2ybzDKlc/BYUSMOrKzuh6L8uQN5hc/sHOzAyhbEW/zyJ6UDlJpptzeUqVmUvmqLKR6t+gvCxexJInnM4f4KXS3jHCVBhSinYmH9fCy1hQO5O7xLq/pwNXoCDjVnqwaMcWWEUtQbVXtSdkiU0BYG7d2vioabfX6GDASv2s6u8CBzTwHj/s6kN7ij4GWmabsdy+kkViCeS7vQYjTXoF+dt7wxbl07nkAxs8NEMtnRoHI882jR3OnHvELJaGfYh3nWbEDrGTeXOm3aARag0hl7kDiCuZtQSTS8nl/7oezab81kFgGh5k3CuwpJC+/8CNTfdyd8JfXvLm1D3mu+8K02GELVbEDNs2byb5WQzTUXJ08cq2oYhkQHz+/FWz7Df/DqGbV4hY38jfXS+mr5KqoYplYzpsQOrjSn3yfd66GVOb5D193DnHQELeoAAAAAElFTkSuQmCC) left 0.16rem no-repeat;
  background-size: 0.4rem auto;
}
.gk-yxxx-box .gk-yxk-content .gk-yxk-content-item a {
  color: #006AFF;
}
.gk-yxxx-box .gk-yxk-content .gk-yxk-content-item img {
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  top: 0;
  left: 0;
}
.gk-yxxx-box .gk-yxk-content .gk-yxk-content-item:nth-of-type(1) {
  background-position: left 0.187rem;
}
.gk-yxxx-box .gk-yxk-content .gk-yxk-content-item:nth-of-type(2) {
  background-image: url(../images/yxxx_wangzhi.png);
  background-position: left 0.187rem;
}
.gk-yxxx-box .gk-yxk-content .gk-yxk-content-item:nth-of-type(3) {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAHqADAAQAAAABAAAAHgAAAADKQTcFAAAC9UlEQVRIDeVWTUgVURQ+Z+b1RoKKgnbTM3QZhAgaFFSPhEp9UtAPtCmqRUQG0Z89N7PIp0UtUlu4iBAiKCLC9/ohFFtWUkjQLiv1rQqKCoQ3+uZ0LnSH+XuT88ads7n3/H3fvWfOPfcCLLcPvRve+DTbUC5btwiwEZHGE4ra+aWtZ9rrF1d2Eafy2V0W0AgQrbSBEaeToG3/nDFmbN0STBSJoee7m32kwkhUa0Lp4c5xIyF9l2K0iRHKN107daITbZn6Y3Y6VXHnNjERNoSDWWfD7dGsNjEimGGhhKgTry7MJ4rNJuagqbBAJBhGLvMwnyg2BzGOVg7ED5TULlW2R7fYxHxunwSGI84lVG13cY/xI9BepdImLmZ63nIqJ7w4CFQ61grfvPq4sk0sgFDBG15AIlh7Nz+/36uPK7uqVFRtqpB9zWOzCxihWKNi46fW3u8ufQzBvWNRtURneO+WC5NAL5XpvkGGy9/lE1HwAc129E0AwqAXh1Pecqdg3vbqq5V9xAJoTZ12kRvKOy8okXVKH+nq8+qrkQOJP24yTFATh5n8VwDo5VT+yrUAfSSVq7i8kbWFbNoi6zmnWfPa+AQMnWjTThtouOvhn6Mo1LBOF0osMHh3ByyCB3w/+rLDGRnVVDzirHb9hbEOzdJ17upHkagIoPTXr0oOvEobC87F/5dYOOv57Emu9qEgci7EogJ47ni79nh4zFw/P0cv2W+zkwQQ3/Bj4pDzMbEoYgEids5n7V5Q2oWdd/+T265W8U7nl8wKRdkhn1G+9AmQoG8m0/tIQWUv/7ffQXbR4SqSigB+ySxY5QEZu2hiETDdnhsHVeVHoP+oScCwkestLe2RiEXQbOvVqdV1NVs5t/2+DidRK4x84byXpkX/YxngHDeMdDXxAgZ9vd3pJOfielVw29e23KRQxSIWAOK81j7rPkgWXeB5k9D5Piblyu+YyeTGpC02sQQSo3giczr38XJaWKzngkvyvTNJoJ4X973Td/nN/wI9mvouPg8hhwAAAABJRU5ErkJggg==);
  background-position: left 0.187rem;
}
.gk-yxxx-box .gk-yxk-content .content-btn {
  margin-top: 0.333rem;
  display: flex;
}
.gk-yxxx-box .gk-yxk-content .content-btn .btn-link {
  height: 1.067rem;
  background: #FFFFFF;
  box-shadow: 0px 0.027rem 0.08rem 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.107rem;
  font-size: 0.373rem;
  color: #119764;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.427rem;
  flex: 1;
}
.gk-yxxx-box .gk-yxk-content .content-btn .btn-link .iconfont {
  font-size: 0.187rem;
  margin-left: 0.067rem;
  position: relative;
  top: 1px;
}
.gk-yxxx-box .gk-yxk-content .content-btn .btn-link:last-child {
  margin-right: 0;
}
.gk-yxxx-box .gk-yxk-content .content-btn .btn-zb {
  background: #DEFFF0;
  margin-right: 0;
}
.gk-yxxx-box .gk-yxk-content .content-btn .btn-zb img {
  width: 0.387rem;
  height: 0.387rem;
  margin-right: 0.213rem;
}
.gk-yxxx-box .gk-yxk-content .yxk-tabs {
  padding: 0.32rem 0 0.133rem;
}
.gk-yxxx-box .gk-yxk-content .yxk-tabs .van-tabs__wrap {
  height: 0.64rem;
}
.gk-yxxx-box .gk-yxk-content .yxk-tabs .van-tabs__nav {
  padding: 0 0.333rem;
  background-color: transparent;
}
.gk-yxxx-box .gk-yxk-content .yxk-tabs .van-tab {
  padding: 0 0.093rem;
}
.gk-yxxx-box .gk-yxk-content .yxk-tabs .van-tab__text {
  display: block;
  height: 0.64rem;
  background: #FFFFFF;
  box-shadow: 0px 0.027rem 0.08rem 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.107rem;
  padding: 0 0.16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.373rem;
  color: #119764;
  line-height: 0.533rem;
}
.gk-yxxx-box .gk-yxk-content .yxk-tabs .van-tab__text .van-icon {
  font-size: 0.267rem;
}
.gk-yxxx-box .gk-yxk-content .yxk-tabs .van-tab__text img {
  width: 0.32rem;
  margin-right: 0.133rem;
}
.gx-yxk-xxsy {
  background-color: #f6f6f6;
}
.gx-yxk-xxsy .xcsp-video-wrapper {
  margin: 0.213rem 0;
  background-color: #fff;
  padding: 0.4rem;
  color: #131b18;
}
.gx-yxk-xxsy .xcsp-video-wrapper .title {
  font-size: 0.4rem;
  font-weight: 700;
  line-height: 0.533rem;
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item {
  margin-top: 0.547rem;
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item .video-box {
  position: relative;
  width: 100%;
  height: 6.12rem;
  background-color: #000;
  overflow: hidden;
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item .video-box video {
  width: 100%;
  height: 100%;
  outline: none;
  object-fit: cover;
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item .video-box video:focus {
  outline: none;
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item .video-box .video-play {
  width: 0.96rem;
  height: 0.96rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.62);
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item .video-box .video-play::before {
  content: '';
  width: 0;
  height: 0;
  border: 0.16rem solid transparent;
  border-left: 0.32rem solid #0D8457;
  position: absolute;
  left: 0.347rem;
  top: 50%;
  transform: translateY(-50%);
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item .video-info {
  border: 1px solid #DEDEDE;
  padding: 0.32rem 0.32rem 0.4rem;
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item .video-info .video-name {
  font-size: 0.427rem;
  line-height: 0.64rem;
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item .video-info .video-introduction {
  font-size: 0.373rem;
  color: #626F69;
  line-height: 0.587rem;
  margin-top: 0.107rem;
  word-break: break-all;
}
.gx-yxk-xxsy .xcsp-video-wrapper .video-item-first {
  margin-top: 0.373rem;
}
.gx-yxk-xxsy .xcsp-video-wrapper .more-video {
  margin-top: 0.32rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.373rem;
  color: #8F8F8F;
  height: 0.533rem;
}
.gx-yxk-xxsy .xcsp-video-wrapper .more-video .van-icon {
  font-size: 0.427rem;
  margin-left: 0.053rem;
  color: #8F8F8F;
}
.gx-yxk-xxsy .contact-info {
  margin-top: 0.267rem;
  padding: 0.4rem 0.293rem;
  background: #fff;
}
.contact-info-tab .name {
  margin-bottom: 0.227rem;
}
.contact-info-tab .name-last {
  margin-bottom: 0;
}
.contact-info-tab .van-tabs__nav--line {
  padding-bottom: 0;
}
.contact-info-tab .van-hairline--top-bottom:after {
  border: 0;
}
.contact-info-tab .van-tabs__wrap {
  height: 1.12rem;
  overflow: visible;
  margin-bottom: 0.32rem;
}
.contact-info-tab .van-tab {
  line-height: 1.12rem;
  padding: 0 0.133rem;
}
.van-tab--active .contact-info-tab-title {
  color: #fff;
  background: #1DB279;
  position: relative;
}
.van-tab--active .contact-info-tab-title::after {
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: '';
  width: 0;
  height: 0;
  border: 0.267rem solid transparent;
  border-top-color: #1DB279;
}
.gk-yxk-tabs-warp {
  display: flex;
  padding-right: 0.427rem;
}
.gk-yxk-tabs-warp .gk-yxk-tabs {
  flex: 1;
  padding-right: 0.24rem;
  padding-left: 0.293rem;
}
.gk-yxk-tabs-warp .gk-yxk-tabs .van-tab {
  padding: 0 0.133rem;
}
.gk-yxk-tabs-warp .van-icon {
  margin-top: 0.213rem;
  font-size: 0.373rem;
  color: rgba(0, 0, 0, 0.4);
}
.contact-info-tab-title {
  font-size: 0.373rem;
  font-weight: 400;
  color: #69716D;
  line-height: 0.587rem;
  background: #F3FAF7;
  border-radius: 0.053rem;
  padding: 0.107rem 0;
}
.contact-info-item {
  padding: 0 0.133rem;
  display: flex;
}
.contact-info-item .box {
  flex: 1;
  font-size: 0.373rem;
  color: #131B18;
  line-height: 0.533rem;
  padding-top: 0.133rem;
}
.contact-info-item .van-image {
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.267rem;
}
.contact-info-item .van-image img {
  display: block;
  object-fit: cover;
}
.gk-wap-banner {
  height: 4.933rem;
  background: url(../images/gk-banner3.png) no-repeat center center;
  background-size: 100% 5rem;
}
.gk-wap-banner.zytj {
  background: url(../images/gk-banner2.png) no-repeat center center;
  background-size: 100% 5rem;
}
.gk-wap-banner.yxmyd {
  background: url(../images/gk-banner1.png) no-repeat center center;
  background-size: 100% 5rem;
}
.gk-wap-banner .gk-wap-banner-back {
  height: 1.173rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}
.gk-wap-banner .gk-wap-banner-back .van-icon-arrow-left {
  line-height: 1.173rem;
  font-size: 0.4rem;
  color: #fff;
  cursor: pointer;
}
.gk-wap-banner .gk-wap-banner-title {
  margin-top: -0.107rem;
  height: 0.853rem;
  line-height: 0.747rem;
  padding-top: 0.107rem;
  box-sizing: border-box;
  background: url(../images/gk-myd-top.png) no-repeat center center;
  background-size: auto 0.853rem;
  color: #fff;
  text-align: center;
  font-size: 0.373rem;
  font-weight: 700;
  margin-bottom: 0.333rem;
}
.gk-wap-banner .gk-wap-banner-tip {
  text-align: center;
}
.gk-wap-banner .gk-wap-banner-tip span {
  display: inline-block;
  font-size: 0.267rem;
  line-height: 0.373rem;
  color: #FFEAB9;
}
.gk-wap-banner .gk-wap-banner-num {
  font-family: "DattoDIN";
  color: #fff;
  line-height: 1.227rem;
  font-size: 1.12rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0px 0.053rem 0.107rem #f8941e;
  margin-bottom: 0.133rem;
}
.gk-wap-banner .gk-wap-banner-des {
  text-align: center;
}
.gk-wap-banner .gk-wap-banner-des span {
  display: inline-block;
  font-size: 0.267rem;
  font-weight: 500;
  line-height: 0.373rem;
  color: #fff;
  background: #2062B3;
  border-radius: 0.053rem;
  padding: 0.053rem 0.133rem;
}
.gk-wap-icon-right {
  line-height: 1.173rem;
  font-size: 0.4rem;
  color: #fff;
  cursor: pointer;
  float: right;
}
.gk-wap-tabs .van-tab {
  color: #7f7f7f;
}
.gk-wap-tabs .van-tab.van-tab--active {
  color: #131B18;
}
.gk-wap-tabs .van-tab.van-tab--active .van-tab__text {
  font-size: 0.4rem;
}
.gk-wap-tabs .van-tabs__wrap {
  line-height: 1.28rem;
  height: 1.28rem;
}
.gk-wap-tabs .van-tab__text {
  font-size: 0.347rem;
  font-weight: 700;
}
.gk-wap-tabs .gk-info-icon {
  font-size: 0.427rem;
  color: #626F69;
  line-height: 1.28rem;
  margin-right: 0.453rem;
}
.gk-wap-tabs::after {
  border-color: #D5D5D5;
}
.gk-myd-new {
  padding: 0.373rem 0.427rem;
  position: relative;
  overflow: hidden;
}
.gk-myd-new .gk-myd-new-tag {
  position: absolute;
  background: #ff9900;
  color: #fff;
  width: 2.133rem;
  font-size: 0.267rem;
  padding: 0.053rem 0;
  text-align: center;
  right: -0.533rem;
  top: 0.267rem;
  transform: rotate(45deg);
}
.gk-myd-new .gk-myd-new-sch {
  font-size: 0.32rem;
  line-height: 0.453rem;
  color: #626F69;
  margin-bottom: 0.08rem;
}
.gk-myd-new .gk-myd-new-zy {
  font-size: 0.48rem;
  color: #131B18;
  line-height: 0.587rem;
  padding-bottom: 0.347rem;
  border-bottom: 1Px solid #e6e6e6;
}
.gk-myd-new .gk-myd-new-zy::after {
  border-color: #D5D5D5;
}
.gk-myd-new .gk-myd-new-star {
  font-size: 0.373rem;
  line-height: 0.373rem;
  padding: 0.347rem 0 0.16rem;
}
.gk-myd-new .gk-myd-score {
  position: relative;
  display: flex;
  align-items: center;
}
.gk-myd-new .gk-myd-score-left {
  text-align: center;
  width: 2.907rem;
}
.gk-myd-new .gk-myd-score-right {
  flex: 1;
  padding: 0.267rem 0.427rem;
}
.gk-myd-new .gk-myd-score-num {
  font-size: 1.227rem;
  line-height: 1.227rem;
  margin-bottom: 0.133rem;
}
.gk-myd-new .gk-myd-score-star {
  margin-bottom: 0.08rem;
}
.gk-myd-new .gk-myd-score-star .van-rate__icon {
  font-size: 0.347rem;
}
.gk-myd-new .gk-myd-score-count {
  font-size: 0.293rem;
  line-height: 0.293rem;
  color: #626F69;
}
.gk-myd-new .gk-myd-score-item {
  margin-top: 0.133rem;
}
.gk-myd-new .gk-myd-score-item:first-child {
  margin-top: 0;
}
.gk-myd-new .gk-myd-score-item .van-cell {
  padding: 0;
  font-size: 0.267rem;
  line-height: 1;
}
.gk-myd-new .gk-myd-score-item .num {
  margin-right: 0.08rem;
}
.gk-myd-new .gk-myd-score-item .star {
  margin-right: 0.08rem;
}
.gk-myd-new .gk-myd-score-item .percentage {
  width: 0.667rem;
  text-align: right;
  margin-left: 0.107rem;
  white-space: nowrap;
}
.gk-myd-new .gk-myd-score-item .progress {
  height: 0.16rem;
}
.gk-myd-block {
  height: 0.213rem;
  background: #f5f5f5;
}
.gk-myd-sch-zytitle {
  font-size: 0.32rem;
  line-height: 0.32rem;
  margin-bottom: 0.107rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #626F69;
}
.gk-myd-sch-star {
  display: flex;
  align-items: center;
  margin-bottom: 0.107rem;
  height: 0.373rem;
}
.gk-myd-sch-star .van-icon {
  font-size: 0.267rem;
}
.gk-myd-sch-starnum {
  padding-top: 1px;
  line-height: 1;
  margin-left: 0.107rem;
  font-size: 0.267rem;
  font-weight: 700;
  color: #FF9900;
}
.gk-myd-sch-count {
  height: 0.267rem;
  line-height: 0.267rem;
  color: #959E9A;
}
.gk-myd-sch-title {
  display: inline-block;
  line-height: 0.533rem;
  font-size: 0.427rem;
  font-weight: 700;
}
.gk-myd-sch-more {
  font-size: 0.32rem;
  line-height: 0.32rem;
  color: #626F69;
}
.gk-myd-sch-item {
  padding: 0.267rem 0.427rem 0.293rem 0.427rem;
}
.gk-myd-sch-item .van-cell {
  padding: 0.093rem 0;
  margin-bottom: 0;
}
.gk-myd-sch-item .van-cell:not(:last-child):after {
  border-bottom: 0;
}
.gk-myd-sch-item .van-cell__value {
  font-size: 0.32rem;
}
.gk-myd-sch-item .van-cell__title {
  display: flex;
  align-items: center;
}
.gk-myd-sch-tagbk {
  height: 0.4rem;
  line-height: 0.4rem;
  border-radius: 0.053rem;
  border: 1px solid #E6E6E6;
  padding: 0 0.08rem;
  font-size: 0.267rem;
  margin-left: 0.16rem;
  color: #626F69;
  box-sizing: border-box;
}
.gk-myd-sch-taggz {
  font-size: 0.267rem;
  color: #1E97EC;
  background: #F0F8FD;
  border: 1Px solid #F0F8FD;
  margin-left: 0.24rem;
  padding: 0 0.08rem;
  line-height: 0.4rem;
  height: 0.4rem;
}
.gk-myd-dialog {
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.gk-myd-dialog .van-dialog__header {
  font-size: 0.48rem;
  line-height: 0.48rem;
  padding: 0.453rem;
  border: 1Px solid #E6E6E6;
}
.gk-myd-dialog .van-button__text {
  font-size: 0.48rem;
  height: 1.333rem;
  line-height: 1.333rem;
  color: #131B18;
}
.gk-myd-dialog .van-button--large {
  height: 1.333rem;
}
.gk-myd-part {
  padding-top: 0;
  border-bottom: 1px solid #e6e6e6;
}
.gk-myd-more-title {
  padding: 0.373rem 0.427rem;
  font-size: 0.48rem;
  line-height: 0.667rem;
  font-weight: 700;
}
.gk-myd-more-sort {
  height: 0.907rem;
  font-size: 0.293rem;
  line-height: 0.907rem;
}
.gk-myd-more-sort .van-cell {
  font-size: 0.293rem;
  background: #F5F5F5;
  padding: 0 0.427rem;
}
.gk-myd-more-sort .van-cell .van-cell__right-icon {
  color: transparent;
}
.gk-myd-more-sort .van-cell .gk-myd-list-title,
.gk-myd-more-sort .van-cell .van-cell__value {
  font-size: 0.293rem;
  line-height: 0.907rem;
}
.gk-myd-list-title {
  font-size: 0.347rem;
  line-height: 0.48rem;
  padding-right: 0.267rem;
  width: 2.133rem;
}
.gk-myd-list-star {
  font-size: 0.427rem;
  line-height: 0.427rem;
  margin-bottom: 0.107rem;
  color: #FF9900;
  display: flex;
  align-items: center;
}
.gk-myd-list-star .van-icon-star {
  font-size: 0.293rem;
}
.gk-myd-list-star .num {
  font-weight: 700;
  margin-left: 0.067rem;
}
.gk-myd-list-count {
  font-size: 0.267rem;
  color: #959E9A;
  line-height: 0.267rem;
}
.sort-icon {
  position: relative;
}
.sort-icon:after {
  border: 0.08rem solid transparent;
  border-top: 0.08rem solid #A0A0A0;
  width: 0;
  height: 0;
  position: absolute;
  top: 0.4rem;
  content: ' ';
  margin-left: 0.067rem;
}
.sort-icon.sort:after {
  border-top: 0.08rem solid #1DB278;
}
.gk-zymyd-dialog .van-dialog__header {
  padding: 0.32rem 0 0.267rem;
  text-align: center;
  border-bottom: 1Px solid #e6e6ee;
}
.gk-zymyd-dialog .gk-zymyd-dialog-title {
  font-size: 0.48rem;
  line-height: 0.48rem;
  margin-bottom: 0.107rem;
}
.gk-zymyd-dialog .gk-zymyd-dialog-subtitle {
  font-size: 0.32rem;
  line-height: 0.32rem;
  color: #626F69;
}
.gk-zymyd-dialog .van-dialog__footer .van-button__text {
  color: #131B18;
  font-size: 0.48rem;
  height: 1.333rem;
  line-height: 1.333rem;
}
.gk-zymyd-dialog .van-dialog__footer .van-button--large {
  height: 1.333rem;
}
.gk-zymyd-dialog .van-dialog__content {
  padding: 0.427rem;
}
.gk-zymyd-dialog .van-dialog__content .gk-zymyd-part-title {
  font-size: 0.373rem;
  line-height: 0.373rem;
  margin-bottom: 0.213rem;
}
.gk-zymyd-dialog .gk-zymyd-part-star {
  margin-bottom: 0.133rem;
}
.gk-zymyd-dialog .gk-zymyd-part-star .van-cell {
  padding: 0;
}
.gk-zymyd-dialog .gk-zymyd-part-star .star {
  font-size: 0.267rem;
  line-height: 0.267rem;
}
.gk-zymyd-dialog .gk-zymyd-part-star .score {
  font-size: 0.427rem;
  line-height: 0.427rem;
  font-weight: 700;
  color: #FF9900;
  margin-left: 0.08rem;
}
.gk-zymyd-dialog .gk-zymyd-part-star .count {
  font-size: 0.293rem;
  line-height: 0.293rem;
  color: #626F69;
}
.gk-zymyd-dialog .gk-zymyd-part-star .van-rate__icon {
  font-size: 0.293rem;
}
.gk-zymyd-dialog .gk-zymyd-part-score .van-cell {
  padding: 0;
}
.gk-zymyd-dialog .gk-zymyd-part-score .num {
  font-size: 0.267rem;
  margin-right: 0.053rem;
}
.gk-zymyd-dialog .gk-zymyd-part-score .star {
  font-size: 0.213rem;
  margin-right: 0.053rem;
}
.gk-zymyd-dialog .gk-zymyd-part-score .percentage {
  width: 0.667rem;
  text-align: right;
  font-size: 0.267rem;
  white-space: nowrap;
}
.gk-zymyd-dialog .gk-zymyd-part-score .progress {
  height: 0.16rem;
}
.margin-bottom-40 {
  margin-bottom: 0.533rem;
}
.gk-myd-more-tabs {
  background: #f5f5f5;
}
.gk-myd-more-tabs .van-tabs__wrap {
  height: 1.28rem;
}
.gk-myd-more-tabs .van-tabs__nav {
  height: 1.28rem;
  line-height: 1.28rem;
  background: #f5f5f5;
}
.gk-myd-more-tabs .van-tabs {
  width: 8rem;
  margin-left: 0.4rem;
}
.gk-myd-more-tabs .van-tab {
  font-size: 0.347rem;
  font-weight: 700;
}
.gk-myd-more-tabs .van-tab.van-tab--active {
  font-size: 0.4rem;
}
.gk-myd-more-tabs .van-hairline--top-bottom:after {
  border-width: 0;
}
.gk-zytj-new {
  padding-top: 0;
  padding-bottom: 0.293rem;
}
.gk-zytj-new .gk-zytj-new-star {
  padding: 0.293rem 0;
}
.gk-zytj-new .gk-zytj-new-star:after {
  border-width: 0;
}
.gk-zytj-new .gk-zytj-new-star .van-cell__title {
  font-size: 0.48rem;
}
.gk-zytj-new .gk-zytj-new-star .tag {
  display: inline-block;
  height: 0.693rem;
  line-height: 0.693rem;
  width: 0.64rem;
  margin-right: 0.12rem;
  text-align: center;
  font-size: 0.48rem;
  color: #B3B3B3;
}
.gk-zytj-new .gk-zytj-new-star .tag.tag-1 {
  color: #fff;
  background: url(../images/top-1.png) no-repeat center center;
  background-size: 0.667rem auto;
  font-weight: 700;
  font-size: 0.373rem;
}
.gk-zytj-new .gk-zytj-new-star .tag.tag-2 {
  color: #fff;
  background: url(../images/top-2.png) no-repeat center center;
  background-size: 0.667rem auto;
  font-weight: 700;
  font-size: 0.373rem;
}
.gk-zytj-new .gk-zytj-new-star .tag.tag-3 {
  color: #fff;
  background: url(../images/top-3.png) no-repeat center center;
  background-size: 0.667rem auto;
  font-weight: 700;
  font-size: 0.373rem;
}
.gk-zytj-score {
  text-align: center;
}
.gk-zytj-score .count {
  font-size: 0.64rem;
  line-height: 1.227rem;
}
.gk-zytj-score .star-warp {
  display: flex;
  align-items: center;
  text-align: center;
}
.gk-zytj-score .star-warp .star {
  line-height: 0.427rem;
  margin-right: 0.08rem;
}
.gk-zytj-score .star-warp .star .van-rate__icon {
  font-size: 0.347rem;
}
.gk-zytj-score .star-warp .score {
  font-size: 0.427rem;
  line-height: 0.427rem;
  color: #FF9900;
}
.gk-myd-sch-no {
  font-size: 0.373rem;
  line-height: 0.373rem;
  text-align: center;
  color: #959E9A;
  padding: 0.64rem 0 0.293rem;
}
.gk-search-input-db {
  padding: 0.267rem 0.427rem;
}
.gk-search-input-db .van-row {
  border: 1Px solid #E6E6E6;
  border-radius: 0.533rem;
  overflow: hidden;
}
.gk-search-input-db .van-field {
  padding: 0.133rem 0.213rem;
}
.gk-zytj-zyseach {
  display: flex;
  align-items: center;
}
.gk-zytj-sch-zytitle {
  font-size: 0.373rem;
  margin-right: 0.267rem;
}
.gk-zytj-sch-star {
  margin-right: 0.067rem;
  display: flex;
  align-items: center;
}
.gk-zytj-sch-star .gk-myd-sch-starnum {
  font-size: 0.427rem;
}
.gk-zytj-sch-count {
  font-size: 0.293rem;
}
.gk-zytj-mark {
  margin-top: 0.267rem;
  font-size: 0.293rem;
  color: #959E9A;
}
.gk-zytj-mark span {
  margin-right: 0.267rem;
}
.van-cell__left-icon,
.van-cell__right-icon {
  height: auto;
}
.no-link {
  color: #B3B3B3;
}
.gk-algin-line {
  display: inline-block;
  vertical-align: middle;
  height: 0.32rem;
  width: 1px;
  background: #e6e6e6;
  margin-right: 0.267rem;
}
.gk-mdgs-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.453rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.64rem;
  padding: 0.64rem 0 0.427rem;
  text-align: center;
}
.gk-mdgs-title::before,
.gk-mdgs-title::after {
  display: block;
  content: '';
  height: 0.187rem;
  width: 1.973rem;
}
.gk-mdgs-title::before {
  margin-right: 0.187rem;
  background: url(../images/mdgs-title-l.png) center center no-repeat;
  background-size: contain;
}
.gk-mdgs-title::after {
  margin-left: 0.187rem;
  background: url(../images/mdgs-title-r.png) center center no-repeat;
  background-size: contain;
}
.gk-mdgs-title .title-text {
  max-width: calc(100% - 4.5rem);
}
.gk-mdgs-box {
  padding: 0 0.427rem 0.493rem;
}
.gk-mdgs-box a.mdgs-box-item,
.gk-mdgs-box .mdgs-box-item {
  padding: 0.32rem 0.427rem;
  margin-bottom: 0.267rem;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 0.053rem;
  font-size: 0.427rem;
  font-weight: 700;
  color: #5D5D5D;
}
.gk-mdgs-box a.mdgs-box-item:hover,
.gk-mdgs-box .mdgs-box-item:hover {
  cursor: pointer;
  text-decoration: none;
}
.gk-mdgs-box a.mdgs-box-item .icon,
.gk-mdgs-box .mdgs-box-item .icon {
  display: block;
  width: 0.96rem;
  height: 0.96rem;
  margin-right: 0.373rem;
}
.gk-mdgs-box a.mdgs-box-item .icon.bss,
.gk-mdgs-box .mdgs-box-item .icon.bss {
  background: url(../images/mdgs-bss.png) center center no-repeat;
  background-size: 0.96rem 0.96rem;
}
.gk-mdgs-box a.mdgs-box-item .icon.gspydd,
.gk-mdgs-box .mdgs-box-item .icon.gspydd {
  background: url(../images/mdgs-ydd.png) center center no-repeat;
  background-size: 0.96rem 0.96rem;
}
.gk-mdgs-box a.mdgs-box-item .icon.gxzx,
.gk-mdgs-box .mdgs-box-item .icon.gxzx {
  background: url(../images/mdgs-zxjh.png) center center no-repeat;
  background-size: 0.96rem 0.96rem;
}
.gk-mdgs-box a.mdgs-box-item .text,
.gk-mdgs-box .mdgs-box-item .text {
  flex: 1;
}
.gk-mdgs-box a.mdgs-box-item .van-icon-arrow,
.gk-mdgs-box .mdgs-box-item .van-icon-arrow {
  font-size: 0.427rem;
  color: #959E9A;
}
.gk-mdgs-tip {
  padding: 0.56rem 0.293rem;
  background: #FFFFFF;
  margin: 0 0.427rem 0.533rem;
}
.gk-mdgs-tip .tip-title {
  display: flex;
  align-items: center;
  font-size: 0.373rem;
  color: #131B18;
  line-height: 0.64rem;
  margin-bottom: 0.133rem;
}
.gk-mdgs-tip .tip-title .icon {
  margin-right: 0.107rem;
  font-size: 0.427rem;
  color: #26B67D;
}
.gk-mdgs-tip .tip-content {
  font-size: 0.373rem;
  font-weight: 400;
  color: #5D5D5D;
  line-height: 0.64rem;
}
.mdgs-shengming {
  font-size: 0.373rem;
  font-weight: 400;
  color: #FF0000;
  text-align: center;
  margin-bottom: 0.427rem;
}
div.mdgs-banner-wap h2 {
  top: 0;
  height: 100%;
}
.mdgs-page {
  margin: 0.427rem;
  background: #fff;
}
.loading-img-wap {
  display: block;
  margin: 0 auto;
}
.bsszgmd-kinds-item {
  padding: 0.4rem 0.427rem;
  padding-left: 0.747rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.427rem;
  margin-bottom: 0.267rem;
}
.bsszgmd-kinds-item .span-jxmc {
  font-weight: 400;
  color: #131B18;
  position: relative;
}
.bsszgmd-kinds-item .span-jxmc::before {
  display: block;
  content: '';
  width: 0.107rem;
  height: 0.427rem;
  background: #F8BF3C;
  position: absolute;
  top: 50%;
  left: -0.32rem;
  transform: translateY(-50%);
}
.bsszgmd-kinds-item i,
.bsszgmd-kinds-item .span-bz {
  color: #959E9A;
}
.bsszgmd-kinds-item .span-bz {
  font-size: 0.373rem;
  font-weight: 400;
  line-height: 0.507rem;
}
.bsszgmd-kinds-item .gxzxindex-jxmc .span-jxmc::before {
  top: 3%;
  transform: translateY(0);
}
.bsszgmd-jx-kinds-item {
  padding-top: 0.533rem;
  padding-bottom: 0.373rem;
  margin-bottom: 0;
}
.bsszgmd-km {
  padding: 0.533rem 0.427rem;
  padding-top: 0;
  background: #fff;
}
.bsszgmd-km .bsszgmd-km-item {
  margin-bottom: 0.32rem;
}
.bsszgmd-km .bsszgmd-km-item:last-child {
  margin-bottom: 0;
}
.bsszgmd-km .km-title {
  padding: 0.267rem 0;
  background: #E8F8F1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.427rem;
  color: #03915C;
  line-height: 1;
}
.bsszgmd-km .km-title .km-title-icon-wap {
  width: 0.427rem;
  height: 0.427rem;
  margin-right: 0.213rem;
}
.bsszgmd-km .km-title .km-title-icon-wap.shuxue {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACshmLzAAADJElEQVRYCb2XW2sTQRTHZ3dzadK4TWNvubZJWilYrBda1F5I1QdF3xRBfShYtUrxG/gRfBQqlRaFvgg+ewEfjE2hWKRQqYU2SZukyZqWXDfNZrPZrDtKS0xCN7uRHQiZOTPn/P5zOLs7g3R+emZn84U5BIAhjgNKIENDEMBwAPFgKmxCAeGAAy5OBvAB4u9GuTE2z86icOcHE3L/I4AbRuVKe7XNQTZabUJOm0IIZms0hC939DIKBK25TFaTO5qfqV9aksnhQvEFBeCKhvwd64DdoNIKxTqcp1gGjC+9jv4XAZtk1PSe+EHc7Rw07uVI8NK7QKAIQh3SqnR2aRKL0qmWKlMVJsEM0EVW/WZ7SW1q0Kdd7SfwLp0BzHgXzNBeEU2CoaYiTNBZw7TPnV5PE4Xb1nPG6+b+iARWVZeaBEDPrUzM8mLDHUzmKfDAftF+ocXhqxpRpLFmATDucnzb8crv8WsVKjDVM9blPNYaEsmrWC5KAPT+QKxZ3wa/h7t1LdiT7tGmZrUuVhFVhEG0AKbIKucD33Sfo+uJ0dYefLxrMK9GMVoE85+logVAb5KhmmZ8Hmo1FaZvWs4Yb9RRlJIEQBHB/bhpxusJhakUmHSO2M+3Or3QLrZJFgBBbWod2tGAg+39GB3MxBrFwuF6yQLOGmz+h85hR4qhwLTXHYlQSaNsAuAH6mmPy6pXasCsf9G/kgjZpcAlZQBXa5KPnSPaviaT8t3OCvGRWLNIhYsWgCFo4Z5tIHOpvbfZs7dJzgeWVfkiq5JNwNWOk0H+W2AJZOPctM8TT9CZ4/XARWUAFt0j55CjUCzyRffVv5GOdtYLr1mArbE5MtXtsrRpcDC3tbjjjm5KLrpy0YLngWNKTWrSOarp15tVoWwcEFQKu2bq2yoPVD72kru6QDaG0yyjKZ8rHQsKOIWbYlfaex3Qyao1gOenb9X0vJOFHJhYnif85F59AqJ5Us2nPYCKOJRCsfzbEd3NpfWwf1QTzACfSjP/OypGXXOSX8V1UUuc+QMuYErGsnYhG942FmWllsDgDRnFVIr7AAFf5MzEHxbPhNfz32mIJFUqCVNxAAAAAElFTkSuQmCC) no-repeat center;
  background-size: contain;
}
.bsszgmd-km .km-title .km-title-icon-wap.huaxue {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACshmLzAAADXklEQVRYCe1XTUhUURS+586bGamsRSAIOqaLNiIVgZEp5KIabdy1atFCN62ijTQzSjwxNQg3ZYugn11QEEQzQtHPtKhoUfQDs8jJn9HIjAh/ipyx927njF65Pt+bH1Ih6G3Ouef7znfOve/d9+6DigedlUb693Vg7IAQzM024AJgC4LBM5fH1aZRcSbYQbEBhWWJxYmKRiNtXOM0cwlstAUm6rUCl/0NAExka1QIUY74nmwciVFtTQ7yscB5aGulJxav1tN2/Oq47pkdTTcK07xvh9vFuF3QKUbCs6MpvxNOWCHFSaegBpwK/038fwP/2ArgxtWElnS65xkMOU64XbygFQAGt0Zbut/ZCVGMMOTcdsLt4nk3gMJpANFhJ6LGkBMmrhrL5ufdAOPi8njg/Eg2McIyHOTm4kk8rwZwRtNCKzonk3JZ4lJOLh7heTWAvJ5Pfv17PoLEWeL25MPP3QBA0quVXnISK4+EBsojweGqwdBOlZPJwVw1ZufnboCJjo/Np1J2yYsx0YRftSrD4DUqZzEn90ObtQE8ubyeCPTdVIWtvptDk4u5jtW27LprxSiXNKxxdZz1c8yBt+P3P/NioU/tzHBqPxR5ExOH9c9SZORo3xD6Q3ZrTbkV0XC7Icwnkm+1zisAbDAZ6I1RAh4yYHYk9Qi9xyKVSuwYDO+2Csnx3ldX3LrQl3UzGqglcatdJloAg7vdZ2TM97CrFJtocAGvxW4+GKYISEy1ZZHw8anJsemr0fkpX6SjXmJLWoYcq9a2ATwo3hj3d8clse0Q+8IA3ppMxNDWuFwcV2P1BUJ0oeAAnjNjJjOCkkFapCnHql3dALCf4OZnVZIOurlti7eBC96KD03NWHPPSxWXvgCRwB2BqwN1ICAh42Qzmqitxshf9RBygP6kv3fSSow36j8wdscaV8ebWNGJXzx9Gpg5Z24vuahipOmLhvpNIVZMztrA1+LN3gtqYiH+UIv+DfmdTjmkPTM3fxLxEslZcQtwz75fmqnE19SSNtVQRVc0gPdvny8arFIJa+mTNtVQNaHsXtB6gpnDF8gLJGV5/aoSefte3Mp1yC5WMzRckgXsSv0pLUbiEZW0Xj7V5jj95+tVIJcu/SFzl0drZcCeUje5EtYKz9TCmvR7/gfWCCjaBCdVYgAAAABJRU5ErkJggg==) no-repeat center;
  background-size: contain;
}
.bsszgmd-km .km-title .km-title-icon-wap.wuli {
  background: url(../images/wuli-wap.png) no-repeat center;
  background-size: contain;
}
.bsszgmd-km .km-title .km-title-icon-wap.shengwu {
  background: url(../images/shengwu-wap.png) no-repeat center;
  background-size: contain;
}
.bsszgmd-km .km-title .km-title-icon-wap.xinxi {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACshmLzAAAC30lEQVRYCcVXz2sTQRR+b7a4FUJ6qFQDKprWP8CbJw8i/qh6UIuIiEIR1OpBBX9gwJsHEUQQInoQhApejNCK2otX/4pa8dDaJgoaI0nszvPNprNJNjNJFjbNXmb3zffe+755b2d3kIhw+2zmGgBNEdAY9PpCICScB8Dst2P3H+O2mbvXCeSjXuc1xUcQN4RSbppcHxtNiXVZdosarsUor0AfLwLsLwHWHi8BhBIgfo6yprESECAyQwn3QF8IIOKSSGx4VixVLvSHAOCDVTeJRHCrJwQQoWILrNWLn/mLvLOmuA/+2rBhe8ce4MT/OMFxBGd/2Fk/Y6CebivbgIB9vg/7aoxtbEtAJWc1E66T+kAkM6YgWj0WCpd4+bcozKqEe8m0+175+jFMjms2K4EguUjNlb3Ft7xjHjLF0eoBZb32ROO/vpRzyZ3ux04kjASaky/lgOCwMfla5zeqD3AER7ohYSEgJhX7sqeS03gQNHQTqIda7UPT/J2rk0AUky3zbDAS4KQbfTB/p01OyhbU/kf+MpdnsxUH6PlzOmYIaCQgiZ7+XqieGBp1T3KqdyEf/1GpH/7DAtq99whvRlI7JooL1VMqpimOkQADHZJyWpPgnphtdNbqV7BqVc+Y12OJwdP571/PSEkvVczGGPreRkDNBySS6UH1OgUktHomWe98HZFHgfhqz9HdZ+dL1XNSwgtuBmse3Dpzhxp8TbceIJx3UCx6Un5S6p2Em/aKlatc+4cmByZ7kGns4hZ6wiVCE0bbBvRNm9HhINMe70QKo9UvA920+fCGNAf2/m1ysy5NE8p/IF7Z2hdvhSrqP3KkFRPdEoFAXT0vvVV9VApRCHhyeNPzZaheiUu9IttND2hRDhbyOULYqw1xjFEIcC/yB6nTOxORVZQSRAzdHVzwexWzpu4S+yjOLWoHxQhOMUJVbi4BZmOMGTEUZvkvtuF4zmc1LkjbrTNihlZ46Hj+H6MkF2boFRtvAAAAAElFTkSuQmCC) no-repeat center;
  background-size: contain;
}
.bsszgmd-km .km-text {
  padding: 0 0.427rem;
  background: #F7FBF9;
}
.bsszgmd-km .km-text:last-child .km-text-box {
  border-bottom: none;
}
.bsszgmd-km .km-text-box {
  border-bottom: 1px solid #E7E7E7;
  padding: 0.373rem 0;
  padding-left: 0.32rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bsszgmd-km .km-text-box a {
  font-size: 0.427rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  position: relative;
}
.bsszgmd-km .km-text-box a::before {
  content: '';
  width: 0.107rem;
  height: 0.107rem;
  background: #1CB278;
  border-radius: 0.053rem;
  position: absolute;
  top: 50%;
  left: -0.32rem;
  transform: translateY(-50%);
}
.listyx-title,
.listss-title {
  text-align: center;
  line-height: initial;
}
.bsszgmd-listss {
  padding: 0.533rem 0.427rem 0.853rem;
  font-size: 0.427rem;
  font-weight: 400;
  color: #131B18;
  line-height: 0.587rem;
  background: #fff;
}
.ss-container {
  margin-top: 0.427rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ss-container .ss-item {
  width: calc(50% - 0.2rem);
  padding: 0.24rem 0;
  border-radius: 0.107rem;
  border: 1px solid #DBDBDB;
  color: #131B18;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.267rem;
}
.ss-container .count {
  font-size: 0.373rem;
  color: #1CB278;
}
.bsszgmd-liststu-title {
  padding: 0.533rem 0.853rem 0.427rem;
  background: #fff;
  font-size: 0.427rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #D8D8D8;
}
.bsszgmd-liststu-title div {
  text-align: center;
}
.bsszgmd-liststu-title .jxmc {
  margin-bottom: 0.213rem;
}
.bsszgmd-liststu-title .mdgs-shenhe {
  font-size: 0.373rem;
  color: #F28C28;
}
.bsszgmd-liststu-search {
  background: #fff;
  padding-bottom: 0.36rem;
  margin-bottom: 0.267rem;
}
.bsszgmd-liststu-search .mdgs-search-wap .yxk-search-wap {
  padding: 0.32rem 0.427rem 0.213rem;
}
.bsszgmd-liststu-search .mdgs-search-bz {
  font-size: 0.32rem;
  font-weight: 400;
  color: #959E9A;
  padding-left: 0.427rem;
}
.res-img {
  display: block;
  width: 100%;
}
.loading-img {
  display: block;
  margin: 0 auto;
  width: 2.667rem;
}
.mdgs-yxlist {
  padding: 0.373rem 0.427rem 0.267rem;
}
.bssnlqmd-listyx {
  padding: 0.373rem 0.427rem 0.267rem;
  background: #fff;
  margin-bottom: 0.427rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bssnlqmd-listyx .yx-container {
  background: #F7FBF9;
  width: calc(50% - 0.1335rem);
  box-sizing: border-box;
  height: 1.067rem;
  border-radius: 0.107rem;
  margin-bottom: 0.267rem;
}
.bssnlqmd-listyx .yx-container:nth-child(2n) {
  margin-left: 0.267rem;
}
.bssnlqmd-listyx .yx-item {
  height: 1.067rem;
  line-height: 1.067rem;
  text-align: left;
  box-sizing: border-box;
  display: block;
  padding: 0 0.2rem;
  font-size: 0.427rem;
  color: #131B18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bssnlqmd-listyx .count {
  font-size: 0.373rem;
  color: #1CB278;
}
.mdgs-no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.6rem;
  padding-top: 1.333rem;
}
.mdgs-no-data img {
  display: block;
  width: 5.533rem;
  height: auto;
}
.mdgs-no-data span {
  margin-top: 0.213rem;
  font-size: 0.373rem;
  color: #959E9A;
  line-height: 0.533rem;
}
.mdgs-zxjh-tip {
  margin-top: 0.427rem;
}
.zxzx-main {
  background-color: #fff;
  padding: 0.373rem 0.427rem 0.587rem;
}
.zxzx-main .zxzx-main-item {
  background: #ffffff;
  box-shadow: 0px 0.027rem 0.133rem 0px #e5e5e5;
  border-radius: 0.16rem;
  overflow: hidden;
  padding-bottom: 0.267rem;
  display: block;
}
.zxzx-main .zxzx-main-item + .zxzx-main-item {
  margin-top: 0.32rem;
}
.zxzx-main .zxzx-main-item img {
  display: block;
  width: 100%;
}
.zxzx-main .zxzx-item-text {
  font-size: 0.373rem;
  font-weight: 400;
  color: #626F69;
  line-height: 0.64rem;
  padding: 0.267rem 0.32rem 0.08rem;
  text-align: justify;
}
.zxzx-main .zxzx-item-link {
  text-align: right;
}
.zxzx-main .zxzx-item-link .tag {
  font-size: 0.32rem;
  font-weight: 400;
  color: #1CB278;
  line-height: 0.453rem;
  padding-right: 0.32rem;
}
.gk-zxzx-tab {
  padding-top: 0.4rem;
  padding-bottom: 0.267rem;
  background-color: #fff;
}
.zxzx-filter-ss {
  margin-top: 0.32rem;
  padding-left: 0.427rem;
  display: flex;
  align-items: center;
}
.zxzx-filter-ss .van-icon {
  color: #d8d8d8;
  font-size: 0.427rem;
  transform: rotate(90deg);
  margin-left: 0.08rem;
  margin-top: -0.08rem;
}
.zxzx-filter-ss-text {
  font-size: 0.373rem;
  font-weight: 400;
  color: #131B18;
  line-height: 0.48rem;
}
.zxzx-zbhz .zxz-tab {
  background-color: unset;
  padding: 0.267rem 0.427rem 0.4rem;
}
.zxzx-zbhz .zxz-zb-item {
  background-color: #fff;
  box-shadow: none;
}
.zxzx-zbhz .zxz-zb-item + .zxz-zb-item {
  margin-top: 0.32rem;
}
.gk-zxdy-search-warp {
  padding: 0.533rem 0 0.16rem 0.427rem;
  background: #fff;
}
.gk-zxdy-search {
  background: #fff;
  padding: 0.213rem 0.427rem;
}
.gk-zxdy-search .gk-zxdy-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.8rem;
  border-radius: 0.4rem;
  background: #E8F7F1;
  font-size: 0.347rem;
  color: #1CB278;
  cursor: pointer;
}
.gk-zxdy-search .gk-zxdy-search-btn .icon {
  font-size: 0.4rem;
  color: #1CB278;
  margin-right: 0.053rem;
}
.gk-zxzx-search {
  display: flex;
  align-items: center;
  background: #fff;
}
.gk-zxzx-search .gk-zxdy-my {
  font-size: 0.32rem;
  font-weight: 400;
  color: #626F69;
  line-height: 0.533rem;
  margin-left: 0.267rem;
  margin-right: 0.427rem;
}
.gk-zxzx-search .gk-zxdy-form {
  flex: 1;
}
.gk-zxs-tip-title {
  display: flex;
  align-items: center;
}
.gk-zxs-tip-title::before {
  display: block;
  content: '';
  height: 0.48rem;
  width: 0.48rem;
  margin-right: 0.24rem;
}
.gk-zxs-tip-title.xjq::before {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAHKADAAQAAAABAAAAHAAAAABkvfSiAAABrElEQVRIDe1WMUgDQRDcuQRTCGlsLBRUbKzFSrCwFYSUFpJGhDSx1UIIFqa3EESsxFowammV1sbG0qCNhY1BwcTk193XC8/nH+J7iU0Wkpub/du53ftsDrPXpWyj3TggohwzZ2V0bgDqEvQ8k8oU0yomQnnnKoGAP4nkRYuM8LmAr98wZ/pVxqidq5ZmOFAbCjov98BLmo5NAcRg3Pp+8CgzzX1jehG+ppiJpuV7TDFA97Li3efB8+KE4rDFZgimj6fV8oJ+ZHGnMYBQsbyIXNqAgtc7PFHT8uExVjD8oKs5Ji62pTLdJjv+JGM2fY9HM8zermLhq8Kf+HybN5h4UbEx2GPgQTF7fEzMkccVK6gL+2EDL+lQ0Pkx/kNJgZbzNOICipaR/nMX53fNq5YImi35Mb+6Dh6OpxpIUdFvsFNXpfGW11wGed23NqY1aUVL4QB2boAz6TZVO48amUw9bUZuaiul58iOHlw0Wdk5lLtIIchZDIOjx5X9glwDI9ujfS44Jn5Lk4ipcCLBpGK9CTI1giX5i1hPgvJSnMpB1+SP6Q0w5d+eWXCzir8A0t6NfIx/djwAAAAASUVORK5CYII=) center center no-repeat;
  background-size: 0.48rem 0.427rem;
}
.gk-zxs-tip-title.js::before {
  background: url(../images/zxs-icon-js.png) center center no-repeat;
  background-size: 0.427rem 0.427rem;
}
.gk-zxs-tip-title.tbts::before {
  background: url(../images/zxs-icon-tbts.png) center center no-repeat;
  background-size: 0.373rem 0.48rem;
}
.gk-zxs-tip-title .tip-title-text {
  flex: 1;
  font-size: 0.427rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.9);
  line-height: 0.453rem;
}
.gk-zxs-tip-title .tip-title-expand {
  color: #1CB278;
  font-size: 0.48rem;
}
.gk-zxs-tip-content {
  margin-top: 0.427rem;
}
.zxs-search.van-search {
  padding: 0.213rem 0.427rem;
}
.zxs-search .van-search__action {
  padding-left: 0;
  padding-right: 0;
}
.zxs-search .van-search__content {
  background: #ffffff;
  padding-left: 0;
}
.zxs-search .van-field {
  border: 1Px solid #1DB27A;
  border-radius: 0.107rem 0px 0px 0.107rem;
  padding-left: 8Px;
  border-right: 0;
}
.zxs-search .van-button {
  height: 36Px;
  line-height: 36Px;
  border-radius: 0px 0.107rem 0.107rem 0;
}
.gk-zxdy-nav {
  background: #fff;
  height: 1.2rem;
  line-height: 1.2rem;
}
.gk-zxdy-nav .van-nav-bar__title {
  color: #131B18;
  font-size: 0.48rem;
  font-weight: 700;
}
.gk-zxdy-nav .van-icon {
  color: #131B18;
  font-size: 0.48rem;
  font-weight: 700;
}
.gk-zxdy-tip {
  padding: 0.4rem 0.427rem;
  background: #F7FBF9;
  border-radius: 0.107rem;
  border: 1px solid #EBEDEC;
  font-size: 0.373rem;
  color: #626F69;
  line-height: 0.587rem;
  margin: 0.32rem 0;
}
.gk-zxdy-error {
  background: linear-gradient(270deg, rgba(255, 249, 230, 0) 0%, rgba(255, 249, 230, 0.94) 43%, #FFF9E6 100%);
  font-size: 0.373rem;
  line-height: 0.587rem;
  color: rgba(0, 0, 0, 0.9);
  padding: 0.187rem 0.427rem 0.187rem 0.933rem;
  margin-bottom: 0.32rem;
  position: relative;
}
.gk-zxdy-error .ch-icon {
  font-size: 0.427rem;
  color: #FF9900;
  position: absolute;
  left: 0.32rem;
  top: 0.213rem;
}
.gk-zxdy-input {
  padding: 0.32rem 0.267rem 0.32rem 0.693rem;
  margin-bottom: 0.32rem;
}
.gk-zxdy-input.gk-zxdy-input-captcha {
  margin-bottom: 0;
}
.gk-zxdy-input.gk-zxdy-input-captcha::after {
  display: none;
}
.gk-zxdy-input.van-cell--required:before {
  font-size: 0.427rem;
  color: #ED4014;
  left: 0.427rem;
  top: 0.427rem;
}
.van-field__control {
  font-size: 0.427rem;
  color: #131B18;
  line-height: 0.64rem;
}
.van-field__control::placeholder {
  color: #95969a;
}
.gk-zxdy-captcha {
  display: block;
  background: #fff;
  text-align: center;
  padding: 0.213rem;
  margin-bottom: 0.64rem;
}
.gk-zxdy-captcha img {
  width: 5.067rem;
  display: block;
  margin: 0 auto 0.213rem;
}
.gk-zxdy-captcha .text {
  font-size: 0.373rem;
  font-weight: 400;
  color: #BFC5C2;
  line-height: 0.587rem;
}
.gk-zxdy-submit {
  margin-bottom: 0.64rem;
  font-size: 0.373rem;
  height: 1.173rem;
  line-height: 1.147rem;
}
.gk-zxdy-tab {
  background: #ffffff;
  display: flex;
  justify-content: center;
  border-bottom: 1Px solid #EBEDEC;
}
.gk-zxdy-tab .van-hairline--top-bottom:after,
.gk-zxdy-tab .van-hairline-unset--top-bottom:after {
  border-width: 0;
}
.gk-zxdy-tab .van-tab {
  padding: 0 0.213rem;
  flex: 0 1 auto;
}
.gk-zxdy-tab-btn {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 0.427rem 0.427rem 0.213rem;
}
.gk-zxdy-tab-btn .zxdy-tab-btn {
  font-size: 0.32rem;
  color: #60656E;
  line-height: 0.533rem;
  margin-right: 0.427rem;
}
.gk-zxdy-tab-btn .zxdy-tab-btn:last-child {
  margin-right: 0;
}
.gk-zxdy-tab-btn .zxdy-tab-btn.active {
  padding: 0.053rem 0.253rem;
  border-radius: 0.32rem;
  border: 1Px solid #1CB278;
  font-size: 0.32rem;
  color: #1CB278;
  line-height: 0.533rem;
}
.gk-gdwz-tab {
  padding: 0.267rem;
  background: #fff;
}
.gk-gdwz-tab li {
  height: 0.64rem;
  line-height: 0.64rem;
  color: #959E9A;
}
.gk-gdwz-tab li.selected {
  font-weight: 400;
}
.gk-gdwz-list {
  padding: 0.32rem 0.427rem;
}
.gk-gdwz-list .no-info {
  padding: 0.8rem 0;
}
.gk-gdwz-search .scholl-filter-box {
  padding: 0.4rem 0.427rem 0.267rem 0.427rem;
}
.gdwz-item {
  position: relative;
  padding: 0.373rem 0.427rem;
  margin-bottom: 0.32rem;
  border-radius: 0.107rem;
  background: #FFFFFF;
}
.gdwz-item:last-child {
  margin-bottom: 0;
}
.gdwz-item .title {
  margin-bottom: 0.32rem;
  font-size: 0.427rem;
  color: #131B18;
  line-height: 0.64rem;
  font-weight: bold;
}
.gdwz-item .sub-title {
  margin-left: 0.133rem;
  font-weight: 400;
}
.gdwz-item .msg-list .item {
  display: flex;
  line-height: 0.587rem;
  margin-bottom: 0.213rem;
  font-size: 0.373rem;
}
.gdwz-item .msg-list .item.sm {
  display: block;
}
.gdwz-item .msg-list .item .td {
  flex: 1;
  min-width: 0;
  color: #626F69;
}
.gdwz-item .msg-list .item .th {
  color: #131b18;
}
.gdwz-item .msg-list .item a {
  color: #1CB278;
}
.gdwz-item .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.267rem;
  line-height: 0.587rem;
  border-radius: 0.107rem;
  background: rgba(7, 7, 7, 0.6);
  font-size: 0.373rem;
  color: #fff;
  box-sizing: border-box;
}
.gdwz-item .cover .close {
  position: absolute;
  top: 0.267rem;
  right: 0.267rem;
}
.gdwz-item .cover .van-icon {
  font-size: 0.373rem;
}
.gdwz-item .gdwz-tip-img {
  display: flex;
  align-items: center;
}
.gdwz-item .gdwz-tip-img img {
  display: block;
  width: 1.973rem;
  height: 1.973rem;
  margin-right: 0.293rem;
}
.gdwz-item .gdwz-tip-img .text {
  flex: 1;
  min-width: 0;
  -webkit-line-clamp: 3;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}
.gdwz-item .gdwz-tip-img a {
  color: #1CB278;
}
.gdwz-item .gdwz-tip {
  max-width: 100%;
  max-height: 100%;
  padding: 0.267rem;
  box-sizing: border-box;
  overflow: auto;
}
.gdwz-item .gdwz-tip-item {
  margin-bottom: 0.2rem;
}
.gdwz-item .gdwz-tip-item:last-child {
  margin-bottom: 0;
}
.media-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.media-list .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.533rem;
  font-size: 0.32rem;
  color: #626F69;
  cursor: pointer;
}
.media-list .item.border {
  width: 0.027rem;
  height: 0.28rem;
  background: #979797;
}
.media-list .item.item-no-info {
  color: #8D9D95;
}
.media-list .item.item-no-info .icon-wx {
  background-image: url(https://t1.chei.com.cn/gaokao/assets/web/images/dfz-wx-empty.svg);
}
.media-list .item.item-no-info .icon-wb {
  background-image: url(https://t2.chei.com.cn/gaokao/assets/web/images/dfz-wb-empty.svg);
}
.media-list .item.item-no-info .icon-bjh {
  background-image: url(https://t3.chei.com.cn/gaokao/assets/web/images/dfz-bjh-empty.svg);
}
.media-list .item.item-no-info .icon-sph {
  background-image: url(https://t4.chei.com.cn/gaokao/assets/web/images/dfz-sph-empty.svg);
}
.media-list .item.selected {
  color: #1CB278;
}
.media-list .item.selected .icon-wx {
  background-image: url(https://t1.chei.com.cn/gaokao/assets/web/images/dfz-wx-active.svg);
}
.media-list .item.selected .icon-wb {
  background-image: url(https://t2.chei.com.cn/gaokao/assets/web/images/dfz-wb-active.svg);
}
.media-list .item.selected .icon-bjh {
  background-image: url(https://t3.chei.com.cn/gaokao/assets/web/images/dfz-bjh-active.svg);
}
.media-list .item.selected .icon-sph {
  background-image: url(https://t4.chei.com.cn/gaokao/assets/web/images/dfz-sph-active.svg);
}
.media-list .item-icon {
  display: inline-block;
  width: 0.533rem;
  height: 0.427rem;
  margin-right: 0.133rem;
  background: no-repeat 0 0 / contain;
}
.media-list .icon-wx {
  background-image: url(https://t1.chei.com.cn/gaokao/assets/web/images/dfz-wx.svg);
}
.media-list .icon-wb {
  background-image: url(https://t2.chei.com.cn/gaokao/assets/web/images/dfz-wb.svg);
}
.media-list .icon-bjh {
  width: 0.453rem;
  height: 0.387rem;
  background-image: url(https://t3.chei.com.cn/gaokao/assets/web/images/dfz-bjh.svg);
}
.media-list .icon-sph {
  width: 0.427rem;
  height: 0.427rem;
  background-image: url(https://t4.chei.com.cn/gaokao/assets/web/images/dfz-sph.svg);
}
.gk-zb-info .zb-info-content {
  background: #F3FAF7;
  padding: 0.453rem 0.427rem 0.533rem;
}
.gk-zb-info .content-box {
  margin-bottom: 0.107rem;
}
.gk-zb-info .content-item {
  padding-left: 0.533rem;
  font-size: 0.373rem;
  color: #131B18;
  line-height: 0.64rem;
  margin-bottom: 0.32rem;
  background: url(../images/yxxx_wangzhi.png) left 0.107rem no-repeat;
  background-size: 0.427rem 0.427rem;
}
.gk-zb-info .content-item:nth-of-type(2) {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAHqADAAQAAAABAAAAHgAAAADKQTcFAAAC9UlEQVRIDeVWTUgVURQ+Z+b1RoKKgnbTM3QZhAgaFFSPhEp9UtAPtCmqRUQG0Z89N7PIp0UtUlu4iBAiKCLC9/ohFFtWUkjQLiv1rQqKCoQ3+uZ0LnSH+XuT88ads7n3/H3fvWfOPfcCLLcPvRve+DTbUC5btwiwEZHGE4ra+aWtZ9rrF1d2Eafy2V0W0AgQrbSBEaeToG3/nDFmbN0STBSJoee7m32kwkhUa0Lp4c5xIyF9l2K0iRHKN107daITbZn6Y3Y6VXHnNjERNoSDWWfD7dGsNjEimGGhhKgTry7MJ4rNJuagqbBAJBhGLvMwnyg2BzGOVg7ED5TULlW2R7fYxHxunwSGI84lVG13cY/xI9BepdImLmZ63nIqJ7w4CFQ61grfvPq4sk0sgFDBG15AIlh7Nz+/36uPK7uqVFRtqpB9zWOzCxihWKNi46fW3u8ufQzBvWNRtURneO+WC5NAL5XpvkGGy9/lE1HwAc129E0AwqAXh1Pecqdg3vbqq5V9xAJoTZ12kRvKOy8okXVKH+nq8+qrkQOJP24yTFATh5n8VwDo5VT+yrUAfSSVq7i8kbWFbNoi6zmnWfPa+AQMnWjTThtouOvhn6Mo1LBOF0osMHh3ByyCB3w/+rLDGRnVVDzirHb9hbEOzdJ17upHkagIoPTXr0oOvEobC87F/5dYOOv57Emu9qEgci7EogJ47ni79nh4zFw/P0cv2W+zkwQQ3/Bj4pDzMbEoYgEids5n7V5Q2oWdd/+T265W8U7nl8wKRdkhn1G+9AmQoG8m0/tIQWUv/7ffQXbR4SqSigB+ySxY5QEZu2hiETDdnhsHVeVHoP+oScCwkestLe2RiEXQbOvVqdV1NVs5t/2+DidRK4x84byXpkX/YxngHDeMdDXxAgZ9vd3pJOfielVw29e23KRQxSIWAOK81j7rPkgWXeB5k9D5Piblyu+YyeTGpC02sQQSo3giczr38XJaWKzngkvyvTNJoJ4X973Td/nN/wI9mvouPg8hhwAAAABJRU5ErkJggg==);
}
.gk-zb-info .content-item:nth-of-type(3) {
  background-image: url(../images/yxxx_xitong.svg);
  background-size: 0.373rem 0.373rem;
}
.gk-zb-info .content-item a {
  color: #1CB278;
}
.gk-zb-info .content-item .text {
  color: #626F69;
}
.gk-gkzx-box {
  background-color: #f5f5f5;
}
.gk-gkzx-box .gk-gkzx-between {
  display: flex;
  justify-content: space-between;
}
.gk-gkzx-box .no-info {
  padding: 2.387rem 0 3.88rem;
}
.gk-gkzx-box .tab {
  padding-left: 0.427rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
}
.gk-gkzx-box .tab .tab-item:first-child {
  margin-right: 0.533rem;
}
.gk-gkzx-box .tab .tab-item {
  font-size: 0.427rem;
  color: #818181;
  line-height: 0.6rem;
  padding-bottom: 0.16rem;
  position: relative;
}
.gk-gkzx-box .tab .tab-item-active {
  color: #131B18;
}
.gk-gkzx-box .tab .tab-item-active::after {
  content: '';
  width: 0.48rem;
  height: 0.08rem;
  background: #1CB278;
  border-radius: 0.08rem;
  position: absolute;
  bottom: -0.04rem;
  left: 50%;
  transform: translateX(-50%);
}
.gk-gkzx-box .content {
  padding: 0.4rem 0.427rem 0;
}
.gk-gkzx-box .content .content-item {
  font-size: 0.4rem;
  line-height: 0.56rem;
  padding: 0 0 0.4rem 0.267rem;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 0.4rem;
}
.gk-gkzx-box .content .content-item a {
  color: #131B18;
}
.gk-gkzx-box .content .content-item::before {
  content: '';
  width: 0.107rem;
  height: 0.107rem;
  background: #1CB278;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.227rem;
}
.gk-gkzx-box .content .content-footer {
  height: 0.493rem;
  font-size: 0.347rem;
  font-weight: 400;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gk-gkzx-box .content .content-footer a {
  color: #949494;
}
.gk-gkzx-box .content .content-footer .van-icon {
  color: #949494;
  margin-left: 0.133rem;
  position: relative;
  top: 1.5px;
}
.gk-gkzx-box .content .content-last {
  border-bottom: none;
  margin-bottom: 0.533rem;
  padding-bottom: 0;
}
.gk-gkzx-box .place-box {
  padding: 0.32rem 0 0.307rem 0.44rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
}
.gk-gkzx-box .place-box .place-info {
  font-size: 0.373rem;
  color: #131B18;
  line-height: 0.533rem;
}
.gk-gkzx-box .place-box .van-icon {
  color: #d8d8d8;
  font-size: 0.427rem;
  transform: rotate(90deg);
  margin-left: 0.08rem;
}
.gk-gkzx-container {
  padding: 0.533rem 0.427rem 0.8rem;
}
.gk-gkzx-container .gk-gkzx-container-header a {
  display: block;
  position: relative;
}
.gk-gkzx-container .gk-gkzx-container-header a:last-child {
  margin: 0.267rem 0;
}
.gk-gkzx-container .gk-gkzx-container-header img {
  display: block;
  width: 100%;
}
.gk-gkzx-container .gk-gkzx-container-footer {
  display: block;
  height: 0.907rem;
  line-height: 0.907rem;
  background: #F5F5F5;
  border-radius: 0.053rem;
  font-size: 0.373rem;
  color: #8F8F8F;
  text-align: center;
}
.gk-gkzx-container .gk-gkzx-container-wrapper {
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.533rem 0.427rem 0.507rem;
}
.gk-gkzx-container .gk-gkzx-container-wrapper .gk-gkzx-wrapper-title {
  font-size: 0.427rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.6rem;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 0.293rem;
}
.gk-gkzx-container .gk-gkzx-container-wrapper .gk-gkzx-wrapper-info {
  font-size: 0.4rem;
  line-height: 0.56rem;
  padding: 0 0 0.4rem 0.32rem;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  margin-bottom: 0.4rem;
}
.gk-gkzx-container .gk-gkzx-container-wrapper .gk-gkzx-wrapper-info a {
  color: #131B18;
}
.gk-gkzx-container .gk-gkzx-container-wrapper .gk-gkzx-wrapper-info::before {
  content: '';
  width: 0.107rem;
  height: 0.107rem;
  background: #1CB278;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.24rem;
}
.gk-gkzx-container .gk-gkzx-container-wrapper .gk-gkzx-wrapper-info-last {
  border-bottom: none;
  margin-bottom: 0.533rem;
  padding-bottom: 0;
}
.gk-gkzx-container .gk-gkzx-container-zszc {
  margin-bottom: 0.267rem;
}
.gkzx-zszc-container {
  padding: 0.373rem 0 0.533rem;
  background-color: #fff;
}
.gkzx-zszc-container .no-info {
  margin: 0.693rem 0 0.533rem;
}
.gkzx-bkzn-container {
  padding-top: 0.427rem;
}
.gkzx-bkzn-container a {
  display: flex;
  align-items: center;
  margin-bottom: 0.267rem;
  background: #fff;
  padding: 0.427rem;
  border-radius: 0.053rem;
}
.gkzx-bkzn-container a:last-child {
  margin-bottom: 0;
}
.gkzx-bkzn-container .gk-bkzn-icon {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 0.427rem;
  font-weight: 700;
  color: #131B18;
  line-height: 0.64rem;
}
.gkzx-bkzn-container .gk-bkzn-icon::before {
  display: block;
  content: '';
  width: 1.067rem;
  height: 1.067rem;
  margin-right: 0.32rem;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.gkzx-bkzn-container .van-icon {
  color: #979797;
  font-size: 0.427rem;
  font-weight: 700;
}
.gkzx-bkzn-container .yxcx .gk-bkzn-icon::before {
  background-image: url(../images/bkzn-yxcx.svg);
}
.gkzx-bkzn-container .zycx .gk-bkzn-icon::before {
  background-image: url(../images/bkzn-zycx.svg);
}
.gkzx-bkzn-container .zytbzn .gk-bkzn-icon::before {
  background-image: url(../images/bkzn-zytbzn.svg);
}
.gkzx-bkzn-container .zyck .gk-bkzn-icon::before {
  background-image: url(../images/bkzn-zyck.svg);
}
.gkzx-bkzn-container .tslxzs .gk-bkzn-icon::before {
  background-image: url(../images/bkzn-tslxzs.svg);
}
.gkzx-bkzn-container .gdbmap .gk-bkzn-icon::before {
  background-image: url(../images/bkzn-gdbmap.svg);
}
.wap-help-con {
  padding: 0 0.427rem 0.747rem 0.427rem;
  min-height: calc(100vh - 9.28rem);
}
.wap-help-con .detail-con {
  margin-top: 0.32rem;
}
.wap-help-con .van-pagination {
  padding-bottom: 0.32rem;
}
.wap-help-con .van-cell--clickable:active {
  background: #fff;
}
.wap-help-con .wap-help-list-loading {
  margin-top: 0.64rem;
  text-align: center;
}
.wap-help-con .nodata-wap {
  padding-bottom: 1.92rem;
}
.wap-help-con .van-hairline--top:after {
  display: none;
}
.wap-help-search-con .van-search {
  padding: 0.533rem 0.427rem 0.067rem 0.427rem;
  background: #f5f5f5;
}
.wap-help-search-con .van-search .van-cell {
  padding: 0.133rem 0.213rem 0.133rem 0;
}
.wap-help-search-con .wap-help-search .van-search__content {
  height: 0.853rem;
  border: 0.027rem solid #1CB278;
  border-right: none;
  border-radius: 0.107rem 0px 0px 0.107rem;
  box-sizing: border-box;
  background: #fff;
}
.wap-help-search-con .wap-help-search .van-search__content:after {
  display: none;
}
.wap-help-search-con .wap-help-search .van-search__action {
  height: 0.853rem;
  line-height: 0.853rem;
  background: #1CB278;
  border-radius: 0px 0.107rem 0.107rem 0px;
  font-size: 0.373rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 0.32rem;
}
.wap-help-search-con .wap-help-search .van-search__action .search-btn {
  height: 0.853rem;
  line-height: 0.88rem;
}
.wap-help-search-con .wap-help-search .van-field__body {
  height: 100%;
}
.wap-help-search-con .wap-help-search .van-field__body input {
  font-size: 0.32rem;
}
.van-sticky--fixed .van-search {
  padding: 0.533rem 0.427rem;
}
.wap-help-tab .van-tabs__nav {
  background: none;
}
.wap-help-tab .van-tab--active {
  color: #131B18;
  font-size: 0.427rem;
}
.wap-help-tab .van-tab--active::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.48rem;
  z-index: 1;
  height: 0.08rem;
  background-color: #1CB278;
  border-radius: 0.04rem;
}
.wap-help-tab .van-tabs__line {
  display: none;
}
.wap-help-tag-item {
  position: static;
  border-radius: 0.053rem;
  margin-bottom: 0.32rem;
  overflow: hidden;
}
.wap-help-tag-item:last-child {
  margin-bottom: 0;
}
.wap-help-tag-item .van-collapse-item__title {
  padding: 0.267rem;
  line-height: 0.64rem;
}
.wap-help-tag-item .van-collapse-item__wrapper {
  margin-top: -0.267rem;
}
.wap-help-tag-item .tag-right-icon {
  width: 0.587rem;
  height: 0.587rem;
  font-size: 0.587rem;
  margin-left: 0.107rem;
  color: #1CB278;
  transform: translateZ(0);
  transition: transform 0.3s;
}
.wap-help-tag-item .van-collapse-item__title--expanded .tag-right-icon {
  transform: rotate(180deg);
}
.wap-help-tag-item .van-collapse-item__content {
  padding: 0 0.267rem;
  color: #626F69;
}
.wap-help-tag-item .van-cell__title {
  font-size: 0.427rem;
  font-weight: 700;
  color: #131B18;
}
.wap-help-tag-item .wap-help-know-item:first-child .van-collapse-item__title {
  padding-top: 0.213rem;
}
.wap-help-know-item:last-child {
  padding-bottom: 0.32rem;
}
.wap-help-know-item:last-child .van-collapse-item__title {
  padding-bottom: 0;
  border: none;
}
.wap-help-know-item:last-child .van-collapse-item__title.van-collapse-item__title--expanded {
  padding-bottom: 0.32rem;
}
.wap-help-know-item .van-collapse-item__title {
  padding: 0.32rem 0;
  line-height: 0.587rem;
  background: none;
  border-bottom: 0.5px solid #DEDEDE;
}
.wap-help-know-item .van-collapse-item__title.van-collapse-item__title--expanded {
  border: none;
}
.wap-help-know-item .van-collapse-item__wrapper {
  margin-top: -0.107rem;
}
.wap-help-know-item .van-cell__right-icon {
  width: 0.587rem;
  height: 0.587rem;
  line-height: 0.587rem;
  font-size: 0.533rem;
  text-align: center;
  color: #B7BCC4;
}
.wap-help-know-item .van-collapse-item__content {
  padding: 0.267rem 0.213rem;
  color: #626F69;
  background: #F7FBF9;
  border-radius: 0.053rem;
}
.wap-help-know-item .van-cell__title {
  font-size: 0.373rem;
  font-weight: 400;
  color: #131B18;
}
.wap-help-know-item .text {
  line-height: 0.64rem;
  font-size: 0.373rem;
}
.wap-help-know-item .time {
  height: 0.427rem;
  line-height: 0.427rem;
  margin-top: 0.213rem;
  font-size: 0.32rem;
  text-align: right;
  color: #8D949F;
}
.wap-help-know-item p {
  margin: 0;
}
.wap-help-know-item p + p {
  margin-top: 0.133rem;
}
.wap-help-know-item p img {
  max-width: 100%;
}
.wap-help-searchmodel-con {
  margin-top: -0.32rem;
  padding: 0 0.267rem;
  background: #fff;
  overflow: hidden;
  border-radius: 0.053rem;
}
.wap-help-robot-con {
  position: fixed;
  right: 0;
  bottom: 15%;
}
.wap-help-robot-con a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wap-help-robot-con img {
  width: 1.333rem;
  height: 1.333rem;
  display: block;
}
.wap-help-robot-con .title {
  display: flex;
  align-items: center;
  margin-top: -0.133rem;
  height: 0.533rem;
  line-height: 1;
  padding: 0 0.2rem;
  font-size: 0.32rem;
  color: #28bca4;
  background: #d2f3ee;
  border-radius: 0.267rem;
}
.nodata-wap {
  padding: 0.533rem 0 2.667rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nodata-wap img {
  display: block;
  width: 5.533rem;
  height: 4.613rem;
}
.nodata-wap .no-data {
  margin-top: 0.213rem;
  font-size: 0.373rem;
  color: #959E9A;
  line-height: 0.533rem;
}
.van-sticky--fixed .fixed-box {
  max-width: 750Px;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0.107rem 0.213rem -0.107rem;
}
.gk-wzdt {
  background: #fff;
  padding: 0.64rem 0.427rem 0.427rem 0.427rem;
}
.wzdt-item {
  margin-bottom: 0.427rem;
}
.wzdt-item h2 {
  margin: 0;
}
.wzdt-item .wzdt-item-title {
  font-weight: 400;
  padding: 0.32rem 0;
  border-bottom: 1px solid #D4D9D7;
}
.wzdt-item .wzdt-item-title .text {
  color: #131B18;
  height: 0.693rem;
  font-size: 0.48rem;
  display: flex;
  align-items: center;
}
.wzdt-item .wzdt-item-title .van-icon {
  color: #626F69;
  font-size: 0.48rem;
  margin-left: 0.107rem;
}
.wzdt-item .wzdt-item-content {
  padding: 0.32rem 0;
  display: flex;
  flex-wrap: wrap;
}
.wzdt-item .wzdt-item-content .link {
  font-size: 0.427rem;
  font-weight: 400;
  color: #626F69;
  line-height: 0.64rem;
  display: block;
  width: 50%;
  box-sizing: border-box;
  padding-right: 0.16rem;
  margin-bottom: 0.213rem;
}

