
.mint-msgbox {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  background-color: #fff;
  width: 85%;
  border-radius: 3px;
  font-size: 16px;
  -webkit-user-select: none;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: .2s;
  transition: .2s;
}
.mint-msgbox-header {
  padding: 15px 0 0;
}
.mint-msgbox-content {
  padding: 10px 20px 15px;
  border-bottom: 1px solid #ddd;
  min-height: 36px;
  position: relative;
}
.mint-msgbox-input {
  padding-top: 15px;
}
.mint-msgbox-input input {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 4px 5px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.mint-msgbox-input input.invalid {
  border-color: #ff4949;
}
.mint-msgbox-input input.invalid:focus {
  border-color: #ff4949;
}
.mint-msgbox-errormsg {
  color: red;
  font-size: 12px;
  min-height: 18px;
  margin-top: 2px;
}
.mint-msgbox-title {
  text-align: center;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.mint-msgbox-message {
  color: #999;
  margin: 0;
  text-align: center;
  line-height: 36px;
}
.mint-msgbox-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  line-height: 40px;
}
.mint-msgbox-btn {
  line-height: 35px;
  display: block;
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  border: 0;
}
.mint-msgbox-btn:focus {
  outline: none;
}
.mint-msgbox-btn:active {
  background-color: #fff;
}
.mint-msgbox-cancel {
  width: 50%;
  border-right: 1px solid #ddd;
}
.mint-msgbox-cancel:active {
  color: #000;
}
.mint-msgbox-confirm {
  color: #26a2ff;
  width: 50%;
}
.mint-msgbox-confirm:active {
  color: #26a2ff;
}
.msgbox-bounce-enter {
  opacity: 0;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0.7);
          transform: translate3d(-50%, -50%, 0) scale(0.7);
}
.msgbox-bounce-leave-active {
  opacity: 0;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0.9);
          transform: translate3d(-50%, -50%, 0) scale(0.9);
}
.v-modal-enter {
  -webkit-animation: v-modal-in .2s ease;
          animation: v-modal-in .2s ease;
}
.v-modal-leave {
  -webkit-animation: v-modal-out .2s ease forwards;
          animation: v-modal-out .2s ease forwards;
}
@-webkit-keyframes v-modal-in {
0% {
    opacity: 0;
}
100% {
}
}
@keyframes v-modal-in {
0% {
    opacity: 0;
}
100% {
}
}
@-webkit-keyframes v-modal-out {
0% {
}
100% {
    opacity: 0;
}
}
@keyframes v-modal-out {
0% {
}
100% {
    opacity: 0;
}
}
.v-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}
.v-modal-enter {
  -webkit-animation: v-modal-in .2s ease;
          animation: v-modal-in .2s ease;
}

.v-modal-leave {
  -webkit-animation: v-modal-out .2s ease forwards;
          animation: v-modal-out .2s ease forwards;
}

@-webkit-keyframes v-modal-in {
  0% {
    opacity: 0;
  }
  100% {
  }
}

@keyframes v-modal-in {
  0% {
    opacity: 0;
  }
  100% {
  }
}

@-webkit-keyframes v-modal-out {
  0% {
  }
  100% {
    opacity: 0;
  }
}

@keyframes v-modal-out {
  0% {
  }
  100% {
    opacity: 0;
  }
}

.v-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}

.mint-popup {
  position: fixed;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}

.mint-popup-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

.mint-popup-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.mint-popup-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

.mint-popup-left {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.popup-slide-top-enter, .popup-slide-top-leave-active {
  -webkit-transform: translate3d(-50%, -100%, 0);
          transform: translate3d(-50%, -100%, 0);
}

.popup-slide-right-enter, .popup-slide-right-leave-active {
  -webkit-transform: translate3d(100%, -50%, 0);
          transform: translate3d(100%, -50%, 0);
}

.popup-slide-bottom-enter, .popup-slide-bottom-leave-active {
  -webkit-transform: translate3d(-50%, 100%, 0);
          transform: translate3d(-50%, 100%, 0);
}

.popup-slide-left-enter, .popup-slide-left-leave-active {
  -webkit-transform: translate3d(-100%, -50%, 0);
          transform: translate3d(-100%, -50%, 0);
}

.popup-fade-enter, .popup-fade-leave-active {
  opacity: 0;
}

.picker {
  overflow: hidden;
}
.picker-toolbar {
  height: 40px;
}
.picker-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  text-align: right;
  font-size: 24px;
  position: relative;
}
.picker-center-highlight {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  margin-top: -18px;
  pointer-events: none
}
.picker-center-highlight:before, .picker-center-highlight:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #eaeaea;
  display: block;
  z-index: 15;
  -webkit-transform: scaleY(0.5);
          transform: scaleY(0.5);
}
.picker-center-highlight:before {
  left: 0;
  top: 0;
  bottom: auto;
  right: auto;
}
.picker-center-highlight:after {
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
}
.picker-slot {
  font-size: 18px;
  overflow: hidden;
  position: relative;
  max-height: 100%
}
.picker-slot.picker-slot-left {
  text-align: left;
}
.picker-slot.picker-slot-center {
  text-align: center;
}
.picker-slot.picker-slot-right {
  text-align: right;
}
.picker-slot.picker-slot-divider {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center
}
.picker-slot-wrapper {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.picker-slot-wrapper.dragging, .picker-slot-wrapper.dragging .picker-item {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}
.picker-item {
  height: 36px;
  line-height: 36px;
  padding: 0 10px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #707274;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.picker-slot-absolute .picker-item {
  position: absolute;
}
.picker-item.picker-item-far {
  pointer-events: none
}
.picker-item.picker-selected {
  color: #000;
  -webkit-transform: translate3d(0, 0, 0) rotateX(0);
          transform: translate3d(0, 0, 0) rotateX(0);
}
.picker-3d .picker-items {
  overflow: hidden;
  -webkit-perspective: 700px;
          perspective: 700px;
}
.picker-3d .picker-item, .picker-3d .picker-slot, .picker-3d .picker-slot-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d
}
.picker-3d .picker-slot {
  overflow: visible
}
.picker-3d .picker-item {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out
}
/* Cell Component */
/* Header Component */
/* Button Component */
/* Tab Item Component */
/* Tabbar Component */
/* Navbar Component */
/* Checklist Component */
/* Radio Component */
/* z-index */
.mint-switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}
.mint-switch * {
    pointer-events: none;
}
.mint-switch-label {
    margin-left: 10px;
    display: inline-block;
}
.mint-switch-label:empty {
    margin-left: 0;
}
.mint-switch-core {
    display: inline-block;
    position: relative;
    width: 52px;
    height: 32px;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #d9d9d9;
}
.mint-switch-core::after, .mint-switch-core::before {
    content: " ";
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    border-radius: 15px;
}
.mint-switch-core::after {
    width: 30px;
    height: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
            box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}
.mint-switch-core::before {
    width: 50px;
    height: 30px;
    background-color: #fdfdfd;
}
.mint-switch-input {
    display: none;
}
.mint-switch-input:checked + .mint-switch-core {
    border-color: #26a2ff;
    background-color: #26a2ff;
}
.mint-switch-input:checked + .mint-switch-core::before {
    -webkit-transform: scale(0);
            transform: scale(0);
}
.mint-switch-input:checked + .mint-switch-core::after {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
}
/* Cell Component */
/* Header Component */
/* Button Component */
/* Tab Item Component */
/* Tabbar Component */
/* Navbar Component */
/* Checklist Component */
/* Radio Component */
/* z-index */
.mint-cell {
    background-color:#fff;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    color:inherit;
    min-height:48px;
    display:block;
    overflow:hidden;
    position:relative;
    text-decoration:none;
}
.mint-cell img {
    vertical-align:middle;
}
.mint-cell:first-child .mint-cell-wrapper {
    background-origin:border-box;
}
.mint-cell:last-child {
    background-image:-webkit-gradient(linear, left bottom, left top, from(#d9d9d9), color-stop(50%, #d9d9d9), color-stop(50%, transparent));
    background-image:linear-gradient(0deg, #d9d9d9, #d9d9d9 50%, transparent 50%);
    background-size:100% 1px;
    background-repeat:no-repeat;
    background-position:bottom;
}
.mint-cell-wrapper {
    background-image:-webkit-gradient(linear, left top, left bottom, from(#d9d9d9), color-stop(50%, #d9d9d9), color-stop(50%, transparent));
    background-image:linear-gradient(180deg, #d9d9d9, #d9d9d9 50%, transparent 50%);
    background-size: 120% 1px;
    background-repeat: no-repeat;
    background-position: top left;
    background-origin: content-box;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 1;
    min-height: inherit;
    overflow: hidden;
    padding: 0 10px;
    width: 100%;
}
.mint-cell-mask {}
.mint-cell-mask::after {
    background-color:#000;
    content:" ";
    opacity:0;
    top:0;
    right:0;
    bottom:0;
    left:0;
    position:absolute;
}
.mint-cell-mask:active::after {
    opacity:.1;
}
.mint-cell-text {
    vertical-align: middle;
}
.mint-cell-label {
    color: #888;
    display: block;
    font-size: 12px;
    margin-top: 6px;
}
.mint-cell-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.mint-cell-value {
    color: #888;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.mint-cell-value.is-link {
    margin-right:24px;
}
.mint-cell-left {
    position: absolute;
    height: 100%;
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
}
.mint-cell-right {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
}
.mint-cell-allow-right::after {
    border: solid 2px #c8c8cd;
    border-bottom-width: 0;
    border-left-width: 0;
    content: " ";
    top:50%;
    right:20px;
    position: absolute;
    width:5px;
    height:5px;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
}

@font-face {font-family: "mintui";
  src: url(data:application/x-font-ttf;base64,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)
}

.mintui {
  font-family:"mintui" !important;
  font-size:16px;
  font-style:normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.mintui-search:before { content: "\E604"; }

.mintui-more:before { content: "\E601"; }

.mintui-back:before { content: "\E600"; }

.mintui-field-error:before { content: "\E605"; }

.mintui-field-warning:before { content: "\E608"; }

.mintui-success:before { content: "\E602"; }

.mintui-field-success:before { content: "\E609"; }
/* Cell Component */
/* Header Component */
/* Button Component */
/* Tab Item Component */
/* Tabbar Component */
/* Navbar Component */
/* Checklist Component */
/* Radio Component */
/* z-index */
.mint-search {
    height: 100%;
    height: 100vh;
    overflow: hidden;
}
.mint-searchbar {
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #d9d9d9;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 10px;
    z-index: 1;
}
.mint-searchbar-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 28px;
    padding: 4px 6px;
}
.mint-searchbar-inner .mintui-search {
    font-size: 12px;
    color: #d9d9d9;
}
.mint-searchbar-core {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 100%;
    outline: 0;
}
.mint-searchbar-cancel {
    color: #26a2ff;
    margin-left: 10px;
    text-decoration: none;
}
.mint-search-list {
    overflow: auto;
    padding-top: 44px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
}


.mint-swipe {
    overflow: hidden;
    position: relative;
    height: 100%;
}
.mint-swipe-items-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.mint-swipe-items-wrap > div {
    position: absolute;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    width: 100%;
    height: 100%;
    display: none
}
.mint-swipe-items-wrap > div.is-active {
    display: block;
    -webkit-transform: none;
            transform: none;
}
.mint-swipe-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}
.mint-swipe-indicator {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
    margin: 0 3px;
}
.mint-swipe-indicator.is-active {
    background: #fff;
}
/* Cell Component */
/* Header Component */
/* Button Component */
/* Tab Item Component */
/* Tabbar Component */
/* Navbar Component */
/* Checklist Component */
/* Radio Component */
/* z-index */
.mint-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #26a2ff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    height: 40px;
    line-height: 1;
    padding: 0 10px;
    position: relative;
    text-align: center;
    white-space: nowrap;
}
.mint-header .mint-button {
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: inherit;
    display: inline-block;
    padding: 0;
    font-size: inherit
}
.mint-header .mint-button::after {
    content: none;
}
.mint-header.is-fixed {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
    z-index: 1;
}
.mint-header-button {
    -webkit-box-flex: .5;
        -ms-flex: .5;
            flex: .5;
}
.mint-header-button > a {
    color: inherit;
}
.mint-header-button.is-right {
    text-align: right;
}
.mint-header-button.is-left {
    text-align: left;
}
.mint-header-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: inherit;
    font-weight: 400;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
/* Cell Component */
/* Header Component */
/* Button Component */
/* Tab Item Component */
/* Tabbar Component */
/* Navbar Component */
/* Checklist Component */
/* Radio Component */
/* z-index */
.mint-button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 4px;
    border: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: inherit;
    display: block;
    font-size: 18px;
    height: 41px;
    outline: 0;
    overflow: hidden;
    position: relative;
    text-align: center
}
.mint-button::after {
    background-color: #000;
    content: " ";
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute
}
.mint-button:not(.is-disabled):active::after {
    opacity: .4
}
.mint-button.is-disabled {
    opacity: .6
}
.mint-button-icon {
    vertical-align: middle;
    display: inline-block
}
.mint-button--default {
    color: #656b79;
    background-color: #f6f8fa;
    -webkit-box-shadow: 0 0 1px #b8bbbf;
            box-shadow: 0 0 1px #b8bbbf
}
.mint-button--default.is-plain {
    border: 1px solid #5a5a5a;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #5a5a5a
}
.mint-button--primary {
    color: #fff;
    background-color: #26a2ff
}
.mint-button--primary.is-plain {
    border: 1px solid #26a2ff;
    background-color: transparent;
    color: #26a2ff
}
.mint-button--danger {
    color: #fff;
    background-color: #ef4f4f
}
.mint-button--danger.is-plain {
    border: 1px solid #ef4f4f;
    background-color: transparent;
    color: #ef4f4f
}
.mint-button--large {
    display: block;
    width: 100%
}
.mint-button--normal {
    display: inline-block;
    padding: 0 12px
}
.mint-button--small {
    display: inline-block;
    font-size: 14px;
    padding: 0 12px;
    height: 33px
}

#app {
  width: 100vw;
}

.goBack[data-v-88b361e2] {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  width: 46px;
  height: 46px;
  position: fixed;
  z-index: 9;
  bottom: 70px;
  right: 10px;
  border-radius: 50%;
  padding-top: 3px;
}
.goBack div[data-v-88b361e2] {
    display: inline-block;
    text-align: center;
}
.goBack div i[data-v-88b361e2] {
      display: block;
      color: #fff;
      font-size: 24px;
}

.loadEffect[data-v-6f4f8351] {
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.loadEffect span[data-v-6f4f8351] {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5cae78;
  position: absolute;
  -webkit-animation: load-data-v-6f4f8351 1.04s ease infinite;
}
@-webkit-keyframes load-data-v-6f4f8351 {
0% {
    -webkit-transform: scale(1.2);
    opacity: 1;
}
100% {
    -webkit-transform: scale(0.3);
    opacity: 0.5;
}
}
.loadEffect span[data-v-6f4f8351]:nth-child(1) {
  left: 0;
  top: 50%;
  margin-top: -10px;
  -webkit-animation-delay: 0.13s;
}
.loadEffect span[data-v-6f4f8351]:nth-child(2) {
  left: 14px;
  top: 14px;
  -webkit-animation-delay: 0.26s;
}
.loadEffect span[data-v-6f4f8351]:nth-child(3) {
  left: 50%;
  top: 0;
  margin-left: -10px;
  -webkit-animation-delay: 0.39s;
}
.loadEffect span[data-v-6f4f8351]:nth-child(4) {
  top: 14px;
  right: 14px;
  -webkit-animation-delay: 0.52s;
}
.loadEffect span[data-v-6f4f8351]:nth-child(5) {
  right: 0;
  top: 50%;
  margin-top: -10px;
  -webkit-animation-delay: 0.65s;
}
.loadEffect span[data-v-6f4f8351]:nth-child(6) {
  right: 14px;
  bottom: 14px;
  -webkit-animation-delay: 0.78s;
}
.loadEffect span[data-v-6f4f8351]:nth-child(7) {
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  -webkit-animation-delay: 0.91s;
}
.loadEffect span[data-v-6f4f8351]:nth-child(8) {
  bottom: 14px;
  left: 14px;
  -webkit-animation-delay: 1.04s;
}

.home-layout[data-v-c1cb555c] {
  padding-bottom: 90px;
}
.footer-nav[data-v-c1cb555c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 15;
  width: 100%;
  height: 60px;
  background-color: #fff;
  font-size: 0;
  border-top: 1px solid #e3e4ec;
}
.footer-nav .footer-center[data-v-c1cb555c] {
    position: relative;
    height: 100%;
}
.footer-nav .footer-center img[data-v-c1cb555c] {
      min-width: 50px;
      max-width: 110px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      position: absolute;
      bottom: 0;
      left: 50%;
      height: 90px;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      border-radius: 50px;
      border-top: 1px solid #e3e4ec;
      background-color: white;
      padding: 10px;
}
.footer-nav .footer-item[data-v-c1cb555c] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 11px;
    text-align: center;
    padding: 10px 0;
    color: #aaa;
}
.footer-nav .footer-item i[data-v-c1cb555c] {
      display: inline-block;
      font-size: 23px;
      margin-bottom: 5px;
}
.footer-nav .current[data-v-c1cb555c] {
    color: #169248;
}

.outSide p[data-v-770042b6] {
  width: 96%;
  /*border-bottom: 1px solid gainsboro;*/
  margin-left: 2%;
}
.stopScroll[data-v-770042b6] {
  position: fixed;
}
.first-view[data-v-770042b6] {
  position: relative;
}
.first-view .tippoint[data-v-770042b6] {
    position: absolute;
    top: 30px;
    right: 0px;
    z-index: 3;
}
.first-view .tippoint > a[data-v-770042b6] {
      width: 100%;
      height: 100%;
      display: inline-block;
}
.first-view .tippoint > a img[data-v-770042b6] {
        width: 80px;
}
.first-view .tipbg[data-v-770042b6] {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}
.first-view .tipbg .tipbg-modal[data-v-770042b6] {
      background-color: rgba(9, 7, 5, 0.5);
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
}
.first-view .tipbg .youlist[data-v-770042b6] {
      position: absolute;
      top: 30px;
      right: 0;
      background-color: white;
      padding: 10px;
      width: 120px;
}
.first-view .tipbg .youlist .youtitle[data-v-770042b6] {
        width: 100px;
}
.first-view .tipbg .youlist a[data-v-770042b6] {
        display: inline-block;
        margin-top: 10px;
}
.first-view .linkblock[data-v-770042b6] {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0.267rem;
    z-index: 2;
}
.first-view .linkblock > ul[data-v-770042b6] {
      width: 95%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: auto;
      background-color: #35b173;
      padding: 6px 2px;
      border-radius: 3px;
}
.first-view .linkblock > ul li[data-v-770042b6] {
        /*width: calc(25% - 1px);*/
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        color: white;
        border-right: 1px solid #bbb;
}
.first-view .linkblock > ul li[data-v-770042b6]:last-child {
          border-right: 0px;
}
.first-view .linkblock > ul li a[data-v-770042b6] {
          display: block;
          width: 100%;
          height: 100%;
}
.first-view .linkblock > ul li a img[data-v-770042b6] {
            vertical-align: middle;
            width: 30px;
}
.first-view .linkblock > ul li a span[data-v-770042b6] {
            display: inline-block;
            line-height: 30px;
            font-size: 14px;
            color: #fff;
}
.first-view .mint-swipe-items-wrap > div a img[data-v-770042b6] {
    width: 100%;
    min-height: 86%;
    max-height: 93%;
}
.turnPhoto[data-v-770042b6] {
  height: 7.5rem;
}
.noTurnPhoto[data-v-770042b6] {
  height: 0;
}
.health-service[data-v-770042b6] {
  margin-top: 10px;
}
.health-service[data-v-770042b6] .service-swiper {
    display: block;
    margin: auto;
    overflow-y: hidden;
    margin-left: 2.5%;
    margin-right: 2.5%;
    position: relative;
}
.health-service[data-v-770042b6] .service-swiper .swiper-wrapper {
      margin-left: -15%;
}
.health-service[data-v-770042b6] .service-swiper .swiper-wrapper .swiper-slide {
        width: 70%;
}
.health-service[data-v-770042b6] .service-swiper .swiper-wrapper .swiper-slide img {
          width: 100%;
}
.xpwz[data-v-770042b6] {
  text-align: center;
  margin: 10px 2.5%;
  padding: 10px;
  font-size: 14px;
}
.xpwz img[data-v-770042b6] {
    width: 15px;
    vertical-align: middle;
}
.xpwz span[data-v-770042b6] {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    color: #169248;
}

.foryou .goods[data-v-54d794c0] {
  width: 100%;
  padding: 10px 2.5%;
  border-bottom: 1px solid #eee;
  background-color: white;
}
.foryou .goods a[data-v-54d794c0] {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.foryou .goods .goods-imgblock[data-v-54d794c0] {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    position: relative;
    padding-right: 10px;
}
.foryou .goods .goods-imgblock .goods-img[data-v-54d794c0] {
      width: 100px;
}
.foryou .goods .goods-detailblock[data-v-54d794c0] {
    padding: 0;
    position: relative;
    min-height: 100px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
}
.foryou .goods .goods-detailblock .goods-title[data-v-54d794c0] {
      font-size: 16px;
      color: #000;
      font-weight: bold;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.foryou .goods .goods-detailblock .goods-name[data-v-54d794c0] {
      color: #999;
      line-height: 20px;
      font-size: 14px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.foryou .goods .goods-detailblock .goods-condition[data-v-54d794c0] {
      padding: 0px;
      padding-top: 5px;
      margin-top: 0px;
      font-size: 0px;
}
.foryou .goods .goods-detailblock .goods-condition span[data-v-54d794c0] {
        border-radius: 20px;
        font-size: 10px;
        padding: 0 10px;
        display: inline-block;
        margin: 0 5px 3px 0;
}
.foryou .goods .goods-detailblock .goods-condition .green-dark[data-v-54d794c0] {
        color: #ff0000;
        border: 1px solid #ff0000;
}
.foryou .goods .goods-detailblock .goods-condition .green-pale[data-v-54d794c0] {
        color: #00a758;
        border: 1px solid #00a758;
}
.foryou .goods .goods-detailblock .goods-his[data-v-54d794c0] {
      color: #999;
      position: absolute;
      bottom: -3px;
      left: 0;
      font-size: 12px;
}
.foryou .goods .goods-detailblock .goods-his .goodsvalue[data-v-54d794c0] {
        color: #169248;
        font-size: 14px;
}
.foryou .goods .goods-detailblock .goods-value[data-v-54d794c0] {
      position: absolute;
      right: 0;
      bottom: -3px;
      color: #169248;
      font-size: 14px;
}
.foryou .goods .goods-detailblock .goods-value span[data-v-54d794c0] {
        font-size: 20px;
        font-weight: bold;
}
.foryou .goods .goods-detailblock p[data-v-54d794c0] {
      font-size: 12px;
      color: red;
      line-height: 15px;
      text-overflow: -o-ellipsis-lastline;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
}

.topblock[data-v-154c3554] {
  position: relative;
  padding-bottom: 25px;
  width: 100%;
}
.topblock .topimg[data-v-154c3554] {
    width: 100%;
}
.topblock .topimg img[data-v-154c3554] {
      width: 100%;
      min-height: 4.9rem;
}
.topblock .toplink[data-v-154c3554] {
    display: inline-block;
    position: absolute;
    left: 6%;
    top: 50%;
    background-color: rgba(8, 155, 77, 0.5);
    padding: 5px;
}
.topblock .toplink a[data-v-154c3554] {
      display: inline-block;
      font-size: 12px;
      color: white;
}
.topblock .topfour[data-v-154c3554] {
    width: 100%;
    padding-left: 5%;
    padding-right: 3%;
    position: absolute;
    bottom: 0;
}
.topblock .topfour ul[data-v-154c3554] {
      display: inline-block;
      background-color: #169248;
      color: white;
      padding: 0 25px;
      border-radius: 50px;
      text-align: center;
}
.topblock .topfour ul li[data-v-154c3554] {
        float: left;
        margin-right: 15px;
        cursor: pointer;
}
.topblock .topfour ul li .itemimg[data-v-154c3554] {
          display: block;
          min-height: 30px;
          width: 25px;
          position: relative;
}
.topblock .topfour ul li .itemimg img[data-v-154c3554] {
            width: 18px;
            position: absolute;
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
            top: 50%;
            left: 50%;
            display: block;
}
.topblock .topfour ul li .itemname[data-v-154c3554] {
          line-height: 18px;
          font-size: 10px;
          margin-top: -5px;
          display: block;
          color: #fff;
}
.topblock .topfour .topsearch[data-v-154c3554] {
      float: right;
      display: inline-block;
}
.topblock .topfour .topsearch img[data-v-154c3554] {
        width: 50px;
}

.search[data-v-3f9e2316] {
  padding-top: 1rem;
  overflow: auto;
}
.index-search[data-v-3f9e2316] {
  width: 80%;
  display: block;
  background-color: #169248;
  margin: auto;
  border-radius: 30px;
  padding: 10px 20px;
  margin-bottom: 10px;
}
.index-search input[data-v-3f9e2316] {
    color: #fff;
    border: none;
    display: inline-block;
    width: calc(100% - 60px);
    background-color: #169248;
    line-height: 25px;
}
.index-search span[data-v-3f9e2316] {
    display: inline-block;
    float: right;
    margin: 2px 0;
}
.index-search span img[data-v-3f9e2316] {
      width: 20px;
}

.healthy-wrap img[data-v-15f01c88] {
  width: 100%;
}
.healthy-wrap[data-v-15f01c88] .mint-swipe img {
  width: 100%;
}
.healthy-wrap[data-v-15f01c88] .mint-swipe .mint-swipe-indicators {
  bottom: 10px;
}
.healthy-wrap .adnew[data-v-15f01c88] {
  margin: 10px 0;
  padding: 5px;
  background: #fff;
}
.healthy-wrap .health-service[data-v-15f01c88] .service-swiper {
  display: block;
  margin: 10px auto;
  overflow-y: hidden;
  padding: 5px;
  position: relative;
  background: #fff;
}
.healthy-wrap .health-service[data-v-15f01c88] .service-swiper .swiper-wrapper {
    margin-left: -15%;
}
.healthy-wrap .health-service[data-v-15f01c88] .service-swiper .swiper-wrapper .swiper-slide {
      width: 70%;
}
.healthy-wrap .health-service[data-v-15f01c88] .service-swiper .swiper-wrapper .swiper-slide img {
        width: 100%;
}
.healthy-wrap .xpwz[data-v-15f01c88] {
  text-align: center;
  margin: 10px 0;
  padding: 10px;
  font-size: 14px;
  background: #fff;
}
.healthy-wrap .xpwz img[data-v-15f01c88] {
    width: 15px;
    vertical-align: middle;
}
.healthy-wrap .xpwz span[data-v-15f01c88] {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    color: #169248;
}

.menu-warp .icon[data-v-0def70fe] {
  margin: 5px 0;
}
.menu-warp .icon img[data-v-0def70fe] {
  width: 100%;
}
.menu-warp .menu-container[data-v-0def70fe] {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
}
.menu-warp .menu-container .menu-item[data-v-0def70fe] {
  padding-bottom: 15px;
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu-warp .menu-container .menu-item img[data-v-0def70fe] {
  width: 35px;
  height: 35px;
}

.mine .top[data-v-d18c7402] {
  position: relative;
  background-image: none;
  background: #00a758;
  width: 100%;
  height: 120px;
  padding: 25px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mine .top .index[data-v-d18c7402] {
    width: 70px;
    vertical-align: middle;
    margin: 0 10px;
}
.mine .top #dvintegral[data-v-d18c7402] {
    max-width: 220px;
    min-width: 130px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.mine .top #dvintegral .des-warp[data-v-d18c7402] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
}
.mine .top #dvintegral .pasted-warp[data-v-d18c7402] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.mine .top #dvintegral .dvintegral-container[data-v-d18c7402] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.mine .top #dvintegral #txtIntegralCurrent[data-v-d18c7402] {
      font-size: 22px;
      color: #ffffff;
      text-align: center;
}
.mine .top #dvintegral .icon-wrap[data-v-d18c7402] {
      margin-left: 20px;
      position: relative;
}
.mine .top #dvintegral .pasted[data-v-d18c7402] {
      text-align: center;
      color: #ccc;
}
.mine .top #dvintegral .desc[data-v-d18c7402] {
      -ms-flex-preferred-size: 60px;
          flex-basis: 60px;
      margin-right: 5px;
      font-size: 14px;
      color: #ffffff;
      text-align: center;
}
.mine .top #dvintegral .pointsNav[data-v-d18c7402] {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      color: #ffffff;
}
.mine .index-item[data-v-d18c7402] {
  width: 100%;
  background-color: white;
  text-align: center;
  display: inline-block;
  font-size: 12px;
}
.mine .index-item a[data-v-d18c7402] {
    display: inline-block;
    width: 33.3%;
    float: left;
    padding: 20px 0 0 0;
    position: relative;
}
.mine .index-item a > .item-num[data-v-d18c7402] {
      position: absolute;
      top: 20px;
      right: 25%;
      background-color: red;
      color: white;
      text-align: center;
      height: 15px;
      width: 15px;
      border-radius: 10px;
      line-height: 15px;
      font-size: 8px;
}
.mine .index-item a img[data-v-d18c7402] {
      height: 40px;
}
.mine .index-item a p[data-v-d18c7402] {
      font-size: 12px;
      line-height: 40px;
}
.mine .itemblock[data-v-d18c7402] {
  padding-top: 10px;
  background-color: #eee;
}
.mine .itemblock .item-list[data-v-d18c7402] {
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #ccc;
    padding: 20px 10px;
}
.mine .itemblock .item-list a[data-v-d18c7402] {
      display: inline-block;
      position: relative;
      width: 100%;
}
.mine .itemblock .item-list a > img[data-v-d18c7402] {
        width: 20px;
        vertical-align: middle;
        margin: 0 10px;
}
.mine .itemblock .item-list a > i[data-v-d18c7402] {
        margin: 0 10px;
        font-size: 20px;
        vertical-align: middle;
}
.mine .itemblock .item-list a > span[data-v-d18c7402] {
        vertical-align: middle;
        font-size: 16px;
}
.mine .itemblock .item-list a > .icon-xiangyou[data-v-d18c7402] {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
                transform: translate(0, -50%);
}

.is-mini-item[data-v-cc89f8f8] {
  padding: 0 14px;
}
.reward[data-v-cc89f8f8] {
  width: 95%;
  margin: 10px 2.5%;
  background-color: white;
  position: relative;
  height: 126px;
  padding: 14px 0;
  border-radius: 7px;
}
.reward .reblock-right[data-v-cc89f8f8] {
    float: left;
    height: 100%;
    width: 79%;
    text-align: left;
}
.reward .reblock-right .re-code[data-v-cc89f8f8] {
      font-size: 12px;
}
.reward .reblock-right .re-name[data-v-cc89f8f8] {
      position: relative;
      line-height: 49px;
}
.reward .reblock-right .re-name .re-name-content[data-v-cc89f8f8] {
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
        width: 200px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        vertical-align: middle;
}
.reward .reblock-right .re-name .buy-again[data-v-cc89f8f8] {
        width: 74px;
        height: 30px;
        font-size: 14px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 5px;
        color: #089b4d;
        text-align: center;
        line-height: 30px;
        border-radius: 5px;
        border: 1px solid #089b4d;
}
.reward .reblock-right .new-add-name[data-v-cc89f8f8] {
      border-bottom: dashed 1px #dedede;
      line-height: 30px;
      font-size: 14px;
      margin-bottom: 10px;
      color: #aaa;
}
.reward .reblock-right .re-bottom[data-v-cc89f8f8] {
      font-size: 12px;
}
.reward .reblock-right .re-bottom > span[data-v-cc89f8f8] {
        float: right;
        margin-right: 12px;
}
.reward .reblock-right > p[data-v-cc89f8f8] {
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
}
.reward.bggreen[data-v-cc89f8f8] {
    background: url(../../assets/img/mine-bggreen.7c041b5.png) no-repeat;
    background-size: 100% 100%;
}
.reward.bggreen .reblock-right > p[data-v-cc89f8f8] {
      color: #fff;
}
.reward.bgwhite[data-v-cc89f8f8] {
    background: url(../../assets/img/mine-bgwhite.83c05b2.png) no-repeat;
    background-size: 100% 100%;
}
.reward.bgwhite .reblock-right > p[data-v-cc89f8f8] {
      color: #898989;
}
.reward.bgwhite .reblock-right .re-name[data-v-cc89f8f8] {
      color: #000;
}
.reward.bggray[data-v-cc89f8f8] {
    background: url(../../assets/img/mine-bggray.e996b0a.png) no-repeat;
    background-size: 100% 100%;
}
.reward.bggray .reblock-right > p[data-v-cc89f8f8] {
      color: #fff;
}
.reward.bggray .reblock-right .re-name[data-v-cc89f8f8] {
      color: #fff;
}
.reward > a[data-v-cc89f8f8] {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.reward .reblock-left[data-v-cc89f8f8] {
    width: 20%;
    height: 100%;
    text-align: center;
    float: left;
}
.reward .reblock-left img[data-v-cc89f8f8] {
      width: 42px;
}
.reward .goget[data-v-cc89f8f8] {
    border: 1px solid white;
    color: white;
    position: absolute;
    right: 14px;
    top: 40%;
    -webkit-transform: translate(0, -40%);
            transform: translate(0, -40%);
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 14px;
}
.reward.is-mini[data-v-cc89f8f8] {
    width: 100%;
    margin: 10px 0px;
    height: 120px;
}
.reward.is-mini .reblock-left img[data-v-cc89f8f8] {
      width: 40px;
}
.reward.is-mini .reblock-right .re-code[data-v-cc89f8f8] {
      font-size: 10px;
}
.reward.is-mini .reblock-right .re-name[data-v-cc89f8f8] {
      font-size: 16px;
      line-height: 40px;
      font-weight: bold;
}
.reward.is-mini .reblock-right .re-bottom[data-v-cc89f8f8] {
      font-size: 10px;
}
.reward.is-mini .reblock-right .re-bottom > span[data-v-cc89f8f8] {
        float: right;
        margin-right: 10px;
}
.reward.is-mini .goget[data-v-cc89f8f8] {
      border: 1px solid white;
      color: white;
      position: absolute;
      right: 10px;
      top: 40%;
      -webkit-transform: translate(0, -40%);
              transform: translate(0, -40%);
      padding: 5px 10px;
      border-radius: 3px;
      font-size: 10px;
}

.terms-page[data-v-842606cc] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.terms-page .terms-pop[data-v-842606cc] {
    width: 76%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px  10px 20px;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.terms-page .terms-pop .top-title[data-v-842606cc] {
      width: 100%;
      height: 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.terms-page .terms-pop .top-title .title-text[data-v-842606cc] {
        font-size: 16px;
        color: #333;
}
.terms-page .terms-pop .top-title .clost-img[data-v-842606cc] {
        font-size: 18px;
}
.terms-page .terms-pop .prompt-content[data-v-842606cc] {
      margin: 10px 0px 20px 0px;
      max-height: 200px;
      overflow: auto;
}
.terms-page .terms-pop .prompt-content p[data-v-842606cc] {
        font-size: 15px;
        color: #333;
}
.terms-page .terms-pop .bottom-btn[data-v-842606cc] {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      justify-items: center;
      margin-top: 10px;
      padding-top: 10px;
      margin-bottom: 20px;
}
.terms-page .terms-pop .bottom-btn .cancel-btn[data-v-842606cc] {
        background: #A29D9D;
        padding: 10px 16px;
        font-size: 16px;
        color: #333;
        border-radius: 4px;
}
.terms-page .terms-pop .bottom-btn .agree-btn[data-v-842606cc] {
        background: #0D7D0A;
        padding: 10px 16px;
        font-size: 16px;
        color: #fff;
        border-radius: 4px;
}

.fuli[data-v-1ab028b8] {
  margin-bottom: 60px;
}
.fuli .fuli-first[data-v-1ab028b8] {
    font-size: 0;
    background-color: white;
}
.fuli .fuli-first .fuli-first-li[data-v-1ab028b8] {
      font-size: 12px;
      text-align: center;
      line-height: 50px;
      width: 25%;
      display: inline-block;
      color: #888888;
      position: relative;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
}
.fuli .fuli-first .fuli-first-li.fuli-first-li-active[data-v-1ab028b8] {
        color: #089b4d;
}
.mine-other[data-v-1ab028b8] {
  width: 90%;
  position: fixed;
  bottom: 10px;
  background-color: #169248;
  color: white;
  left: 5%;
  line-height: 50px;
  border-radius: 5px;
  text-align: center;
  font-size: 21px;
}
.mine-other img[data-v-1ab028b8] {
    vertical-align: middle;
    width: 20px;
}

.order-detail-wrap .menu-modal[data-v-cef8a024] {
  max-height: 100%;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.order-detail-wrap .menu-modal .menu-bg[data-v-cef8a024] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3;
}
.order-detail-wrap .menu-modal .menu-form[data-v-cef8a024] {
    width: 95%;
    height: 82%;
    background: url(../../assets/img/modal-bg.aa660e1.png) no-repeat;
    background-size: 100% 100%;
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 20px 30px;
    font-size: 12px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.order-detail-wrap .menu-modal .menu-form .menu-head[data-v-cef8a024] {
      height: 6%;
      font-size: 16px;
}
.order-detail-wrap .menu-modal .menu-form .menu-head span[data-v-cef8a024] {
        float: right;
}
.order-detail-wrap .menu-modal .menu-form .menu-head span img[data-v-cef8a024] {
          width: 10px;
          vertical-align: middle;
          margin: 0 5px;
}
.order-detail-wrap .menu-modal .menu-form .iphonescroll[data-v-cef8a024] {
      overflow-y: scroll;
      height: 80%;
      width: 100%;
}
.order-detail-wrap .menu-modal .menu-form .iphonescroll .order-detail[data-v-cef8a024] {
        height: 95%;
        overflow-y: scroll;
}
.order-detail-wrap .menu-modal .menu-form .menu-title[data-v-cef8a024] {
      font-size: 20px;
      font-weight: bold;
      margin-top: 14px;
}
.order-detail-wrap .menu-modal .menu-form .info-list[data-v-cef8a024] {
      border-bottom: 1px #ccc dashed;
      letter-spacing: 1.5px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
          align-content: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.order-detail-wrap .menu-modal .menu-form .info-list .green[data-v-cef8a024] {
        color: #089b4d;
}
.order-detail-wrap .menu-modal .menu-form .info-list label[data-v-cef8a024] {
        width: 100px;
        display: inline-block;
        vertical-align: top;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        line-height: 40px;
}
.order-detail-wrap .menu-modal .menu-form .info-list.liste label[data-v-cef8a024] {
        line-height: 30px;
}
.order-detail-wrap .menu-modal .menu-form .info-list.liste > span[data-v-cef8a024] {
        display: inline-block;
        line-height: 30px;
}
.order-detail-wrap .menu-modal .menu-form .info-list.liste > span span[data-v-cef8a024] {
          line-height: 30px;
}
.order-detail-wrap .menu-modal .menu-form .info-list.liste span[data-v-cef8a024] {
        white-space: normal !important;
}
.order-detail-wrap .menu-modal .menu-form .info-list span[data-v-cef8a024] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        color: #888;
        line-height: 40px;
}
.order-detail-wrap .menu-modal .menu-form .info-list.noline[data-v-cef8a024] {
        border-bottom: none;
}
.order-detail-wrap .menu-modal .menu-form .info-list.greenline[data-v-cef8a024] {
        border-bottom: 1px solid #169248;
}
.order-detail-wrap .menu-modal .menu-form .info-list.blue[data-v-cef8a024] {
        color: skyblue;
}
.order-detail-wrap .menu-modal .menu-form .info-list .coverage-list[data-v-cef8a024], .order-detail-wrap .menu-modal .menu-form .info-list .beneficiary-list[data-v-cef8a024] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
}
.order-detail-wrap .menu-modal .menu-form .info-list .coverage-list[data-v-cef8a024] {
        padding-top: 10px;
}
.order-detail-wrap .menu-modal .menu-form .info-list .coverage-list .coverage-text[data-v-cef8a024] {
          line-height: 1.2;
}
.order-detail-wrap .menu-modal .menu-form .info-list .coverage-list .coverage-item[data-v-cef8a024] {
          margin-bottom: 10px;
}
.order-detail-wrap .menu-modal .menu-form .info-list .beneficiary-item[data-v-cef8a024] {
        border-bottom: 1px dashed #ccc;
}
.order-detail-wrap .menu-modal .menu-form .info-list .beneficiary-item[data-v-cef8a024]:last-child {
          border: none;
}
.order-detail-wrap .menu-modal .menu-form .info-list .beneficiary-item .label-text[data-v-cef8a024] {
          color: #888;
          vertical-align: top;
}
.order-detail-wrap .menu-modal .menu-form .info-list .beneficiary-item .label-des[data-v-cef8a024] {
          line-height: 30px;
          vertical-align: top;
}
.order-detail-wrap .menu-modal .menu-form .info-list .hospital[data-v-cef8a024] {
        color: #888;
        line-height: 1.2;
        padding: 10px 0;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
}
.order-detail-wrap .menu-modal .menu-form .custom-services[data-v-cef8a024] {
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, -12px);
              transform: translate(-50%, -12px);
}
.order-detail-wrap .menu-modal .menu-form .helpyourself[data-v-cef8a024] {
      background-color: #379f61;
      color: white;
      padding: 5px 10px;
      width: 150px;
      display: block;
      text-align: center;
      font-size: 18px;
      margin: 10px auto;
      border-radius: 3px;
}
.order-detail-wrap .menu-modal .menu-form .tip[data-v-cef8a024] {
      font-size: 10px;
      color: #666;
      line-height: 15px;
      text-align: left;
      position: absolute;
      bottom: 15px;
}
.order-detail-wrap .menu-modal .menu-form .tip img[data-v-cef8a024] {
        width: 12px;
        vertical-align: middle;
}

.fuli-first[data-v-0bc7390e] {
  font-size: 0;
  background-color: white;
}
.fuli-first .fuli-first-li[data-v-0bc7390e] {
    font-size: 14px;
    text-align: center;
    line-height: 50px;
    width: 50%;
    display: inline-block;
    color: #888888;
    position: relative;
}
.fuli-first .fuli-first-li.fuli-first-li-active[data-v-0bc7390e] {
      color: #089b4d;
}
.fuli-first .fuli-first-li.fuli-first-li-active[data-v-0bc7390e]:after {
        content: "";
        position: absolute;
        height: 2px;
        background-color: #089b4d;
        width: 40%;
        bottom: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
}
.fuli-sec[data-v-0bc7390e] {
  width: 95%;
  background-color: #fff;
  font-size: 0;
  margin: auto;
  margin-top: 15px;
  border: 1px solid #169248;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fuli-sec .fuli-sec-li[data-v-0bc7390e] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    color: #888888;
    border-right: 1px solid #169248;
}
.fuli-sec .fuli-sec-li.fuli-sec-li-active[data-v-0bc7390e] {
      color: white;
      background-color: #169248;
}
.fuli-sec .fuli-sec-li i[data-v-0bc7390e] {
      display: inline-block;
      line-height: 30px;
      font-size: 18px;
      vertical-align: middle;
}
.fuli-sec .fuli-sec-li[data-v-0bc7390e]:last-child {
      border-right: 0;
}
.card[data-v-0bc7390e] {
  margin: 15px 10px;
}
.card li[data-v-0bc7390e] {
    margin-bottom: 10px;
    padding: 10px 8px;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}
.card li.hasUsed[data-v-0bc7390e] {
      -webkit-filter: grayscale(100%);
              filter: grayscale(100%);
}
.card li .service[data-v-0bc7390e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding-bottom: 10px;
}
.card li .service .service-l[data-v-0bc7390e] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.card li .service .service-r .get-service[data-v-0bc7390e] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 50px;
        height: 50px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        border-radius: 50%;
        background: #169248;
        color: white;
}
.card li .service .service-icon[data-v-0bc7390e] {
        margin-right: 5px;
        width: 50px;
}
.card li .service .content[data-v-0bc7390e] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        font-size: 10px;
        line-height: 20px;
        color: #898989;
}
.card li .service .content .content-title[data-v-0bc7390e] {
          font-size: 16px;
          font-weight: 600;
          color: #000;
}
.card li .order[data-v-0bc7390e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 30px;
      font-size: 14px;
      border-top: 1px dashed #ccc;
      color: #089b4d;
}
.card li .order .iconfont[data-v-0bc7390e] {
        font-size: 16px;
}

@charset "UTF-8";
.view[data-v-949b9a02] {
  background-color: #fff;
}
.view .health-notice[data-v-949b9a02] {
    width: 94%;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 10px;
}
.view .health-notice h2[data-v-949b9a02] {
      padding: 0;
}
.view .health-notice .notice-text[data-v-949b9a02] {
      margin-top: 10px;
}
.view .health-notice .notice-text .text-title[data-v-949b9a02] {
        text-indent: 2em;
}
.view .health-notice .notice-text .text-description[data-v-949b9a02] {
        text-indent: 2em;
        padding: 6px 0px;
}
.view .health-notice .notice-text .terms-text[data-v-949b9a02] {
        text-indent: 2em;
}
.view .health-notice .notice-text .terms-text p[data-v-949b9a02] {
          padding-bottom: 6px;
}
.view .health-notice .readAndAgree[data-v-949b9a02] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
      margin-top: 14px;
}
.view .health-notice .readAndAgree .not-agree[data-v-949b9a02] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.view .health-notice .readAndAgree .agree[data-v-949b9a02] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.view h2[data-v-949b9a02] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-949b9a02] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-949b9a02] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap[data-v-949b9a02] {
    margin-bottom: 300px;
    padding-right: 60px;
    -webkit-overflow-scrolling: touch;
}
.view .sub-wrap .clause[data-v-949b9a02] .qes {
      position: relative;
}
.view .sub-wrap .clause[data-v-949b9a02] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.view .sub-wrap .clause[data-v-949b9a02] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-949b9a02] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.view .sub-wrap .clause img[data-v-949b9a02] {
      width: 100%;
}
.view .sub-wrap .clause p[data-v-949b9a02] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.view .sub-wrap .bottom-height[data-v-949b9a02] {
      width: 100%;
      height: 100px;
}
.view .footer[data-v-949b9a02] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-949b9a02] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      padding: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-949b9a02] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-949b9a02] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-949b9a02] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-949b9a02] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-949b9a02] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-949b9a02] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

.mint-toast {
    position: fixed;
    max-width: 80%;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    z-index: 1000;
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear
}
.mint-toast.is-placebottom {
    bottom: 50px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0)
}
.mint-toast.is-placemiddle {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%)
}
.mint-toast.is-placetop {
    top: 50px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0)
}
.mint-toast-icon {
    display: block;
    text-align: center;
    font-size: 56px
}
.mint-toast-text {
    font-size: 14px;
    display: block;
    text-align: center
}
.mint-toast-pop-enter, .mint-toast-pop-leave-active {
    opacity: 0
}

.topView[data-v-66754e87] {
  height: 45px;
  background-color: #fff;
}
.mint-header[data-v-66754e87] {
  background-color: #fff;
  color: #000;
  height: 44px;
}
.outside[data-v-66754e87] {
  position: relative;
}
.share-others[data-v-66754e87] {
  position: absolute;
  top: 20px;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #222222;
}
.share-others li[data-v-66754e87] {
  float: left;
  /*border: 1px solid red;*/
  width: 40px;
  height: 40px;
  margin: 5px 10px;
}
.share-others li .share-img[data-v-66754e87] {
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 5px;
}
.share-others li:first-child .share-img[data-v-66754e87] {
  background: #fff url(../../assets/img/share.3bcb43b.png) no-repeat 0px 0px;
}
.share-others li:last-child .share-img[data-v-66754e87] {
  background: #fff url(../../assets/img/share.3bcb43b.png) no-repeat 0px -80px;
}
.mint-header.is-fixed[data-v-66754e87] {
  top: 0;
  right: 0;
  left: 0;
  position: fixed;
  z-index: 2;
}

.material-model-container[data-v-223d5310] {
  width: 100%;
}
.material-model-container[data-v-223d5310] p {
    display: block;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
}
.material-model-container h1[data-v-223d5310],
  .material-model-container h2[data-v-223d5310],
  .material-model-container h3[data-v-223d5310],
  .material-model-container h4[data-v-223d5310],
  .material-model-container h5[data-v-223d5310],
  .material-model-container h6[data-v-223d5310] {
    display: block;
    -webkit-margin-before: 0.67em;
            margin-block-start: 0.67em;
    -webkit-margin-after: 0.67em;
            margin-block-end: 0.67em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    font-weight: bold;
}
.material-model-container[data-v-223d5310] ul {
    margin: 0;
    padding-left: 20px;
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
}
.material-model-container[data-v-223d5310] ol {
    margin: 0;
    padding: 0 0 20px 15px;
}
.material-model-container[data-v-223d5310] li {
    list-style: unset;
    display: list-item;
    text-align: -webkit-match-parent;
}
.material-model-container .text-content[data-v-223d5310] {
    padding: 0 12px;
    font-size: 14px;
}
.material-model-container .text-content .text-wrap[data-v-223d5310] {
      max-height: 320px;
      margin-bottom: 10px;
      overflow: hidden;
      -webkit-transition: all 0.5s cubic-bezier(0, 1, 0, 1) -0.1s;
      transition: all 0.5s cubic-bezier(0, 1, 0, 1) -0.1s;
}
.material-model-container .text-content .text-wrap.isShow[data-v-223d5310] {
        max-height: 999rem;
        -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
                transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
        -webkit-transition-delay: 0s;
                transition-delay: 0s;
}
.material-model-container .text-content .text-wrap .detail[data-v-223d5310] {
        padding-bottom: 5px;
}
.material-model-container .text-content .check-more[data-v-223d5310] {
      border-top: solid 1px #dedede;
      line-height: 40px;
      font-size: 14px;
      text-align: center;
      color: #079b4d;
}
.material-model-container .text-content .check-more i[data-v-223d5310] {
        display: inline-block;
        margin-left: 5px;
        font-size: 14px;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
}
.material-model-container .text-content .check-more i.toggle[data-v-223d5310] {
          -webkit-transform: rotate(-180deg);
                  transform: rotate(-180deg);
}
.material-model-container[data-v-223d5310] img {
    width: 100%;
    vertical-align: middle;
}
.material-model-container[data-v-223d5310] a {
    color: #079b4d;
    text-decoration: underline;
}

.footer-container[data-v-53adbf26] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  font-size: 15px;
  color: #fff;
}
.footer-container .nextTip[data-v-53adbf26] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    color: #fff;
    background: #5cae78;
}
.footer-container .nextTip.canNext[data-v-53adbf26] {
      background: #666;
}
.footer-container .left-btn[data-v-53adbf26] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #5cae78;
    border: 1px solid #fff;
    background: #fff;
}

@charset "UTF-8";
.view[data-v-527edec0] {
  background-color: #fff;
}
.view h2[data-v-527edec0] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-527edec0] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-527edec0] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .children-wrap[data-v-527edec0] {
    padding-top: 15px;
    padding-bottom: 65px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .children-title[data-v-527edec0] {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.view .sub-wrap .clause[data-v-527edec0] .qes {
    position: relative;
}
.view .sub-wrap .clause[data-v-527edec0] .qes .answer-box {
      width: 60px;
      position: absolute;
      top: 3px;
      right: -60px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap .clause[data-v-527edec0] .qes .answer-box .check-box {
        position: relative;
        width: 16px;
        height: 16px;
        border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-527edec0] .qes .answer-box .check-box.check::before {
          content: "\2713";
          position: absolute;
          width: 100%;
          text-align: center;
          line-height: 16px;
}
.view .sub-wrap .clause img[data-v-527edec0] {
    width: 100%;
}
.view .sub-wrap .clause p[data-v-527edec0] {
    margin-bottom: 6px;
    color: #333;
    font-size: 12px;
}
.view .footer[data-v-527edec0] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-527edec0] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-527edec0] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-527edec0] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-527edec0] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-527edec0] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-527edec0] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-527edec0] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

.wrapper[data-v-24f027fa] {
  background-color: #fff;
}
.wrapper .main[data-v-24f027fa] {
    padding-bottom: 110px;
}
.wrapper .health-notice[data-v-24f027fa] {
    width: 94%;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 10px;
}
.wrapper .health-notice h2[data-v-24f027fa] {
      padding: 0;
}
.wrapper .health-notice .notice-text[data-v-24f027fa] {
      margin-top: 10px;
}
.wrapper .health-notice .notice-text .text-title[data-v-24f027fa] {
        text-indent: 2em;
}
.wrapper .health-notice .notice-text .text-description[data-v-24f027fa] {
        text-indent: 2em;
        padding: 6px 0px;
}
.wrapper .health-notice .notice-text .terms-text[data-v-24f027fa] {
        text-indent: 2em;
}
.wrapper .health-notice .notice-text .terms-text p[data-v-24f027fa] {
          padding-bottom: 6px;
}
.wrapper .health-notice .readAndAgree[data-v-24f027fa] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
      margin-top: 14px;
}
.wrapper .health-notice .readAndAgree .not-agree[data-v-24f027fa] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.wrapper .health-notice .readAndAgree .agree[data-v-24f027fa] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.wrapper .content[data-v-24f027fa] {
    width: 94%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.wrapper .content .detail[data-v-24f027fa] {
      font-size: 14px;
      padding-bottom: 15px;
      font-weight: bold;
}
.wrapper .content .info-title[data-v-24f027fa] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-size: 14px;
      color: #000;
      line-height: 0.63rem;
}
.wrapper .content .info-title .info-red[data-v-24f027fa] {
        color: #ff0000;
        padding: 0 5px;
}
.wrapper .content .info-detail[data-v-24f027fa] {
      color: #ff0000;
      font-size: 12px;
      padding: 5px 0 0 38px;
      height: 20px;
}
.wrapper .content .choose[data-v-24f027fa] {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding-bottom: 20px;
}
.wrapper .content .choose .choose-item[data-v-24f027fa] {
        width: 48%;
        font-size: 14px;
        line-height: 0.63rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding-right: 20px;
}
.wrapper .content .choose .choose-item .not-agree[data-v-24f027fa] {
          width: 16px;
          height: 16px;
          font-size: 14px;
}
.wrapper .content .choose .choose-item .agree[data-v-24f027fa] {
          color: #888888;
          width: 16px;
          height: 16px;
          position: relative;
          font-size: 14px;
}
.wrapper .content .choose .choose-item .agree[data-v-24f027fa]::before {
          content: "\2713";
          position: absolute;
          top: 0;
          left: 0;
          line-height: 23px;
          width: 15px;
          text-align: center;
}
.wrapper .content .choose-title[data-v-24f027fa] {
      position: relative;
      padding-bottom: 15px;
      font-size: 14px;
}
.wrapper .content .choose-title .title-strong[data-v-24f027fa] {
        font-weight: bold;
}
.wrapper .content .choose-title .answer-box[data-v-24f027fa] {
        width: 60px;
        position: absolute;
        top: 0;
        right: 0;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.wrapper .content .info-fixed[data-v-24f027fa] {
      position: relative;
      font-size: 14px;
      padding: 0 60px 20px 0;
}
.wrapper .content .info-fixed .info-input[data-v-24f027fa] {
        width: 60px;
        position: absolute;
        top: 3px;
        right: 0;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.wrapper .content .info-fixed .info-input .not-agree[data-v-24f027fa] {
          width: 16px;
          height: 16px;
          font-size: 14px;
}
.wrapper .content .info-fixed .info-input .agree[data-v-24f027fa] {
          color: #888888;
          width: 16px;
          height: 16px;
          position: relative;
          font-size: 14px;
}
.wrapper .content .info-fixed .info-input .agree[data-v-24f027fa]::before {
          content: "\2713";
          position: absolute;
          top: 0;
          left: 0;
          line-height: 17px;
          width: 15px;
          text-align: center;
}
.wrapper .content .error-info[data-v-24f027fa] {
      color: #fc3e1d;
      font-size: 14px;
      padding-bottom: 15px;
      font-weight: 500;
}
.wrapper .content .error-info .error-box[data-v-24f027fa] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
}
.wrapper .content .error-info .error-box img[data-v-24f027fa] {
          display: block;
          width: 20px;
          height: 20px;
          margin-right: 5px;
}
.wrapper h2[data-v-24f027fa] {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: bold;
}
.wrapper .footer[data-v-24f027fa] {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: -1px;
    z-index: 9;
}
.wrapper .footer .all-false[data-v-24f027fa] {
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      padding: 20px;
      text-align: right;
      background-color: #fff;
}
.wrapper .footer .footer-box[data-v-24f027fa] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 50px;
}
.wrapper .footer .footer-box .btn[data-v-24f027fa] {
        height: 50px;
        line-height: 50px;
        border-top: 1px #5cae78 solid;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        text-align: center;
        font-size: 15px;
        color: #5cae78;
        background-color: #fff;
}
.wrapper .footer .footer-box .btn + .btn[data-v-24f027fa] {
        border-top: none;
        color: #fff;
        background-color: #666;
}
.wrapper .footer .footer-box .btn + .btn.act-btn[data-v-24f027fa] {
          border-top: 1px #5cae78 solid;
          background-color: #5cae78;
}

.info-container[data-v-3e6d3c54] .sex-box .ols-form-item-inner .ols-checker .ols-checker-options {
  padding-left: 30px;
}
.info-container .radio-box[data-v-3e6d3c54] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 100px;
  padding-top: 10px;
}
.info-container .radio-box .radio-btn[data-v-3e6d3c54] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    background-color: #00A758;
    position: relative;
    margin-right: 2px;
}
.info-container .radio-box .radio-btn[data-v-3e6d3c54]:after {
      content: "";
      position: absolute;
      left: 2px;
      top: 3px;
      width: 7px;
      height: 3px;
      border: 2px solid #fff;
      border-radius: 1px;
      border-top: none;
      border-right: none;
      background: transparent;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
}
.info-container .radio-box .radio-not-btn[data-v-3e6d3c54] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    margin-right: 2px;
}
.info-container .clause-box[data-v-3e6d3c54] {
  width: 100%;
  background-color: #fff;
}
.info-container .clause-box .clause-health[data-v-3e6d3c54] {
    width: 92%;
    margin: 0 auto;
    padding-top: 10px;
    line-height: 20px;
    font-size: 12px;
    color: #666666;
    padding-bottom: 12px;
}
.info-container .clause-box .clause-health .readAndAgree[data-v-3e6d3c54] {
      position: relative;
}
.info-container .clause-box .clause-health .readAndAgree .not-agree[data-v-3e6d3c54] {
        position: absolute;
        left: 0;
        z-index: 2;
        width: 20px;
        height: 20px;
}
.info-container .clause-box .clause-health .readAndAgree .agree[data-v-3e6d3c54] {
        position: absolute;
        left: 0;
        z-index: 2;
        width: 20px;
        height: 20px;
}
.info-container .clause-box .clause-health .clause-title[data-v-3e6d3c54] {
      display: inline-block;
      text-decoration: underline;
      color: #00A758;
}
.info-container .main[data-v-3e6d3c54] {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.info-container .info-title[data-v-3e6d3c54] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 16px 0 16px;
}
.info-container .titleinfo[data-v-3e6d3c54] {
  font-size: 16px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #000000;
  line-height: 20px;
  width: 100%;
}
.info-container .nei-border[data-v-3e6d3c54] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 24px;
  background: #FFFFFF;
  border-radius: 0px 6px 0px 6px;
  background: #FFF7F6;
  margin-left: 16px;
  margin-right: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.info-container .nei-border .time[data-v-3e6d3c54] {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 13px;
    color: #FF7769;
    line-height: 20px;
    margin-left: 12px;
}
.info-container .nei-border .time-over[data-v-3e6d3c54] {
    height: 24px;
    background: #FF7769;
    border-radius: 0px 6px 0px 6px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 13px;
    color: #FFFFFF;
    line-height: 20px;
    padding-left: 10px;
    padding-right: 9px;
}
.info-container .form .form-group[data-v-3e6d3c54] {
  margin-top: 15px;
}
.info-container .form .ols-form-item[data-v-3e6d3c54] {
  margin-left: 12px;
  margin-right: 12px;
}
.info-container .form .ols-form-item[data-v-3e6d3c54] .ols-form-item-content {
    overflow: hidden;
}
.info-container .form .ols-form-item[data-v-3e6d3c54] .ols-form-item-content .ols-viewer {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.info-container .form .phone-square[data-v-3e6d3c54] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.info-container .form .phone-square[data-v-3e6d3c54] .ols-form-item-content .ols-input {
    width: 40%;
}
.info-container .form .phone-square[data-v-3e6d3c54] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.info-container .form .phone-square[data-v-3e6d3c54] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #333333;
      margin-left: 5px;
}
.info-container .form .phone-square[data-v-3e6d3c54] .ols-form-item-content .readAndAgree img {
      width: 20px;
      height: 20px;
}
.info-container[data-v-3e6d3c54] .beneficiary-text {
  padding: 10px 15px;
  color: #666;
  background-color: #ffffff;
}
.info-container .color-leftred[data-v-3e6d3c54] {
  margin-left: 4px;
  font-size: 20px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #E91A33;
  line-height: 20px;
}
.info-container .color-red[data-v-3e6d3c54] {
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #E91A33;
}
.info-container .btn-left[data-v-3e6d3c54] {
  height: 18px;
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #666666;
  line-height: 14px;
}
.info-container .btn-left .newPrice[data-v-3e6d3c54] {
    font-size: 20px;
    /*px*/
}
.info-container .bottom-height[data-v-3e6d3c54] {
  width: 100%;
  height: 1px;
  padding-bottom: 85px;
}
.info-container .clause[data-v-3e6d3c54] {
  font-size: 12px;
  color: #333;
  margin-bottom: 0px;
  background: #ffffff;
  padding-top: 16px;
}
.info-container .clause > div[data-v-3e6d3c54] {
    width: 91.47%;
    margin: 0 auto;
    line-height: 20px;
}
.info-container .clause > div .readAndAgree[data-v-3e6d3c54] {
      position: relative;
}
.info-container .clause > div .readAndAgree .not-agree[data-v-3e6d3c54] {
        position: absolute;
        width: 20px;
        height: 20px;
}
.info-container .clause > div .readAndAgree .agree[data-v-3e6d3c54] {
        position: absolute;
        width: 20px;
        height: 20px;
}
.info-container .clause > div .clause-title[data-v-3e6d3c54] {
      display: inline-block;
      text-decoration: underline;
      color: #00A758;
      font-size: 12px;
      line-height: 12px;
}
.info-container .footer[data-v-3e6d3c54] {
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 78px;
  z-index: 10;
  height: 78px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
}
.info-container .automatic-renewal[data-v-3e6d3c54] {
  padding: 16px;
}
.info-container .automatic-renewal .renewal-title[data-v-3e6d3c54] {
    margin-bottom: 20px;
    font-size: 15px;
    color: #000000;
    font-weight: 800;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.info-container .automatic-renewal .renewal-title span[data-v-3e6d3c54] {
      display: inline-block;
      background: #E39D2D;
      font-size: 14px;
      color: #ffffff;
      margin-left: 6px;
      padding: 2px 10px;
      border-radius: 10px 10px 10px 0;
}
.info-container .automatic-renewal .renewal-title[data-v-3e6d3c54] .mint-switch-core {
      background: #fff;
}
.info-container .automatic-renewal .renewal-title[data-v-3e6d3c54] .mint-switch-input:checked + .mint-switch-core {
      border-color: #5cae78;
      background-color: #5cae78;
}
.info-container .automatic-renewal .renewal-title[data-v-3e6d3c54] .mint-switch-core::before {
      background-color: transparent;
}
.info-container .automatic-renewal .renewal-description[data-v-3e6d3c54] {
    width: 100%;
    background: #f4f5f7;
    position: relative;
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
}
.info-container .automatic-renewal .renewal-description p[data-v-3e6d3c54] {
      font-size: 15px;
      color: #000;
      font-weight: 800;
      margin-bottom: 6px;
}
.info-container .automatic-renewal .renewal-description ul li[data-v-3e6d3c54] {
      font-size: 14px;
      color: #7B7B7B;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.info-container .automatic-renewal .renewal-description ul li .title[data-v-3e6d3c54] {
        padding-left: 5px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}
.info-container .automatic-renewal .open-state[data-v-3e6d3c54] :before {
    content: '';
    width: 0px;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f4f5f7;
    position: absolute;
    top: -40px;
    left: 22px;
}
.info-container .automatic-renewal .unopened-state[data-v-3e6d3c54]:before {
    content: '';
    width: 0px;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f4f5f7;
    position: absolute;
    top: -40px;
    right: 109px;
}
.info-container .choose-address[data-v-3e6d3c54] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.info-container .choose-address img[data-v-3e6d3c54] {
    width: 20px;
    height: 20px;
}
.info-container .choose-address span[data-v-3e6d3c54] {
    margin-left: 4px;
    height: 20px;
    font-size: 12px;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
}
.info-container .span-class[data-v-3e6d3c54] {
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
}
.info-container .destination-box[data-v-3e6d3c54] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-container .destination-box .destination-btn[data-v-3e6d3c54] {
    height: 28px;
    line-height: 28px;
    min-width: 70px;
    text-align: center;
    padding: 0 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #666;
    font-size: 14px;
    margin-right: 10px;
}
.info-container .destination-box .destination-checked[data-v-3e6d3c54] {
    color: #fff;
    background: #5cae78;
    border-color: #5cae78;
}
.info-container[data-v-3e6d3c54] .insured-address .ols-form-item-content {
  position: relative;
}
.info-container[data-v-3e6d3c54] .insured-address .ols-form-item-content .address-text {
    position: absolute;
    left: 0;
    z-index: 10;
    background-color: #fff;
    color: #666;
}
.fixed-box[data-v-3e6d3c54] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fixed-box .box-content[data-v-3e6d3c54] {
    width: 90%;
    background: #fff;
    border-radius: 0.08rem;
    overflow: auto;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 11;
    border-radius: 0.08rem;
}
.fixed-box .box-content .close[data-v-3e6d3c54] {
      position: absolute;
      right: 0;
      top: 0;
      width: 40px;
      height: 40px;
      font-size: 20px;
      text-align: center;
      line-height: 40px;
      color: #ccc;
}
.fixed-box .box-content .box-title[data-v-3e6d3c54] {
      text-align: center;
      line-height: 40px;
      border-bottom: 1px solid #e6e6e6;
      font-size: 18px;
      color: #424242;
}
.fixed-box .box-content .box-text[data-v-3e6d3c54] {
      padding: 10px 0;
      border-bottom: 1px solid #e6e6e6;
      font-size: 18px;
}
.fixed-box .box-content .box-text p[data-v-3e6d3c54] {
        padding: 12px 20px;
        font-size: 16px;
        line-height: 22px;
        color: #424242;
        font: initial;
}
.fixed-box .box-content .box-btn[data-v-3e6d3c54] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 45px;
      font-size: 16px;
      outline: none;
      border: none;
      background: #5cae78;
      color: #fff;
}
.next-btn[data-v-3e6d3c54] {
  height: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.ols-checker-options[data-v-3e6d3c54] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}
.ols-checker-options[data-v-3e6d3c54]:after {
    content: '';
    display: table;
    clear: both;
}
.ols-checker-option[data-v-3e6d3c54] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.ols-checker-option .img[data-v-3e6d3c54] {
    width: 20px;
    height: 20px;
}
.ols-checker-option[data-v-3e6d3c54]:last-of-type {
    margin-right: 0;
}
.spanbox[data-v-3e6d3c54] {
  height: 36px;
  background: rgba(0, 167, 88, 0.1);
  border-radius: 0px 5px 0px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  position: absolute;
  right: 0;
  top: 0;
}
.img[data-v-3e6d3c54] {
  width: 24px;
  height: 24px;
}
.spanFont[data-v-3e6d3c54] {
  font-size: 14px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  color: #00A758;
  line-height: 20px;
  margin: 8px 10px 8px 4px;
}
.relation[data-v-3e6d3c54] {
  width: 52px;
  height: 28px;
  border-radius: 30px;
  opacity: 1;
  font-size: 14px;
  font-family: "Source Han Sans CN-Regular", "Source Han Sans CN";
  font-weight: 400;
  line-height: 28px;
  background-clip: text;
  clear: both;
  text-align: center;
  margin-right: 12px;
  display: inline-block;
}
.relation-bor[data-v-3e6d3c54] {
  width: 319px;
  height: 40px;
  margin-left: 12px;
  padding-top: 6px;
}
.alreadyinfo[data-v-3e6d3c54] {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  line-height: 20px;
  padding: 6px 10px;
  border-radius: 0px 10px 0px 10px;
  background: #F3F4F5;
}
.healthInfo[data-v-3e6d3c54] {
  padding: 6px 12px;
}
.healthInfo .health-box[data-v-3e6d3c54] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0px 10px 0px 10px;
    background: rgba(0, 0, 193, 0.04);
    padding: 6px 10px;
    width: 100%;
}
.healthInfo .health-box .confirminfo[data-v-3e6d3c54] {
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 500;
      color: #0000C1;
      line-height: 20px;
}
.healthInfo .health-box .right-arrow[data-v-3e6d3c54] {
      width: 18px;
      height: 18px;
}
[data-v-3e6d3c54].footer-container .nextTip.canNext {
  background: #666;
  width: 148px;
  height: 40px;
  background: #00A758;
  border-radius: 40px 40px 40px 40px;
  opacity: 1;
  margin-top: 4px;
  margin-right: 16px;
}
[data-v-3e6d3c54].footer-container .left-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: left;
  color: #5cae78;
  border: 1px solid #fff;
  background: #fff;
  margin-left: 16px;
}
[data-v-3e6d3c54].footer-container .nextTip {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  color: #fff;
  width: 148px;
  height: 40px;
  background: #00A758;
  border-radius: 40px 40px 40px 40px;
  opacity: 1;
  margin-top: 4px;
  font-size: 18px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  margin-right: 16px;
}
[data-v-3e6d3c54].ols-form-list .ols-formnew-item .ols-formnew-item-label {
  text-align: left;
  -ms-flex-preferred-size: 76px;
  width: 60px;
  white-space: normal;
  color: #666;
  height: 39px;
}
.left-font[data-v-3e6d3c54] {
  font-size: 12px;
  font-family: "Source Han Sans CN-Regular", "Source Han Sans CN";
  font-weight: 400;
  color: #666666;
  line-height: 14px;
}
.terms-page[data-v-3e6d3c54] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.care-plan[data-v-3e6d3c54] {
  margin: 16px 0px 10px 16px;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.group-info[data-v-3e6d3c54] {
  background: #FFFFFF;
  border-radius: 6px 6px 6px 6px;
  margin-left: 16px;
  margin-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.group-tips[data-v-3e6d3c54] {
  margin: 4px 16px 16px 16px;
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  line-height: 17px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.ols-checker[data-v-f9ca8b56] {
  min-height: 28px;
  padding: 0;
  position: relative;
  width: 100%;
}
.ols-checker[data-v-f9ca8b56]:before {
    content: '';
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.ols-checker .ols-checker-input[data-v-f9ca8b56] {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: 0;
    position: absolute;
    visibility: hidden;
}
.ols-checker .ols-checker-options[data-v-f9ca8b56] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 13px;
}
.ols-checker .ols-checker-options[data-v-f9ca8b56]:after {
      content: '';
      display: table;
      clear: both;
}
.ols-checker .ols-checker-option[data-v-f9ca8b56] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 38px;
    margin-right: 40px;
}
.ols-checker .ols-checker-option .img[data-v-f9ca8b56] {
      width: 20px;
      height: 20px;
}
.ols-checker .ols-checker-option[data-v-f9ca8b56]:last-of-type {
      margin-right: 0;
}

.ols-checker-item[data-v-508d3939] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.06rem 15px;
}
.ols-checker-item-box[data-v-508d3939] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccc;
  position: relative;
}
.ols-checker-item-box[data-v-508d3939],
.ols-checker-item-active[data-v-508d3939] {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ols-checker-item-active[data-v-508d3939] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.ols-checker-item-content[data-v-508d3939] {
  font-size: 0.12rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
  line-height: 0.16rem;
}

.ols-viewer[data-v-bc811bae] {
  color: #333333;
  text-align: left;
  margin-left: 30px;
  line-height: 20px;
}
.ols-viewer-group[data-v-bc811bae] {
  min-width: 1px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ols-select[data-v-4608522e] {
  min-width: 1px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ols-select .ols-select-input[data-v-4608522e] {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: 0;
    position: absolute;
    visibility: hidden;
}
.ols-select .ols-select-content[data-v-4608522e] {
    overflow: hidden;
    text-overflow: ellipsis;
    height: 19px;
    line-height: 19px;
    min-width: 0.5rem;
    text-align: left;
    color: #333333;
    margin-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.ols-select .ols-select-content[data-v-4608522e]:empty::before {
      content: attr(placeholder);
      color: #c5c5c5;
}
.ols-select img[data-v-4608522e] {
    width: 24px;
    height: 24px;
}
div, ul, li {
  margin: 0;
  padding: 0;
}
ul, li {
  list-style: none outside none;
}
/* layer begin */
.ios-select-widget-boxnew.olay {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgba(0, 0, 0, 0.75);
}
.ios-select-widget-boxnew.olay > div {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  visibility: visible;
  border-radius: 12px 12px 0px 0px;
}
.ios-select-widget-boxnew header.iosselect-header {
  height: 44px;
  line-height: 44px;
  width: 100%;
  z-index: 9999;
  text-align: center;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  border-bottom: 1px solid #EEEEEE;
}
.ios-select-widget-boxnew header.iosselect-header a {
  font-size: 16px;
  color: #e94643;
  text-decoration: none;
}
.ios-select-widget-boxnew header.iosselect-header a.close {
  float: left;
  /* padding-left: 15px; */
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #999999;
  line-height: 20px;
  padding-left: 16px;
}
.ios-select-widget-boxnew header.iosselect-header a.sure {
  float: right;
  height: 44px;
  line-height: 44px;
  float: right;
  padding-right: 16px;
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #00A758;
}
.ios-select-widget-boxnew {
  padding-top: 44px;
}
.ios-select-widget-boxnew .one-level-contain,
.ios-select-widget-boxnew .two-level-contain,
.ios-select-widget-boxnew .three-level-contain,
.ios-select-widget-boxnew .four-level-contain,
.ios-select-widget-boxnew .five-level-contain {
  height: 100%;
  overflow: hidden;
}
.ios-select-widget-boxnew .iosselect-box {
  overflow: hidden;
}
.ios-select-widget-boxnew .iosselect-box > div {
  display: block;
  float: left;
}
.ios-select-widget-boxnew ul {
  background-color: #fff;
}
.ios-select-widget-boxnew ul li {
  font-size: 13px;
  height: 44px!important;
  line-height: 44px!important;
  background-color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #111;
  opacity: .3;
}
.ios-select-widget-boxnew ul li.at {
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #333333;
  line-height: 20px;
  -webkit-background-clip: text;
  opacity: 1;
}
.ios-select-widget-boxnew ul li.side1 {
  font-size: 14px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
  -webkit-background-clip: text;
}
.ios-select-widget-boxnew ul li.side2 {
  font-size: 14px;
  opacity: .5;
}
.ios-select-widget-boxnew.one-level-box .one-level-contain {
  width: 100%;
}
.ios-select-widget-boxnew.one-level-box .two-level-contain,
.ios-select-widget-boxnew.one-level-box .three-level-contain,
.ios-select-widget-boxnew.one-level-box .four-level-contain,
.ios-select-widget-boxnew.one-level-box .five-level-contain,
.ios-select-widget-boxnew.one-level-box .six-level-contain {
  width: 0;
}
.ios-select-widget-boxnew.two-level-box .one-level-contain,
.ios-select-widget-boxnew.two-level-box .two-level-contain {
width: 50%;
}
.ios-select-widget-boxnew.two-level-box .three-level-contain,
.ios-select-widget-boxnew.two-level-box .four-level-contain,
.ios-select-widget-boxnew.two-level-box .five-level-contain,
.ios-select-widget-boxnew.two-level-box .six-level-contain {
  width: 0;
}
.ios-select-widget-boxnew.three-level-box .one-level-contain,
.ios-select-widget-boxnew.three-level-box .two-level-contain {
  width: 30%;
}
.ios-select-widget-boxnew.three-level-box .three-level-contain {
  width: 40%;
}
.ios-select-widget-boxnew.three-level-box .four-level-contain
.ios-select-widget-boxnew.three-level-box .five-level-contain,
.ios-select-widget-boxnew.three-level-box .six-level-contain {
  width: 0%;
}
.ios-select-widget-boxnew.four-level-box .one-level-contain,
.ios-select-widget-boxnew.four-level-box .two-level-contain,
.ios-select-widget-boxnew.four-level-box .three-level-contain,
.ios-select-widget-boxnew.four-level-box .four-level-contain {
  width: 25%;
}
.ios-select-widget-boxnew.four-level-box .five-level-contain,
.ios-select-widget-boxnew.four-level-box .six-level-contain {
  width: 0%;
}
.ios-select-widget-boxnew.five-level-box .one-level-contain,
.ios-select-widget-boxnew.five-level-box .two-level-contain,
.ios-select-widget-boxnew.five-level-box .three-level-contain,
.ios-select-widget-boxnew.five-level-box .four-level-contain,
.ios-select-widget-boxnew.five-level-box .five-level-contain {
width: 20%;
}
.ios-select-widget-boxnew.five-level-box .six-level-contain {
width: 0%;
}
.ios-select-widget-boxnew.six-level-box .one-level-contain,
.ios-select-widget-boxnew.six-level-box .two-level-contain,
.ios-select-widget-boxnew.six-level-box .three-level-contain,
.ios-select-widget-boxnew.six-level-box .four-level-contain,
.ios-select-widget-boxnew.six-level-box .five-level-contain {
width: 16%;
}
.ios-select-widget-boxnew.six-level-box .six-level-contain {
width: 20%;
}
.ios-select-widget-boxnew .cover-area1 {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(51,51,51,0.06);
  position: absolute;
  top: 149px;
  margin: 0;
  height: 0;
}
.ios-select-widget-boxnew .cover-area2 {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(51,51,51,0.06);
  position: absolute;
  top: 183px;
  margin: 0;
  height: 0;
}
.ios-select-widget-boxnew #iosSelectTitle {
  margin: 0;
  padding: 0;
  display: inline-block;
  color: #333;
  font-size: 17px;
  font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
}
.ios-select-body-class {
  overflow: hidden;
}
.ios-select-body-class body {
  -ms-touch-action: none;
      touch-action: none;
}
.ios-select-widget-boxnew.olay > div > .ios-select-loading-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,.5);
  display: none;
}
.hengnew {
  height: 4px;
  background: #00A758;
  padding-top: -29px;
  margin-top: -4px;
  opacity: 0.4;
}
.ios-select-widget-boxnew.olay > div > .ios-select-loading-box > .ios-select-loading {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OEMxMEI3NDI3MEIxMUU2ODVGMzhFNjYyMDIyOUFCMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OEMxMEI3NTI3MEIxMUU2ODVGMzhFNjYyMDIyOUFCMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU4QzEwQjcyMjcwQjExRTY4NUYzOEU2NjIwMjI5QUIwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU4QzEwQjczMjcwQjExRTY4NUYzOEU2NjIwMjI5QUIwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+GeWqMwAAA+BJREFUeNrMmVlsTGEUx+9cXZQiLZWKklhbQSSlSMUWSxAiJGJ5aSQehOiDF7yI4EFILW99I3iRSJGUPkiILSKp2OuJVtHWkrRVapn2jv+R/ycnn5l27rQz10l+mWlyl/+c833nO+c0FIlEnATMBbPAIn5OBuPAENAKToC74BtoB59AG/D9spBPgaPBdrAFjJH7Fa66TkRuNe8gP8Bb8Ap8j/eFaXFelwv286WZfKG2WL9SX5cFCuntBvAc/OoPD64HJ8EI5Q3tmW7whl4pAl/AUfAEDKZnQ1HuFXGPQGOiAsW7x8A26wUhirgMLnGtfe3hGcO5NApARpRnSchrY0UhlkAJxxmw0npYBzgOKinSj6WDCfRyphWFJnAPdMUjUH71WbDKElcDykGL0zcbCEroVf389+CW7Uk3ygNk/azghYIHDoCN/SDO4W6+A55aAiUrzImWz7StA2WWuF2gIpEc1ovVgQeWyELm06gCc8ARJU44DM45yTPZII8tkXO5DP4RuI8iPYqr4YmQbJN8+E4JlA1abAuUBbtZeU526O4khDWW3QdhK9TZWmAZd6/x3inw0UmdSZJ/pgSKlilGoMvTwoiTw/20k3p7yTyovRgScTNAvgrvFSbkVJuE+LU6GiXEefJHqfKefF5zgrMGVRnJZ4HEerryXjdzU1DWbB2BI10mRuPBej+1WhKsi8vLeDDXZRllwtvoBG8davNmS4gHUZyTQIWSrM1iQpyZptafo4QGabp9+JNmOijMY9MTtGWpEHe5PDHMGsz/DwQOUwI7XVYUZheP1ZVEAJbOFsGswTYR+EKF2NWVRABWwHPYeLDFZWKOKJFLAhRYpMQJjS7rsWYlcjlTT6pNOr5pahfL5m12KaparUPpZTcEILCEjjGniCy9iMk3F9hImzCXcZqQKhOnLFShjbBX/psQP4Aq5UUpdfZEGXEkKzGvZf4zu/exOdV0T1LJCZTx4gK2msm2Uq494z1pS29Ea5ra2RPrrm4HpwvJsplgtTW/kXq0M1ZffF2F2uMNe+nJUD+HVWaLm8AAtXNrOXTqcfQh2fwQmKdST4TTgAp6ui+WTWFTrUpedu15Fs29Do/kuDsIZlsiW7njryZQ2MrAaD5Yqko88+w6zoPCfsdv5VwjnnXayA67zYmUdGM/e0i+E7nWivnDPUWEz6iyPedngLkY7ARDrQeb72GOz5roVY/eylMHvxflXjkpLoKHfZ2wmhJIkvcylUi9BAnTa9U9DD59CzQm/csaZv0cn0JbOeK4ye/xbfcE/w0hYZvElnU8GEXBGRQjeewzi5B6rtP6RGY9vwUYACMHTam1T1ebAAAAAElFTkSuQmCC) no-repeat 0 0;
  background-size: contain;
  -webkit-animation: loading-keyframe 1s infinite linear;
          animation: loading-keyframe 1s infinite linear;
}
.fadeInUp .layer{
  -webkit-animation: fadeInUp .5s;
  animation: fadeInUp .5s;
}
.fadeOutDown .layer{
  -webkit-animation: fadeOutDown .5s!important;
  animation: fadeOutDown .5s!important;
}
@-webkit-keyframes loading-keyframe {
  from {
      -webkit-transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(360deg);
  }
}
@keyframes loading-keyframe {
  from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
  }
}
@-webkit-keyframes fadeInUp {
  from {
      opacity: 0;
      -webkit-transform: translate3d(0,100%,0);
  }
  to {
      opacity: 1;
      -webkit-transform: none;
  }
}
@keyframes fadeInUp {
  from {
      opacity: 0;
      -webkit-transform: translate3d(0,100%,0);
              transform: translate3d(0,100%,0);
  }
  to {
      opacity: 1;
      -webkit-transform: none;
              transform: none;
  }
}
@-webkit-keyframes fadeOutDown {
  from {
      opacity: 1;
  }

  to {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
      opacity: 1;
  }

  to {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
              transform: translate3d(0, 100%, 0);
  }
}

.ols-form-list .ols-form-item[data-v-b9636232] {
  margin-left: 12px;
  margin-right: 12px;
  padding: 12px 0;
  font-size: 14px;
  position: relative;
  opacity: 1;
  border-bottom: 1px solid rgba(51, 51, 51, 0.06);
}
.ols-form-list .ols-form-item[data-v-b9636232]:last-of-type {
    border-bottom: none;
    line-height: 20px;
}
.ols-form-list .ols-form-item .ols-form-item-inner[data-v-b9636232] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.ols-form-list .ols-form-item .ols-form-item-label[data-v-b9636232] {
    text-align: left;
    -ms-flex-preferred-size: 76px;
        flex-basis: 76px;
    line-height: 20px;
    white-space: nowrap;
    color: #666;
}
.ols-form-list .ols-form-item .isNecessary[data-v-b9636232] {
    color: #ff0000;
}
.ols-form-list .ols-form-item .noNecessary[data-v-b9636232] {
    color: #ffffff;
}
.ols-form-list .ols-form-item .ols-form-item-content[data-v-b9636232] {
    width: 100%;
    text-align: right;
}
.ols-form-list .ols-form-item .ols-form-item-describe[data-v-b9636232] {
    text-align: left;
}
.ols-form-list .ols-form-item .ols-form-item-describe .info-text[data-v-b9636232] {
      color: #c5c5c5;
      font-size: 14px;
}
.ols-form-list .ols-formnew-item[data-v-b9636232] {
  margin-left: 12px;
  margin-right: 12px;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.06);
  position: relative;
}
.ols-form-list .ols-formnew-item[data-v-b9636232]:last-of-type {
    border-bottom: none;
}
.ols-form-list .ols-formnew-item .ols-formnew-item-inner[data-v-b9636232] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.ols-form-list .ols-formnew-item .ols-formnew-item-label[data-v-b9636232] {
    text-align: left;
    -ms-flex-preferred-size: 76px;
        flex-basis: 76px;
    white-space: normal;
    color: #666;
    height: 39px;
}
.ols-form-list .ols-formnew-item .ols-formnew-item-label .divheight[data-v-b9636232] {
      width: 70px;
}
.ols-form-list .ols-formnew-item .isNecessary[data-v-b9636232] {
    color: #ff0000;
}
.ols-form-list .ols-formnew-item .ols-formnew-item-content[data-v-b9636232] {
    width: 100%;
    text-align: right;
}
.ols-form-list .ols-formnew-item .ols-formnew-item-describe[data-v-b9636232] {
    text-align: left;
}
.ols-form-list .ols-formnew-item .ols-formnew-item-describe .info-text[data-v-b9636232] {
      color: #c5c5c5;
      font-size: 14px;
}
.imgsy[data-v-b9636232] {
  width: 16px;
  height: 16px;
}

.ols-cell-group[data-v-746cfa2c] {
  margin-bottom: 10px;
  background: #fff;
  background: #FFFFFF;
  border-radius: 6px 6px 6px 6px;
  margin-left: 16px;
  margin-right: 16px;
  padding-bottom: 12px;
  position: relative;
}
.ols-cell-group:first-child.has-title[data-v-746cfa2c] {
    background: #FFFFFF;
}
.ols-cell-group .first-title[data-v-746cfa2c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 12px;
    padding-top: 12px;
    height: 44px;
}
.ols-cell-group .ols-form-item-group-title[data-v-746cfa2c] {
    text-align: left;
    height: 28px;
    line-height: 32px;
    color: #000;
    font-size: 15px;
    font-size: 14px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #000000;
    height: 20px;
    margin-right: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.ols-cell-group .ols-form-item-group-title .list-title[data-v-746cfa2c] {
      margin-left: 8px;
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #999999;
}
.ols-cell-group .index[data-v-746cfa2c] {
    height: 4px;
    background: #00A758;
    border-radius: 0px 0px 0px 0px;
    opacity: 0.4;
    margin-top: -12px;
}
.ols-cell-group .ols-cell[data-v-746cfa2c]:after {
    content: '';
    position: absolute;
    height: 1px;
    bottom: 0;
    right: 0;
    left: 15px;
    background-color: #e4e4e4;
}
.ols-cell-group .ols-cell[data-v-746cfa2c]:last-child:after {
    display: none;
}
.ols-cell-group .ols-cell.ols-cell-type-column[data-v-746cfa2c]:after {
    left: 0;
}

.ols-input[data-v-d2a0d782] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}
.ols-input .ols-input-wrapper[data-v-d2a0d782] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.ols-input .ols-input-wrapper .ols-validate-errmsg[data-v-d2a0d782] {
      text-align: right !important;
}
.ols-input input[data-v-d2a0d782] {
    width: 100%;
    border: none;
    padding: 0;
    font-size: 14px;
    text-align: left;
    color: #333333;
    line-height: 20px;
}
.ols-input input[data-v-d2a0d782]:disabled {
      background: #fff;
}
.ols-input input[data-v-d2a0d782]::-webkit-input-placeholder {
      color: #c5c5c5;
}
.ols-input input[data-v-d2a0d782]:focus {
    outline: none;
}
.ols-input .certificate[data-v-d2a0d782] {
    right: 0px;
    position: absolute;
}
.ols-input .certificate img[data-v-d2a0d782] {
      width: 24px;
      height: 24px;
}
.ols-input .setUserInfo .iconfont[data-v-d2a0d782] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    font-size: 22px;
    color: #459855;
}
.ols-input .ols-phone-code-btn[data-v-d2a0d782] {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    margin-left: 10px;
    padding-left: 10px;
    text-align: center;
    white-space: nowrap;
    color: #666;
    font-size: 13px;
}
.ols-input .ols-phone-code-btn[data-v-d2a0d782]:before {
      content: "";
      display: inline-block;
      position: absolute;
      left: 0;
      width: 1px;
      height: 28px;
      background-color: #f5f5f5;
}
.ols-input .ols-phone-code-btn.active[data-v-d2a0d782] {
      color: #5cae78;
}
.ols-newinput[data-v-d2a0d782] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ols-newinput .ols-newinput-wrapper .ols-validate-errmsg[data-v-d2a0d782] {
    text-align: right !important;
}
.ols-newinput input[data-v-d2a0d782] {
    width: 100%;
    border: none;
    padding: 0;
    font-size: 14px;
    text-align: left;
    margin-left: 30px;
    line-height: 39px;
    color: #D4D4D4;
}
.ols-newinput input[data-v-d2a0d782]:disabled {
      background: #fff;
}
.ols-newinput input[data-v-d2a0d782]::-webkit-input-placeholder {
      color: #c5c5c5;
}
.ols-newinput input[data-v-d2a0d782]:focus {
    outline: none;
}
.ols-newinput .certificate[data-v-d2a0d782] {
    width: 24px;
    height: 24px;
}
.ols-newinput .certificate img[data-v-d2a0d782] {
      margin-right: 12px;
      width: 100%;
      padding-top: 6px;
}
.ols-newinput .setUserInfo .iconfont[data-v-d2a0d782] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    font-size: 22px;
    color: #459855;
}
.ols-newinput .ols-phone-code-btn[data-v-d2a0d782] {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 28px;
    line-height: 28px;
    position: relative;
    margin-left: 10px;
    padding-left: 10px;
    text-align: center;
    white-space: nowrap;
    color: #666;
    font-size: 13px;
}
.ols-newinput .ols-phone-code-btn[data-v-d2a0d782]:before {
      content: "";
      display: inline-block;
      position: absolute;
      left: 0;
      width: 1px;
      height: 28px;
      background-color: #f5f5f5;
}
.ols-newinput .ols-phone-code-btn.active[data-v-d2a0d782] {
      color: #5cae78;
}

.ols-alert-mask[data-v-17828459] {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 99999 !important;
  background: rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ols-alert-mask-animate[data-v-17828459] {
  background: rgba(0, 0, 0, 0.5);
}
.ols-alert-wrap[data-v-17828459] {
  width: 90%;
  background: #fff;
  border-radius: 0.08rem;
  overflow: auto;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
  z-index: 99999 !important;
}
.ols-alert-wrap-animate[data-v-17828459] {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.ols-alert-header-p[data-v-17828459] {
  text-align: center;
  line-height: 40px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 18px;
  color: #424242;
}
.ols-alert-body[data-v-17828459] {
  padding: 10px 0;
}
.ols-alert-body-p[data-v-17828459] {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 22px;
  color: #424242;
  font: initial;
}
.ols-alert-footer[data-v-17828459] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 45px;
}
.ols-alert-footer-b[data-v-17828459] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  letter-spacing: 10px;
  outline: none;
  border: none;
  background: #5cae78;
  color: #fff;
}
.ols-alert-close[data-v-17828459] {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  color: #ccc;
}

.ols-tab.if-fixed-nav {
  padding-top: 44px;
}
.ols-tab.if-fixed-nav .ols-tab-item-area {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
}
.ols-tab-item-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  position: relative;
  background-color: #fff;
}
.ols-tab-item-area .ols-tab-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 100%;
    font-size: 14px;
    border: 1px solid #e4e4e4;
    border-left: none;
}
.ols-tab-item-area .ols-tab-item:last-of-type {
      border-right: none;
}
.ols-tab-item-area .ols-tab-item.ols-active {
      color: #5cae78;
}
.ols-tab-item-area .ols-tab-activeline {
    bottom: 0;
    background: #5cae78;
    position: absolute;
}
.ols-tab-item-area .ols-transition-forward {
    -webkit-transition: right 0.3s ease-out, left 0.2s ease-in-out 0.3s;
    transition: right 0.3s ease-out, left 0.2s ease-in-out 0.3s;
}
.ols-tab-item-area .ols-transition-backward {
    -webkit-transition: left 0.3s ease-out, right 0.2s ease-in-out 0.3s;
    transition: left 0.3s ease-out, right 0.2s ease-in-out 0.3s;
}

.ols-tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ols-tab-item.ols-active {
    color: #5cae78;
}

.occupationWrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: white;
  text-align: left;
  padding-top: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
}
.occupationWrapper .mint-header {
    border-bottom: 1px solid #e6e6e6;
}
.occupationWrapper .searchForm {
    width: 100%;
    height: 60px;
}
.occupationWrapper .occupationContainer {
    height: calc(100% - 44px);
    overflow: auto;
}
.occupationWrapper .occupationContainer .occupation-title {
      padding: 0.4rem;
      border-bottom: 1px solid #e6e6e6;
}
.occupationWrapper .occupationContainer .occupation-title .flex-cancel {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: nowrap;
            flex-flow: nowrap;
}
.occupationWrapper .occupationContainer .occupation-title .flex-cancel .occupation-inquireOne {
          border: 1px solid #e6e6e6;
          width: 100%;
          height: 40px;
          margin-bottom: 10px;
}
.occupationWrapper .occupationContainer .occupation-title .flex-none {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: nowrap;
            flex-flow: nowrap;
}
.occupationWrapper .occupationContainer .occupation-title .flex-none .cancel-button {
          width: 50%;
          height: 28px;
          border-radius: 4px;
          line-height: 28px;
          background: #9E9E9E;
          color: #ffffff;
          text-align: center;
          font-size: 14px;
}
.occupationWrapper .occupationContainer .occupation-title .flex-none .Inquire-button {
          width: 50%;
          height: 28px;
          border-radius: 4px;
          line-height: 28px;
          margin-left: 10px;
          background: #5cae78;
          color: #ffffff;
          text-align: center;
          font-size: 14px;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul {
        margin-top: 4px;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul li {
          padding: 10px;
          border-bottom: 1px dashed #e6e6e6;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul li:last-child {
          border-bottom: none;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul .liBack {
          background: #5cae78;
          color: #ffffff;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations {
        margin-bottom: 20px;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-title {
          font-size: 16px;
          padding-left: 0;
          padding-bottom: 0;
          border: none;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list span {
            background: #e6e6e6;
            padding: 4px;
            text-align: center;
            margin-right: 6px;
            margin-top: 10px;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list .spanBack {
            background: #5cae78;
            color: #ffffff;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list p {
            margin: 0 auto;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .title-selected .title-text {
        font-size: 16px;
        margin-bottom: 8px;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .title-selected .text {
        display: inline-block;
        max-width: 120px;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .title-selected .text-active {
        color: #5cae78;
}
.occupationWrapper .occupationList {
    width: 100%;
    height: 100%;
    max-height: 600px;
    overflow-y: auto;
}
.occupationWrapper .occupationList .occupationItem {
      padding: 0 10px;
      text-align: left;
      line-height: 1.0;
}
.occupationWrapper .occupationList .occupationItem .cell-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 16px 0;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        border-bottom: 1px solid #d9d9d9;
        /*background-image: -webkit-gradient(linear, bottom top, left bottom, from(#d9d9d9), color-stop(50%, #d9d9d9), color-stop(50%, transparent));*/
        /*background-image: linear-gradient(180deg, #d9d9d9, #d9d9d9 50%, transparent 50%);*/
        /*background-size: 100% 1px;*/
        /*background-repeat: no-repeat;*/
        /*background-position: bottom left;*/
        /*background-origin: border-box;*/
        /*-webkit-box-align: center;*/
}
.occupationWrapper .occupationList .occupationItem .text {
        font-size: 16px;
}
.occupationWrapper .occupationList .occupationItem .mint-cell-allow-right {
        position: relative;
}
@charset "UTF-8";.el-fade-in-enter,.el-fade-in-leave-active,.el-fade-in-linear-enter,.el-fade-in-linear-leave,.el-fade-in-linear-leave-active,.fade-in-linear-enter,.fade-in-linear-leave,.fade-in-linear-leave-active{opacity:0}.el-checkbox,.el-checkbox__input{display:inline-block;position:relative}.fade-in-linear-enter-active,.fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.el-fade-in-linear-enter-active,.el-fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.el-fade-in-enter-active,.el-fade-in-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter,.el-zoom-in-center-leave-active{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:center top;transform-origin:center top}.el-zoom-in-top-enter,.el-zoom-in-top-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:center bottom;transform-origin:center bottom}.el-zoom-in-bottom-enter,.el-zoom-in-bottom-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.el-zoom-in-left-enter-active,.el-zoom-in-left-leave-active{opacity:1;-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:top left;transform-origin:top left}.el-zoom-in-left-enter,.el-zoom-in-left-leave-active{opacity:0;-webkit-transform:scale(.45,.45);transform:scale(.45,.45)}.collapse-transition{-webkit-transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out;transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out}.horizontal-collapse-transition{-webkit-transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out;transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out}.el-list-enter-active,.el-list-leave-active{-webkit-transition:all 1s;transition:all 1s}.el-list-enter,.el-list-leave-active{opacity:0;-webkit-transform:translateY(-30px);transform:translateY(-30px)}.el-opacity-transition{-webkit-transition:opacity .3s cubic-bezier(.55,0,.1,1);transition:opacity .3s cubic-bezier(.55,0,.1,1)}.el-checkbox{color:#606266;font-weight:500;font-size:14px;cursor:pointer;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;margin-right:30px}.el-checkbox.is-bordered{padding:9px 20px 9px 10px;border-radius:4px;border:1px solid #DCDFE6;-webkit-box-sizing:border-box;box-sizing:border-box;line-height:normal;height:40px}.el-checkbox.is-bordered.is-checked{border-color:#409EFF}.el-checkbox.is-bordered.is-disabled{border-color:#EBEEF5;cursor:not-allowed}.el-checkbox.is-bordered+.el-checkbox.is-bordered{margin-left:10px}.el-checkbox.is-bordered.el-checkbox--medium{padding:7px 20px 7px 10px;border-radius:4px;height:36px}.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label{line-height:17px;font-size:14px}.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner{height:14px;width:14px}.el-checkbox.is-bordered.el-checkbox--small{padding:5px 15px 5px 10px;border-radius:3px;height:32px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label{line-height:15px;font-size:12px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner{height:12px;width:12px}.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after{height:6px;width:2px}.el-checkbox.is-bordered.el-checkbox--mini{padding:3px 15px 3px 10px;border-radius:3px;height:28px}.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label{line-height:12px;font-size:12px}.el-checkbox-button__inner,.el-checkbox__input{line-height:1;vertical-align:middle;white-space:nowrap;outline:0}.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner{height:12px;width:12px}.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after{height:6px;width:2px}.el-checkbox__input{cursor:pointer}.el-checkbox__input.is-disabled .el-checkbox__inner{background-color:#edf2fc;border-color:#DCDFE6;cursor:not-allowed}.el-checkbox__input.is-disabled .el-checkbox__inner::after{cursor:not-allowed;border-color:#C0C4CC}.el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label{cursor:not-allowed}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#F2F6FC;border-color:#DCDFE6}.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{border-color:#C0C4CC}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:#F2F6FC;border-color:#DCDFE6}.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before{background-color:#C0C4CC;border-color:#C0C4CC}.el-checkbox__input.is-checked .el-checkbox__inner,.el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:#409EFF;border-color:#409EFF}.el-checkbox__input.is-disabled+span.el-checkbox__label{color:#C0C4CC;cursor:not-allowed}.el-checkbox__input.is-checked .el-checkbox__inner::after{-webkit-transform:rotate(45deg) scaleY(1);transform:rotate(45deg) scaleY(1)}.el-checkbox__input.is-checked+.el-checkbox__label{color:#409EFF}.el-checkbox__input.is-focus .el-checkbox__inner{border-color:#409EFF}.el-checkbox__input.is-indeterminate .el-checkbox__inner::before{content:'';position:absolute;display:block;background-color:#FFF;height:2px;-webkit-transform:scale(.5);transform:scale(.5);left:0;right:0;top:5px}.el-checkbox__input.is-indeterminate .el-checkbox__inner::after{display:none}.el-checkbox__inner{display:inline-block;position:relative;border:1px solid #DCDFE6;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box;width:14px;height:14px;background-color:#FFF;z-index:1;-webkit-transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.el-checkbox__inner:hover{border-color:#409EFF}.el-checkbox__inner::after{-webkit-box-sizing:content-box;box-sizing:content-box;content:"";border:1px solid #FFF;border-left:0;border-top:0;height:7px;left:4px;position:absolute;top:1px;-webkit-transform:rotate(45deg) scaleY(0);transform:rotate(45deg) scaleY(0);width:3px;-webkit-transition:-webkit-transform .15s ease-in .05s;transition:-webkit-transform .15s ease-in .05s;transition:transform .15s ease-in .05s;transition:transform .15s ease-in .05s, -webkit-transform .15s ease-in .05s;transition:transform .15s ease-in .05s,-webkit-transform .15s ease-in .05s;-webkit-transform-origin:center;transform-origin:center}.el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.el-checkbox-button,.el-checkbox-button__inner{display:inline-block;position:relative}.el-checkbox__label{display:inline-block;padding-left:10px;line-height:19px;font-size:14px}.el-checkbox:last-of-type{margin-right:0}.el-checkbox-button__inner{font-weight:500;cursor:pointer;background:#FFF;border:1px solid #DCDFE6;border-left:0;color:#606266;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:0}.el-checkbox-button__inner.is-round{padding:12px 20px}.el-checkbox-button__inner:hover{color:#409EFF}.el-checkbox-button__inner [class*=el-icon-]{line-height:.9}.el-checkbox-button__inner [class*=el-icon-]+span{margin-left:5px}.el-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;z-index:-1}.el-checkbox-button.is-checked .el-checkbox-button__inner{color:#FFF;background-color:#409EFF;border-color:#409EFF;-webkit-box-shadow:-1px 0 0 0 #8cc5ff;box-shadow:-1px 0 0 0 #8cc5ff}.el-checkbox-button.is-checked:first-child .el-checkbox-button__inner{border-left-color:#409EFF}.el-checkbox-button.is-disabled .el-checkbox-button__inner{color:#C0C4CC;cursor:not-allowed;background-image:none;background-color:#FFF;border-color:#EBEEF5;-webkit-box-shadow:none;box-shadow:none}.el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner{border-left-color:#EBEEF5}.el-checkbox-button:first-child .el-checkbox-button__inner{border-left:1px solid #DCDFE6;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.el-checkbox-button.is-focus .el-checkbox-button__inner{border-color:#409EFF}.el-checkbox-button:last-child .el-checkbox-button__inner{border-radius:0 4px 4px 0}.el-checkbox-button--medium .el-checkbox-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.el-checkbox-button--medium .el-checkbox-button__inner.is-round{padding:10px 20px}.el-checkbox-button--small .el-checkbox-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.el-checkbox-button--small .el-checkbox-button__inner.is-round{padding:9px 15px}.el-checkbox-button--mini .el-checkbox-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.el-checkbox-button--mini .el-checkbox-button__inner.is-round{padding:7px 15px}.el-checkbox-group{font-size:0}.el-tree{position:relative;cursor:default;background:#FFF;color:#606266}.el-tree__empty-block{position:relative;min-height:60px;text-align:center;width:100%;height:100%}.el-tree__empty-text{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#909399}.el-tree__drop-indicator{position:absolute;left:0;right:0;height:1px;background-color:#409EFF}.el-tree-node{white-space:nowrap;outline:0}.el-tree-node:focus>.el-tree-node__content{background-color:#F5F7FA}.el-tree-node.is-drop-inner>.el-tree-node__content .el-tree-node__label{background-color:#409EFF;color:#fff}.el-tree-node__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px 24px 10px 0;cursor:pointer;}.el-tree-node__content>.el-tree-node__expand-icon{padding:6px}.el-tree-node__content>label.el-checkbox{margin-right:8px}.el-tree-node__content:hover{background-color:#F5F7FA}.el-tree.is-dragging .el-tree-node__content{cursor:move}.el-tree.is-dragging .el-tree-node__content *{pointer-events:none}.el-tree.is-dragging.is-drop-not-allow .el-tree-node__content{cursor:not-allowed}.el-tree-node__expand-icon{cursor:pointer;color:#C0C4CC;font-size:12px;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transition:-webkit-transform .3s ease-in-out;transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;transition:transform .3s ease-in-out, -webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out,-webkit-transform .3s ease-in-out}.el-tree-node__expand-icon.expanded{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.el-tree-node__expand-icon.is-leaf{color:transparent;cursor:default}.el-tree-node__label{font-size:14px;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;}.el-tree-node__loading-icon{margin-right:8px;font-size:14px;color:#C0C4CC}.el-tree-node>.el-tree-node__children{overflow:hidden;background-color:transparent}.el-tree-node.is-expanded>.el-tree-node__children{display:block}.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{background-color:#f0f7ff}

.topView[data-v-24342219] {
  height: 45px;
  background-color: #fff;
}
.mint-header[data-v-24342219] {
  background-color: #fff;
  color: #000;
  height: 44px;
}
.mint-header[data-v-24342219] .mint-header-title {
    height: 22px;
    font-size: 15px;
    font-family: Source Han Sans CN-Bold, Source Han Sans CN;
    font-weight: bold;
    color: #000000;
    line-height: 18px;
}
.outside[data-v-24342219] {
  position: relative;
}
.share-others[data-v-24342219] {
  position: absolute;
  top: 20px;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #222222;
}
.share-others li[data-v-24342219] {
  float: left;
  /*border: 1px solid red;*/
  width: 40px;
  height: 40px;
  margin: 5px 10px;
}
.share-others li .share-img[data-v-24342219] {
  display: inline-block;
  width: 33px;
  height: 33px;
  border-radius: 5px;
}
.share-others li:first-child .share-img[data-v-24342219] {
  background: #fff url(../../assets/img/share.3bcb43b.png) no-repeat 0px 0px;
}
.share-others li:last-child .share-img[data-v-24342219] {
  background: #fff url(../../assets/img/share.3bcb43b.png) no-repeat 0px -80px;
}

.footer-container[data-v-01cd5c54] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  font-size: 15px;
  color: #fff;
}
.footer-container .nextTip[data-v-01cd5c54] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    color: #fff;
    background: #00A758;
    border-radius: 40px 40px 40px 40px;
    opacity: 1;
    -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
    opacity: 1;
    text-align: center;
    line-height: 40px;
    margin-top: 4px;
    margin-right: 16px;
    margin-left: 45px;
}
.footer-container .nextTip.canNext[data-v-01cd5c54] {
      background: #666;
      height: 40px;
      border-radius: 40px 40px 40px 40px;
      opacity: 1;
      text-align: center;
      line-height: 40px;
      margin-top: 4px;
      margin-right: 16px;
      margin-left: 45px;
}
.footer-container .left-btn[data-v-01cd5c54] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #5cae78;
    border: 1px solid #fff;
    background: #fff;
}

.pop-up-panel[data-v-e5fec9cc] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}
.pop-up-box[data-v-e5fec9cc] {
  width: 100%;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  bottom: 0;
  position: fixed;
  height: 362px;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  opacity: 1;
}
.cancle[data-v-e5fec9cc] {
  text-align: left;
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #999999;
  line-height: 20px;
  margin-top: 14px;
  margin-left: 16px;
  display: inline-block;
  float: left;
}
.pop-title[data-v-e5fec9cc] {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  opacity: 1;
  border: 1px solid #EEEEEE;
}
.pop-up-title[data-v-e5fec9cc] {
  font-size: 17px;
  font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: inline-block;
}
.heng[data-v-e5fec9cc] {
  width: 136px;
  height: 4px;
  background: #00A758;
  border-radius: 0px 0px 0px 0px;
  opacity: 0.4;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  margin-top: 33px;
  left: 0px;
  right: 0px;
}
.confirm[data-v-e5fec9cc] {
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #00A758;
  line-height: 20px;
  margin-top: 14px;
  margin-right: 16px;
  float: right;
}
.midldle[data-v-e5fec9cc] {
  height: 280px;
  border-radius: 0px;
  opacity: 1;
  margin-left: 16px;
  margin-right: 16px;
  overflow: scroll;
}
.middle-top[data-v-e5fec9cc] {
  border-bottom: 1px solid rgba(51, 51, 51, 0.06);
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.middle-top .middle-box-left[data-v-e5fec9cc] {
    padding-right: 10px;
}
.middle-top .middle-box-left img[data-v-e5fec9cc] {
      width: 20px;
      height: 20px;
}
.middle-top .middle-box-center[data-v-e5fec9cc] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.middle-top .middle-box-center .middle-box-top[data-v-e5fec9cc] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-bottom: 4px;
}
.middle-top .middle-box-center .middle-box-top .namespan[data-v-e5fec9cc] {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        padding-right: 4px;
        color: #686868;
}
.middle-top .middle-box-center .middle-box-top .current-name[data-v-e5fec9cc] {
        color: #333;
        font-weight: 500;
}
.middle-top .middle-box-center .middle-box-bottom[data-v-e5fec9cc] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      padding-bottom: 4px;
}
.middle-top .middle-box-center .middle-box-bottom .idcard[data-v-e5fec9cc] {
        height: 20px;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #999999;
        line-height: 20px;
        padding-bottom: 4px;
}
.middle-top .middle-box-center .middle-box-bottom .complete[data-v-e5fec9cc] {
        font-size: 12px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #0000C1;
}
.middle-top .middle-box-right[data-v-e5fec9cc] {
    width: 20px;
    height: 20px;
}
.margin-wa[data-v-e5fec9cc] {
  width: 34px;
  height: 16px;
  border-radius: 1px 1px 1px 1px;
  border: 1px solid #EDEDED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 11px;
  line-height: 16px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  margin: 2px 4px 2px 0;
}
.ishos[data-v-e5fec9cc] {
  width: 45px;
  height: 16px;
  border-radius: 8px 8px 8px 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 11px;
  margin: 2px 0;
}
.tips[data-v-e5fec9cc] {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  text-align: left;
  padding-bottom: 6px;
}
.toedit[data-v-e5fec9cc] {
  position: fixed;
  right: 16px;
}
.toedit img[data-v-e5fec9cc] {
    width: 20px;
    height: 20px;
}

.pop-up-panel[data-v-655920c1] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}
.pop-up-box1[data-v-655920c1] {
  width: 100%;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  bottom: 0;
  position: fixed;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  opacity: 1;
}
.cancle[data-v-655920c1] {
  text-align: left;
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #999999;
  line-height: 20px;
  margin-top: 14px;
  margin-left: 16px;
  display: inline-block;
  float: left;
}
.pop-title[data-v-655920c1] {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  opacity: 1;
  border: 1px solid #EEEEEE;
}
.pop-up-title[data-v-655920c1] {
  font-size: 17px;
  font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: inline-block;
}
.heng[data-v-655920c1] {
  width: 105px;
  height: 4px;
  background: #00A758;
  border-radius: 0px 0px 0px 0px;
  opacity: 0.4;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  left: 0px;
  right: 0px;
}
.confirm[data-v-655920c1] {
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #00A758;
  line-height: 20px;
  margin-top: 14px;
  margin-right: 16px;
  float: right;
}
.cont-midldle[data-v-655920c1] {
  height: 100%;
  min-height: 544px;
}
.info-container .radio-box[data-v-655920c1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 100px;
  padding-top: 10px;
}
.info-container .radio-box .radio-btn[data-v-655920c1] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    background-color: #00A758;
    position: relative;
    margin-right: 2px;
}
.info-container .radio-box .radio-btn[data-v-655920c1]:after {
      content: "";
      position: absolute;
      left: 2px;
      top: 3px;
      width: 7px;
      height: 3px;
      border: 2px solid #fff;
      border-radius: 1px;
      border-top: none;
      border-right: none;
      background: transparent;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
}
.info-container .radio-box .radio-not-btn[data-v-655920c1] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    margin-right: 2px;
}
.info-container .main[data-v-655920c1] {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.info-container .form .form-group[data-v-655920c1] {
  margin-top: 15px;
  margin-left: 0;
  margin-right: 0;
}
.info-container .form .ols-form-item[data-v-655920c1] {
  margin-left: 16px;
  margin-right: 16px;
}
.info-container .form .ols-form-item[data-v-655920c1] .ols-form-item-content {
    overflow: hidden;
}
.info-container .form .ols-form-item[data-v-655920c1] .ols-form-item-content .ols-viewer {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.info-container .form .phone-square[data-v-655920c1] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.info-container .form .phone-square[data-v-655920c1] .ols-form-item-content .ols-input {
    width: 40%;
}
.info-container .choose-address[data-v-655920c1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.info-container .choose-address img[data-v-655920c1] {
    width: 20px;
    height: 20px;
}
.info-container .choose-address span[data-v-655920c1] {
    margin-left: 4px;
    height: 20px;
    font-size: 12px;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
}
.info-container[data-v-655920c1] .insured-address .ols-form-item-content {
  position: relative;
}
.info-container[data-v-655920c1] .insured-address .ols-form-item-content .ols-form-item-content .address-text {
    position: absolute;
    left: 0;
    z-index: 11;
    background-color: #fff;
    color: #666;
}
[data-v-655920c1].ols-form-list .ols-form-item .ols-form-item-inner {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
[data-v-655920c1].ols-form-list .form-checker-box .ols-form-item-inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
[data-v-655920c1].ols-form-list .form-checker-box .ols-form-item-inner .ols-form-item-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
[data-v-655920c1].ols-form-list .form-checker-box .ols-form-item-inner .ols-form-item-label .imgsy {
      margin-left: 4px;
}
[data-v-655920c1].ols-form-list .form-checker-box .ols-form-item-inner .ols-checker {
    height: 100%;
}
.ols-checker-options[data-v-655920c1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}
.ols-checker-options[data-v-655920c1]:after {
    content: '';
    display: table;
    clear: both;
}
.ols-checker-option[data-v-655920c1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.ols-checker-option .img[data-v-655920c1] {
    width: 20px;
    height: 20px;
}
.ols-checker-option[data-v-655920c1]:last-of-type {
    margin-right: 0;
}
.relation-box[data-v-655920c1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  margin-left: 9px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.relation-box .relation[data-v-655920c1] {
    line-height: 20px;
    padding: 4px 12px;
    border-radius: 30px;
    opacity: 1;
    font-size: 14px;
    font-family: "Source Han Sans CN-Regular", "Source Han Sans CN";
    color: #333333;
    border: 1px solid #B9B9B9;
}
.relation-box .current-relation[data-v-655920c1] {
    color: #00A758;
    border: 1px solid #00A758;
}
.relation-bor[data-v-655920c1] {
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #B9B9B9;
  line-height: 20px;
  position: absolute;
  left: 0;
  bottom: 5px;
}
[data-v-655920c1].ols-form-list .ols-formnew-item .ols-formnew-item-label {
  text-align: left;
  -ms-flex-preferred-size: 76px;
  width: 60px;
  white-space: normal;
  color: #666;
  height: 39px;
}

.pop-up-panel[data-v-457796a2] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.pop-up-panel .pop-up-box[data-v-457796a2] {
    width: 84%;
    background: #FFFFFF;
    opacity: 1;
    border-radius: 12px 12px 12px 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.pop-up-panel .pop-up-box .title[data-v-457796a2] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: -23px;
}
.pop-up-panel .pop-up-box .title .img[data-v-457796a2] {
        width: 154px;
        height: 52px;
}
.pop-up-panel .pop-up-box .title .tips[data-v-457796a2] {
        font-size: 17px;
        font-family: Source Han Sans CN-Bold, Source Han Sans CN;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 24px;
        letter-spacing: 4px;
        position: absolute;
        margin-top: 20px;
}
.pop-up-panel .pop-up-box .middle-img[data-v-457796a2] {
      margin-top: 23px;
      text-align: center;
}
.pop-up-panel .pop-up-box .middle-img .img-midd[data-v-457796a2] {
        width: 283px;
        height: 120px;
}
.pop-up-panel .pop-up-box .tips[data-v-457796a2] {
      height: 60px;
      font-size: 14px;
      font-weight: 400;
      color: #333333;
      line-height: 20px;
      margin: 12px 16px 0 16px;
      text-align: left;
}
.pop-up-panel .pop-up-box .button[data-v-457796a2] {
      height: 40px;
      background: white;
      border-radius: 50px;
      opacity: 1;
      border: 1px solid #00a758;
      margin: 24px 26px 16px 26px;
      line-height: 40px;
      font-size: 16px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #00A758;
      letter-spacing: 2px;
      text-align: center;
}

.ocr-wapper[data-v-32861ee2] {
  text-align: left;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 99;
  opacity: 1;
}
.ocr-wapper .ocr-mask[data-v-32861ee2] {
    z-index: 10 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.ocr-wapper .ocr-container[data-v-32861ee2] {
    padding: 16px;
    width: 84%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 50;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 14px;
    background: #FFFFFF;
    border-radius: 12px 12px 12px 12px;
    opacity: 1;
}
.ocr-wapper .ocr-container .section[data-v-32861ee2] {
      overflow-y: auto;
      max-height: 70vh;
      -webkit-overflow-scrolling: touch;
}
.ocr-wapper .ocr-container .section[data-v-32861ee2] .ols-form-list .ols-form-item {
        margin-left: 0;
        padding: 12px 0;
}
.ocr-wapper .ocr-container .ocr-idcard[data-v-32861ee2] {
      margin-top: 24px;
      margin-left: 8px;
      margin-bottom: 24px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-32861ee2],
      .ocr-wapper .ocr-container .ocr-idcard .back[data-v-32861ee2] {
        position: relative;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        overflow: hidden;
        background: #f6fff4;
        width: 126px;
        height: 117px;
        border-radius: 6px 6px 6px 6px;
        opacity: 1;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-bottom[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-bottom[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-bottom[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-bottom[data-v-32861ee2] {
          text-align: center;
          height: 29px;
          background: #00A758;
          opacity: 1;
          font-size: 12px;
          font-family: Source Han Sans CN-Medium, Source Han Sans CN;
          font-weight: 500;
          color: #FFFFFF;
          line-height: 29px;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-show[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-show[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-show[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-show[data-v-32861ee2] {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          width: 105%;
          height: 106%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .uplod-img[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .back .uplod-img[data-v-32861ee2] {
          position: absolute;
          right: 0;
          top: 0;
          width: 24px;
          background: #EC6453;
          z-index: 600;
}
.ocr-wapper .ocr-container .ocr-idcard .front .prev-img[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .back .prev-img[data-v-32861ee2] {
          position: absolute;
          right: 0;
          top: 35%;
          width: 15px;
          z-index: 2222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-content[data-v-32861ee2] {
          background: url(../../assets/img/idcard_avatar.18c17ad.png);
          position: relative;
          margin: 12px;
          height: 64px;
          background-size: 100% 100%;
          z-index: 222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .back-content[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-content[data-v-32861ee2] {
          position: relative;
          margin: 12px;
          height: 64px;
          background: url(../../assets/img/idcard_national.ec70ce0.png);
          background-size: 100% 100%;
          z-index: 222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .back-content .photo-img[data-v-32861ee2],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .photo-img[data-v-32861ee2] {
            width: 43px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
}
.ocr-wapper .ocr-container .ocr-idcard .front .passport-content[data-v-32861ee2],
        .ocr-wapper .ocr-container .ocr-idcard .back .passport-content[data-v-32861ee2] {
          height: 150px;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-32861ee2] {
        margin-right: 23px;
}
.ocr-wapper .ocr-container .notice .notice-title[data-v-32861ee2] {
      margin-bottom: 8px;
      color: #5cae78;
      font-size: 13px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #0000C1;
}
.ocr-wapper .ocr-container .notice ul[data-v-32861ee2] {
      margin-bottom: 24px;
}
.ocr-wapper .ocr-container .notice ul li[data-v-32861ee2] {
        margin-bottom: 5px;
        color: #b6b9c1;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #666666;
}
.ocr-wapper .ocr-container .notice ul li span[data-v-32861ee2] {
          color: #0000C1;
}
.ocr-wapper .ocr-container .footer[data-v-32861ee2] {
      position: relative;
      left: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      width: 100%;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ocr-wapper .ocr-container .footer .confirm[data-v-32861ee2] {
        -ms-flex: 1;
        -webkit-box-flex: 1;
                flex: 1;
        line-height: 40px;
        text-align: center;
        height: 40px;
        background: #00A758;
        border-radius: 50px 50px 50px 50px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        margin-left: 16px;
        margin-right: 16px;
}
.ocr-wapper .ocr-container .footer .cancle[data-v-32861ee2] {
        -ms-flex: 1;
        -webkit-box-flex: 1;
                flex: 1;
        line-height: 40px;
        text-align: center;
        color: #fff;
        height: 40px;
        background: #FFFFFF;
        border-radius: 50px 50px 50px 50px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #666666;
        margin-left: 16px;
        margin-right: 16px;
        margin-top: 12px;
}
.ocr-wapper .ocr-demo[data-v-32861ee2] {
    width: 84%;
    height: 394px;
    position: fixed;
    top: 55%;
    left: 50%;
    z-index: 12;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px;
    border-radius: 5px;
    background: #fff;
    z-index: 100 !important;
}
.ocr-wapper .ocr-demo .ocr-demo-title[data-v-32861ee2] {
      text-align: center;
      height: 20px;
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #000000;
      line-height: 20px;
      -webkit-background-clip: text;
      padding-top: 16px;
      padding-bottom: 24px;
}
.ocr-wapper .ocr-demo .ocr-demo-title-info[data-v-32861ee2] {
      margin: 0.64rem 0.427rem 0.64rem 0.427rem;
}
.ocr-wapper .ocr-demo .ocr-demo-title-info .imgicon-left[data-v-32861ee2] {
        width: 100%;
        height: 254px;
}
.ocr-wapper .ocr-demo .ocr-demo-content[data-v-32861ee2] {
      margin: 24px 16px 24px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content[data-v-32861ee2] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content .right-img[data-v-32861ee2] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          width: 142px;
          height: 98px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul[data-v-32861ee2] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: right;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-32861ee2] {
            position: relative;
            margin-bottom: 10px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-32861ee2]:last-child {
              margin: 0;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-32861ee2]::before {
              content: "";
              position: absolute;
              top: 15%;
              left: 32px;
              width: 14px;
              height: 14px;
              background: url(/assets/img/icon-radio.c5723b7.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content[data-v-32861ee2] {
        margin-top: 24px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul[data-v-32861ee2] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li[data-v-32861ee2] {
            overflow: hidden;
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
            -ms-flex-direction: column;
                flex-direction: column;
            -webkit-box-flex: 0;
                -ms-flex: none;
                    flex: none;
            -ms-flex-preferred-size: 58px;
                flex-basis: 58px;
            border-radius: 5px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li img[data-v-32861ee2] {
              width: 68px;
              height: 52px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li .icon-error[data-v-32861ee2] {
              position: absolute;
              left: 50%;
              bottom: 35px;
              -webkit-transform: translate(-50%, -50%);
                      transform: translate(-50%, -50%);
              width: 14px;
              height: 14px;
              background: url(../../assets/img/icon-error.50ba2e9.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li p[data-v-32861ee2] {
              width: 100%;
              height: 20px;
              line-height: 20px;
              text-align: center;
              margin-top: 8px;
              color: #666666;
              font-size: 13px;
              font-family: Source Han Sans CN-Regular, Source Han Sans CN;
              font-weight: 400;
}
.ocr-wapper .ocr-demo .ocr-demo-footer[data-v-32861ee2] {
      position: absolute;
      bottom: 0;
      height: 45px;
      line-height: 45px;
      font-size: 15px;
      text-align: center;
      color: #fff;
      background: #00A758;
      width: 283px;
      height: 40px;
      background: #00A758;
      border-radius: 50px 50px 50px 50px;
      opacity: 1;
      margin-left: 5%;
      margin-right: 5.1%;
      margin-bottom: 16px;
}
.ocr-wapper .prev-mask[data-v-32861ee2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    z-index: 100;
}
.ocr-wapper .prev-mask img[data-v-32861ee2] {
      width: 100%;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
}
[data-v-32861ee2].ols-viewer {
  height: 20px;
  line-height: 20px;
  color: #666;
  text-align: left;
}
[data-v-32861ee2].ols-cell-group {
  margin-bottom: 24px;
  background: #fff;
  background: #FFFFFF;
  border-radius: 6px 6px 6px 6px;
  margin-left: 16px;
  margin-right: 16px;
  padding-bottom: 0;
}
.title-color[data-v-32861ee2] {
  color: #00A758;
}

.bordertotal[data-v-1f40bd66] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 59;
}
.bordertotal .view[data-v-1f40bd66] {
    background-color: #fff;
    margin-top: 40px;
    overflow: auto;
    height: 100%;
    border-radius: 12px 12px 0px 0px;
    opacity: 1;
}
.bordertotal .view .health-notice[data-v-1f40bd66] {
      width: 100%;
      margin: 0 auto;
      border-radius: 4px;
      padding: 28px 12px 0 16px;
}
.bordertotal .view .health-notice .health-noticetotal[data-v-1f40bd66] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .view .health-notice h2[data-v-1f40bd66] {
        padding: 0;
}
.bordertotal .view .health-notice .notice-text[data-v-1f40bd66] {
        border: 1px solid #B9B9B9;
        border-radius: 6px;
        padding: 16px 10px;
}
.bordertotal .view .health-notice .notice-text .text-title[data-v-1f40bd66] {
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #333333;
          line-height: 20px;
}
.bordertotal .view .health-notice .notice-text .text-description[data-v-1f40bd66] {
          padding: 6px 0px;
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #333333;
          line-height: 20px;
}
.bordertotal .view .health-notice .notice-text .terms-text[data-v-1f40bd66] {
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #333333;
          line-height: 20px;
}
.bordertotal .view .health-notice .notice-text .terms-text p[data-v-1f40bd66] {
            padding-bottom: 6px;
}
.bordertotal .view .grrenborder[data-v-1f40bd66] {
      display: inline-block;
      margin-bottom: 16px;
}
.bordertotal .view .grrenborder .green[data-v-1f40bd66] {
        width: 100%;
        height: 4px;
        background: #00a758;
        border-radius: 0px;
        opacity: 0.4;
        position: relative;
        left: 0;
        right: 0;
        margin-top: -6px;
}
.bordertotal .view .imgsrc[data-v-1f40bd66] {
      width: 24px;
      height: 24px;
}
.bordertotal .view h2[data-v-1f40bd66] {
      width: 84px;
      height: 20px;
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      /* font-weight: 500; */
      color: #000000;
      line-height: 20px;
}
.bordertotal .view .detail[data-v-1f40bd66] {
      position: relative;
      margin: 0 16px 15px;
      font-size: 14px;
      line-height: 20px;
}
.bordertotal .view .detail .muchposi[data-v-1f40bd66] {
        width: 69.98%;
        display: block;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #666666;
}
.bordertotal .view .detail .answer-box[data-v-1f40bd66] {
        width: 60px;
        position: absolute;
        top: 0;
        right: 5%;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .view .detail .answer-box .spanfont[data-v-1f40bd66] {
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #333333;
          line-height: 20px;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.bordertotal .view .sub-wrap[data-v-1f40bd66] {
      margin-bottom: 250px !important;
      -webkit-overflow-scrolling: touch;
}
.bordertotal .view .sub-wrap .clause[data-v-1f40bd66] .qes {
        position: relative;
        padding-bottom: 12px;
        width: 70%;
}
.bordertotal .view .sub-wrap .clause[data-v-1f40bd66] .qes .answer-box {
          width: 69px;
          position: absolute;
          top: 3px;
          right: -38%;
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1;
          display: -ms-flexbox;
          display: -webkit-box;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
}
.bordertotal .view .sub-wrap .clause[data-v-1f40bd66] .qes .answer-box .check-box {
            position: relative;
            width: 20px;
            height: 20px;
            border-radius: 2px 2px 2px 2px;
            opacity: 1;
            border: 1px solid #B9B9B9;
}
.bordertotal .view .sub-wrap .clause[data-v-1f40bd66] .qes .answer-box .check-box.check {
              border: 1px solid #00A758;
}
.bordertotal .view .sub-wrap .clause[data-v-1f40bd66] .qes .answer-box .check-box.check::before {
                content: "\2713";
                position: absolute;
                width: 100%;
                top: -1px;
                text-align: center;
                background: #00A758;
                color: #ffffff;
                border-radius: 2px;
}
.bordertotal .view .sub-wrap .clause img[data-v-1f40bd66] {
        width: 100%;
}
.bordertotal .view .sub-wrap .clause p[data-v-1f40bd66] {
        margin-bottom: 6px;
        color: #333;
        font-size: 12px;
}
.bordertotal .view .sub-wrap .bottom-height[data-v-1f40bd66] {
        width: 100%;
        height: 100px;
}
.bordertotal .view .footer[data-v-1f40bd66] {
      position: fixed;
      left: 0px;
      right: 0px;
      bottom: 0;
      background-color: #fff;
      height: 78px;
      -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
              box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
      border-radius: 12px 12px 0px 0px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.bordertotal .view .footer .all-not[data-v-1f40bd66] {
        height: 20px;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #00A758;
        line-height: 20px;
        padding-top: 12px;
        padding-left: 16px;
}
.bordertotal .view .footer .complete[data-v-1f40bd66] {
        width: 160px;
        height: 40px;
        background: #00A758;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 40px;
        margin-top: 4px;
        margin-right: 16px;
        text-align: center;
}
.bordertotal .view .footer .completes[data-v-1f40bd66] {
        width: 160px;
        height: 40px;
        background: #666;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 40px;
        margin-top: 4px;
        margin-right: 16px;
        text-align: center;
}
.bordertotal .view .footer i[data-v-1f40bd66] {
        vertical-align: middle;
        display: inline-block;
        width: 18px;
        height: 18px;
}
.bordertotal .view .footer[data-v-1f40bd66] .left-btn {
        border: none;
        border-top: 1px solid #5cae78;
}
.bordertotal .view .footer .btn-left[data-v-1f40bd66] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        line-height: 50px;
        text-align: center;
        color: #5cae78;
        background-color: #fff;
}
.bordertotal .view .footer .btn-left i[data-v-1f40bd66] {
          background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
          background-size: 18px 18px;
}
.bordertotal .view .footer .btn-next[data-v-1f40bd66] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        line-height: 50px;
        text-align: center;
        color: #fff;
}
.bordertotal .view .footer .btn-next i[data-v-1f40bd66] {
          background: url(../../assets/img/sure.e01d36c.png) no-repeat;
          background-size: 18px 18px;
}
.bordertotal .readAndAgree[data-v-1f40bd66] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.bordertotal .readAndAgree .not-agree[data-v-1f40bd66] {
      width: 20px;
      height: 20px;
      border-radius: 2px 2px 2px 2px;
      border: 1px solid #B9B9B9;
}
.bordertotal .readAndAgree .agree[data-v-1f40bd66] {
      position: relative;
      color: #B9B9B9;
      width: 20px;
      height: 20px;
}
.bordertotal .readAndAgree .agree[data-v-1f40bd66]::before {
        content: "\2713";
        position: absolute;
        top: 0;
        font-size: 14px;
        background: #00A758;
        color: #ffffff;
        text-align: center;
        width: 20px;
        height: 20px;
        background: #00A758;
        border-radius: 2px 2px 2px 2px;
}
.bordertotal .readAndAgree .alreadyread[data-v-1f40bd66] {
      font-size: 13px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #00A758;
      padding-left: 5px;
}
[data-v-1f40bd66].material-model-container .text-content {
  padding: 0 16px 10px;
  position: relative;
  font-size: 13px !important;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN !important;
  font-weight: 400 !important;
  color: #333333 !important;
  line-height: 20px !important;
}

.material-model-container[data-v-38398d8a] {
  width: 100%;
}
.material-model-container[data-v-38398d8a] p {
    display: block;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
}
.material-model-container h1[data-v-38398d8a],
  .material-model-container h2[data-v-38398d8a],
  .material-model-container h3[data-v-38398d8a],
  .material-model-container h4[data-v-38398d8a],
  .material-model-container h5[data-v-38398d8a],
  .material-model-container h6[data-v-38398d8a] {
    display: block;
    -webkit-margin-before: 0.67em;
            margin-block-start: 0.67em;
    -webkit-margin-after: 0.67em;
            margin-block-end: 0.67em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    font-weight: bold;
}
.material-model-container[data-v-38398d8a] ul {
    margin: 0;
    padding-left: 20px;
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
}
.material-model-container[data-v-38398d8a] ol {
    margin: 0;
    padding: 0 0 20px 15px;
}
.material-model-container[data-v-38398d8a] li {
    list-style: unset;
    display: list-item;
    text-align: -webkit-match-parent;
}
.material-model-container .text-content[data-v-38398d8a] {
    padding: 0 16px 10px;
    font-size: 14px;
    position: relative;
}
.material-model-container .text-content .text-wrap[data-v-38398d8a] {
      max-height: 320px;
      margin-bottom: 10px;
      overflow: hidden;
      -webkit-transition: all 0.5s cubic-bezier(0, 1, 0, 1) -0.1s;
      transition: all 0.5s cubic-bezier(0, 1, 0, 1) -0.1s;
}
.material-model-container .text-content .text-wrap.isShow[data-v-38398d8a] {
        max-height: 999rem;
        -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
                transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
        -webkit-transition-delay: 0s;
                transition-delay: 0s;
}
.material-model-container .text-content .text-wrap .detail[data-v-38398d8a] {
        padding-bottom: 5px;
}
.material-model-container .text-content .check-more[data-v-38398d8a] {
      font-size: 13px;
      color: #00A758;
      line-height: 20px;
      padding: 6px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 16px;
}
.material-model-container .text-content .check-more img[data-v-38398d8a] {
        width: 16px;
        height: 16px;
        margin-left: 3px;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
}
.material-model-container .text-content .check-more img.toggle[data-v-38398d8a] {
          -webkit-transform: rotate(-180deg);
                  transform: rotate(-180deg);
}
.material-model-container .text-content .grey-line[data-v-38398d8a] {
      width: 100%;
      height: 10px;
      background-color: #F3F4F5;
      position: absolute;
      left: 0;
      bottom: 0;
}
.material-model-container .pic-content[data-v-38398d8a] {
    position: relative;
}
.material-model-container .pic-content .grey-line[data-v-38398d8a] {
      width: 100%;
      height: 10px;
      background-color: #F3F4F5;
      position: absolute;
      left: 0;
      bottom: 0;
}
.material-model-container[data-v-38398d8a] img {
    width: 100%;
    vertical-align: middle;
}
.material-model-container[data-v-38398d8a] a {
    color: #079b4d;
    text-decoration: underline;
}
[data-v-38398d8a].material-model-container ol {
  margin: 0;
  padding: 0;
}

.pop-up-panel[data-v-6b9e6710] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.pop-up-panel .pop-up-box[data-v-6b9e6710] {
    width: 84%;
    text-align: center;
    background: #FFFFFF;
    opacity: 1;
    top: 35%;
    left: 8%;
    background-color: #fff;
    border-radius: 12px 12px 12px 12px;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.pop-up-panel .pop-up-box .title[data-v-6b9e6710] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: -23px;
}
.pop-up-panel .pop-up-box .title .img[data-v-6b9e6710] {
        width: 154px;
        height: 52px;
}
.pop-up-panel .pop-up-box .title .tips[data-v-6b9e6710] {
        font-size: 17px;
        font-family: Source Han Sans CN-Bold, Source Han Sans CN;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 24px;
        letter-spacing: 4px;
        position: absolute;
        margin-top: 22px;
}
.pop-up-panel .pop-up-box .middle-img[data-v-6b9e6710] {
      margin-top: 23px;
}
.pop-up-panel .pop-up-box .middle-img .img-midd[data-v-6b9e6710] {
        width: 283px;
        height: 120px;
}
.pop-up-panel .pop-up-box .tips[data-v-6b9e6710] {
      font-size: 14px;
      font-weight: 400;
      color: #333333;
      line-height: 20px;
      margin: 12px 16px 0 16px;
      text-align: left;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.pop-up-panel .pop-up-box .button[data-v-6b9e6710] {
      height: 40px;
      background: white;
      border-radius: 50px;
      opacity: 1;
      border: 1px solid #00a758;
      margin: 24px 26px 16px 26px;
      line-height: 40px;
      font-size: 16px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #00A758;
      letter-spacing: 2px;
}

@charset "UTF-8";
.bordertotal[data-v-4d27dbb2] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 9999;
}
.bordertotal .view[data-v-4d27dbb2] {
    background-color: #fff;
    height: 592px;
    /* top: 20%; */
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
}
.bordertotal .view h2[data-v-4d27dbb2] {
      margin-bottom: 10px;
      padding: 0 12px;
      font-size: 17px;
      font-weight: bold;
}
.bordertotal .view .detail[data-v-4d27dbb2] {
      position: relative;
      margin: 0 12px 15px;
      font-size: 14px;
}
.bordertotal .view .detail .answer-box[data-v-4d27dbb2] {
        width: 60px;
        position: absolute;
        top: 0;
        right: 0;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .view .children-wrap[data-v-4d27dbb2] {
      padding-top: 28px;
      padding-bottom: 65px;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
}
.bordertotal .view .children-title[data-v-4d27dbb2] {
      margin-bottom: 12px;
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #000000;
      line-height: 20px;
      display: inline-block;
      height: 20px;
}
.bordertotal .view .children-title .child-info[data-v-4d27dbb2] {
        padding-left: 16px;
        font-weight: bold;
}
.bordertotal .view .children-title .font-green[data-v-4d27dbb2] {
        height: 4px;
        background: #00A758;
        border-radius: 0px 0px 0px 0px;
        opacity: 0.4;
        margin-left: 16px;
        margin-top: -5px;
}
.bordertotal .view .sub-wrap .clause[data-v-4d27dbb2] .qes {
      position: relative;
}
.bordertotal .view .sub-wrap .clause[data-v-4d27dbb2] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .view .sub-wrap .clause[data-v-4d27dbb2] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.bordertotal .view .sub-wrap .clause[data-v-4d27dbb2] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.bordertotal .view .sub-wrap .clause img[data-v-4d27dbb2] {
      width: 100%;
}
.bordertotal .view .sub-wrap .clause p[data-v-4d27dbb2] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.bordertotal .view .footer[data-v-4d27dbb2] {
      position: fixed;
      left: 0px;
      right: 0px;
      bottom: 0;
      background-color: #fff;
      height: 78px;
      -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
              box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
      border-radius: 12px 12px 0px 0px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
      padding-top: 4px;
      padding-left: 16px;
      padding-right: 16px;
}
.bordertotal .view .footer .all-not[data-v-4d27dbb2] {
        padding-right: 30px;
        font-size: 15px;
        color: #5cae78;
        text-decoration: underline;
        height: 40px;
        line-height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        background-color: #fff;
}
.bordertotal .view .footer i[data-v-4d27dbb2] {
        vertical-align: middle;
        display: inline-block;
        width: 18px;
        height: 18px;
}
.bordertotal .view .footer[data-v-4d27dbb2] .left-btn {
        border: none;
        border-top: 1px solid #5cae78;
}
.bordertotal .view .footer .btn-left[data-v-4d27dbb2] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        line-height: 50px;
        text-align: center;
        color: #5cae78;
        background-color: #fff;
        width: 160px;
        height: 40px;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        height: 20px;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #666666;
        line-height: 40px;
}
.bordertotal .view .footer .btn-left i[data-v-4d27dbb2] {
          background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
          background-size: 18px 18px;
}
.bordertotal .view .footer .btn-next[data-v-4d27dbb2] {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: center;
        width: 160px;
        height: 40px;
        background: #00A758;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 40px;
}
.bordertotal .view .footer .btn-next i[data-v-4d27dbb2] {
          background: url(../../assets/img/sure.e01d36c.png) no-repeat;
          background-size: 18px 18px;
}
[data-v-4d27dbb2].material-model-container .text-content {
  font-size: 14px;
  padding-left: 0.427rem !important;
  padding-right: 0.427rem !important;
}
[data-v-4d27dbb2]h1, h2[data-v-4d27dbb2], h3[data-v-4d27dbb2], h4[data-v-4d27dbb2], h5[data-v-4d27dbb2], h6[data-v-4d27dbb2] {
  font-weight: bold;
  height: 40px;
  font-size: 13px;
  font-family: "Source Han Sans CN-Medium, Source Han Sans CN";
  color: #333333;
  line-height: 20px;
}
[data-v-4d27dbb2].material-model-container p {
  display: block;
  text-indent: 20px;
  font-size: 13px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.bordertotal[data-v-bde4061a] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 29;
}
.bordertotal .wrapper[data-v-bde4061a] {
    background-color: #fff;
    margin-top: 40px;
    overflow: auto;
    height: 100%;
    border-radius: 12px 12px 0px 0px;
    opacity: 1;
}
.bordertotal .wrapper .main[data-v-bde4061a] {
      padding-bottom: 300px;
}
.bordertotal .wrapper .health-notice[data-v-bde4061a] {
      width: 91.47%;
      margin: 0 auto;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin-bottom: 12px;
      /* padding: 10px; */
      padding-top: 16px;
      padding-left: 10px;
      padding-right: 10px;
}
.bordertotal .wrapper .health-notice h2[data-v-bde4061a] {
        padding: 0;
}
.bordertotal .wrapper .health-notice .notice-text[data-v-bde4061a] {
        height: 232px;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #333333;
        line-height: 20px;
}
.bordertotal .wrapper .health-notice .notice-text .text-description[data-v-bde4061a] {
          padding-bottom: 9px;
}
.bordertotal .wrapper .health-notice .notice-text .terms-text p[data-v-bde4061a] {
          padding-bottom: 9px;
}
.bordertotal .wrapper .readAndAgree[data-v-bde4061a] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 6px;
}
.bordertotal .wrapper .readAndAgree .not-agree[data-v-bde4061a] {
        left: 0;
        top: 0;
        z-index: 2;
        position: relative;
        width: 20px;
        height: 20px;
        border-radius: 2px 2px 2px 2px;
        opacity: 1;
        border: 1px solid #B9B9B9;
        margin-top: 10px;
        margin-right: 5px;
}
.bordertotal .wrapper .readAndAgree .agree[data-v-bde4061a] {
        position: relative;
        left: 0;
        top: 0;
        color: #B9B9B9;
        width: 24px;
        z-index: 1;
        margin-top: 10px;
        margin-right: 5px;
}
.bordertotal .wrapper .readAndAgree .agree[data-v-bde4061a]::before {
          content: "\2713";
          position: absolute;
          font-size: 16px;
          text-align: center;
          background: #00A758;
          color: #ffffff;
          border: none;
          width: 20px;
          height: 20px;
          background: #00A758;
          border-radius: 2px 2px 2px 2px;
          opacity: 1;
}
.bordertotal .wrapper .readAndAgree .alreadyread[data-v-bde4061a] {
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #00A758;
        line-height: 40px;
}
.bordertotal .wrapper .content[data-v-bde4061a] {
      width: 91.47%;
      margin: 0 auto;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
}
.bordertotal .wrapper .content .detail[data-v-bde4061a] {
        height: 20px;
        font-size: 13px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #000000;
        line-height: 20px;
        margin-bottom: 8px;
}
.bordertotal .wrapper .content .info-title[data-v-bde4061a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: #000;
        line-height: 44px;
        font-size: 14px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        border-bottom: 1px solid rgba(51, 51, 51, 0.06);
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .wrapper .content .info-title .info-red[data-v-bde4061a] {
          color: #E91A33;
}
.bordertotal .wrapper .content .info-title .title[data-v-bde4061a] {
          font-size: 14px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #666666;
}
.bordertotal .wrapper .content .info-detail[data-v-bde4061a] {
        color: #E91A33;
        font-size: 12px;
        padding: 5px 0 0 38px;
        height: 20px;
}
.bordertotal .wrapper .content .choose[data-v-bde4061a] {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding-bottom: 12px;
}
.bordertotal .wrapper .content .choose .choose-item[data-v-bde4061a] {
          width: 50%;
          font-size: 14px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
          -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
          padding-right: 5%;
}
.bordertotal .wrapper .content .choose .choose-item .checkbox-text[data-v-bde4061a] {
            height: 40px;
            /* height: 20px; */
            font-size: 13px;
            font-family: Source Han Sans CN-Regular, Source Han Sans CN;
            font-weight: 400;
            color: #333333;
            line-height: 40px;
}
.bordertotal .wrapper .content .choose .choose-item .not-agree[data-v-bde4061a] {
            left: 0;
            top: 0;
            z-index: 2;
            position: relative;
            width: 20px;
            height: 20px;
            border-radius: 2px 2px 2px 2px;
            opacity: 1;
            border: 1px solid #B9B9B9;
}
.bordertotal .wrapper .content .choose .choose-item .agree[data-v-bde4061a] {
            left: 4px;
            top: 0;
            z-index: 2;
            position: relative;
            width: 20px;
            height: 20px;
            width: 24px;
            z-index: 1;
}
.bordertotal .wrapper .content .choose .choose-item .agree[data-v-bde4061a]::before {
              content: "\2713";
              position: absolute;
              font-size: 16px;
              text-align: center;
              background: #00A758;
              color: #ffffff;
              border: none;
              width: 20px;
              height: 20px;
              background: #00A758;
              border-radius: 2px 2px 2px 2px;
              opacity: 1;
}
.bordertotal .wrapper .content .choose-title[data-v-bde4061a] {
        position: relative;
        font-size: 14px;
        height: 40px;
        font-size: 13px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #000000;
        line-height: 20px;
}
.bordertotal .wrapper .content .choose-title .title-strong[data-v-bde4061a] {
          font-size: 13px;
          font-family: Source Han Sans CN-Medium, Source Han Sans CN;
          font-weight: 500;
          color: #000000;
          line-height: 20px;
          width: 76.68%;
          display: block;
}
.bordertotal .wrapper .content .choose-title .answer-box[data-v-bde4061a] {
          width: 60px;
          position: absolute;
          top: 0;
          right: 0;
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #333333;
}
.bordertotal .wrapper .content .info-fixed[data-v-bde4061a] {
        position: relative;
        font-size: 14px;
        padding: 0 60px 12px 0;
}
.bordertotal .wrapper .content .info-fixed .info-text[data-v-bde4061a] {
          font-size: 13px;
          font-family: Source Han Sans CN-Medium, Source Han Sans CN;
          font-weight: 500;
          color: #333333;
          line-height: 20px;
}
.bordertotal .wrapper .content .info-fixed .info-input[data-v-bde4061a] {
          width: 65px;
          position: absolute;
          top: 0px;
          right: -3px;
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1;
          display: -ms-flexbox;
          display: -webkit-box;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
}
.bordertotal .wrapper .content .info-fixed .info-input .not-agree[data-v-bde4061a] {
            left: 0;
            top: 0;
            z-index: 2;
            position: relative;
            width: 20px;
            height: 20px;
            border-radius: 2px 2px 2px 2px;
            opacity: 1;
            border: 1px solid #B9B9B9;
}
.bordertotal .wrapper .content .info-fixed .info-input .agree[data-v-bde4061a] {
            left: 0;
            top: 0;
            z-index: 2;
            position: relative;
            width: 20px;
            height: 20px;
            z-index: 1;
}
.bordertotal .wrapper .content .info-fixed .info-input .agree[data-v-bde4061a]::before {
              content: "\2713";
              position: absolute;
              font-size: 16px;
              text-align: center;
              background: #00A758;
              color: #ffffff;
              border: none;
              width: 20px;
              height: 20px;
              background: #00A758;
              border-radius: 2px 2px 2px 2px;
              opacity: 1;
}
.bordertotal .wrapper .content .error-info[data-v-bde4061a] {
        color: #fc3e1d;
        font-size: 14px;
        padding-bottom: 12px;
        font-weight: 500;
}
.bordertotal .wrapper .content .error-info .error-box[data-v-bde4061a] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
}
.bordertotal .wrapper .content .error-info .error-box img[data-v-bde4061a] {
            display: block;
            width: 20px;
            height: 20px;
            margin-right: 5px;
}
.bordertotal .wrapper .health-noticetotal[data-v-bde4061a] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.bordertotal .wrapper .imgsrc[data-v-bde4061a] {
      width: 24px;
      height: 24px;
      margin-right: 16px;
}
.bordertotal .wrapper .grrenborder[data-v-bde4061a] {
      display: inline-block;
      margin-bottom: 16px;
      margin-top: 28px;
      margin-left: 16px;
}
.bordertotal .wrapper .grrenborder .green[data-v-bde4061a] {
        width: 100%;
        height: 4px;
        background: #00a758;
        border-radius: 0px;
        opacity: 0.4;
        position: relative;
        left: 0;
        right: 0;
        margin-top: -5px;
}
.bordertotal .wrapper .grrenborder h2[data-v-bde4061a] {
        height: 20px;
        font-size: 14px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #000000;
        line-height: 20px;
}
.bordertotal .wrapper .footer[data-v-bde4061a] {
      width: 100%;
      position: fixed;
      left: 0;
      bottom: -1px;
      z-index: 9;
      height: 78px;
      background: #FFFFFF;
      -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
              box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
      border-radius: 12px 12px 0px 0px;
      opacity: 1;
}
.bordertotal .wrapper .footer .all-false[data-v-bde4061a] {
        text-align: right;
        background-color: #fff;
        height: 20px;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #00A758;
        line-height: 20px;
        -webkit-background-clip: text;
        padding-left: 16px;
}
.bordertotal .wrapper .footer .footer-box[data-v-bde4061a] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .wrapper .footer .footer-box .act-btn[data-v-bde4061a] {
          height: 50px;
          -webkit-box-flex: 1;
          width: 160px;
          height: 40px;
          background: #666;
          border-radius: 40px 40px 40px 40px;
          opacity: 1;
          font-size: 16px;
          font-family: Source Han Sans CN-Medium, Source Han Sans CN;
          font-weight: 500;
          color: #FFFFFF;
          line-height: 40px;
          text-align: center;
          margin-right: 16px;
          margin-top: 4px;
}
.bordertotal .wrapper .footer .footer-box .btn[data-v-bde4061a] {
          height: 50px;
          -webkit-box-flex: 1;
          width: 160px;
          height: 40px;
          background: #00A758;
          border-radius: 40px 40px 40px 40px;
          opacity: 1;
          font-size: 16px;
          font-family: Source Han Sans CN-Medium, Source Han Sans CN;
          font-weight: 500;
          color: #FFFFFF;
          line-height: 40px;
          text-align: center;
          margin-right: 16px;
          margin-top: 4px;
}

.terms-pop[data-v-abbffb14] {
  width: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.terms-pop .terms-electronic[data-v-abbffb14] {
    width: 100%;
    height: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-image: url(../../assets/img/pic_pop_guwen.120c6f4.png);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.terms-pop .terms-electronic .terms-electronic-left[data-v-abbffb14] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.terms-pop .terms-electronic .terms-electronic-left .terms-electronic-left-avatarAperture[data-v-abbffb14] {
        width: 96px;
        height: 92px;
        background-image: url(../../assets/img/circle.c96fa45.png);
        background-size: 100% 100%;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 20px 28px 20px 16px;
}
.terms-pop .terms-electronic .terms-electronic-left .terms-electronic-left-avatarAperture img[data-v-abbffb14] {
          width: 52px;
          height: 52px;
          border-radius: 50%;
          overflow: hidden;
          display: block;
}
.terms-pop .terms-electronic .terms-electronic-left .terms-electronic-detail[data-v-abbffb14] {
        margin-left: -16px;
        padding: 20px 0;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
}
.terms-pop .terms-electronic .terms-electronic-left .terms-electronic-detail .terms-electronic-nameJob[data-v-abbffb14] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          height: 18px;
          font-family: Source Han Sans CN, Source Han Sans CN;
          font-weight: 500;
          font-size: 16px;
          color: #FFFFFF;
          line-height: 16px;
          margin-bottom: 4px;
          -webkit-box-align: baseline;
              -ms-flex-align: baseline;
                  align-items: baseline;
}
.terms-pop .terms-electronic .terms-electronic-left .terms-electronic-detail .terms-electronic-nameJob .terms-electronic-job[data-v-abbffb14] {
            margin-left: 8px;
            line-height: 16px;
            font-weight: 400;
            font-size: 12px;
            line-height: 16px;
            margin-top: 3px;
}
.terms-pop .terms-electronic .terms-electronic-left .terms-electronic-detail .terms-detail-commonFontStyle[data-v-abbffb14] {
          font-family: Source Han Sans CN, Source Han Sans CN;
          font-weight: 400;
          font-size: 10px;
          color: #FFFFFF;
          height: 14px;
          line-height: 14px;
}
.terms-pop .terms-electronic .terms-electronic-left .terms-electronic-detail .terms-detail-commonFontStyle .terms-electronic-branchDepartment[data-v-abbffb14] {
            margin-bottom: 2px;
}
.terms-pop .terms-electronic .terms-electronic-right[data-v-abbffb14] {
      padding: 28px 17px 28px 0;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
}
.terms-pop .terms-electronic .terms-electronic-right .terms-electronic-right-img[data-v-abbffb14] {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        overflow: hidden;
}
.terms-pop .terms-electronic .terms-electronic-right .terms-electronic-right-img a[data-v-abbffb14], .terms-pop .terms-electronic .terms-electronic-right .terms-electronic-right-img img[data-v-abbffb14] {
          width: 100%;
          height: 100%;
          display: block;
}
.terms-pop .terms-padding[data-v-abbffb14] {
    width: 100%;
    padding: 24px 16px 34px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.terms-pop .terms-info[data-v-abbffb14] {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    line-height: 22px;
    margin-bottom: 24px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.terms-pop .terms-tips[data-v-abbffb14] {
    padding: 0 10px 12px;
    margin-bottom: 16px;
    border-radius: 8px 8px 8px 8px;
    background: #F7FFFB;
    border: 1px solid rgba(0, 167, 88, 0.06);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.terms-pop .terms-tips .terms-tips-padding[data-v-abbffb14] {
      padding: 0 6px;
}
.terms-pop .terms-tips .terms-title[data-v-abbffb14] {
      height: 48px;
      background-image: url(../../assets/img/bg_title.6194180.png);
      background-size: 100% 100%;
      background-position: center center;
      font-size: 18px;
      font-weight: bold;
      color: #333333;
      line-height: 24px;
      padding: 12px 0;
      text-align: center;
      position: relative;
}
.terms-pop .terms-tips .terms-title .terms-line[data-v-abbffb14] {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        bottom: 13px;
        width: 72px;
        height: 4px;
        background: #00A758;
        border-radius: 0px 0px 0px 0px;
        opacity: 0.4;
}
.terms-pop .terms-tips .terms-content[data-v-abbffb14] {
      font-family: Source Han Sans CN, Source Han Sans CN;
      font-weight: 400;
      font-size: 14px;
      color: #333333;
      line-height: 22px;
}
.terms-pop .terms-btn[data-v-abbffb14] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 40px;
    margin-bottom: 12px;
}
.terms-pop .terms-btn .left[data-v-abbffb14] {
      width: 166px;
      height: 38px;
      border-radius: 20px 20px 20px 20px;
      border: 1px solid #00A758;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 16px;
      font-weight: 500;
      color: #00A758;
}
.terms-pop .terms-btn .right[data-v-abbffb14] {
      width: 166px;
      height: 40px;
      background: #00A758;
      border-radius: 20px 20px 20px 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 16px;
      font-weight: bold;
      color: #FFFFFF;
}

.ocr-wapper[data-v-1057de7b] {
  text-align: left;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 99;
  opacity: 1;
}
.ocr-wapper .ocr-mask[data-v-1057de7b] {
    z-index: 10 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.ocr-wapper .ocr-container[data-v-1057de7b] {
    padding: 16px;
    width: 84%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 50;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 14px;
    background: #FFFFFF;
    border-radius: 12px 12px 12px 12px;
    opacity: 1;
}
.ocr-wapper .ocr-container .section[data-v-1057de7b] {
      overflow-y: auto;
      max-height: 70vh;
      -webkit-overflow-scrolling: touch;
}
.ocr-wapper .ocr-container .section[data-v-1057de7b] .ols-form-list .ols-form-item {
        margin-left: 0;
        padding: 12px 0;
}
.ocr-wapper .ocr-container .ocr-idcard[data-v-1057de7b] {
      margin-top: 24px;
      margin-left: 8px;
      margin-bottom: 24px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-1057de7b],
      .ocr-wapper .ocr-container .ocr-idcard .back[data-v-1057de7b] {
        position: relative;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        overflow: hidden;
        background: #f6fff4;
        width: 126px;
        height: 117px;
        border-radius: 6px 6px 6px 6px;
        opacity: 1;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-bottom[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-bottom[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-bottom[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-bottom[data-v-1057de7b] {
          text-align: center;
          height: 29px;
          background: #00A758;
          opacity: 1;
          font-size: 12px;
          font-family: Source Han Sans CN-Medium, Source Han Sans CN;
          font-weight: 500;
          color: #FFFFFF;
          line-height: 29px;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-show[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-show[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-show[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-show[data-v-1057de7b] {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          width: 105%;
          height: 106%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .uplod-img[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .back .uplod-img[data-v-1057de7b] {
          position: absolute;
          right: 0;
          top: 0;
          width: 24px;
          background: #EC6453;
          z-index: 600;
}
.ocr-wapper .ocr-container .ocr-idcard .front .prev-img[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .back .prev-img[data-v-1057de7b] {
          position: absolute;
          right: 0;
          top: 35%;
          width: 15px;
          z-index: 2222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-content[data-v-1057de7b] {
          background: url(../../assets/img/idcard_avatar.18c17ad.png);
          position: relative;
          margin: 12px;
          height: 64px;
          background-size: 100% 100%;
          z-index: 222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .back-content[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-content[data-v-1057de7b] {
          position: relative;
          margin: 12px;
          height: 64px;
          background: url(../../assets/img/idcard_national.ec70ce0.png);
          background-size: 100% 100%;
          z-index: 222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .back-content .photo-img[data-v-1057de7b],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .photo-img[data-v-1057de7b] {
            width: 43px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
}
.ocr-wapper .ocr-container .ocr-idcard .front .passport-content[data-v-1057de7b],
        .ocr-wapper .ocr-container .ocr-idcard .back .passport-content[data-v-1057de7b] {
          height: 150px;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-1057de7b] {
        margin-right: 23px;
}
.ocr-wapper .ocr-container .notice .notice-title[data-v-1057de7b] {
      margin-bottom: 8px;
      color: #5cae78;
      font-size: 13px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #0000C1;
}
.ocr-wapper .ocr-container .notice ul[data-v-1057de7b] {
      margin-bottom: 24px;
}
.ocr-wapper .ocr-container .notice ul li[data-v-1057de7b] {
        margin-bottom: 5px;
        color: #b6b9c1;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #666666;
}
.ocr-wapper .ocr-container .notice ul li span[data-v-1057de7b] {
          color: #0000C1;
}
.ocr-wapper .ocr-container .footer[data-v-1057de7b] {
      position: relative;
      left: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      width: 100%;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ocr-wapper .ocr-container .footer .confirm[data-v-1057de7b] {
        -ms-flex: 1;
        -webkit-box-flex: 1;
                flex: 1;
        line-height: 40px;
        text-align: center;
        height: 40px;
        background: #00A758;
        border-radius: 50px 50px 50px 50px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        margin-left: 16px;
        margin-right: 16px;
}
.ocr-wapper .ocr-container .footer .cancle[data-v-1057de7b] {
        -ms-flex: 1;
        -webkit-box-flex: 1;
                flex: 1;
        line-height: 40px;
        text-align: center;
        color: #fff;
        height: 40px;
        background: #FFFFFF;
        border-radius: 50px 50px 50px 50px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #666666;
        margin-left: 16px;
        margin-right: 16px;
        margin-top: 12px;
}
.ocr-wapper .ocr-demo[data-v-1057de7b] {
    width: 84%;
    height: 394px;
    position: fixed;
    top: 55%;
    left: 50%;
    z-index: 12;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px;
    border-radius: 5px;
    background: #fff;
    z-index: 100 !important;
}
.ocr-wapper .ocr-demo .ocr-demo-title[data-v-1057de7b] {
      text-align: center;
      height: 20px;
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #000000;
      line-height: 20px;
      -webkit-background-clip: text;
      padding-top: 16px;
      padding-bottom: 24px;
}
.ocr-wapper .ocr-demo .ocr-demo-title-info[data-v-1057de7b] {
      margin: 0.64rem 0.427rem 0.64rem 0.427rem;
}
.ocr-wapper .ocr-demo .ocr-demo-title-info .imgicon-left[data-v-1057de7b] {
        width: 100%;
        height: 254px;
}
.ocr-wapper .ocr-demo .ocr-demo-content[data-v-1057de7b] {
      margin: 24px 16px 24px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content[data-v-1057de7b] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content .right-img[data-v-1057de7b] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          width: 142px;
          height: 98px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul[data-v-1057de7b] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: right;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-1057de7b] {
            position: relative;
            margin-bottom: 10px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-1057de7b]:last-child {
              margin: 0;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-1057de7b]::before {
              content: "";
              position: absolute;
              top: 15%;
              left: 32px;
              width: 14px;
              height: 14px;
              background: url(/assets/img/icon-radio.c5723b7.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content[data-v-1057de7b] {
        margin-top: 24px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul[data-v-1057de7b] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li[data-v-1057de7b] {
            overflow: hidden;
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
            -ms-flex-direction: column;
                flex-direction: column;
            -webkit-box-flex: 0;
                -ms-flex: none;
                    flex: none;
            -ms-flex-preferred-size: 58px;
                flex-basis: 58px;
            border-radius: 5px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li img[data-v-1057de7b] {
              width: 68px;
              height: 52px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li .icon-error[data-v-1057de7b] {
              position: absolute;
              left: 50%;
              bottom: 35px;
              -webkit-transform: translate(-50%, -50%);
                      transform: translate(-50%, -50%);
              width: 14px;
              height: 14px;
              background: url(../../assets/img/icon-error.50ba2e9.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li p[data-v-1057de7b] {
              width: 100%;
              height: 20px;
              line-height: 20px;
              text-align: center;
              margin-top: 8px;
              color: #666666;
              font-size: 13px;
              font-family: Source Han Sans CN-Regular, Source Han Sans CN;
              font-weight: 400;
}
.ocr-wapper .ocr-demo .ocr-demo-footer[data-v-1057de7b] {
      position: absolute;
      bottom: 0;
      height: 45px;
      line-height: 45px;
      font-size: 15px;
      text-align: center;
      color: #fff;
      background: #00A758;
      width: 283px;
      height: 40px;
      background: #00A758;
      border-radius: 50px 50px 50px 50px;
      opacity: 1;
      margin-left: 5%;
      margin-right: 5.1%;
      margin-bottom: 16px;
}
.ocr-wapper .prev-mask[data-v-1057de7b] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    z-index: 100;
}
.ocr-wapper .prev-mask img[data-v-1057de7b] {
      width: 100%;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
}
[data-v-1057de7b].ols-viewer {
  height: 20px;
  line-height: 20px;
  color: #666;
  text-align: left;
}
[data-v-1057de7b].ols-cell-group {
  margin-bottom: 24px;
  background: #fff;
  background: #FFFFFF;
  border-radius: 6px 6px 6px 6px;
  margin-left: 16px;
  margin-right: 16px;
  padding-bottom: 0;
}

@charset "UTF-8";
*[data-v-5269c75c] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.preview[data-v-5269c75c] {
  display: inline-block;
}
.check[data-v-5269c75c] {
  font-size: 13px;
  color: #459855;
}
.triangle[data-v-5269c75c] {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #adadad;
  /*no*/
  border-right: 1px solid #adadad;
  /*no*/
  -webkit-transform: translateY(-35%) rotate(45deg);
          transform: translateY(-35%) rotate(45deg);
}
.section[data-v-5269c75c] {
  height: 90%;
  overflow: auto;
  margin-top: 56px;
}
.section img[data-v-5269c75c] {
    width: 100%;
}
.section[data-v-5269c75c] .mustRead {
    position: relative;
    padding-right: 20px;
}
.section[data-v-5269c75c] .mustRead::before {
      content: '\5FC5\8BFB';
      position: absolute;
      right: 0;
      font-size: 12px;
      background: #EC6453;
      width: 35px;
      height: 20px;
      color: #ffffff;
      text-align: center;
      border-radius: 4px;
}
.section[data-v-5269c75c] .layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
}
.section[data-v-5269c75c] .layout .mustReadQuestionnaire {
      font-size: 14px;
}
.section[data-v-5269c75c] .layout .current-must {
      right: 0;
      margin-right: 10px;
      background: #EC6453;
      width: 35px;
      height: 20px;
      margin-left: 10px;
      color: #ffffff;
      text-align: center;
      border-radius: 4px;
}
.scroll-bar[data-v-5269c75c]::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
.tab-title[data-v-5269c75c] {
  display: inline-block;
  margin-bottom: 8px;
}
.title[data-v-5269c75c] {
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #000000;
  line-height: 20px;
}
.title-index[data-v-5269c75c] {
  height: 4px;
  background: #00A758;
  border-radius: 0px 0px 0px 0px;
  opacity: 0.4;
  margin-top: -4px;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-bar[data-v-5269c75c]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mask-container .mask-pop[data-v-2c145883] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
  overflow: hidden;
}
.mask-container .mask-content[data-v-2c145883] {
  padding: 0 20px 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  color: #333;
  z-index: 111;
  border-radius: 12px 12px 0px 0px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.mask-container .mask-content[data-v-2c145883] a {
    color: #079b4d;
    text-decoration: underline;
}
.mask-container .mask-content .mask-header[data-v-2c145883] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
.mask-container .mask-content .mask-header .close-btn[data-v-2c145883] {
      font-size: 20px;
}
.mask-container .mask-content .section div[data-v-2c145883] {
    font-size: 15px;
    line-height: 20px;
}
.mask-container .mask-content .section[data-v-2c145883] .section-title {
    padding: 10px 6px 10px 0px;
    font-size: 15px;
    color: #5cae78;
}
.mask-container .mask-content .section[data-v-2c145883] .section-title.toggle {
      position: relative;
      border-bottom: #e5e5e5 1px dashed;
      margin-right: 6px;
}
.mask-container .mask-content .section[data-v-2c145883] .section-title.toggle:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 3px;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg);
}
.mask-container .mask-content .section[data-v-2c145883] .section-title.toggle::after {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
}
.mask-container .mask-content .section[data-v-2c145883] .section-title.toggle.actived::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
}
.mask-container .mask-content .section[data-v-2c145883] .section-content {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: #e5e5e5 1px dashed;
}
.mask-container .mask-content .section[data-v-2c145883] .section-content.hide {
      display: none;
}
.mask-container .mask-content .section[data-v-2c145883] .section-content.actived {
      max-height: 999rem;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
              transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
}
.mask-container .mask-content .mask-footer[data-v-2c145883] {
    position: absolute;
    left: 0;
    width: 92%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background: #5cae78;
    height: 40px;
    background: #00A758;
    border-radius: 40px 40px 40px 40px;
    opacity: 1;
    margin-left: 16px;
    margin-top: 4px;
    font-size: 16px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
}
.mask-container .mask-content .mask-button[data-v-2c145883] {
    bottom: 0;
    left: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    height: 78px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
    border-radius: 12px 12px 0px 0px;
    opacity: 1;
    font-size: 16px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
}
.mask-container .mask-content .mask-button .submit-button[data-v-2c145883] {
      width: 100%;
      height: 40px;
      background: #666666;
      text-align: center;
}
.mask-container .mask-content .mask-button .submit-button span[data-v-2c145883] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}
.mask-container .mask-content .mask-button .submit-text[data-v-2c145883] {
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: red;
      text-align: center;
}
.mask-container .mask-content .mask-button .submitBack[data-v-2c145883] {
      background: #5cae78;
}
.mask-container .mask-content .mask-button .footer-button[data-v-2c145883] {
      width: 100%;
      height: 40px;
      background: #5cae78;
      text-align: center;
}
.mask-container .mask-content .mask-button .footer-button span[data-v-2c145883] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}

.mask-header .ly-tab .ly-tabbar {
  width: 100%;
  background: #F0F2F5;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list {
    padding: 0px;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list .ly-tab-item {
      display: inline-block;
      height: 50px;
      line-height: 50px;
      color: #333;
      text-decoration: none;
      margin: 0;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-active-bar {
    display: none;
}

.header[data-v-bfdf97e0] {
  width: 100%;
  background-color: #F0F2F5;
  border-radius: 12px 12px 0px 0px;
}
.header[data-v-bfdf97e0] .service-swiper {
    width: 100%;
    display: block;
    margin: auto;
    overflow-y: hidden;
    border-radius: 12px 12px 0px 0px;
    position: relative;
}
.header[data-v-bfdf97e0] .service-swiper .swiper-wrapper .swiper-slide {
      width: auto !important;
      height: 40px;
      line-height: 40px;
      text-align: center;
}
.header[data-v-bfdf97e0] .service-swiper .swiper-wrapper .swiper-slide .header_tab {
        font-size: 14px;
        color: #333;
        display: inline-block;
        padding: 0px 12px;
}
.header[data-v-bfdf97e0] .service-swiper .swiper-wrapper .swiper-slide .tab-point {
        position: relative;
}
.header[data-v-bfdf97e0] .service-swiper .swiper-wrapper .swiper-slide .tab-point::after {
          content: '';
          position: absolute;
          right: 4px;
          top: 10px;
          width: 5px;
          height: 5px;
          border-radius: 50%;
          background-color: red;
}
.header[data-v-bfdf97e0] .service-swiper .swiper-wrapper .swiper-slide .activeheader {
        background: #fff;
        padding: 0px 12px;
}
.header[data-v-bfdf97e0] .service-swiper .swiper-wrapper .swiper-slide .activeheaderOne {
        background: #fff;
        color: red;
        padding: 0px 8px;
}
.header[data-v-bfdf97e0] .service-swiper .swiper-wrapper .swiper-slide .headerColor {
        color: red;
}

.pop-up-panel[data-v-f24d108a] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.pop-up-box[data-v-f24d108a] {
  width: 100%;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  bottom: 0;
  position: fixed;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  opacity: 1;
}
.pop-up-box .pop-title[data-v-f24d108a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
    font-size: 14px;
}
.pop-up-box .pop-title .titile-name[data-v-f24d108a] {
      font-size: 16px;
}
.pop-up-box .pop-title .img-font[data-v-f24d108a] {
      position: absolute;
      right: 20px;
      top: 20px;
}
.pop-up-box .pop-content[data-v-f24d108a] {
    margin-left: 25px;
    margin-right: 25px;
    font-size: 14px;
    text-align: left;
}
.pop-up-box .pop-content .pop-title[data-v-f24d108a] {
      margin-top: 25px;
      margin-bottom: 15px;
}
.pop-up-box .pop-content .pop-content-title[data-v-f24d108a] {
      margin-bottom: 5px;
      font-weight: bold;
}
.pop-up-box .total-button[data-v-f24d108a] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 38px;
}
.pop-up-box .total-button .button-left[data-v-f24d108a] {
      width: 144px;
      height: 35px;
      background: white;
      border: 1px solid #eaeaea;
}
.pop-up-box .total-button .button-right[data-v-f24d108a] {
      width: 144px;
      height: 35px;
      background: #00A758;
      color: #ffffff;
}

@charset "UTF-8";
*[data-v-286d0f10] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.preview[data-v-286d0f10] {
  display: inline-block;
}
.check[data-v-286d0f10] {
  font-size: 13px;
  color: #459855;
}
.triangle[data-v-286d0f10] {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #adadad;
  /*no*/
  border-right: 1px solid #adadad;
  /*no*/
  -webkit-transform: translateY(-35%) rotate(45deg);
          transform: translateY(-35%) rotate(45deg);
}
.section[data-v-286d0f10] {
  height: 90%;
  overflow: auto;
  margin-top: 56px;
}
.section img[data-v-286d0f10] {
    width: 100%;
}
.scroll-bar[data-v-286d0f10]::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
.tab-title[data-v-286d0f10] {
  display: inline-block;
  margin-bottom: 8px;
}
.title[data-v-286d0f10] {
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #000000;
  line-height: 20px;
}
.title-index[data-v-286d0f10] {
  height: 4px;
  background: #00A758;
  border-radius: 0px 0px 0px 0px;
  opacity: 0.4;
  margin-top: -4px;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-bar[data-v-286d0f10]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mask-container .mask-pop[data-v-996f105a] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
  overflow: hidden;
}
.mask-container .mask-content[data-v-996f105a] {
  padding: 0 20px 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  border-radius: 12px 12px 0px 0px;
  color: #333;
  z-index: 111;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.mask-container .mask-content[data-v-996f105a] a {
    color: #079b4d;
    text-decoration: underline;
}
.mask-container .mask-content .mask-header[data-v-996f105a] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
.mask-container .mask-content .mask-header .close-btn[data-v-996f105a] {
      font-size: 20px;
}
.mask-container .mask-content .section div[data-v-996f105a] {
    font-size: 15px;
    line-height: 20px;
}
.mask-container .mask-content .section[data-v-996f105a] .section-title {
    padding: 10px 6px 10px 0px;
    font-size: 15px;
    color: #5cae78;
}
.mask-container .mask-content .section[data-v-996f105a] .section-title.toggle {
      position: relative;
      border-bottom: #e5e5e5 1px dashed;
      margin-right: 6px;
}
.mask-container .mask-content .section[data-v-996f105a] .section-title.toggle:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 3px;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg);
}
.mask-container .mask-content .section[data-v-996f105a] .section-title.toggle::after {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
}
.mask-container .mask-content .section[data-v-996f105a] .section-title.toggle.actived::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
}
.mask-container .mask-content .section[data-v-996f105a] .section-content {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: #e5e5e5 1px dashed;
}
.mask-container .mask-content .section[data-v-996f105a] .section-content.hide {
      display: none;
}
.mask-container .mask-content .section[data-v-996f105a] .section-content.actived {
      max-height: 999rem;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
              transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
}
.mask-container .mask-content .mask-footer[data-v-996f105a] {
    position: absolute;
    left: 0;
    width: 92%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background: #5cae78;
    height: 40px;
    background: #00A758;
    border-radius: 40px 40px 40px 40px;
    opacity: 1;
    margin-left: 16px;
    margin-top: 4px;
    font-size: 16px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
}
.mask-container .mask-content .mask-button[data-v-996f105a] {
    bottom: 0;
    left: 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    height: 78px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
    border-radius: 12px 12px 0px 0px;
    opacity: 1;
    font-size: 16px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
}
.mask-container .mask-content .mask-button .mask-footer[data-v-996f105a] {
      position: absolute;
      left: 0;
      width: 92%;
      height: 40px;
      line-height: 40px;
      font-size: 15px;
      text-align: center;
      color: #fff;
      background: #5cae78;
      height: 40px;
      background: #00A758;
      border-radius: 40px 40px 40px 40px;
      opacity: 1;
      margin-left: 16px;
      margin-top: 4px;
      font-size: 16px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #FFFFFF;
      bottom: 30px;
}
.mask-container .mask-content .mask-button .submit-button[data-v-996f105a] {
      width: 100%;
      height: 40px;
      background: #666666;
      text-align: center;
}
.mask-container .mask-content .mask-button .submit-button span[data-v-996f105a] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}
.mask-container .mask-content .mask-button .submit-text[data-v-996f105a] {
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: red;
      text-align: center;
}
.mask-container .mask-content .mask-button .submitBack[data-v-996f105a] {
      background: #5cae78;
}
.mask-container .mask-content .mask-button .footer-button[data-v-996f105a] {
      width: 100%;
      height: 40px;
      background: #5cae78;
      text-align: center;
}
.mask-container .mask-content .mask-button .footer-button span[data-v-996f105a] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}

.mask-header .ly-tab .ly-tabbar {
  width: 100%;
  background: #F0F2F5;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list {
    padding: 0px;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list .ly-tab-item {
      display: inline-block;
      height: 50px;
      line-height: 50px;
      color: #333;
      text-decoration: none;
      margin: 0;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-active-bar {
    display: none;
}

.header[data-v-7d5a6e54] {
  width: 100%;
  background-color: #F0F2F5;
  border-radius: 12px 12px 0px 0px;
}
.header[data-v-7d5a6e54] .service-swiper {
    width: 100%;
    display: block;
    margin: auto;
    overflow-y: hidden;
    border-radius: 12px 12px 0px 0px;
    position: relative;
}
.header[data-v-7d5a6e54] .service-swiper .swiper-wrapper .swiper-slide {
      width: auto !important;
      height: 40px;
      line-height: 40px;
      text-align: center;
}
.header[data-v-7d5a6e54] .service-swiper .swiper-wrapper .swiper-slide .header_tab {
        font-size: 14px;
        color: #333;
        display: inline-block;
        padding: 0px 12px;
}
.header[data-v-7d5a6e54] .service-swiper .swiper-wrapper .swiper-slide .activeheader {
        background: #fff;
        padding: 0px 12px;
}
.header[data-v-7d5a6e54] .service-swiper .swiper-wrapper .swiper-slide .activeheaderOne {
        background: #fff;
        color: red;
        padding: 0px 8px;
}
.header[data-v-7d5a6e54] .service-swiper .swiper-wrapper .swiper-slide .headerColor {
        color: red;
}

.terms-page[data-v-63591a59] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.terms-page .terms-pop[data-v-63591a59] {
    margin: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    position: fixed;
    background: #FFFFFF;
    border-radius: 12px 12px 0px 0px;
    opacity: 1;
}
.terms-page .terms-pop .top-title[data-v-63591a59] {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-top: 16px;
      margin-left: 16px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.terms-page .terms-pop .top-title .top-sy[data-v-63591a59] {
        display: inline-block;
}
.terms-page .terms-pop .top-title .title-text[data-v-63591a59] {
        width: 100%;
        height: 16px;
        width: 140px;
        font-size: 14px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #000000;
        line-height: 16px;
}
.terms-page .terms-pop .top-title .title_box[data-v-63591a59] {
        width: 140px;
        height: 4px;
        background: #00a758;
        border-radius: 0px;
        opacity: 0.4;
        margin-top: -4px;
}
.terms-page .terms-pop .top-title .imgsrc[data-v-63591a59] {
        width: 24px;
        height: 24px;
        position: absolute;
        right: 16px;
}
.terms-page .terms-pop .top-title .clost-img[data-v-63591a59] {
        font-size: 18px;
}
.terms-page .terms-pop .product-name[data-v-63591a59] {
      font-size: 14px;
      width: 205px;
      height: 20px;
      font-size: 15px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #333333;
      line-height: 20px;
      margin-top: 12px;
      margin-bottom: 12px;
      margin-left: 16px;
}
.terms-page .terms-pop .product-info[data-v-63591a59] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      /* width: 343px; */
      height: 44px;
      border-radius: 0px 0px 0px 0px;
      opacity: 1;
      border-bottom: 1px solid rgba(228, 228, 228, 0.6);
}
.terms-page .terms-pop .product-info .imgtop[data-v-63591a59] {
        margin-top: -6px;
        margin-left: 16px;
}
.terms-page .terms-pop .product-info .imginfo[data-v-63591a59] {
        margin-top: 20px;
        margin-right: 20px;
        width: 20px;
        height: 20px;
}
.terms-page .terms-pop .product-info .conve[data-v-63591a59] {
        font-size: 13px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #333333;
        line-height: 44px;
        -webkit-background-clip: text;
        /* padding-top: 13px; */
        height: 44px;
}
.terms-page .terms-pop .product-info .amout[data-v-63591a59] {
        -webkit-background-clip: text;
        height: 44px;
        text-align: right;
        position: absolute;
        right: 16px;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #E91A33;
        line-height: 44px;
}
.terms-page .terms-pop .prompt-content[data-v-63591a59] {
      margin: 10px 0px 10px 0px;
      max-height: 200px;
      overflow: auto;
}
.terms-page .terms-pop .prompt-content .text-amount[data-v-63591a59] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 20px;
}
.terms-page .terms-pop .text-p[data-v-63591a59] {
      padding: 0;
      width: 343px;
      height: 40px;
      font-size: 13px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #0000C1;
      line-height: 20px;
      margin-top: 12px;
      margin-bottom: 12px;
      margin-left: 16px;
}
.terms-page .terms-pop .bottom-btn[data-v-63591a59] {
      display: inline-block;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%;
      height: 78px;
      background: #FFFFFF;
      -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
              box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
      border-radius: 12px 12px 0px 0px;
      opacity: 1;
}
.terms-page .terms-pop .bottom-btn .btn-click[data-v-63591a59] {
        width: 100%;
        background: #088E08;
        padding: 10px 0px;
        color: #fff;
        border-radius: 4px;
        font-size: 16px;
        text-align: center;
        width: 343px;
        height: 40px;
        background: #00A758;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        margin-top: 4px;
}

.authentication-back[data-v-165257b6] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.authentication-back .authentication-pop[data-v-165257b6] {
    background-color: #fff;
    border-radius: 12px 12px 12px 12px;
    left: 50%;
    z-index: 100;
    width: 84%;
    padding: 0 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.authentication-back .authentication-pop .top-title[data-v-165257b6] {
      text-align: center;
      margin-top: 16px;
      height: 20px;
      line-height: 20px;
}
.authentication-back .authentication-pop .top-title span[data-v-165257b6] {
        font-size: 14px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #000000;
        display: inline-block;
}
.authentication-back .authentication-pop .face-recognition .recognition-img[data-v-165257b6] {
      text-align: center;
}
.authentication-back .authentication-pop .face-recognition .recognition-img .resmsg-p[data-v-165257b6] {
        color: red;
}
.authentication-back .authentication-pop .face-recognition .recognition-img img[data-v-165257b6] {
        height: 120px;
        margin: 24px 0px 12px 0px;
}
.authentication-back .authentication-pop .face-recognition .recognition-img .ImgOne[data-v-165257b6] {
        width: 260px;
        width: 120px;
}
.authentication-back .authentication-pop .face-recognition .recognition-img p[data-v-165257b6] {
        font-size: 14px;
        margin-bottom: 24px;
        height: 20px;
        font-size: 14px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #333333;
}
.authentication-back .authentication-pop .face-recognition .recognition-img p a[data-v-165257b6] {
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #00A758;
}
.authentication-back .authentication-pop .face-recognition .camera-img[data-v-165257b6] {
      margin: auto;
      width: 283px;
      height: 40px;
      background: #00A758;
      border-radius: 40px 40px 40px 40px;
      opacity: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.authentication-back .authentication-pop .face-recognition .camera-img .img-info[data-v-165257b6] {
        margin-top: 8px;
        margin-right: 8px;
}
.authentication-back .authentication-pop .face-recognition .camera-img .span-info[data-v-165257b6] {
        height: 40px;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 40px;
}
.authentication-back .authentication-pop .face-recognition .camera-img img[data-v-165257b6] {
        width: 24px;
}
.authentication-back .authentication-pop .face-recognition .camera-img input[data-v-165257b6] {
        display: none;
}
.authentication-back .authentication-pop .face-recognition .success-info[data-v-165257b6] {
      height: 20px;
      font-size: 17px;
      font-family: "Source Han Sans CN-Regular", "Source Han Sans CN";
      font-weight: 400;
      color: #00a758;
      line-height: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 24px;
      margin-top: 12px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data[data-v-165257b6] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 24px;
      margin-bottom: 14px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-statu[data-v-165257b6] {
        width: 20px;
        height: 20px;
        border: 1px solid;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-statu img[data-v-165257b6] {
          width: 20px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .agree[data-v-165257b6] {
        display: block;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .agree img[data-v-165257b6] {
          width: 20px;
          height: 20px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .not-agree img[data-v-165257b6] {
        width: 20px;
        height: 20px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-data[data-v-165257b6] {
        margin-left: 4px;
        height: 20px;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #333333;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-data a[data-v-165257b6] {
          color: #009933;
          text-decoration: underline;
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
}
.authentication-back .authentication-pop .face-recognition .tips-top-img[data-v-165257b6] {
      position: absolute;
      top: 2;
      bottom: 120px;
      left: 27px;
}
.authentication-back .authentication-pop .face-recognition .tips-info[data-v-165257b6] {
      height: 52px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 5px;
      opacity: 1;
      margin-bottom: -12px;
}
.authentication-back .authentication-pop .face-recognition .tips-info .span-font[data-v-165257b6] {
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #FFFFFF;
        /* margin-top: 6px; */
        padding-left: 11px;
        height: 20px;
        display: inline-block;
        line-height: 20px;
        padding-top: 6px;
        padding-left: 11px;
}
.authentication-back .authentication-pop .face-recognition .agreement-p[data-v-165257b6] {
      color: red;
      margin-left: 34px;
      margin-bottom: 10px;
}
.authentication-back .authentication-pop .face-recognition .precautions-list span[data-v-165257b6] {
      height: 20px;
      font-size: 13px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #0000C1;
      line-height: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.authentication-back .authentication-pop .face-recognition .precautions-list p[data-v-165257b6] {
      font-size: 13px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #666666;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization[data-v-165257b6] {
      margin-top: 24px;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization .civilization-img[data-v-165257b6] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 52px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization .civilization-img img[data-v-165257b6] {
          margin: auto;
          width: 32px;
          height: 32px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization .civilization-img span[data-v-165257b6] {
          margin: auto;
          margin: 5px 0px 0px 0px;
          height: 20px;
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #00A758;
          line-height: 20px;
}
.authentication-back .authentication-pop .success-font[data-v-165257b6] {
      margin: auto;
      height: 40px;
      background: #00A758;
      border-radius: 40px 40px 40px 40px;
      opacity: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-bottom: 16px;
}
.authentication-back .authentication-pop .success-font .sucessspan-info[data-v-165257b6] {
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        height: 40px;
        line-height: 40px;
}
.authentication-back .authentication-pop .loading_Img[data-v-165257b6] {
      position: fixed;
      top: 50%;
      left: 50%;
}
.authentication-back .shut-down[data-v-165257b6] {
    position: relative;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-size: 16px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #666666;
    margin-top: 24px;
    margin-bottom: 16px;
}
.authentication-back .shut-gray[data-v-165257b6] {
    position: relative;
    text-align: center;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50px 50px 50px 50px;
    opacity: 1;
    font-size: 16px;
    margin-top: 24px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #666666;
    line-height: 20px;
}

.pop-ups[data-v-c2e90670] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}
.pop-ups .declare-authorization[data-v-c2e90670] {
    margin: 0 auto;
    position: relative;
    top: 25%;
    width: 300px;
    max-height: 400px;
    background-color: #fff;
    overflow: auto;
}
.pop-ups .declare-authorization h4[data-v-c2e90670] {
      text-align: center;
      padding: 20px 0px 15px 0px;
}
.pop-ups .declare-authorization h6[data-v-c2e90670] {
      padding: 0px 15px 0px 15px;
}
.pop-ups .declare-authorization p[data-v-c2e90670] {
      padding: 8px 15px 0px 15px;
      font-size: 12px;
      color: #333;
}
.pop-ups .declare-authorization .bottom-btn[data-v-c2e90670] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      margin-top: 20px;
}
.pop-ups .declare-authorization .bottom-btn span[data-v-c2e90670] {
        width: 50%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #ffffff;
}
.pop-ups .declare-authorization .bottom-btn .confirm-btn[data-v-c2e90670] {
        background: #009933;
}
.pop-ups .declare-authorization .bottom-btn .cancel-btn[data-v-c2e90670] {
        background: #666;
}

.categorypop-up-panel[data-v-2c80dc29] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.categorypop-up-panel .categorypop-up-box[data-v-2c80dc29] {
    width: 100%;
    background-color: #fff;
    text-align: center;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    bottom: 0;
    position: fixed;
    background: #FFFFFF;
    border-radius: 12px 12px 0px 0px;
    opacity: 1;
    height: 569px;
    overflow-y: auto;
}
.categorypop-up-panel .categorypop-up-box .headAll[data-v-2c80dc29] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: 14px 16px 25px 16px;
}
.categorypop-up-panel .categorypop-up-box .headAll .headChoose-title[data-v-2c80dc29] {
        font-size: 14px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #000000;
}
.categorypop-up-panel .categorypop-up-box .headAll .headChoose-index[data-v-2c80dc29] {
        height: 4px;
        background: #00A758;
        border-radius: 0px 0px 0px 0px;
        opacity: 0.4;
        margin-top: -4px;
}
.categorypop-up-panel .categorypop-up-box .content[data-v-2c80dc29] {
      overflow: scroll;
      height: 515px;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container[data-v-2c80dc29] {
        color: #333;
        background-color: #fff;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        padding-bottom: 15px;
        position: relative;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .outside[data-v-2c80dc29] {
          width: 100%;
          height: 100vh;
          -webkit-overflow-scrolling: touch;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box[data-v-2c80dc29] {
          padding: 0 16px;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap[data-v-2c80dc29] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            border: 1px solid #EEEEEE;
            border-bottom: none;
            border-radius: 6px 6px 0px 0px;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions[data-v-2c80dc29] {
              text-align: center;
              -webkit-box-flex: 1;
                  -ms-flex: 1;
                      flex: 1;
              height: 44px;
              line-height: 44px;
              font-size: 13px;
              color: #00A758;
              position: relative;
              overflow: hidden;
              white-space: nowrap;
              text-overflow: ellipsis;
              border-bottom: 1px solid #EEEEEE;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions[data-v-2c80dc29]::after {
                content: "";
                height: 16px;
                width: 0px;
                border: 1px solid #EEEEEE;
                position: absolute;
                right: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                        transform: translateY(-50%);
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions[data-v-2c80dc29]:last-child::after {
                border: none;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions.recommend[data-v-2c80dc29]::before {
                content: "";
                background: url(../../assets/img/icon-recommend1.feafacb.png);
                background-size: 100% 100%;
                width: 30px;
                height: 30px;
                position: absolute;
                top: 0;
                right: 0;
                z-index: 2;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions.active[data-v-2c80dc29] {
                background-color: #00A758;
                color: #fff;
                border-radius: 6px 6px 0px 0px;
                border: none;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions.active[data-v-2c80dc29]::after {
                  border: none;
}
.categorypop-up-panel .categorypop-up-box .content[data-v-2c80dc29] .version-detail {
        margin: 0 0 20px;
        border: 1px solid #00A758;
        border-radius: 0 0 6px 6px;
        text-align: left !important;
}
.categorypop-up-panel .categorypop-up-box .footer[data-v-2c80dc29] {
      background: white;
      -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px -2px 6px 0px;
              box-shadow: rgba(0, 0, 0, 0.08) 0px -2px 6px 0px;
      border-radius: 12px 12px 0px 0px;
      opacity: 1;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      position: fixed;
      height: 78px;
      font-weight: 500;
      color: white;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
}
.categorypop-up-panel .categorypop-up-box .footer .footer-confirm[data-v-2c80dc29] {
        background: #00a758;
        border-radius: 40px;
        opacity: 1;
        margin-left: 16px;
        margin-right: 16px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        margin-top: 4px;
        height: 40px;
}
.pictu[data-v-2c80dc29] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.pictu-gruop[data-v-2c80dc29] {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 1;
  font-family: "Source Han Sans CN", "Source Han Sans CN";
  font-weight: 500;
  font-size: 20px;
  color: #00a758;
  line-height: 26px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

@charset "UTF-8";
.preview[data-v-2dfac150] {
  display: inline-block;
}
.check[data-v-2dfac150] {
  font-size: 13px;
  color: #459855;
}
.triangle[data-v-2dfac150] {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #adadad;
  /*no*/
  border-right: 1px solid #adadad;
  /*no*/
  -webkit-transform: translateY(-35%) rotate(45deg);
          transform: translateY(-35%) rotate(45deg);
}
.section[data-v-2dfac150] {
  height: 90%;
  overflow: auto;
}
.section img[data-v-2dfac150] {
    width: 100%;
}
.scroll-bar[data-v-2dfac150]::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-bar[data-v-2dfac150]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mask-container .mask-pop[data-v-84fa748c] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.mask-container .mask-content[data-v-84fa748c] {
  border-radius: 12px;
  padding: 28px 16px 56px;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 60%;
  color: #333;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 111;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.mask-container .mask-content[data-v-84fa748c] a {
    color: #079b4d;
    text-decoration: underline;
}
.mask-container .mask-content .mask-header[data-v-84fa748c] {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    position: relative;
}
.mask-container .mask-content .mask-header .header-line[data-v-84fa748c] {
      position: absolute;
      left: 0;
      bottom: 1px;
      width: 70px;
      height: 4px;
      background: #00A758;
      opacity: 0.4;
}
.mask-container .mask-content .section div[data-v-84fa748c] {
    font-size: 13px;
    color: #333333;
    line-height: 16px;
}
.mask-container .mask-content .section[data-v-84fa748c] .section-title {
    padding: 17px 6px 8px 0px;
    font-size: 14px;
    color: #00A758;
    font-weight: bold;
    line-height: 20px;
}
.mask-container .mask-content .section[data-v-84fa748c] .section-title.toggle {
      position: relative;
      border-bottom: 1px dashed #F3F3F3;
      margin-right: 6px;
      padding: 12px 0;
}
.mask-container .mask-content .section[data-v-84fa748c] .section-title.toggle:after {
        border: 2px solid #93959E;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 3px;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg);
}
.mask-container .mask-content .section[data-v-84fa748c] .section-title.toggle::after {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
}
.mask-container .mask-content .section[data-v-84fa748c] .section-title.toggle.actived::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
}
.mask-container .mask-content .section[data-v-84fa748c] .section-content {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px dashed #F3F3F3;
}
.mask-container .mask-content .section[data-v-84fa748c] .section-content.hide {
      display: none;
}
.mask-container .mask-content .section[data-v-84fa748c] .section-content.actived {
      max-height: 999rem;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
              transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
}
.mask-container .mask-content .mask-footer[data-v-84fa748c] {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding: 0 16px;
}
.mask-container .mask-content .mask-footer .mask-btn[data-v-84fa748c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      width: 100%;
      border-radius: 50px;
      color: #fff;
      background: #00A758;
      font-weight: bold;
}

.version-detail[data-v-2306ce00] {
  margin: 0 0 20px;
  border: 1px solid #00A758;
  border-radius: 0 0 6px 6px;
}
.version-detail .version-content[data-v-2306ce00] {
    padding: 13px 0 8px 0;
}
.version-detail .version-content .version-box[data-v-2306ce00] {
      padding: 0 8px 0 16px;
      font-size: 0.32rem;
      font-weight: bold;
      color: #00A758;
      height: 24px;
      width: 23.5%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #E5F6EE;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
}
.version-detail .version-content .version-box-red[data-v-2306ce00] {
      padding: 0 8px 0 16px;
      font-size: 0.32rem;
      font-weight: bold;
      color: #EC6453;
      height: 24px;
      width: 23.5%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #FDEFEE;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
}
.version-detail ul[data-v-2306ce00] {
    margin: 0 16px;
    padding-bottom: 10px;
}
.version-detail ul li[data-v-2306ce00] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      min-height: 44px;
      border-bottom: 1px dashed #E4E4E4;
      font-size: 13px;
}
.version-detail ul li[data-v-2306ce00]:last-child {
        border-bottom: none;
}
.version-detail ul li .version-title[data-v-2306ce00] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: bold;
        color: #333333;
}
.version-detail ul li .version-title img[data-v-2306ce00] {
          width: 20px;
          height: 20px;
          vertical-align: top;
          padding-right: 8px;
}
.version-detail ul li .color-red[data-v-2306ce00] {
        color: #E91A33;
        font-weight: normal;
}
.version-detail ul li .finial-amount[data-v-2306ce00] {
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
}
.version-detail .coverageDescPic img[data-v-2306ce00] {
    display: block;
    width: 100%;
}

.pop-up-panel[data-v-51426f33] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.pop-up-panel .pop-up-box[data-v-51426f33] {
    width: 84%;
    text-align: center;
    background: #FFFFFF;
    opacity: 1;
    top: 35%;
    left: 8%;
    background-color: #fff;
    border-radius: 12px 12px 12px 12px;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.pop-up-panel .pop-up-box .title[data-v-51426f33] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: -23px;
}
.pop-up-panel .pop-up-box .title .img[data-v-51426f33] {
        width: 154px;
        height: 52px;
}
.pop-up-panel .pop-up-box .title .tips[data-v-51426f33] {
        font-size: 17px;
        font-family: Source Han Sans CN-Bold, Source Han Sans CN;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 24px;
        letter-spacing: 4px;
        position: absolute;
        margin-top: 22px;
}
.pop-up-panel .pop-up-box .middle-img[data-v-51426f33] {
      margin-top: 23px;
}
.pop-up-panel .pop-up-box .middle-img .img-midd[data-v-51426f33] {
        width: 283px;
        height: 120px;
}
.pop-up-panel .pop-up-box .tips[data-v-51426f33] {
      font-size: 14px;
      font-weight: 400;
      color: #333333;
      line-height: 20px;
      margin: 12px 16px 0 16px;
      text-align: left;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.pop-up-panel .pop-up-box .button[data-v-51426f33] {
      height: 40px;
      background: white;
      border-radius: 50px;
      opacity: 1;
      border: 1px solid #00a758;
      margin: 24px 26px 16px 26px;
      line-height: 40px;
      font-size: 16px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #00A758;
      letter-spacing: 2px;
}

.confirmInfor-box[data-v-2bd3bf62] {
  padding: 0 16px 10px 16px;
  position: relative;
}
.confirmInfor-box .product-info[data-v-2bd3bf62] {
    background: #FFFFFF;
    border-radius: 6px 6px 6px 6px;
    padding: 12px 12px 8px 12px;
    margin-bottom: 12px;
    margin-top: 16px;
}
.confirmInfor-box .product-info .product-list[data-v-2bd3bf62] {
      padding-top: 8px;
}
.confirmInfor-box .product-info .product-list .product-item[data-v-2bd3bf62] {
        height: 28px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 14px;
}
.confirmInfor-box .product-info .product-list .product-item .left[data-v-2bd3bf62] {
          color: #666666;
          -ms-flex-preferred-size: 76px;
              flex-basis: 76px;
}
.confirmInfor-box .product-info .product-list .product-item .right[data-v-2bd3bf62] {
          color: #333333;
          padding-left: 18px;
}
.confirmInfor-box .product-info .product-list .product-item .fontWeight[data-v-2bd3bf62] {
          font-weight: bold;
}
.confirmInfor-box .product-info .product-list .product-item .fontRed[data-v-2bd3bf62] {
          color: #E91A33;
}
.confirmInfor-box .plan-info[data-v-2bd3bf62] {
    padding: 12px;
    background: #FFFFFF;
    border-radius: 6px;
    margin-bottom: 12px;
}
.confirmInfor-box .plan-info .plan-item[data-v-2bd3bf62] {
      min-height: 44px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 13px;
      line-height: 15px;
      border-bottom: 1px dashed #E4E4E4;
}
.confirmInfor-box .plan-info .plan-item[data-v-2bd3bf62]:last-child {
        border-bottom: none;
}
.confirmInfor-box .plan-info .plan-item .left[data-v-2bd3bf62] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-weight: bold;
        color: #333333;
}
.confirmInfor-box .plan-info .plan-item .left .plan-item-img[data-v-2bd3bf62] {
          width: 18px;
          height: 18px;
          margin-right: 8px;
}
.confirmInfor-box .plan-info .plan-item .left .plan-item-decimg[data-v-2bd3bf62] {
          display: block;
          width: 100%;
}
.confirmInfor-box .plan-info .plan-item .right[data-v-2bd3bf62] {
        color: #E91A33;
}
.confirmInfor-box .server-info[data-v-2bd3bf62] {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
}
.confirmInfor-box .server-info .server-item[data-v-2bd3bf62] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 6px 0;
}
.confirmInfor-box .server-info .server-item img[data-v-2bd3bf62] {
        width: 20px;
        height: 20px;
        margin-right: 12px;
}
.confirmInfor-box .server-info .server-item .right .top[data-v-2bd3bf62] {
        font-size: 13px;
        font-weight: bold;
        color: #333333;
        line-height: 20px;
}
.confirmInfor-box .server-info .server-item .right .bottom[data-v-2bd3bf62] {
        font-size: 12px;
        color: #999999;
        line-height: 14px;
}
.confirmInfor-box .insurance-info[data-v-2bd3bf62] {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 76px;
}
.confirmInfor-box .insurance-info .applicant-info[data-v-2bd3bf62] {
      padding: 12px 0;
}
.confirmInfor-box .insurance-info .border-line[data-v-2bd3bf62] {
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.confirmInfor-box .insurance-info .money-box[data-v-2bd3bf62] {
      padding: 12px 0;
}
.confirmInfor-box .submit-btn[data-v-2bd3bf62] {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 4px 16px 34px 16px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
    border-radius: 12px 12px 0px 0px;
    width: 100%;
}
.confirmInfor-box .submit-btn .submit-btn-box[data-v-2bd3bf62] {
      font-size: 16px;
      font-weight: bold;
      color: #FFFFFF;
      line-height: 20px;
      text-align: center;
      padding: 10px 0;
      background: #00A758;
      border-radius: 40px;
}
.confirmInfor-box .submit-btn .canNext[data-v-2bd3bf62] {
      background: #666;
}

.common-title[data-v-50dfb016] {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  line-height: 20px;
  position: relative;
  margin-bottom: 12px;
}
.common-title[data-v-50dfb016]::before {
    content: "";
    width: 56px;
    height: 4px;
    background: #00A758;
    opacity: 0.4;
    position: absolute;
    left: 0;
    bottom: 2px;
}
.module-title[data-v-50dfb016] {
  background: rgba(0, 167, 88, 0.1);
  border-radius: 14px 14px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  font-size: 14px;
  color: #00A758;
}
.module-title img[data-v-50dfb016] {
    width: 6px;
    height: 8px;
    margin: 0 8px;
}
.info-item[data-v-50dfb016] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 0;
}
.info-item .left[data-v-50dfb016] {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    -ms-flex-preferred-size: 76px;
        flex-basis: 76px;
    margin-right: 30px;
}
.info-item .right[data-v-50dfb016] {
    font-size: 13px;
    color: #333333;
}
.top[data-v-50dfb016] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@charset "UTF-8";
.detail-container[data-v-30e5dd52] {
  color: #333;
  background-color: #fff;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  position: relative;
}
.detail-container .outside[data-v-30e5dd52] {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 78px;
}
.detail-container .videobox[data-v-30e5dd52] {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    position: relative;
}
.detail-container .videobox .positonPng[data-v-30e5dd52] {
      width: 76px;
      position: absolute;
      top: 31%;
      z-index: 1;
}
.detail-container .videobox .time-box[data-v-30e5dd52] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: absolute;
      bottom: 8px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: 100;
      width: 100%;
      padding: 0 35px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
}
.detail-container .videobox .time-box #playProgress[data-v-30e5dd52] {
        background-color: #999;
        width: 100%;
        height: 3px;
        position: relative;
        border-radius: 1.5px;
}
.detail-container .videobox .time-box #playProgress #progressWrap[data-v-30e5dd52] {
          position: absolute;
          background-color: #fff;
          height: 3px;
          border-radius: 1.5px;
}
.detail-container .videobox .time-box .time—text[data-v-30e5dd52] {
        color: #fff;
        margin-left: 20px;
        font-size: 14px;
}
.detail-container .videobox #headervideo[data-v-30e5dd52] {
      position: absolute;
      width: 100%;
      min-height: 5rem;
}
.detail-container .videobox .left-img[data-v-30e5dd52] {
      position: absolute;
      left: 15px;
      width: 20px;
      top: 5px;
}
.detail-container .videobox .right-img[data-v-30e5dd52] {
      position: absolute;
      right: 15px;
      top: 5px;
      width: 20px;
}
.detail-container #headerImage[data-v-30e5dd52] {
    width: 100%;
    min-height: 5rem;
    vertical-align: middle;
}
.detail-container .count-box[data-v-30e5dd52] {
    padding-right: 12px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    color: #333;
}
.detail-container .count-box .number-span[data-v-30e5dd52] {
      color: #E91A33;
      font-size: 16px;
      font-weight: bold;
}
.detail-container .count-box .count-text[data-v-30e5dd52] {
      color: #666;
      padding-left: 5px;
}
.detail-container .grey-line[data-v-30e5dd52] {
    height: 10px;
    width: 100%;
    background-color: #F3F4F5;
}
.detail-container .guarantee-box[data-v-30e5dd52] {
    padding: 0 16px;
}
.detail-container .guarantee-box .guarantee-title[data-v-30e5dd52] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-top: 16px;
      padding-bottom: 10px;
}
.detail-container .guarantee-box .guarantee-title .title-left[data-v-30e5dd52] {
        font-size: 16px;
        font-weight: bold;
        color: #000000;
}
.detail-container .guarantee-box .guarantee-title .title-right[data-v-30e5dd52] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.detail-container .guarantee-box .guarantee-title .title-right span[data-v-30e5dd52] {
          line-height: 15px;
          font-size: 13px;
          color: #00A758;
}
.detail-container .guarantee-box .guarantee-title .title-right img[data-v-30e5dd52] {
          margin-left: 2px;
          width: 16px;
          height: 16px;
          vertical-align: top;
}
.detail-container .guarantee-box .navWrap[data-v-30e5dd52] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border: 1px solid #EEEEEE;
      border-bottom: none;
      border-radius: 6px 6px 0px 0px;
}
.detail-container .guarantee-box .navWrap .versions[data-v-30e5dd52] {
        text-align: center;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        height: 44px;
        line-height: 44px;
        font-size: 13px;
        color: #00A758;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        border-bottom: 1px solid #EEEEEE;
}
.detail-container .guarantee-box .navWrap .versions[data-v-30e5dd52]::after {
          content: "";
          height: 16px;
          width: 0px;
          border: 1px solid #EEEEEE;
          position: absolute;
          right: 0;
          top: 50%;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
}
.detail-container .guarantee-box .navWrap .versions[data-v-30e5dd52]:last-child::after {
          border: none;
}
.detail-container .guarantee-box .navWrap .versions.recommend[data-v-30e5dd52]::before {
          content: "";
          background: url(../../assets/img/icon-recommend1.feafacb.png);
          background-size: 100% 100%;
          width: 30px;
          height: 30px;
          position: absolute;
          top: 0;
          right: 0;
          z-index: 2;
}
.detail-container .guarantee-box .navWrap .versions.active[data-v-30e5dd52] {
          background-color: #00A758;
          color: #fff;
          border-radius: 6px 6px 0px 0px;
          border: none;
}
.detail-container .guarantee-box .navWrap .versions.active[data-v-30e5dd52]::after {
            border: none;
}
.detail-container .tab-title[data-v-30e5dd52] {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    line-height: 20px;
    padding: 16px 0 12px 16px;
}
.detail-container .electronic-card[data-v-30e5dd52] {
    margin: 10px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 0 20px #eef4f7;
    box-shadow: 0 0 20px #eef4f7;
    border-radius: 8px;
}
.detail-container .electronic-card .card-img[data-v-30e5dd52] {
      margin-right: 14px;
}
.detail-container .electronic-card .card-img img[data-v-30e5dd52] {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
}
.detail-container .electronic-card .card-information .card-name[data-v-30e5dd52] {
      font-size: 14px;
      color: #00a758;
      font-weight: bold;
}
.detail-container .electronic-card .card-information .card-contactDetails[data-v-30e5dd52] {
      font-size: 12px;
      color: #00a758;
}
.detail-container .electronic-card .card-information .card-contactDetails a[data-v-30e5dd52] {
        font-size: 12px;
}
.detail-container .electronic-card .card-information p[data-v-30e5dd52] {
      font-size: 12px;
      color: #666666;
}
.detail-container .guide-box[data-v-30e5dd52] {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 120;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.detail-container .guide-box .guide-content[data-v-30e5dd52] {
      position: absolute;
      right: 8px;
      top: 40px;
      border-radius: 10px;
      background: -webkit-gradient(linear, left top, right top, from(#00c46e), to(#00A859));
      background: linear-gradient(to right, #00c46e, #00A859);
      padding: 8px 15px;
}
.detail-container .guide-box .guide-content .guide-text[data-v-30e5dd52] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-size: 14px;
        color: #fff;
        line-height: 1.8;
}
.detail-container .guide-box .guide-content .guide-text .guide-btn[data-v-30e5dd52] {
          border: 1px solid #fff;
          border-radius: 15px;
          padding: 3px 10px;
          margin-right: 8px;
          font-size: 12px;
          line-height: initial;
}
.detail-container .guide-box .guide-content .guide-arrow[data-v-30e5dd52] {
        width: 0px;
        height: 0px;
        border: 7px solid transparent;
        border-bottom-color: #00A859;
        position: absolute;
        top: -14px;
        right: 14px;
}
.detail-container .guide-box .guide-content .guide-arrow .guide-line[data-v-30e5dd52] {
          position: absolute;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          bottom: 0;
          width: 1px;
          height: 50px;
          background: #00A859;
}
.detail-container .forwardimg[data-v-30e5dd52] {
    width: 184px;
    position: fixed;
    right: 25px;
    bottom: 90px;
    z-index: 2;
}
.detail-container .pop1[data-v-30e5dd52] {
    display: block;
    margin: 200px auto;
    width: 67%;
}
.detail-container .forwardbox[data-v-30e5dd52] {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 103;
}

.ols-tab.if-fixed-nav {
  padding-top: 44px;
}
.ols-tab.if-fixed-nav .ols-tab-item-area {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
}
.ols-tab-item-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.ols-tab-item-area .ols-tab-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 100%;
    font-size: 13px;
    border: 1px solid #e4e4e4;
    border-left: none;
    color: #000;
}
.ols-tab-item-area .ols-tab-item:last-of-type {
      border-right: none;
}
.ols-tab-item-area .ols-tab-item.ols-active {
      font-weight: bold;
      color: #00A758;
}
.ols-tab-item-area .ols-tab-activeline {
    bottom: 0;
    background-color: #00A758;
    position: absolute;
}
.ols-tab-item-area .ols-transition-forward {
    -webkit-transition: right 0.3s ease-out, left 0.2s ease-in-out 0.3s;
    transition: right 0.3s ease-out, left 0.2s ease-in-out 0.3s;
}
.ols-tab-item-area .ols-transition-backward {
    -webkit-transition: left 0.3s ease-out, right 0.2s ease-in-out 0.3s;
    transition: left 0.3s ease-out, right 0.2s ease-in-out 0.3s;
}

.ols-tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  height: 100%;
  font-size: 13px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ols-tab-item.ols-active {
    color: #5cae78;
}

.version-detail[data-v-39c2ec5e] {
  margin: 0 0 20px;
  border: 1px solid #00A758;
  border-radius: 0 0 6px 6px;
}
.version-detail .version-content[data-v-39c2ec5e] {
    padding: 13px 0 8px 0;
}
.version-detail .version-content .version-box[data-v-39c2ec5e] {
      padding: 0 8px 0 16px;
      font-size: 0.32rem;
      font-weight: bold;
      color: #00A758;
      height: 24px;
      width: 23.5%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #E5F6EE;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
}
.version-detail .version-content .version-box-red[data-v-39c2ec5e] {
      padding: 0 8px 0 16px;
      font-size: 0.32rem;
      font-weight: bold;
      color: #EC6453;
      height: 24px;
      width: 23.5%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #FDEFEE;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
}
.version-detail ul[data-v-39c2ec5e] {
    margin: 0 16px;
    padding-bottom: 10px;
}
.version-detail ul li[data-v-39c2ec5e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      min-height: 44px;
      border-bottom: 1px dashed #E4E4E4;
      font-size: 13px;
}
.version-detail ul li[data-v-39c2ec5e]:last-child {
        border-bottom: none;
}
.version-detail ul li .version-title[data-v-39c2ec5e] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: bold;
        color: #333333;
}
.version-detail ul li .version-title img[data-v-39c2ec5e] {
          width: 20px;
          height: 20px;
          vertical-align: top;
          padding-right: 8px;
}
.version-detail ul li .color-red[data-v-39c2ec5e] {
        color: #E91A33;
        font-weight: normal;
}
.version-detail ul li .finial-amount[data-v-39c2ec5e] {
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
}
.version-detail .coverageDescPic img[data-v-39c2ec5e] {
    display: block;
    width: 100%;
}

.footer-box[data-v-149f6a6e] {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.ols-cell-group[data-v-149f6a6e] {
  margin-left: 0.4rem;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-cell-group .ols-form-item[data-v-149f6a6e] {
    margin: 0;
}
.ols-cell-group .ols-form-item[data-v-149f6a6e] .ols-form-item-label {
      -ms-flex-preferred-size: 125px;
          flex-basis: 125px;
      color: #333;
}
.ols-cell-group[data-v-149f6a6e]:last-of-type {
    border-bottom: none;
}
.popup[data-v-149f6a6e] .ols-form-list {
  padding-bottom: 60px;
}
.popup[data-v-149f6a6e] .ols-form-list .ols-cell-group {
    padding-bottom: 0;
}
.popup[data-v-149f6a6e] .ols-form-list .ols-cell-group .ols-form-item {
      margin: 0;
      padding-bottom: 0;
}
.popup[data-v-149f6a6e] .ols-form-list .ols-cell-group .ols-form-item .ols-form-item-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: baseline;
            -ms-flex-align: baseline;
                align-items: baseline;
}
.fade-enter-active[data-v-149f6a6e],
.fade-leave-active[data-v-149f6a6e] {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
.fade-enter[data-v-149f6a6e],
.fade-leave-to[data-v-149f6a6e] {
  opacity: 0;
}
.mask-pop[data-v-149f6a6e] {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
}
#footer[data-v-149f6a6e] {
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 -3px 3px #eaeaea;
          box-shadow: 0 -3px 3px #eaeaea;
  position: fixed;
  bottom: 0;
  z-index: 10;
  color: #afafaf;
  font-style: normal;
}
#footer .color-red[data-v-149f6a6e] {
    color: #e81c34;
}
#footer .btn-left[data-v-149f6a6e] {
    color: #333;
    font-size: 14px;
    /*px*/
}
#footer .btn-left .newPrice[data-v-149f6a6e] {
      font-size: 18px;
      /*px*/
}
.next-btn[data-v-149f6a6e] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.left[data-v-149f6a6e] {
  width: 50%;
  float: left;
  text-align: center;
  line-height: 49px;
  margin: 0 auto;
}
.top[data-v-149f6a6e] {
  font-size: 14px;
  color: #afafaf;
  text-align: center;
}
.right[data-v-149f6a6e] {
  width: 50%;
  float: right;
  background: #5cae78;
  font-size: 14px;
  /*px*/
  line-height: 49px;
  color: #fff;
  text-align: center;
}
.submit-btn[data-v-149f6a6e] {
  width: 100%;
  padding-bottom: 34px;
  background-color: #fff;
  -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
}
.submit-btn .submit-btn-content[data-v-149f6a6e] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    padding: 4px 12px 0px 10px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.submit-btn .submit-btn-content a[data-v-149f6a6e] {
      display: block;
}
.submit-btn .submit-btn-content .submit-btn-content-center[data-v-149f6a6e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      font-size: 12px;
      color: #666666;
}
.submit-btn .submit-btn-content .submit-btn-content-center .submit-red[data-v-149f6a6e] {
        color: #E91A33;
}
.submit-btn .submit-btn-content .submit-btn-content-center .submit-size[data-v-149f6a6e] {
        font-size: 16px;
        padding-left: 4px;
        line-height: 20px;
}
.submit-btn .submit-btn-content .submit-btn-content-right[data-v-149f6a6e] {
      width: 148px;
      height: 40px;
      line-height: 40px;
      background: #00A758;
      border-radius: 40px 40px 40px 40px;
      font-size: 18px;
      font-weight: 500;
      color: #FFFFFF;
      font-family: Source Han Sans CN, Source Han Sans CN;
      text-align: center;
}
.trial-right[data-v-149f6a6e] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.trial-right .trial-list[data-v-149f6a6e] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
    padding: 4px 0;
    border-radius: 30px;
    border: 1px solid #B9B9B9;
    margin-left: 12px;
    margin-bottom: 8px;
    min-width: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.trial-right .current-trail[data-v-149f6a6e] {
    color: #00A758;
    border: 1px solid #00A758;
}
.terms-title[data-v-149f6a6e] {
  height: 48px;
  background-image: url(../../assets/img/bg_title.6194180.png);
  background-size: 100% 100%;
  background-position: center center;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  padding: 12px 0;
  text-align: center;
  position: relative;
  border-radius: 12px 12px 0px 0px;
  margin: 0 16px;
}
.terms-title .trail-line[data-v-149f6a6e] {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 13px;
    width: 108px;
    height: 4px;
    background: #00A758;
    border-radius: 0px 0px 0px 0px;
    opacity: 0.4;
}
.terms-page[data-v-149f6a6e] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}

.submit-btn-content-left[data-v-1afaad22] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.submit-btn-content-left .agent-headImage[data-v-1afaad22] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 4px;
}
.submit-btn-content-left .agent-headImage img[data-v-1afaad22] {
      width: 100%;
      height: 100%;
}
.submit-btn-content-left .agent-agentName[data-v-1afaad22] {
    height: 18px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 13px;
    color: #00A76C;
    line-height: 18px;
}
.submit-btn-content-left .agent-toDetail[data-v-1afaad22] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: -2px;
}
.submit-btn-content-left .agent-toDetail .agent-toDetail-text[data-v-1afaad22] {
      font-family: Source Han Sans CN, Source Han Sans CN;
      font-weight: 400;
      font-size: 10px;
      color: #999999;
      line-height: 12px;
      margin-right: 2px;
}
.submit-btn-content-left .agent-toDetail .agent-toDetail-img[data-v-1afaad22] {
      width: 8px;
      height: 8px;
}

.pay-detail[data-v-dc76b3d6] {
  background: #fafafa;
  height: 100%;
  overflow: hidden;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-detail .main-content[data-v-dc76b3d6] {
    height: 100%;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.ols-checker[data-v-dbb2e37a] {
  min-height: 28px;
  padding: 0;
  position: relative;
  width: 100%;
}
.ols-checker[data-v-dbb2e37a]:before {
    content: '';
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.ols-checker .ols-checker-input[data-v-dbb2e37a] {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: 0;
    position: absolute;
    visibility: hidden;
}
.ols-checker .ols-checker-options[data-v-dbb2e37a] {
    white-space: nowrap;
    text-align: left;
    font-size: 0;
}
.ols-checker .ols-checker-options[data-v-dbb2e37a]:after {
      content: '';
      display: table;
      clear: both;
}
.ols-checker .ols-checker-option[data-v-dbb2e37a] {
    display: inline-block;
    height: 28px;
    line-height: 26px;
    margin-right: 10px;
    margin-bottom: 8px;
    width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.ols-checker .ols-checker-option.select[data-v-dbb2e37a] {
      color: #fff;
      background: #5cae78;
      border-color: #5cae78;
}
.ols-checker .ols-checker-option[data-v-dbb2e37a]:last-of-type {
      margin-right: 0;
}

.ols-checker-item[data-v-63b53f27] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.06rem 15px;
}
.ols-checker-item-box[data-v-63b53f27] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #ccc;
  position: relative;
}
.ols-checker-item-box[data-v-63b53f27],
.ols-checker-item-active[data-v-63b53f27] {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ols-checker-item-active[data-v-63b53f27] {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.ols-checker-item-content[data-v-63b53f27] {
  font-size: 0.12rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
  line-height: 0.16rem;
}

.ols-viewer[data-v-e8292cd2] {
  height: 28px;
  line-height: 28px;
  color: #666;
  text-align: left;
}

.ols-select[data-v-71b06352] {
  min-height: 28px;
  min-width: 1px;
  padding: 0;
}
.ols-select .ols-select-input[data-v-71b06352] {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: 0;
    position: absolute;
    visibility: hidden;
}
.ols-select .ols-select-content[data-v-71b06352] {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
    height: 28px;
    line-height: 28px;
    min-width: 0.4rem;
    text-align: left;
    color: #666;
}
.ols-select .ols-select-content[data-v-71b06352]:empty::before {
      content: attr(placeholder);
      color: #c5c5c5;
}
.ols-select .ols-select-allow-right[data-v-71b06352]:after {
    border: 2px solid #999;
    border-bottom-width: 0;
    border-left-width: 0;
    content: "";
    top: 50%;
    right: 0.5rem;
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
}
div, ul, li {
  margin: 0;
  padding: 0;
}
ul, li {
  list-style: none outside none;
}
/* layer begin */
.ios-select-widget-box.olay {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgba(0, 0, 0, 0.75);
}
.ios-select-widget-box.olay > div {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  bottom: 0;
  left: 0;
  visibility: visible;
}
.ios-select-widget-box header.iosselect-header {
  height: 44px;
  line-height: 44px;
  background-color: #eee;
  width: 100%;
  z-index: 9999;
  text-align: center;
}
.ios-select-widget-box header.iosselect-header a {
  font-size: 16px;
  color: #e94643;
  text-decoration: none;
}
.ios-select-widget-box header.iosselect-header a.close {
  float: left;
  padding-left: 15px;
  height: 44px;
  line-height: 44px;
}
.ios-select-widget-box header.iosselect-header a.sure {
  float: right;
  padding-right: 15px;
  height: 44px;
  line-height: 44px;
}
.ios-select-widget-box {
  padding-top: 44px;
}
.ios-select-widget-box .one-level-contain,
.ios-select-widget-box .two-level-contain,
.ios-select-widget-box .three-level-contain,
.ios-select-widget-box .four-level-contain,
.ios-select-widget-box .five-level-contain {
  height: 100%;
  overflow: hidden;
}
.ios-select-widget-box .iosselect-box {
  overflow: hidden;
}
.ios-select-widget-box .iosselect-box > div {
  display: block;
  float: left;
}
.ios-select-widget-box ul {
  background-color: #fff;
}
.ios-select-widget-box ul li {
  font-size: 13px;
  height: 35px;
  line-height: 35px;
  background-color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #111;
  opacity: .3;
}
.ios-select-widget-box ul li.at {
  font-size: 16px;
  opacity: 1;
}
.ios-select-widget-box ul li.side1 {
  font-size: 15px;
  opacity: .7;
}
.ios-select-widget-box ul li.side2 {
  font-size: 14px;
  opacity: .5;
}
.ios-select-widget-box.one-level-box .one-level-contain {
  width: 100%;
}
.ios-select-widget-box.one-level-box .two-level-contain,
.ios-select-widget-box.one-level-box .three-level-contain,
.ios-select-widget-box.one-level-box .four-level-contain,
.ios-select-widget-box.one-level-box .five-level-contain,
.ios-select-widget-box.one-level-box .six-level-contain {
  width: 0;
}
.ios-select-widget-box.two-level-box .one-level-contain, 
.ios-select-widget-box.two-level-box .two-level-contain {
width: 50%;
}
.ios-select-widget-box.two-level-box .three-level-contain,
.ios-select-widget-box.two-level-box .four-level-contain,
.ios-select-widget-box.two-level-box .five-level-contain,
.ios-select-widget-box.two-level-box .six-level-contain {
  width: 0;
}
.ios-select-widget-box.three-level-box .one-level-contain, 
.ios-select-widget-box.three-level-box .two-level-contain {
  width: 30%;
}
.ios-select-widget-box.three-level-box .three-level-contain {
  width: 40%;
}
.ios-select-widget-box.three-level-box .four-level-contain
.ios-select-widget-box.three-level-box .five-level-contain,
.ios-select-widget-box.three-level-box .six-level-contain {
  width: 0%;
}
.ios-select-widget-box.four-level-box .one-level-contain, 
.ios-select-widget-box.four-level-box .two-level-contain,
.ios-select-widget-box.four-level-box .three-level-contain,
.ios-select-widget-box.four-level-box .four-level-contain {
  width: 25%;
}
.ios-select-widget-box.four-level-box .five-level-contain,
.ios-select-widget-box.four-level-box .six-level-contain {
  width: 0%;
}
.ios-select-widget-box.five-level-box .one-level-contain, 
.ios-select-widget-box.five-level-box .two-level-contain,
.ios-select-widget-box.five-level-box .three-level-contain,
.ios-select-widget-box.five-level-box .four-level-contain,
.ios-select-widget-box.five-level-box .five-level-contain {
width: 20%;
}
.ios-select-widget-box.five-level-box .six-level-contain {
width: 0%;
}
.ios-select-widget-box.six-level-box .one-level-contain, 
.ios-select-widget-box.six-level-box .two-level-contain,
.ios-select-widget-box.six-level-box .three-level-contain,
.ios-select-widget-box.six-level-box .four-level-contain,
.ios-select-widget-box.six-level-box .five-level-contain {
width: 16%;
}
.ios-select-widget-box.six-level-box .six-level-contain {
width: 20%;
}
.ios-select-widget-box .cover-area1 {
  width: 100%;
  border: none;
  border-top: 1px solid #d9d9d9;
  position: absolute;
  top: 149px;
  margin: 0;
  height: 0;
}
.ios-select-widget-box .cover-area2 {
  width: 100%;
  border: none;
  border-top: 1px solid #d9d9d9;
  position: absolute;
  top: 183px;
  margin: 0;
  height: 0;
}
.ios-select-widget-box #iosSelectTitle {
  margin: 0;
  padding: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  color: #333;
}
.ios-select-body-class {
  overflow: hidden;
}
.ios-select-body-class body {
  -ms-touch-action: none;
      touch-action: none;
}
.ios-select-widget-box.olay > div > .ios-select-loading-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,.5);
  display: none;
}
.ios-select-widget-box.olay > div > .ios-select-loading-box > .ios-select-loading { 
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OEMxMEI3NDI3MEIxMUU2ODVGMzhFNjYyMDIyOUFCMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OEMxMEI3NTI3MEIxMUU2ODVGMzhFNjYyMDIyOUFCMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU4QzEwQjcyMjcwQjExRTY4NUYzOEU2NjIwMjI5QUIwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU4QzEwQjczMjcwQjExRTY4NUYzOEU2NjIwMjI5QUIwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+GeWqMwAAA+BJREFUeNrMmVlsTGEUx+9cXZQiLZWKklhbQSSlSMUWSxAiJGJ5aSQehOiDF7yI4EFILW99I3iRSJGUPkiILSKp2OuJVtHWkrRVapn2jv+R/ycnn5l27rQz10l+mWlyl/+c833nO+c0FIlEnATMBbPAIn5OBuPAENAKToC74BtoB59AG/D9spBPgaPBdrAFjJH7Fa66TkRuNe8gP8Bb8Ap8j/eFaXFelwv286WZfKG2WL9SX5cFCuntBvAc/OoPD64HJ8EI5Q3tmW7whl4pAl/AUfAEDKZnQ1HuFXGPQGOiAsW7x8A26wUhirgMLnGtfe3hGcO5NApARpRnSchrY0UhlkAJxxmw0npYBzgOKinSj6WDCfRyphWFJnAPdMUjUH71WbDKElcDykGL0zcbCEroVf389+CW7Uk3ygNk/azghYIHDoCN/SDO4W6+A55aAiUrzImWz7StA2WWuF2gIpEc1ovVgQeWyELm06gCc8ARJU44DM45yTPZII8tkXO5DP4RuI8iPYqr4YmQbJN8+E4JlA1abAuUBbtZeU526O4khDWW3QdhK9TZWmAZd6/x3inw0UmdSZJ/pgSKlilGoMvTwoiTw/20k3p7yTyovRgScTNAvgrvFSbkVJuE+LU6GiXEefJHqfKefF5zgrMGVRnJZ4HEerryXjdzU1DWbB2BI10mRuPBej+1WhKsi8vLeDDXZRllwtvoBG8davNmS4gHUZyTQIWSrM1iQpyZptafo4QGabp9+JNmOijMY9MTtGWpEHe5PDHMGsz/DwQOUwI7XVYUZheP1ZVEAJbOFsGswTYR+EKF2NWVRABWwHPYeLDFZWKOKJFLAhRYpMQJjS7rsWYlcjlTT6pNOr5pahfL5m12KaparUPpZTcEILCEjjGniCy9iMk3F9hImzCXcZqQKhOnLFShjbBX/psQP4Aq5UUpdfZEGXEkKzGvZf4zu/exOdV0T1LJCZTx4gK2msm2Uq494z1pS29Ea5ra2RPrrm4HpwvJsplgtTW/kXq0M1ZffF2F2uMNe+nJUD+HVWaLm8AAtXNrOXTqcfQh2fwQmKdST4TTgAp6ui+WTWFTrUpedu15Fs29Do/kuDsIZlsiW7njryZQ2MrAaD5Yqko88+w6zoPCfsdv5VwjnnXayA67zYmUdGM/e0i+E7nWivnDPUWEz6iyPedngLkY7ARDrQeb72GOz5roVY/eylMHvxflXjkpLoKHfZ2wmhJIkvcylUi9BAnTa9U9DD59CzQm/csaZv0cn0JbOeK4ye/xbfcE/w0hYZvElnU8GEXBGRQjeewzi5B6rtP6RGY9vwUYACMHTam1T1ebAAAAAElFTkSuQmCC) no-repeat 0 0;
  background-size: contain;
  -webkit-animation: loading-keyframe 1s infinite linear;
          animation: loading-keyframe 1s infinite linear;
}
.fadeInUp .layer{
  -webkit-animation: fadeInUp .5s;
  animation: fadeInUp .5s;
}
.fadeOutDown .layer{
  -webkit-animation: fadeOutDown .5s!important;
  animation: fadeOutDown .5s!important;
}
@-webkit-keyframes loading-keyframe {
  from {
      -webkit-transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(360deg);
  }
}
@keyframes loading-keyframe {
  from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
  }
}
@-webkit-keyframes fadeInUp {
  from {
      opacity: 0;
      -webkit-transform: translate3d(0,100%,0);
  }
  to {
      opacity: 1;
      -webkit-transform: none;
  }
}
@keyframes fadeInUp {
  from {
      opacity: 0;
      -webkit-transform: translate3d(0,100%,0);
              transform: translate3d(0,100%,0);
  }
  to {
      opacity: 1;
      -webkit-transform: none;
              transform: none;
  }
}
@-webkit-keyframes fadeOutDown {
  from {
      opacity: 1;
  }

  to {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
      opacity: 1;
  }

  to {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
              transform: translate3d(0, 100%, 0);
  }
}
.ols-form-list .ols-form-item[data-v-02bd758e] {
  margin-left: 0.4rem;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed #e6e6e6;
  position: relative;
}
.ols-form-list .ols-form-item[data-v-02bd758e]:last-of-type {
    border-bottom: none;
}
.ols-form-list .ols-form-item .ols-form-item-inner[data-v-02bd758e] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.ols-form-list .ols-form-item .ols-form-item-label[data-v-02bd758e] {
    text-align: left;
    -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
    height: 28px;
    line-height: 28px;
    white-space: nowrap;
    color: #999;
}
.ols-form-list .ols-form-item .isNecessary[data-v-02bd758e] {
    color: #ff0000;
}
.ols-form-list .ols-form-item .ols-form-item-content[data-v-02bd758e] {
    width: 100%;
    text-align: right;
}
.ols-form-list .ols-form-item .ols-form-item-describe[data-v-02bd758e] {
    text-align: left;
}
.ols-form-list .ols-form-item .ols-form-item-describe .info-text[data-v-02bd758e] {
      color: #c5c5c5;
      font-size: 14px;
}

.ols-cell-group[data-v-13a8723c] {
  margin-bottom: 10px;
  background: #fff;
}
.ols-cell-group .ols-form-item-group-title[data-v-13a8723c] {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    padding: 8px 0.4rem 0;
    text-align: left;
    height: 28px;
    line-height: 28px;
    color: #000;
    font-size: 15px;
    background-color: #fff;
}
.ols-cell-group .ols-cell[data-v-13a8723c]:after {
    content: '';
    position: absolute;
    height: 1px;
    bottom: 0;
    right: 0;
    left: 15px;
    background-color: #e4e4e4;
}
.ols-cell-group .ols-cell[data-v-13a8723c]:last-child:after {
    display: none;
}
.ols-cell-group .ols-cell.ols-cell-type-column[data-v-13a8723c]:after {
    left: 0;
}

.ols-input[data-v-04ae8f2d] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ols-input .ols-input-wrapper[data-v-04ae8f2d] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.ols-input .ols-input-wrapper .ols-validate-errmsg[data-v-04ae8f2d] {
      text-align: right !important;
}
.ols-input input[data-v-04ae8f2d] {
    height: 28px;
    line-height: 28px;
    width: 100%;
    border: none;
    padding: 0;
    font-size: 14px;
    text-align: left;
    color: #666;
}
.ols-input input[data-v-04ae8f2d]:disabled {
      background: #fff;
}
.ols-input input[data-v-04ae8f2d]::-webkit-input-placeholder {
      color: #c5c5c5;
}
.ols-input input[data-v-04ae8f2d]:focus {
    outline: none;
}
.ols-input .certificate[data-v-04ae8f2d] {
    width: 30px;
    height: 24px;
}
.ols-input .certificate img[data-v-04ae8f2d] {
      width: 100%;
}
.ols-input .setUserInfo .iconfont[data-v-04ae8f2d] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    font-size: 22px;
    color: #459855;
}
.ols-input .ols-phone-code-btn[data-v-04ae8f2d] {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 28px;
    line-height: 28px;
    position: relative;
    margin-left: 10px;
    padding-left: 10px;
    text-align: center;
    white-space: nowrap;
    color: #666;
    font-size: 13px;
}
.ols-input .ols-phone-code-btn[data-v-04ae8f2d]:before {
      content: "";
      display: inline-block;
      position: absolute;
      left: 0;
      width: 1px;
      height: 28px;
      background-color: #f5f5f5;
}
.ols-input .ols-phone-code-btn.active[data-v-04ae8f2d] {
      color: #5cae78;
}

.ols-alert-mask[data-v-f4fd0172] {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 99999 !important;
  background: rgba(0, 0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ols-alert-mask-animate[data-v-f4fd0172] {
  background: rgba(0, 0, 0, 0.5);
}
.ols-alert-wrap[data-v-f4fd0172] {
  width: 90%;
  background: #fff;
  border-radius: 0.08rem;
  overflow: auto;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
  z-index: 99999 !important;
}
.ols-alert-wrap-animate[data-v-f4fd0172] {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.ols-alert-header-p[data-v-f4fd0172] {
  text-align: center;
  line-height: 40px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 18px;
  color: #424242;
}
.ols-alert-body[data-v-f4fd0172] {
  padding: 10px 0;
}
.ols-alert-body-p[data-v-f4fd0172] {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 22px;
  color: #424242;
  font: initial;
}
.ols-alert-footer[data-v-f4fd0172] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 45px;
}
.ols-alert-footer-b[data-v-f4fd0172] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  letter-spacing: 10px;
  outline: none;
  border: none;
  background: #5cae78;
  color: #fff;
}
.ols-alert-close[data-v-f4fd0172] {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  color: #ccc;
}

.ols-tab.if-fixed-nav {
  padding-top: 44px;
}
.ols-tab.if-fixed-nav .ols-tab-item-area {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
}
.ols-tab-item-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  position: relative;
  background-color: #fff;
}
.ols-tab-item-area .ols-tab-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 100%;
    font-size: 14px;
    border: 1px solid #e4e4e4;
    border-left: none;
}
.ols-tab-item-area .ols-tab-item:last-of-type {
      border-right: none;
}
.ols-tab-item-area .ols-tab-item.ols-active {
      color: #5cae78;
}
.ols-tab-item-area .ols-tab-activeline {
    bottom: 0;
    background: #5cae78;
    position: absolute;
}
.ols-tab-item-area .ols-transition-forward {
    -webkit-transition: right 0.3s ease-out, left 0.2s ease-in-out 0.3s;
    transition: right 0.3s ease-out, left 0.2s ease-in-out 0.3s;
}
.ols-tab-item-area .ols-transition-backward {
    -webkit-transition: left 0.3s ease-out, right 0.2s ease-in-out 0.3s;
    transition: left 0.3s ease-out, right 0.2s ease-in-out 0.3s;
}

.ols-tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ols-tab-item.ols-active {
    color: #5cae78;
}

.coupon-wrap .coupon-container .coupon-one[data-v-493d3c86] {
  padding: 8px 16px 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.coupon-wrap .coupon-container .coupon-one .name[data-v-493d3c86] {
    margin-right: 20px;
    -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background: #069c4d;
}
.coupon-wrap .coupon-container .coupon-one .content[data-v-493d3c86] {
    font-size: 10px;
    color: #898989;
}
.coupon-wrap .coupon-container .coupon-one .content .content-title[data-v-493d3c86] {
      line-height: 28px;
      font-size: 14px;
      color: #000;
}
.coupon-wrap .coupon-container .coupon-more .top[data-v-493d3c86] {
  height: 0.45rem;
  line-height: 0.45rem;
  position: relative;
  margin: 0.3rem 0;
}
.coupon-wrap .coupon-container .coupon-more .top .name[data-v-493d3c86] {
    z-index: 1;
    position: relative;
    font-size: 0.42rem;
    text-align: center;
    color: #333333;
    width: 1.8rem;
    margin: 0 auto;
}
.coupon-wrap .coupon-container .coupon-more .top .name[data-v-493d3c86]::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -1.6rem;
      width: 1.37rem;
      height: 1px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      background: #d8d8d8;
}
.coupon-wrap .coupon-container .coupon-more .top .name[data-v-493d3c86]::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -1.6rem;
      width: 1.37rem;
      height: 1px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      background: #d8d8d8;
}
.coupon-wrap .coupon-container .coupon-more .title[data-v-493d3c86] {
  margin: 0.375rem 0 0.18rem 0;
  font-size: 0.375rem;
  padding-left: 15px;
  line-height: 24px;
  color: #999;
}
.coupon-wrap .coupon-container .coupon-more ul[data-v-493d3c86] {
  margin: 0 15px;
  background-color: #fff;
}
.coupon-wrap .coupon-container .coupon-more ul li[data-v-493d3c86] {
    margin: 0 0.15rem;
    padding: 0.4rem 0.15rem;
    font-size: 0.325rem;
    color: #999999;
}
.coupon-wrap .coupon-container .coupon-more ul li[data-v-493d3c86]:not(:last-child) {
      border-bottom: 1px dashed #eeeeee;
}
.coupon-wrap .coupon-container .coupon-more ul li .content-title[data-v-493d3c86] {
      margin-bottom: 0.25rem;
      font-size: 0.425rem;
      color: #222222;
}
.coupon-wrap .coupon-container .coupon-more ul li .content[data-v-493d3c86] img {
      max-width: 50px;
}

.pay-result .pay-result-box[data-v-4dd67497] {
  padding: 24px;
  text-align: center;
}
.pay-result .pay-result-box .success-img[data-v-4dd67497] {
    width: 116px;
    height: 116px;
}
.pay-result .pay-result-box .success-text[data-v-4dd67497] {
    padding: 24px 0;
    font-size: 18px;
    font-weight: bold;
    color: #00A758;
    line-height: 20px;
}
.pay-result .pay-result-box .server-box[data-v-4dd67497] {
    width: 100%;
    position: relative;
    padding: 4px 4px 0 4px;
    margin-bottom: 43px;
}
.pay-result .pay-result-box .server-box .bg-img[data-v-4dd67497] {
      width: 100%;
      height: 8px;
      position: absolute;
      left: 0;
      top: 0;
}
.pay-result .pay-result-box .server-box .server-content[data-v-4dd67497] {
      padding: 16px 24px 4px;
      background-color: #fff;
      position: relative;
      border-radius: 0px 0px 6px 6px;
}
.pay-result .pay-result-box .server-box .server-content .server-list[data-v-4dd67497] {
        padding-bottom: 33px;
}
.pay-result .pay-result-box .server-box .server-content .server-list .server-item[data-v-4dd67497] {
          padding-top: 12px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 13px;
          color: #333333;
}
.pay-result .pay-result-box .server-box .server-content .server-list .server-item .tick-img[data-v-4dd67497] {
            width: 20px;
            height: 20px;
            margin-right: 8px;
}
.pay-result .pay-result-box .server-box .server-content .rights-detail[data-v-4dd67497] {
        padding: 16px 0 36px 0;
        font-size: 13px;
        font-weight: bold;
        color: #333333;
        line-height: 20px;
        text-align: left;
}
.pay-result .pay-result-box .server-box .server-content .jump-detail-btn[data-v-4dd67497] {
        height: 40px;
        background: #00A758;
        border-radius: 50px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 2px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 12px;
}
.pay-result .pay-result-box .server-box .server-content .jump-welfare-btn[data-v-4dd67497] {
        height: 40px;
        border-radius: 50px;
        background: #fff;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 2px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border: 1px solid #00A758;
        color: #00A758;
        margin-bottom: 12px;
}
.pay-result .product-box .product-title[data-v-4dd67497] {
  font-size: 16px;
  color: #666666;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.pay-result .product-box .product-title .product-line[data-v-4dd67497] {
    width: 16px;
    height: 2px;
    background: #D9D9D9;
    margin-right: 6px;
}
.pay-result .product-box .product-title .product-line-right[data-v-4dd67497] {
    width: 16px;
    height: 2px;
    background: #D9D9D9;
    margin-left: 6px;
}
.pay-result .product-box .product-list[data-v-4dd67497] {
  padding: 10px 10px 16px 10px;
  background-color: #fff;
}
.pay-result .product-box .product-list .lunbo[data-v-4dd67497] {
    margin-bottom: 16px;
}
.pay-result .product-box .product-list .lunbo[data-v-4dd67497] .van-swipe__indicator {
      width: 4px;
      height: 4px;
      border-radius: 100%;
      -webkit-transition: opacity .2s, background-color .2s;
      transition: opacity .2s, background-color .2s;
      border: 1px solid #00A758;
}
.pay-result .product-box .product-list .lunbo[data-v-4dd67497] .van-swipe__indicator .van-swipe__indicator--active {
      width: 4px;
      height: 4px;
      background-color: #ebedf0;
      border-radius: 100%;
      border: 1px solid #00A758;
      -webkit-transition: opacity .2s, background-color .2s;
      transition: opacity .2s, background-color .2s;
}
.pay-result .product-box .product-list .product-item[data-v-4dd67497] {
    padding-bottom: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.pay-result .product-box .product-list .product-item .product-left[data-v-4dd67497] {
      margin-right: 12px;
}
.pay-result .product-box .product-list .product-item .product-left img[data-v-4dd67497] {
        width: 95px;
        height: 95px;
}
.pay-result .product-box .product-list .product-item .product-right .right-title[data-v-4dd67497] {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      line-height: 24px;
      padding-bottom: 4px;
}
.pay-result .product-box .product-list .product-item .product-right .right-tips[data-v-4dd67497] {
      padding-bottom: 13px;
      font-size: 14px;
      color: #888888;
      line-height: 16px;
}
.pay-result .product-box .product-list .product-item .product-right .right-label[data-v-4dd67497] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.pay-result .product-box .product-list .product-item .product-right .right-label .label-item[data-v-4dd67497] {
        border-radius: 16px;
        border: 1px solid #00A758;
        font-size: 11px;
        color: #00A758;
        line-height: 15px;
        padding: 0 8px;
        margin-bottom: 5px;
        margin-right: 5px;
}
.pay-result .pay-faliure[data-v-4dd67497] {
  text-align: center;
  padding-top: 24px;
}
.pay-result .pay-faliure .img-fail[data-v-4dd67497] {
    width: 116px;
    height: 116px;
}
.pay-result .pay-faliure .fail-text[data-v-4dd67497] {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    line-height: 20px;
    padding: 24px 0 32px 0;
}
.pay-result .pay-faliure .fali-btn[data-v-4dd67497] {
    width: 263px;
    height: 40px;
    background: #00A758;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 20px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.pdf-wrap[data-v-9d8496f0] {
  width: 100%;
  height: 100vh;
}
iframe[data-v-9d8496f0] {
  width: 100%;
  height: 100%;
}
.btn-div[data-v-9d8496f0] {
  margin-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #686868;
  color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.prebtn[data-v-9d8496f0] {
  width: 50px;
  height: 25px;
  background-color: #ffffff;
  border-radius: 4px;
  color: black;
  font-size: 12px;
  text-align: center;
  line-height: 25px;
}

.pdf-wrap[data-v-17c13801] {
  width: 100%;
  height: 100vh;
}
iframe[data-v-17c13801] {
  width: 100%;
  height: 100%;
}
.btn-div[data-v-17c13801] {
  margin-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #686868;
  color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.prebtn[data-v-17c13801] {
  width: 50px;
  height: 25px;
  background-color: #ffffff;
  border-radius: 4px;
  color: black;
  font-size: 12px;
  text-align: center;
  line-height: 25px;
}

.author-warp[data-v-0e2f1f65] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.author-warp .title[data-v-0e2f1f65] {
    margin-top: 30px;
    font-size: 16px;
    color: #000;
}
.author-warp .loading[data-v-0e2f1f65] {
    width: 80px;
    height: 40px;
    margin: 0 auto;
    margin-top: -100px;
    text-align: center;
}
.author-warp .loading span[data-v-0e2f1f65] {
      display: inline-block;
      width: 8px;
      height: 100%;
      border-radius: 4px;
      background: lightgreen;
      -webkit-animation: load-data-v-0e2f1f65 1s ease infinite;
              animation: load-data-v-0e2f1f65 1s ease infinite;
}
@-webkit-keyframes load-data-v-0e2f1f65 {
0%,
  100% {
    height: 40px;
    background: lightgreen;
}
50% {
    height: 70px;
    margin: -15px 0;
    background: lightblue;
}
}
@keyframes load-data-v-0e2f1f65 {
0%,
  100% {
    height: 40px;
    background: lightgreen;
}
50% {
    height: 70px;
    margin: -15px 0;
    background: lightblue;
}
}
.author-warp .loading span[data-v-0e2f1f65]:nth-child(2) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}
.author-warp .loading span[data-v-0e2f1f65]:nth-child(3) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
}
.author-warp .loading span[data-v-0e2f1f65]:nth-child(4) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
}
.author-warp .loading span[data-v-0e2f1f65]:nth-child(5) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
}

.nav[data-v-7a13a0b6] {
  height: 50px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.nav span[data-v-7a13a0b6] {
    display: inline-block;
    padding: 0 8px;
    height: 100%;
    line-height: 50px;
    font-size: 14px;
}
.nav span.activted[data-v-7a13a0b6] {
      color: #079b4d;
      border-bottom: 5px solid #079b4d;
}
.no-customer .tip[data-v-7a13a0b6] {
  margin: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #adadaf;
}
.no-customer .btn[data-v-7a13a0b6] {
  text-align: center;
  margin: 20px 0;
}
.no-customer .btn .add[data-v-7a13a0b6] {
    display: inline-block;
    line-height: 35px;
    width: 160px;
    font-size: 14px;
    color: #079b4d;
    border: 1px solid #079b4d;
    border-radius: 5px;
}
.no-customer .btn .add.ins[data-v-7a13a0b6] {
      color: #fff;
      width: 90%;
      background: #079b4d;
}
.user-info ul[data-v-7a13a0b6] {
  margin: 20px auto;
  padding: 15px;
  width: 90%;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 10px #7d7d7d;
          box-shadow: 5px 5px 10px #7d7d7d;
}
.user-info ul li[data-v-7a13a0b6] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 25px;
}
.user-info ul li[data-v-7a13a0b6]:nth-child(1) {
      margin-bottom: 10px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.user-info ul li .name[data-v-7a13a0b6] {
      font-size: 17px;
      font-weight: 700;
}
.user-info ul li i[data-v-7a13a0b6] {
      font-size: 22px;
      color: #079b4d;
}
.user-info ul li .title[data-v-7a13a0b6] {
      -ms-flex-preferred-size: 30%;
          flex-basis: 30%;
}

.add-customer[data-v-6f31bbdc] {
  font-size: 14px;
  color: #7d7d7d;
}
.add-customer .title[data-v-6f31bbdc] {
    height: 42px;
    line-height: 40px;
    margin-left: 15px;
}
.add-customer .tip[data-v-6f31bbdc] {
    margin: 20px 0 0 15px;
}
.add-customer .btn[data-v-6f31bbdc] {
    width: 90%;
    background-color: #079b4d;
    color: #fff;
    border-radius: 5px;
    line-height: 40px;
    margin: 30px auto;
    text-align: center;
}
.add-customer .btn.del[data-v-6f31bbdc] {
      background-color: #ee5c42;
}

.guide-wrap img[data-v-7d0ec2b8] {
  width: 100%;
}
.guide-wrap .container[data-v-7d0ec2b8] {
  padding: 0 20px 20px;
}
.guide-wrap .title[data-v-7d0ec2b8] {
  margin-top: 10px;
  color: #169248;
}
.guide-wrap .title img[data-v-7d0ec2b8] {
    width: 10px;
    vertical-align: middle;
    margin: 0 10px;
}
.guide-wrap .title img.rotate[data-v-7d0ec2b8] {
      -webkit-transform: rotateX(180deg);
              transform: rotateX(180deg);
}
.guide-wrap .bottom[data-v-7d0ec2b8] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.guide-wrap .bottom img[data-v-7d0ec2b8] {
    vertical-align: middle;
    width: 38px;
    height: 36px;
    margin: 10px 0;
}
.guide-wrap .bottom .tip[data-v-7d0ec2b8] {
    font-weight: 600;
}
.guide-wrap .line[data-v-7d0ec2b8] {
  margin-bottom: 10px;
}

.clause-wrap img[data-v-53a659f9] {
  width: 100%;
}

.disclosure-page[data-v-0fb1be77] {
  width: 100%;
}
.disclosure-page .height-block[data-v-0fb1be77] {
    margin-top: 12px;
    background: #fff;
}
.disclosure-page .height-block img[data-v-0fb1be77] {
      width: 100%;
}
.disclosure-page .height-block .mrg-spacing[data-v-0fb1be77] {
      padding: 20px;
}
.disclosure-page .height-block .mrg-spacing img[data-v-0fb1be77] {
        width: 100%;
}
.disclosure-page .height-block .mrg-regulatory[data-v-0fb1be77] {
      padding: 20px 20px 0px 20px;
}
.disclosure-page .height-block .mrg-article[data-v-0fb1be77] {
      padding: 0px 20px 20px 20px;
}
.disclosure-page .height-block .mrg-article img[data-v-0fb1be77] {
        width: 100%;
}
.disclosure-page .header img[data-v-0fb1be77] {
    width: 100%;
}
.disclosure-page .complaint-block[data-v-0fb1be77] {
    margin-top: 12px;
}
.disclosure-page .complaint-block img[data-v-0fb1be77] {
      width: 100%;
}
.disclosure-page .operating-title[data-v-0fb1be77] {
    margin-top: 12px;
    background: #fff;
}
.disclosure-page .operating-title .title-top img[data-v-0fb1be77] {
      width: 100%;
}
.disclosure-page .operating-title .operating-spacing[data-v-0fb1be77] {
      padding: 20px;
}
.disclosure-page .operating-title .operating-spacing img[data-v-0fb1be77] {
        width: 100%;
}
.disclosure-page .operating-title .operating-center img[data-v-0fb1be77] {
      width: 100%;
}
.disclosure-page .operating-title .operating-bottom[data-v-0fb1be77] {
      padding: 20px;
}
.disclosure-page .operating-title .operating-bottom img[data-v-0fb1be77] {
        width: 100%;
}
.disclosure-page .Insurancea-ssociation[data-v-0fb1be77] {
    margin-top: 12px;
    background: #fff;
}
.disclosure-page .Insurancea-ssociation .ssociation-title img[data-v-0fb1be77] {
      width: 100%;
}
.disclosure-page .Insurancea-ssociation .ssociation-center img[data-v-0fb1be77] {
      width: 100%;
}
.disclosure-page .Insurancea-ssociation .ssociation-bottom[data-v-0fb1be77] {
      padding: 20px;
}
.disclosure-page .Insurancea-ssociation .ssociation-bottom img[data-v-0fb1be77] {
        width: 100%;
}
.disclosure-page .bottom-text img[data-v-0fb1be77] {
    width: 100%;
}

.integral-detail[data-v-1b2ce072] {
  background: #fff;
}
.integral-detail .header[data-v-1b2ce072] {
    padding: 0 18px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: #fff;
    background: #00a758;
}
.integral-detail .header .slect-box[data-v-1b2ce072] {
      width: 140px;
      height: 26px;
      border-radius: 13px;
      background: #3cb470;
      overflow: hidden;
}
.integral-detail .header .slect-box[data-v-1b2ce072] .ols-form .ols-cell-group {
        margin: 0;
        background: none;
}
.integral-detail .header .slect-box[data-v-1b2ce072] .ols-form .ols-cell-group .ols-form-item {
          background: transparent;
          padding: 0;
}
.integral-detail .header .slect-box[data-v-1b2ce072] .ols-form .ols-cell-group .ols-form-item .ols-form-item-label {
            -ms-flex-preferred-size: 0;
                flex-basis: 0;
}
.integral-detail .header .slect-box[data-v-1b2ce072] .ols-form .ols-cell-group .ols-form-item .ols-select-content {
            padding-left: 20px;
            color: #fff;
}
.integral-detail .header .slect-box[data-v-1b2ce072] .ols-form .ols-cell-group .ols-form-item .ols-select-allow-right:after {
            border-color: #fff;
            top: 42%;
}
.integral-detail .header .integral-remaining[data-v-1b2ce072] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.integral-detail .header .integral-remaining .integral-title[data-v-1b2ce072] {
        font-size: 16px;
}
.integral-detail .header .integral-remaining .integral-content[data-v-1b2ce072] {
        padding-left: 10px;
        font-size: 24px;
}
.integral-detail .section ul li[data-v-1b2ce072] {
    padding: 0 20px 0 10px;
    height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #ccc;
}
.integral-detail .section ul li .container[data-v-1b2ce072] {
      font-size: 16px;
      color: #b0b0b0;
}
.integral-detail .section ul li .container .title[data-v-1b2ce072] {
        margin-bottom: 8px;
        font-weight: 600;
        color: #000;
}
.integral-detail .section ul li .status[data-v-1b2ce072] {
      font-size: 18px;
      color: #09a25a;
}
.integral-detail .section ul li .status.reduce[data-v-1b2ce072] {
        color: #f9c439;
}

.continuous-container .beneficiary-text[data-v-017fa3cd] {
  background-color: #ffffff;
  height: 28px;
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  line-height: 14px;
  padding-left: 16px;
  padding-right: 28px;
}
.continuous-container .benefit-class[data-v-017fa3cd] {
  display: -webkit-box;
  margin-left: 16px;
}
.continuous-container .benefit-class .benefit-left[data-v-017fa3cd] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 40px;
}
.continuous-container .benefit-class .benefit-left img[data-v-017fa3cd] {
      width: 20px;
      height: 20px;
}
.continuous-container .benefit-class .benefit-item[data-v-017fa3cd] {
    height: 28px;
    line-height: 26px;
    width: 70px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 5px;
}
.continuous-container .benefit-class .benefit-right[data-v-017fa3cd] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.continuous-container .benefit-class .benefit-right img[data-v-017fa3cd] {
      width: 20px;
      height: 20px;
}
.continuous-container .benefit-class .select[data-v-017fa3cd] {
    color: #fff;
    background: #5cae78;
    border-color: #5cae78;
}
.continuous-container .electronic-card[data-v-017fa3cd] {
  margin: 10px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 20px #eef4f7;
  box-shadow: 0 0 20px #eef4f7;
  border-radius: 8px;
}
.continuous-container .electronic-card .card-img[data-v-017fa3cd] {
    margin-right: 14px;
}
.continuous-container .electronic-card .card-img img[data-v-017fa3cd] {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
}
.continuous-container .electronic-card .card-information .card-name[data-v-017fa3cd] {
    font-size: 14px;
    color: #00a758;
    font-weight: 500;
}
.continuous-container .electronic-card .card-information .card-contactDetails[data-v-017fa3cd] {
    font-size: 12px;
    color: #00a758;
}
.continuous-container .electronic-card .card-information .card-contactDetails a[data-v-017fa3cd] {
      font-size: 12px;
}
.continuous-container .electronic-card .card-information p[data-v-017fa3cd] {
    font-size: 12px;
    color: #666666;
}
.continuous-container .radio-box[data-v-017fa3cd] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 92px;
  padding-top: 10px;
}
.continuous-container .radio-box .radio-btn[data-v-017fa3cd] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    background-color: #00A758;
    position: relative;
    margin-right: 2px;
}
.continuous-container .radio-box .radio-btn[data-v-017fa3cd]:after {
      content: "";
      position: absolute;
      left: 2px;
      top: 3px;
      width: 7px;
      height: 3px;
      border: 2px solid #fff;
      border-radius: 1px;
      border-top: none;
      border-right: none;
      background: transparent;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
}
.continuous-container .radio-box .radio-not-btn[data-v-017fa3cd] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    margin-right: 2px;
}
.continuous-container .plan[data-v-017fa3cd] {
  padding: 12px;
  background: #fff;
  margin: 0 auto;
  border-radius: 10px;
}
.continuous-container .plan .flex-layout[data-v-017fa3cd] {
    display: inline-block;
    padding: 12px;
}
.continuous-container .plan .flex-layout .title[data-v-017fa3cd] {
      height: 20px;
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #000000;
      line-height: 20px;
}
.continuous-container .plan .flex-layout .heng[data-v-017fa3cd] {
      width: 56px;
      height: 4px;
      background: #00A758;
      border-radius: 0px 0px 0px 0px;
      opacity: 0.4;
      margin-top: -5px;
}
.continuous-container .plan .flex-layout .left-title[data-v-017fa3cd] {
      width: 4px;
      height: 16px;
      background: #18a65b;
      margin: 14px 0px 0px 10px;
}
.continuous-container .tipstext[data-v-017fa3cd] {
  width: 100%;
  background: #18a65b;
  color: #fff;
  height: 40px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 20px;
  height: 111px;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 17px;
  margin-bottom: 16px;
  padding-left: 16px;
}
.continuous-container .tipstext .font[data-v-017fa3cd] {
    height: 40px;
    font-size: 13px;
    font-family: "Source Han Sans CN-Medium", "Source Han Sans CN";
    font-weight: 500;
    color: white;
    line-height: 20px;
    padding-right: 16px;
}
.continuous-container .tipstext .img[data-v-017fa3cd] {
    width: 40px;
    height: 40px;
    padding-right: 16px;
}
.continuous-container .form-class[data-v-017fa3cd] {
  position: relative;
}
.continuous-container .form-class .left-height[data-v-017fa3cd] {
    width: 4px;
    height: 16px;
    background: #18a65b;
    position: absolute;
    left: 16px;
    top: 14px;
}
.continuous-container .form-class .product-info[data-v-017fa3cd] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 12px;
}
.continuous-container .form-class .product-info .product-name[data-v-017fa3cd] {
      font-size: 14px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #666666;
      line-height: 28px;
      margin-right: 18px;
      -ms-flex-preferred-size: 76px;
          flex-basis: 76px;
}
.continuous-container .form-class .product-info .product-right1[data-v-017fa3cd] {
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #333333;
      line-height: 28px;
      width: 70%;
}
.continuous-container .form-class .product-info .product-right[data-v-017fa3cd] {
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 400;
      color: #333333;
      line-height: 28px;
}
.continuous-container .form-class .product-info .product-color[data-v-017fa3cd] {
      font-size: 14px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #E91A33;
      line-height: 28px;
}
.continuous-container .continuous[data-v-017fa3cd] {
  border-radius: 10px;
  width: 91.47%;
  margin: -50px auto 0 auto;
}
.continuous-container .continuous .checkproduct[data-v-017fa3cd] {
    background: #fff;
    color: #000;
}
.continuous-container .continuous .recommend[data-v-017fa3cd] {
    background: #fd8727;
    color: #fff;
}
.continuous-container .continuous .title[data-v-017fa3cd] {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    text-align: left;
    height: 20px;
    line-height: 20px;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.continuous-container .continuous .title .title-name[data-v-017fa3cd] {
      height: 20px;
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #000000;
      line-height: 20px;
}
.continuous-container .continuous .title .heng[data-v-017fa3cd] {
      width: 56px;
      height: 4px;
      background: #00A758;
      border-radius: 0px 0px 0px 0px;
      opacity: 0.4;
      margin-top: -5px;
}
.continuous-container .continuous li[data-v-017fa3cd] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f3f3f3;
}
.continuous-container .continuous li .tagbox[data-v-017fa3cd] {
      width: 100%;
}
.continuous-container .continuous li .tagbox .newproduct[data-v-017fa3cd] {
        color: #999;
}
.continuous-container .continuous li .tagbox .newproductOne[data-v-017fa3cd] {
        color: #18a65b;
}
.continuous-container .continuous li .flex-level[data-v-017fa3cd] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.continuous-container .continuous li .flex-level .productNamebox[data-v-017fa3cd] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
}
.continuous-container .continuous li input[data-v-017fa3cd] {
      outline: none;
      position: relative;
}
.continuous-container .continuous li input[data-v-017fa3cd]:checked {
      background: #00A758;
}
.continuous-container .continuous li input[data-v-017fa3cd] {
      -webkit-appearance: none;
      -moz-appearance: none;
      outline: none;
      width: 20px;
      height: 20px;
      background-color: #ffffff;
      border: solid 1px #dddddd;
      border-radius: 4px;
      margin: 0;
      padding: 0;
      position: absolute;
      right: 30px;
      vertical-align: top;
      -webkit-transition: background-color ease 0.1s;
      transition: background-color ease 0.1s;
}
.continuous-container .continuous li input[data-v-017fa3cd]:checked::after {
      content: '';
      top: 4px;
      left: 3px;
      position: absolute;
      border: #fff solid 2px;
      border-top: none;
      border-right: none;
      font-weight: 500;
      font-size: 12px;
      height: 4px;
      width: 10px;
      -webkit-transform: rotate(-60deg);
      transform: rotate(-60deg);
}
.continuous-container .continuous li span[data-v-017fa3cd] {
      margin-left: 4px;
      width: 40px;
      height: 20px;
      line-height: 20px;
      text-align: center;
      border-radius: 12px 10px 10px 0;
}
.continuous-container .continuous li .text-title[data-v-017fa3cd] {
      max-width: 240px;
      font-size: 16px;
      color: #333;
      font-size: 14px;
}
.continuous-container .continuous li #checked .text-title[data-v-017fa3cd] {
      font-size: 15px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #333333;
      line-height: 20px;
}
.continuous-container .continuous li[data-v-017fa3cd]:last-child {
    border-bottom: none;
}
.continuous-container .title[data-v-017fa3cd] {
  display: inline-block;
  height: 20px;
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #000000;
  line-height: 20px;
}
.continuous-container .line[data-v-017fa3cd] {
  height: 10px;
}
.continuous-container .text[data-v-017fa3cd] {
  text-align: left;
  color: #999;
  line-height: 28px;
}
.continuous-container .weight[data-v-017fa3cd] {
  color: #000;
}
.continuous-container .color-leftred[data-v-017fa3cd] {
  margin-left: 4px;
  font-size: 20px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #E91A33;
  line-height: 20px;
}
.continuous-container .color-red[data-v-017fa3cd] {
  color: #e81c34;
}
.continuous-container .coupon-style[data-v-017fa3cd] {
  padding: 5px 0;
  background: #fff;
  border-radius: 10px;
  margin: 0 auto;
}
.continuous-container .coupon-style .flex-layout[data-v-017fa3cd] {
    display: inline-block;
    padding: 12px;
}
.continuous-container .coupon-style .flex-layout .title[data-v-017fa3cd] {
      height: 20px;
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #000000;
      line-height: 20px;
}
.continuous-container .coupon-style .flex-layout .heng[data-v-017fa3cd] {
      width: 56px;
      height: 4px;
      background: #00A758;
      border-radius: 0px 0px 0px 0px;
      opacity: 0.4;
      margin-top: -5px;
}
.continuous-container .coupon-style .value-added[data-v-017fa3cd] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.continuous-container .coupon-style .value-added .added-left[data-v-017fa3cd] {
      width: 4px;
      height: 16px;
      background: #18a65b;
      margin: 14px 0px 0px 16px;
}
.continuous-container .cue-words[data-v-017fa3cd] {
  width: 91.47%;
  padding: 8px;
  background: #fff;
  margin: 0 auto;
  border-radius: 10px;
}
.continuous-container .cue-words .prompt-title[data-v-017fa3cd] {
    font-weight: 900;
    font-size: 16px;
    color: #E77566;
}
.continuous-container .cue-words .prompt-text[data-v-017fa3cd] {
    margin: 8px 0px 0px 8px;
    font-size: 14px;
    color: #333;
}
.continuous-container .clause[data-v-017fa3cd] {
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
  background: #ffffff;
  padding-top: 12px;
}
.continuous-container .clause > div[data-v-017fa3cd] {
    width: 91.47%;
    margin: 0 auto;
    line-height: 20px;
}
.continuous-container .clause > div .readAndAgree[data-v-017fa3cd] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
}
.continuous-container .clause > div .readAndAgree .not-agree[data-v-017fa3cd] {
        position: absolute;
        left: 0;
        z-index: 2;
        width: 20px;
        height: 20px;
}
.continuous-container .clause > div .readAndAgree .agree[data-v-017fa3cd] {
        position: absolute;
        left: 0;
        z-index: 1;
        width: 20px;
        height: 20px;
}
.continuous-container .clause > div .clause-title[data-v-017fa3cd] {
      display: inline-block;
      text-decoration: underline;
      color: #00A758;
}
.continuous-container .clause-box[data-v-017fa3cd] {
  width: 100%;
  background-color: #fff;
}
.continuous-container .clause-box .clause-health[data-v-017fa3cd] {
    width: 92%;
    margin: 0 auto;
    padding-top: 10px;
    line-height: 20px;
    font-size: 12px;
    color: #666666;
    padding-bottom: 12px;
}
.continuous-container .clause-box .clause-health .readAndAgree[data-v-017fa3cd] {
      position: relative;
}
.continuous-container .clause-box .clause-health .readAndAgree .not-agree[data-v-017fa3cd] {
        width: 20px;
        height: 20px;
        vertical-align: top;
}
.continuous-container .clause-box .clause-health .agree[data-v-017fa3cd] {
      width: 20px;
      height: 20px;
      vertical-align: top;
}
.continuous-container .clause-box .clause-health .clause-title[data-v-017fa3cd] {
      display: inline-block;
      text-decoration: underline;
      color: #00A758;
}
.continuous-container .bottom-height[data-v-017fa3cd] {
  width: 100%;
  padding-bottom: 99px;
}
.continuous-container .footer[data-v-017fa3cd] {
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 78px;
  z-index: 2;
}
.continuous-container .footer[data-v-017fa3cd] .left-btn {
    color: #333;
}
.continuous-container[data-v-017fa3cd] .ols-form {
  margin: 10px auto;
  width: 91.47%;
}
.continuous-container[data-v-017fa3cd] .ols-cell-group {
  border-radius: 10px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 12px;
}
.continuous-container[data-v-017fa3cd] .ols-cell-group .ols-form-item-group-title {
    font-weight: 500;
    border-radius: 10px;
}
.continuous-container[data-v-017fa3cd] .ols-cell-group .ols-form-item {
    margin-right: 16px;
    margin-left: 16px;
    padding: 12px 0;
}
.continuous-container[data-v-017fa3cd] .ols-cell-group .ols-form-item .ols-form-item-inner .ols-form-item-label {
      -ms-flex-preferred-size: 85px;
          flex-basis: 85px;
      line-height: 20px;
}
.continuous-container[data-v-017fa3cd] .ols-cell-group .ols-form-item .ols-form-item-inner .ols-form-item-content .ols-input {
      margin-left: 16px;
}
.continuous-container[data-v-017fa3cd] .ols-cell-group .ols-form-item .ols-form-item-inner .ols-form-item-content .ols-input .ols-input-wrapper input {
        color: #333333;
        line-height: 20px;
        font-weight: 400;
}
.continuous-container[data-v-017fa3cd] .ols-cell-group .ols-form-item .ols-viewer {
      height: auto;
      line-height: 20px;
      text-align: left;
      font-size: 14px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #333333;
      margin-left: 16px;
}
.continuous-container[data-v-017fa3cd] .ols-cell-group .benefit-list {
    margin-bottom: 0;
}
.continuous-container[data-v-017fa3cd] .ols-cell-group .benefit-list .ols-form-item:last-of-type {
      border-bottom: 1px dashed #e6e6e6;
}
.continuous-container .phone-square[data-v-017fa3cd] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.continuous-container .phone-square[data-v-017fa3cd] .ols-form-item-content .ols-input {
    width: 40%;
}
.continuous-container .phone-square[data-v-017fa3cd] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.continuous-container .phone-square[data-v-017fa3cd] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #333333;
      margin-left: 5px;
}
.continuous-container .phone-square[data-v-017fa3cd] .ols-form-item-content .readAndAgree img {
      width: 20px;
      height: 20px;
}
.continuous-container .choose-address[data-v-017fa3cd] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.continuous-container .choose-address .iconfont[data-v-017fa3cd] {
    margin-right: 10px;
}
.continuous-container[data-v-017fa3cd] .insured-address .ols-form-item-content {
  position: relative;
}
.continuous-container[data-v-017fa3cd] .insured-address .ols-form-item-content .address-text {
    position: absolute;
    left: 0;
    z-index: 11;
    background-color: #fff;
    color: #666;
}
.continuous-container[data-v-017fa3cd] .ols-form-list .ols-formnew-item .ols-formnew-item-label {
  -ms-flex-preferred-size: 85px;
      flex-basis: 85px;
}
.ols-checker-options[data-v-017fa3cd] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ols-checker-options[data-v-017fa3cd]:after {
    content: '';
    display: table;
    clear: both;
}
.ols-checker-option[data-v-017fa3cd] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 38px;
  margin-right: 40px;
}
.ols-checker-option .img[data-v-017fa3cd] {
    width: 20px;
    height: 20px;
}
.ols-checker-option[data-v-017fa3cd]:last-of-type {
    margin-right: 0;
}
[data-v-017fa3cd].ols-select .ols-select-content {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
  height: 19px;
  line-height: 19px;
  min-width: 0.5rem;
  text-align: left;
  color: #333333;
  margin-left: 16px;
  font-weight: 400;
}
.left-font[data-v-017fa3cd] {
  font-size: 12px;
  font-family: "Source Han Sans CN-Regular", "Source Han Sans CN";
  font-weight: 400;
  color: #666666;
  line-height: 14px;
}
.healthInfo[data-v-017fa3cd] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 12px;
  height: 44px;
}
.healthInfo .confirminfo[data-v-017fa3cd] {
    width: 84px;
    height: 20px;
    font-size: 12px;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #0000C1;
    line-height: 20px;
    padding-top: 12px;
}
.healthInfo .right-arrow[data-v-017fa3cd]:after {
    content: "";
    display: inline-block;
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    width: 5px;
    height: 5px;
    border-radius: 0px 0px 0px 0px;
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(45deg);
    margin-left: 6px;
    margin-top: 19px;
}
.alreadyinfo[data-v-017fa3cd] {
  height: 20px;
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  line-height: 20px;
  margin-left: 12px;
}
[data-v-017fa3cd].footer-container .left-btn {
  margin-left: 16px;
}
[data-v-017fa3cd].ols-form-list .ols-formnew-item {
  padding: 6px 0;
}
[data-v-017fa3cd].ols-newinput input {
  margin-left: 16px;
}
[data-v-017fa3cd].ols-input {
  margin-left: 16px;
}

.coupon-wrap .coupon-container .coupon-one[data-v-6d68f5b4] {
  padding: 8px 16px 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.coupon-wrap .coupon-container .coupon-one .name[data-v-6d68f5b4] {
    margin-right: 20px;
    -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background: #069c4d;
}
.coupon-wrap .coupon-container .coupon-one .content[data-v-6d68f5b4] {
    font-size: 10px;
    color: #898989;
}
.coupon-wrap .coupon-container .coupon-one .content .content-title[data-v-6d68f5b4] {
      margin-bottom: 0.25rem;
      height: 20px;
      font-size: 13px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: bold;
      color: #333333;
      line-height: 20px;
}
.coupon-wrap .coupon-container .coupon-one .content .content[data-v-6d68f5b4] {
      height: 20px;
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #999999;
      line-height: 20px;
}
.coupon-wrap .coupon-container .coupon-more .top[data-v-6d68f5b4] {
  height: 0.45rem;
  line-height: 0.45rem;
  position: relative;
  margin: 0.3rem 0;
}
.coupon-wrap .coupon-container .coupon-more .top .name[data-v-6d68f5b4] {
    z-index: 1;
    position: relative;
    font-size: 0.42rem;
    text-align: center;
    color: #333333;
    width: 1.8rem;
    margin: 0 auto;
}
.coupon-wrap .coupon-container .coupon-more .top .name[data-v-6d68f5b4]::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -1.6rem;
      width: 1.37rem;
      height: 1px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      background: #d8d8d8;
}
.coupon-wrap .coupon-container .coupon-more .top .name[data-v-6d68f5b4]::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -1.6rem;
      width: 1.37rem;
      height: 1px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      background: #d8d8d8;
}
.coupon-wrap .coupon-container .coupon-more .title[data-v-6d68f5b4] {
  margin: 0.375rem 0 0.18rem 0;
  font-size: 0.375rem;
  padding-left: 15px;
  line-height: 24px;
  color: #999;
}
.coupon-wrap .coupon-container .coupon-more ul[data-v-6d68f5b4] {
  margin: 6px 12px 12px 12px;
  background-color: #fff;
}
.coupon-wrap .coupon-container .coupon-more ul li[data-v-6d68f5b4] {
    margin: 0 0.15rem;
    font-size: 0.325rem;
    color: #999999;
}
.coupon-wrap .coupon-container .coupon-more ul li[data-v-6d68f5b4]:not(:last-child) {
      border-bottom: 1px dashed #eeeeee;
}
.coupon-wrap .coupon-container .coupon-more ul li .flexborder[data-v-6d68f5b4] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.coupon-wrap .coupon-container .coupon-more ul li .flexborder .center[data-v-6d68f5b4] {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: 13px;
}
.coupon-wrap .coupon-container .coupon-more ul li .flexborder .center img[data-v-6d68f5b4] {
          width: 18px;
          height: 18px;
}
.coupon-wrap .coupon-container .coupon-more ul li .content-title[data-v-6d68f5b4] {
      height: 20px;
      font-size: 13px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #333333;
      line-height: 20px;
}
.coupon-wrap .coupon-container .coupon-more ul li .content[data-v-6d68f5b4] {
      height: 18px;
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #999999;
      line-height: 18px;
}
.coupon-wrap .coupon-container .coupon-more ul li .content[data-v-6d68f5b4] img {
        max-width: 50px;
}

@charset "UTF-8";
.preview[data-v-00175fb4] {
  display: inline-block;
}
.check[data-v-00175fb4] {
  font-size: 13px;
  color: #459855;
}
.triangle[data-v-00175fb4] {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #adadad;
  /*no*/
  border-right: 1px solid #adadad;
  /*no*/
  -webkit-transform: translateY(-35%) rotate(45deg);
          transform: translateY(-35%) rotate(45deg);
}
.section[data-v-00175fb4] {
  height: 90%;
  overflow: auto;
}
.section img[data-v-00175fb4] {
    width: 100%;
}
.scroll-bar[data-v-00175fb4]::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-bar[data-v-00175fb4]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mask-container .mask-pop[data-v-ee02cde8] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.mask-container .mask-content[data-v-ee02cde8] {
  padding: 0 20px 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 60%;
  color: #333;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 111;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.mask-container .mask-content[data-v-ee02cde8] a {
    color: #079b4d;
    text-decoration: underline;
}
.mask-container .mask-content .mask-header[data-v-ee02cde8] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    line-height: 40px;
}
.mask-container .mask-content .mask-header .close-btn[data-v-ee02cde8] {
      font-size: 20px;
}
.mask-container .mask-content .section div[data-v-ee02cde8] {
    font-size: 15px;
    line-height: 20px;
}
.mask-container .mask-content .section[data-v-ee02cde8] .section-title {
    padding: 10px 6px 10px 0px;
    font-size: 15px;
    color: #5cae78;
}
.mask-container .mask-content .section[data-v-ee02cde8] .section-title.toggle {
      position: relative;
      border-bottom: #e5e5e5 1px dashed;
      margin-right: 6px;
}
.mask-container .mask-content .section[data-v-ee02cde8] .section-title.toggle:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 3px;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg);
}
.mask-container .mask-content .section[data-v-ee02cde8] .section-title.toggle::after {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
}
.mask-container .mask-content .section[data-v-ee02cde8] .section-title.toggle.actived::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
}
.mask-container .mask-content .section[data-v-ee02cde8] .section-content {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: #e5e5e5 1px dashed;
}
.mask-container .mask-content .section[data-v-ee02cde8] .section-content.hide {
      display: none;
}
.mask-container .mask-content .section[data-v-ee02cde8] .section-content.actived {
      max-height: 999rem;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
              transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
}
.mask-container .mask-content .mask-footer[data-v-ee02cde8] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background: #5cae78;
}
.mask-container .mask-content .mask-button[data-v-ee02cde8] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.mask-container .mask-content .mask-button .submit-button[data-v-ee02cde8] {
      width: 100%;
      height: 40px;
      background: #666666;
      text-align: center;
}
.mask-container .mask-content .mask-button .submit-button span[data-v-ee02cde8] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}
.mask-container .mask-content .mask-button .submitBack[data-v-ee02cde8] {
      background: #5cae78;
}

.version-detail[data-v-809d57f4] {
  margin: 0 12px 12px 13px;
}
.version-detail ul[data-v-809d57f4] {
    margin: 0 10px;
}
.version-detail ul li[data-v-809d57f4] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      min-height: 44px;
      border-bottom: 1px dashed #e4e4e4;
      font-size: 14px;
      color: #333;
}
.version-detail ul li[data-v-809d57f4]:last-child {
        border: none;
}
.version-detail ul li .version-title[data-v-809d57f4] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
}
.version-detail ul li .version-title img[data-v-809d57f4] {
          width: 20px;
          height: 20px;
          vertical-align: middle;
          padding-right: 10px;
}
.version-detail ul li .version-title span[data-v-809d57f4] {
          height: 19px;
          font-size: 13px;
          font-family: Source Han Sans CN-Medium, Source Han Sans CN;
          font-weight: 500;
          color: #333333;
          line-height: 15px;
          -webkit-background-clip: text;
          display: contents;
}
.version-detail ul li .color-red[data-v-809d57f4] {
        height: 19px;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #E91A33;
        line-height: 19px;
}
.version-detail ul li .finial-amount[data-v-809d57f4] {
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
}
.version-detail .coverageDescPic img[data-v-809d57f4] {
    display: block;
    width: 100%;
}

.product-offer[data-v-caef92ca] {
  height: 100vh;
  padding: 15px;
  background: #fff;
  overflow: auto;
}
.product-offer[data-v-caef92ca] p {
    display: block;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
}
.product-offer h1[data-v-caef92ca],
  .product-offer h2[data-v-caef92ca],
  .product-offer h3[data-v-caef92ca],
  .product-offer h4[data-v-caef92ca],
  .product-offer h5[data-v-caef92ca],
  .product-offer h6[data-v-caef92ca] {
    display: block;
    -webkit-margin-before: 0.67em;
            margin-block-start: 0.67em;
    -webkit-margin-after: 0.67em;
            margin-block-end: 0.67em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    font-weight: bold;
}
.product-offer[data-v-caef92ca] ul {
    margin: 0;
    padding-left: 20px;
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
}
.product-offer[data-v-caef92ca] ol {
    margin: 0;
    padding: 0 0 20px 15px;
}
.product-offer[data-v-caef92ca] li {
    list-style: unset;
    display: list-item;
    text-align: -webkit-match-parent;
}
.product-offer .title[data-v-caef92ca] {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.product-offer .content[data-v-caef92ca] {
    font-size: 14px;
}

.offer-detail[data-v-df0638ee] {
  height: 100vh;
  padding: 15px;
  background: #fff;
  overflow: auto;
}
.offer-detail .title[data-v-df0638ee] {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.offer-detail .content[data-v-df0638ee] {
    font-size: 14px;
}
.offer-detail .content[data-v-df0638ee] img {
      width: 100%;
}

.offer-rich-text[data-v-16814e21] {
  height: 100vh;
  padding: 15px;
  background: #fff;
  overflow: auto;
}
.offer-rich-text[data-v-16814e21] p {
    display: block;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
}
.offer-rich-text h1[data-v-16814e21],
  .offer-rich-text h2[data-v-16814e21],
  .offer-rich-text h3[data-v-16814e21],
  .offer-rich-text h4[data-v-16814e21],
  .offer-rich-text h5[data-v-16814e21],
  .offer-rich-text h6[data-v-16814e21] {
    display: block;
    -webkit-margin-before: 0.67em;
            margin-block-start: 0.67em;
    -webkit-margin-after: 0.67em;
            margin-block-end: 0.67em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    font-weight: bold;
}
.offer-rich-text[data-v-16814e21] ul {
    margin: 0;
    padding-left: 20px;
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
}
.offer-rich-text[data-v-16814e21] ol {
    margin: 0;
    padding: 0 0 20px 15px;
}
.offer-rich-text[data-v-16814e21] li {
    list-style: unset;
    display: list-item;
    text-align: -webkit-match-parent;
}
.offer-rich-text .title[data-v-16814e21] {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.offer-rich-text .content[data-v-16814e21] {
    font-size: 14px;
}

.material-rich-text[data-v-586e974a] {
  height: 100vh;
  padding: 15px;
  background: #fff;
  overflow: auto;
}
.material-rich-text[data-v-586e974a] p {
    display: block;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
}
.material-rich-text h1[data-v-586e974a],
  .material-rich-text h2[data-v-586e974a],
  .material-rich-text h3[data-v-586e974a],
  .material-rich-text h4[data-v-586e974a],
  .material-rich-text h5[data-v-586e974a],
  .material-rich-text h6[data-v-586e974a] {
    display: block;
    -webkit-margin-before: 0.67em;
            margin-block-start: 0.67em;
    -webkit-margin-after: 0.67em;
            margin-block-end: 0.67em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    font-weight: bold;
}
.material-rich-text[data-v-586e974a] ul {
    margin: 0;
    padding-left: 20px;
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
}
.material-rich-text[data-v-586e974a] ol {
    margin: 0;
    padding: 0 0 20px 15px;
}
.material-rich-text[data-v-586e974a] li {
    list-style: unset;
    display: list-item;
    text-align: -webkit-match-parent;
}
.material-rich-text .title[data-v-586e974a] {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.material-rich-text .content[data-v-586e974a] {
    font-size: 14px;
}

.wrapper[data-v-4af3809a] {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.wrapper .block[data-v-4af3809a] {
  width: 90%;
  background-color: #fff;
  border-radius: 8px;
  padding-bottom: 20px;
}
.wrapper .block .block-top[data-v-4af3809a] {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 100%;
  background: #14a255;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.wrapper .block .block-top .check-img[data-v-4af3809a] {
  margin: 10px;
  width: 36%;
}
.wrapper .block .block-top .check-img .check-btn[data-v-4af3809a] {
  width: 66px;
  height: 36px;
  background-image: url(../../assets/img/cancel-check-cyan.c16dbb7.png);
  background-size: cover;
  text-align: center;
  line-height: 36px;
  font-size: 14px;
}
.wrapper .block .block-top .check-text[data-v-4af3809a] {
  margin: 10px;
  width: 64%;
  font-size: 16px;
}
.wrapper .block .block-center[data-v-4af3809a] {
  text-align: center;
  margin: 30px 0;
  color: #737373;
  font-size: 15px;
}
.wrapper .block .block-center a[data-v-4af3809a] {
  color: #14a255;
}
.wrapper .block .cue-words[data-v-4af3809a] {
  font-size: 12px;
  color: red;
  margin-bottom: 10px;
  text-align: center;
}
.wrapper .block .redesign-cardEntry[data-v-4af3809a] {
  position: relative;
  width: 100%;
  text-align: center;
}
.wrapper .block .redesign-cardEntry input[data-v-4af3809a] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin-left: 13%;
  outline: none;
  width: 74%;
  height: 40px;
  line-height: 40px;
  background: none;
  color: #fff;
  caret-color: #fff;
  text-shadow: 0 0 0 #000;
  overflow: hidden;
}
.wrapper .block .redesign-cardEntry .show-key[data-v-4af3809a] {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.wrapper .block .redesign-cardEntry .show-key[data-v-4af3809a] .van-password-input {
  width: 70%;
  text-align: center;
}
.wrapper .block .redesign-cardEntry .show-key[data-v-4af3809a] .van-password-input .van-hairline--surround::after {
  border: 1px solid #999;
}
.wrapper .block .redesign-cardEntry .show-key[data-v-4af3809a] .van-password-input .van-password-input__security .van-hairline--left::after {
  border-left: 1px solid #999;
}
.wrapper .block .confirm-btn[data-v-4af3809a] {
  margin-top: 20px;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 14px 0;
  background: #2E9D62;
  color: #fff;
  border-radius: 6px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.serve_explain[data-v-40ec4a57] {
  padding: 0px 10px 0px 10px;
}

.forwardimg[data-v-8860cab0] {
  width: 184px;
  position: fixed;
  right: 25px;
  bottom: 90px;
  z-index: 2;
}
.pop1[data-v-8860cab0] {
  display: block;
  margin: 200px auto;
  width: 67%;
}
.forwardbox[data-v-8860cab0] {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 3;
}
.detail-container[data-v-8860cab0] {
  color: #333;
  background-color: #fff;
}
.detail-container .line[data-v-8860cab0] {
    height: 10px;
    background-color: #f7f7f7;
}
.detail-container .duty[data-v-8860cab0] {
    padding: 12px 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-top: 10px solid #f7f7f7;
    border-bottom: 1px solid #CFCFCF;
}
.detail-container .duty .duty-title[data-v-8860cab0] {
      color: #333;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-8860cab0] {
      position: relative;
      padding-right: 10px;
      color: #00A758;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-8860cab0]:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 0;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
}
.detail-container .navWrap[data-v-8860cab0] {
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e4e4e4;
    border-bottom: none;
}
.detail-container .navWrap .versions[data-v-8860cab0] {
      text-align: center;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      height: 40px;
      line-height: 40px;
      font-size: 15px;
      color: #333;
      background-color: #f7f7f7;
      border-right: 1px solid #e4e4e4;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.detail-container .navWrap .versions[data-v-8860cab0]:last-child {
        border-right: none;
}
.detail-container .navWrap .versions.recommend[data-v-8860cab0]::before {
        content: "";
        background: url(../../assets/img/icon-recommend.f2c0e0b.png);
        background-size: 100% 100%;
        width: 36px;
        height: 36px;
        position: absolute;
        top: -3px;
        right: -4px;
}
.detail-container .navWrap .versions.active[data-v-8860cab0] {
        background-color: #5cae78;
        color: #fff;
}
.detail-container .navWrap .versions.active[data-v-8860cab0]::after {
          content: "";
          width: 0px;
          height: 0px;
          border: solid 10px transparent;
          border-bottom-color: #fff;
          position: absolute;
          bottom: -1px;
          left: 50%;
          -webkit-transform: translate(-50%, 0);
                  transform: translate(-50%, 0);
          z-index: 2;
}
.detail-container .electronic-card[data-v-8860cab0] {
    margin: 10px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 0 20px #eef4f7;
    box-shadow: 0 0 20px #eef4f7;
    border-radius: 8px;
}
.detail-container .electronic-card .card-img[data-v-8860cab0] {
      margin-right: 14px;
}
.detail-container .electronic-card .card-img img[data-v-8860cab0] {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
}
.detail-container .electronic-card .card-information .card-name[data-v-8860cab0] {
      font-size: 14px;
      color: #00a758;
      font-weight: bold;
}
.detail-container .electronic-card .card-information .card-contactDetails[data-v-8860cab0] {
      font-size: 12px;
      color: #00a758;
}
.detail-container .electronic-card .card-information .card-contactDetails a[data-v-8860cab0] {
        font-size: 12px;
}
.detail-container .electronic-card .card-information p[data-v-8860cab0] {
      font-size: 12px;
      color: #666666;
}
.detail-container .tab-container .tab-title[data-v-8860cab0] {
    padding-left: 10px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
}
#headerImage[data-v-8860cab0] {
  width: 100%;
  min-height: 5rem;
  vertical-align: middle;
}
a[data-v-8860cab0]:link {
  text-decoration: none;
  font-size: 20px;
  /*px*/
  text-align: center;
  margin-right: 10px;
  margin-right: 10px;
}
.outside[data-v-8860cab0] {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ols-cell-group[data-v-edd36462] {
  margin-left: 0.4rem;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-cell-group .ols-form-item[data-v-edd36462] {
    margin: 0;
}
.ols-cell-group .ols-form-item[data-v-edd36462] .ols-form-item-label {
      -ms-flex-preferred-size: 180px;
          flex-basis: 180px;
      color: #333;
}
.ols-cell-group[data-v-edd36462]:last-of-type {
    border-bottom: none;
}
.fade-enter-active[data-v-edd36462],
.fade-leave-active[data-v-edd36462] {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
.fade-enter[data-v-edd36462],
.fade-leave-to[data-v-edd36462] {
  opacity: 0;
}
.mask-pop[data-v-edd36462] {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
}
#footer[data-v-edd36462] {
  width: 100%;
  max-height: 70%;
  overflow: auto;
  background: #fff;
  -webkit-box-shadow: 0 -3px 3px #eaeaea;
          box-shadow: 0 -3px 3px #eaeaea;
  position: fixed;
  bottom: 0;
  z-index: 10;
  color: #afafaf;
  /*height: 49px;*/
  font-style: normal;
}
#footer .footer-container[data-v-edd36462] {
    position: fixed;
    bottom: 0%;
    left: 0%;
    width: 100%;
}
#footer .color-red[data-v-edd36462] {
    color: #e81c34;
}
#footer .btn-left[data-v-edd36462] {
    color: #333;
    font-size: 14px;
    /*px*/
}
#footer .btn-left .newPrice[data-v-edd36462] {
      font-size: 18px;
      /*px*/
}
.next-btn[data-v-edd36462] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.left[data-v-edd36462] {
  width: 50%;
  float: left;
  text-align: center;
  line-height: 49px;
  margin: 0 auto;
}
.top[data-v-edd36462] {
  font-size: 14px;
  color: #afafaf;
  text-align: center;
}
.right[data-v-edd36462] {
  width: 50%;
  float: right;
  background: #5cae78;
  font-size: 14px;
  /*px*/
  line-height: 49px;
  color: #fff;
  text-align: center;
}

.version-detail[data-v-5691de94] {
  padding: 0 10px;
}
.version-detail .version-ul .version-li[data-v-5691de94] {
    font-size: 14px;
    color: #333;
}
.version-detail .version-ul .version-li .version-top[data-v-5691de94] {
      height: 56px;
      line-height: 56px;
      padding: 6px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      border-bottom: 1px solid #B6E8CB;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
}
.version-detail .version-ul .version-li:last-child .version-top[data-v-5691de94] {
      border: none;
}
.version-detail .version-ul .version-li .version-title[data-v-5691de94] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.version-detail .version-ul .version-li .version-title .icon-img[data-v-5691de94] {
        width: 30px;
        height: 30px;
        vertical-align: middle;
        padding-right: 2px;
}
.version-detail .version-ul .version-li .version-title .title-text[data-v-5691de94] {
        font-size: 14px;
        vertical-align: middle;
        color: #333;
}
.version-detail .version-ul .version-li .title-info[data-v-5691de94] {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      font-size: 14px;
      color: #5E6073;
      text-align: right;
      line-height: 1.4;
}
.version-detail .version-ul .version-li .right-icon[data-v-5691de94] {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 18px;
              flex: 0 0 18px;
      height: 100%;
      position: relative;
}
.version-detail .version-ul .version-li .right-icon .icon-inner[data-v-5691de94] {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        width: 16px;
        height: 16px;
        line-height: 16px;
        text-align: center;
        text-rendering: optimizeLegibility;
        -webkit-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.version-detail .version-ul .version-li .right-icon .icon-inner-top[data-v-5691de94] {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
}
.version-detail .version-ul .version-li .right-icon .iconfont[data-v-5691de94] {
        font-size: 12px;
        color: #B3B3B3;
}
.version-detail .version-ul .version-li .color-red[data-v-5691de94] {
      color: #e81c34;
}
.version-detail .version-ul .version-li .finial-amount[data-v-5691de94] {
      margin: 0 5px;
      font-size: 18px;
      font-weight: 600;
}
.version-detail .version-ul .version-li .version-content[data-v-5691de94] {
      font-size: 14px;
      color: #8E90A2;
      line-height: 1.4;
      background: #F5F5F5;
      text-align: left;
      overflow: auto;
}
.version-detail .version-ul .version-li .version-content .content-inner[data-v-5691de94] {
        padding: 10px;
}
.version-detail .version-ul .version-li .fade-content-enter-active[data-v-5691de94], .version-detail .version-ul .version-li .fade-content-leave-active[data-v-5691de94] {
      -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.version-detail .version-ul .version-li .fade-content-enter[data-v-5691de94], .version-detail .version-ul .version-li .fade-content-leave-to[data-v-5691de94] {
      height: 0;
      overflow: hidden;
}
.coverageHint[data-v-5691de94] {
  padding-top: 16px;
}

@charset "UTF-8";
.view[data-v-5a032a9a] {
  background-color: #fff;
}
.view h2[data-v-5a032a9a] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-5a032a9a] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-5a032a9a] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap[data-v-5a032a9a] {
    padding-bottom: 65px;
    padding-right: 60px;
    height: 80vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .sub-wrap .clause[data-v-5a032a9a] .qes {
      position: relative;
}
.view .sub-wrap .clause[data-v-5a032a9a] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.view .sub-wrap .clause[data-v-5a032a9a] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-5a032a9a] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.view .sub-wrap .clause img[data-v-5a032a9a] {
      width: 100%;
}
.view .sub-wrap .clause p[data-v-5a032a9a] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.view .footer[data-v-5a032a9a] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-5a032a9a] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-5a032a9a] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-5a032a9a] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-5a032a9a] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-5a032a9a] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-5a032a9a] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-5a032a9a] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

@charset "UTF-8";
.view[data-v-57c22274] {
  background-color: #fff;
}
.view h2[data-v-57c22274] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-57c22274] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-57c22274] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .children-wrap[data-v-57c22274] {
    padding-top: 15px;
    padding-bottom: 65px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .children-title[data-v-57c22274] {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.view .sub-wrap .clause[data-v-57c22274] .qes {
    position: relative;
}
.view .sub-wrap .clause[data-v-57c22274] .qes .answer-box {
      width: 60px;
      position: absolute;
      top: 3px;
      right: -60px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap .clause[data-v-57c22274] .qes .answer-box .check-box {
        position: relative;
        width: 16px;
        height: 16px;
        border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-57c22274] .qes .answer-box .check-box.check::before {
          content: "\2713";
          position: absolute;
          width: 100%;
          text-align: center;
          line-height: 16px;
}
.view .sub-wrap .clause img[data-v-57c22274] {
    width: 100%;
}
.view .sub-wrap .clause p[data-v-57c22274] {
    margin-bottom: 6px;
    color: #333;
    font-size: 12px;
}
.view .footer[data-v-57c22274] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-57c22274] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-57c22274] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-57c22274] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-57c22274] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-57c22274] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-57c22274] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-57c22274] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

.info-container .main[data-v-cb99b328] {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.info-container .form .ols-form-item[data-v-cb99b328] {
  margin-left: 0.4rem;
  padding: 0.4rem 0.4rem 0.4rem 0;
}
.info-container .form .ols-form-item[data-v-cb99b328] .ols-form-item-content {
    overflow: hidden;
}
.info-container .form .ols-form-item[data-v-cb99b328] .ols-form-item-content .ols-viewer {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.info-container .form .phone-square[data-v-cb99b328] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.info-container .form .phone-square[data-v-cb99b328] .ols-form-item-content .ols-input {
    width: 40%;
}
.info-container .form .phone-square[data-v-cb99b328] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.info-container .form .phone-square[data-v-cb99b328] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      color: red;
}
.info-container .color-red[data-v-cb99b328] {
  color: #e81c34;
}
.info-container .btn-left[data-v-cb99b328] {
  color: #333;
  font-size: 14px;
  /*px*/
}
.info-container .btn-left .newPrice[data-v-cb99b328] {
    font-size: 18px;
    /*px*/
}
.info-container .clause[data-v-cb99b328] {
  font-size: 12px;
  padding-bottom: 60px;
  color: #333;
}
.info-container .clause > div[data-v-cb99b328] {
    width: 92%;
    margin: 0 auto;
    line-height: 20px;
}
.info-container .clause > div .readAndAgree[data-v-cb99b328] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
}
.info-container .clause > div .readAndAgree .not-agree[data-v-cb99b328] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.info-container .clause > div .readAndAgree .agree[data-v-cb99b328] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.info-container .clause > div .clause-title[data-v-cb99b328] {
      display: inline-block;
      text-decoration: underline;
      color: #459855;
}
.info-container .footer[data-v-cb99b328] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #f5f5f5;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 2;
}
.next-btn[data-v-cb99b328] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}

.ocr-wapper[data-v-1edf1014] {
  text-align: left;
}
.ocr-wapper .ocr-mask[data-v-1edf1014] {
    z-index: 10 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.ocr-wapper .ocr-container[data-v-1edf1014] {
    padding: 18px;
    padding-bottom: 50px;
    width: 80%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 20;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 14px;
    background: #fff;
}
.ocr-wapper .ocr-container .section[data-v-1edf1014] {
      overflow-y: auto;
      max-height: 70vh;
      -webkit-overflow-scrolling: touch;
}
.ocr-wapper .ocr-container .section[data-v-1edf1014] .ols-form-list .ols-form-item {
        margin-left: 0;
}
.ocr-wapper .ocr-container .ocr-idcard[data-v-1edf1014] {
      margin: 18px 0 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-1edf1014],
      .ocr-wapper .ocr-container .ocr-idcard .back[data-v-1edf1014] {
        position: relative;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        border-radius: 5px;
        overflow: hidden;
        background: #f6fff4;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-bottom[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-bottom[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-bottom[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-bottom[data-v-1edf1014] {
          height: 40px;
          line-height: 40px;
          text-align: center;
          color: #5cae78;
          background-color: #eeeeee;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-show[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-show[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-show[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-show[data-v-1edf1014] {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          width: 90%;
          height: 80%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .uplod-img[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .back .uplod-img[data-v-1edf1014] {
          position: absolute;
          right: 0;
          top: 0;
          width: 15px;
}
.ocr-wapper .ocr-container .ocr-idcard .front .prev-img[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .back .prev-img[data-v-1edf1014] {
          position: absolute;
          right: 0;
          top: 35%;
          width: 15px;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-content[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-content[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-content[data-v-1edf1014] {
          position: relative;
          padding: 5px;
          margin: 15px;
          height: 80px;
          background: url(../../assets/img/border.c960060.png);
          background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content .front-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .front .back-content .front-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .back .front-content .front-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .front-img[data-v-1edf1014] {
            height: 100%;
            background: url(../../assets/img/front.875253b.png);
            background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content .back-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .front .back-content .back-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .back .front-content .back-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .back-img[data-v-1edf1014] {
            height: 100%;
            background: url(../../assets/img/back.a64c20d.png);
            background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content .photo-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .front .back-content .photo-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .back .front-content .photo-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .photo-img[data-v-1edf1014] {
            width: 43px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
}
.ocr-wapper .ocr-container .ocr-idcard .front .passport-content[data-v-1edf1014],
        .ocr-wapper .ocr-container .ocr-idcard .back .passport-content[data-v-1edf1014] {
          height: 150px;
}
.ocr-wapper .ocr-container .ocr-idcard .front .passport-content .front-img[data-v-1edf1014],
          .ocr-wapper .ocr-container .ocr-idcard .back .passport-content .front-img[data-v-1edf1014] {
            height: 100%;
            background: url(../../assets/img/passportbg.4406635.png);
            background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-1edf1014] {
        margin-right: 10px;
}
.ocr-wapper .ocr-container .notice .notice-title[data-v-1edf1014] {
      margin-bottom: 10px;
      color: #5cae78;
}
.ocr-wapper .ocr-container .notice ul[data-v-1edf1014] {
      margin-bottom: 20px;
}
.ocr-wapper .ocr-container .notice ul li[data-v-1edf1014] {
        font-size: 13px;
        margin-bottom: 5px;
        color: #b6b9c1;
}
.ocr-wapper .ocr-container .notice ul li span[data-v-1edf1014] {
          color: #ee4d64;
}
.ocr-wapper .ocr-container .footer[data-v-1edf1014] {
      position: absolute;
      left: 0;
      bottom: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      width: 100%;
      height: 50px;
      background: #f4f4f4;
}
.ocr-wapper .ocr-container .footer .confirm[data-v-1edf1014],
      .ocr-wapper .ocr-container .footer .cancle[data-v-1edf1014] {
        margin: 0 10px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: #fff;
        background: #5cae78;
}
.ocr-wapper .ocr-demo[data-v-1edf1014] {
    width: 70%;
    height: 350px;
    padding: 20px 30px 50px;
    position: fixed;
    top: 55%;
    left: 50%;
    z-index: 12;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 14px;
    border-radius: 5px;
    background: #fff;
    z-index: 100 !important;
}
.ocr-wapper .ocr-demo .ocr-demo-title[data-v-1edf1014] {
      font-size: 16px;
      text-align: center;
}
.ocr-wapper .ocr-demo .ocr-demo-content[data-v-1edf1014] {
      margin: 20px 0 20px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content[data-v-1edf1014] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content .right-img[data-v-1edf1014] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          width: 50%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul[data-v-1edf1014] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: right;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-1edf1014] {
            position: relative;
            margin-bottom: 6px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-1edf1014]:last-child {
              margin: 0;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-1edf1014]::before {
              content: "";
              position: absolute;
              top: 50%;
              left: 30px;
              -webkit-transform: translate(-50%, -50%);
                      transform: translate(-50%, -50%);
              width: 13px;
              height: 13px;
              background: url(../../assets/img/icon-radio.c5723b7.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content[data-v-1edf1014] {
        margin-top: 50px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul[data-v-1edf1014] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li[data-v-1edf1014] {
            overflow: hidden;
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
            -ms-flex-direction: column;
                flex-direction: column;
            -webkit-box-flex: 0;
                -ms-flex: none;
                    flex: none;
            -ms-flex-preferred-size: 58px;
                flex-basis: 58px;
            border-radius: 5px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li img[data-v-1edf1014] {
              width: 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li .icon-error[data-v-1edf1014] {
              position: absolute;
              left: 50%;
              bottom: 35px;
              -webkit-transform: translate(-50%, -50%);
                      transform: translate(-50%, -50%);
              width: 14px;
              height: 14px;
              background: url(../../assets/img/icon-error.50ba2e9.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li p[data-v-1edf1014] {
              width: 100%;
              height: 50px;
              line-height: 50px;
              text-align: center;
              background-color: #f1f1f1;
}
.ocr-wapper .ocr-demo .ocr-demo-footer[data-v-1edf1014] {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 45px;
      line-height: 45px;
      font-size: 15px;
      text-align: center;
      color: #fff;
      background: #5cae78;
}
.ocr-wapper .prev-mask[data-v-1edf1014] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    z-index: 100;
}
.ocr-wapper .prev-mask img[data-v-1edf1014] {
      width: 100%;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
}

@charset "UTF-8";
*[data-v-eb70bca4] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.preview[data-v-eb70bca4] {
  display: inline-block;
}
.check[data-v-eb70bca4] {
  font-size: 13px;
  color: #459855;
}
.triangle[data-v-eb70bca4] {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #adadad;
  /*no*/
  border-right: 1px solid #adadad;
  /*no*/
  -webkit-transform: translateY(-35%) rotate(45deg);
          transform: translateY(-35%) rotate(45deg);
}
.section[data-v-eb70bca4] {
  height: 90%;
  overflow: auto;
}
.section img[data-v-eb70bca4] {
    width: 100%;
}
.section[data-v-eb70bca4] .mustRead {
    position: relative;
    padding-right: 20px;
}
.section[data-v-eb70bca4] .mustRead::before {
      content: '\5FC5\8BFB';
      position: absolute;
      right: 0;
      font-size: 12px;
      background: #EC6453;
      width: 35px;
      height: 20px;
      color: #ffffff;
      text-align: center;
      border-radius: 4px;
}
.scroll-bar[data-v-eb70bca4]::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-bar[data-v-eb70bca4]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mask-container .mask-pop[data-v-201c6f1e] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
  overflow: hidden;
}
.mask-container .mask-content[data-v-201c6f1e] {
  padding: 0 20px 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  color: #333;
  z-index: 111;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.mask-container .mask-content[data-v-201c6f1e] a {
    color: #079b4d;
    text-decoration: underline;
}
.mask-container .mask-content .mask-header[data-v-201c6f1e] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
.mask-container .mask-content .mask-header .close-btn[data-v-201c6f1e] {
      font-size: 20px;
}
.mask-container .mask-content .section div[data-v-201c6f1e] {
    font-size: 15px;
    line-height: 20px;
}
.mask-container .mask-content .section[data-v-201c6f1e] .section-title {
    padding: 10px 6px 10px 0px;
    font-size: 15px;
    color: #5cae78;
}
.mask-container .mask-content .section[data-v-201c6f1e] .section-title.toggle {
      position: relative;
      border-bottom: #e5e5e5 1px dashed;
      margin-right: 6px;
}
.mask-container .mask-content .section[data-v-201c6f1e] .section-title.toggle:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 3px;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg);
}
.mask-container .mask-content .section[data-v-201c6f1e] .section-title.toggle::after {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
}
.mask-container .mask-content .section[data-v-201c6f1e] .section-title.toggle.actived::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
}
.mask-container .mask-content .section[data-v-201c6f1e] .section-content {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: #e5e5e5 1px dashed;
}
.mask-container .mask-content .section[data-v-201c6f1e] .section-content.hide {
      display: none;
}
.mask-container .mask-content .section[data-v-201c6f1e] .section-content.actived {
      max-height: 999rem;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
              transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
}
.mask-container .mask-content .mask-footer[data-v-201c6f1e] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background: #5cae78;
}
.mask-container .mask-content .mask-button[data-v-201c6f1e] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.mask-container .mask-content .mask-button .submit-button[data-v-201c6f1e] {
      width: 100%;
      height: 40px;
      background: #666666;
      text-align: center;
}
.mask-container .mask-content .mask-button .submit-button span[data-v-201c6f1e] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}
.mask-container .mask-content .mask-button .submit-text[data-v-201c6f1e] {
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: red;
      text-align: center;
}
.mask-container .mask-content .mask-button .submitBack[data-v-201c6f1e] {
      background: #5cae78;
}
.mask-container .mask-content .mask-button .footer-button[data-v-201c6f1e] {
      width: 100%;
      height: 40px;
      background: #5cae78;
      text-align: center;
}
.mask-container .mask-content .mask-button .footer-button span[data-v-201c6f1e] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}

.mask-header .ly-tab .ly-tabbar {
  width: 100%;
  background: #F0F2F5;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list {
    padding: 0px;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list .ly-tab-item {
      display: inline-block;
      height: 50px;
      line-height: 50px;
      color: #333;
      text-decoration: none;
      margin: 0;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-active-bar {
    display: none;
}

.header[data-v-63eda3fe] {
  width: 100%;
  background-color: #F0F2F5;
}
.header[data-v-63eda3fe] .service-swiper {
    width: 100%;
    display: block;
    margin: auto;
    overflow-y: hidden;
    position: relative;
}
.header[data-v-63eda3fe] .service-swiper .swiper-wrapper .swiper-slide {
      width: auto !important;
      height: 45px;
      line-height: 45px;
      text-align: center;
}
.header[data-v-63eda3fe] .service-swiper .swiper-wrapper .swiper-slide .header_tab {
        font-size: 14px;
        color: #333;
        display: inline-block;
        padding: 0px 12px;
}
.header[data-v-63eda3fe] .service-swiper .swiper-wrapper .swiper-slide .tab-point {
        position: relative;
}
.header[data-v-63eda3fe] .service-swiper .swiper-wrapper .swiper-slide .tab-point::after {
          content: '';
          position: absolute;
          right: 4px;
          top: 10px;
          width: 5px;
          height: 5px;
          border-radius: 50%;
          background-color: red;
}
.header[data-v-63eda3fe] .service-swiper .swiper-wrapper .swiper-slide .activeheader {
        background: #fff;
        padding: 0px 12px;
}
.header[data-v-63eda3fe] .service-swiper .swiper-wrapper .swiper-slide .activeheaderOne {
        background: #fff;
        color: red;
        padding: 0px 8px;
}
.header[data-v-63eda3fe] .service-swiper .swiper-wrapper .swiper-slide .headerColor {
        color: red;
}

.authentication-back[data-v-ba44c830] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.authentication-back .authentication-pop[data-v-ba44c830] {
    margin: auto;
    position: relative;
    top: 4%;
    width: 90%;
    height: 90%;
    background-color: #fff;
    overflow: auto;
}
.authentication-back .authentication-pop .top-title[data-v-ba44c830] {
      width: 100%;
      height: 40px;
      background: #009933;
      text-align: center;
}
.authentication-back .authentication-pop .top-title span[data-v-ba44c830] {
        font-size: 18px;
        line-height: 40px;
        color: #fff;
}
.authentication-back .authentication-pop .face-recognition .recognition-img[data-v-ba44c830] {
      text-align: center;
}
.authentication-back .authentication-pop .face-recognition .recognition-img .resmsg-p[data-v-ba44c830] {
        color: red;
}
.authentication-back .authentication-pop .face-recognition .recognition-img img[data-v-ba44c830] {
        height: 200px;
        padding: 15px 0px 10px 0px;
}
.authentication-back .authentication-pop .face-recognition .recognition-img .ImgOne[data-v-ba44c830] {
        width: 260px;
}
.authentication-back .authentication-pop .face-recognition .recognition-img p[data-v-ba44c830] {
        font-size: 14px;
        margin-bottom: 10px;
}
.authentication-back .authentication-pop .face-recognition .recognition-img p a[data-v-ba44c830] {
          color: #838fe1;
}
.authentication-back .authentication-pop .face-recognition .camera-img[data-v-ba44c830] {
      width: 80%;
      height: 40px;
      background: #00a64a;
      margin: auto;
      border-radius: 5px;
      text-align: center;
}
.authentication-back .authentication-pop .face-recognition .camera-img img[data-v-ba44c830] {
        width: 30px;
        padding-top: 8px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data[data-v-ba44c830] {
      margin: 10px 0px 4px 36px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-statu[data-v-ba44c830] {
        width: 20px;
        height: 20px;
        border: 1px solid;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-statu img[data-v-ba44c830] {
          width: 20px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .agree[data-v-ba44c830] {
        color: #009933;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-data[data-v-ba44c830] {
        margin-left: 4px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-data a[data-v-ba44c830] {
          color: #009933;
          text-decoration: underline;
}
.authentication-back .authentication-pop .face-recognition .agreement-p[data-v-ba44c830] {
      color: red;
      margin-left: 34px;
      margin-bottom: 10px;
}
.authentication-back .authentication-pop .face-recognition .precautions-list[data-v-ba44c830] {
      width: 100%;
}
.authentication-back .authentication-pop .face-recognition .precautions-list span[data-v-ba44c830] {
        display: inline-block;
        width: 100%;
        height: 30px;
        background: #f5f5f9;
        color: #999;
        line-height: 30px;
        text-indent: 28px;
}
.authentication-back .authentication-pop .face-recognition .precautions-list p[data-v-ba44c830] {
        padding: 6px 0px 0px 30px;
        color: #474747;
        font-size: 14px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization[data-v-ba44c830] {
      margin-top: 15px;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      margin-bottom: 50px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization .civilization-img[data-v-ba44c830] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        width: 100px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization .civilization-img img[data-v-ba44c830] {
          margin: auto;
          width: 80px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization .civilization-img span[data-v-ba44c830] {
          color: #474747;
          margin: auto;
          padding: 10px 0px 10px 0px;
}
.authentication-back .authentication-pop .loading_Img[data-v-ba44c830] {
      position: fixed;
      top: 50%;
      left: 50%;
}
.authentication-back .shut-down[data-v-ba44c830] {
    position: relative;
    left: 5%;
    bottom: 0%;
    width: 90%;
    height: 40px;
    background: #00a64a;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}
.authentication-back .shut-gray[data-v-ba44c830] {
    position: relative;
    left: 5%;
    bottom: 0%;
    width: 90%;
    height: 40px;
    background: #999;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.pop-ups[data-v-fd68aafe] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}
.pop-ups .declare-authorization[data-v-fd68aafe] {
    margin: 0 auto;
    position: relative;
    top: 25%;
    width: 300px;
    max-height: 400px;
    background-color: #fff;
    overflow: auto;
}
.pop-ups .declare-authorization h4[data-v-fd68aafe] {
      text-align: center;
      padding: 20px 0px 15px 0px;
}
.pop-ups .declare-authorization h6[data-v-fd68aafe] {
      padding: 0px 15px 0px 15px;
}
.pop-ups .declare-authorization p[data-v-fd68aafe] {
      padding: 8px 15px 0px 15px;
      font-size: 12px;
      color: #333;
}
.pop-ups .declare-authorization .bottom-btn[data-v-fd68aafe] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      margin-top: 20px;
}
.pop-ups .declare-authorization .bottom-btn span[data-v-fd68aafe] {
        width: 50%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #ffffff;
}
.pop-ups .declare-authorization .bottom-btn .confirm-btn[data-v-fd68aafe] {
        background: #009933;
}
.pop-ups .declare-authorization .bottom-btn .cancel-btn[data-v-fd68aafe] {
        background: #666;
}

.authentication-back[data-v-3e41b827] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.authentication-back .authentication-pop[data-v-3e41b827] {
    margin: auto;
    position: relative;
    top: 4%;
    width: 90%;
    height: 90%;
    background-color: #fff;
    overflow: auto;
}
.authentication-back .authentication-pop .top-title[data-v-3e41b827] {
      width: 100%;
      height: 40px;
      background: #009933;
      text-align: center;
}
.authentication-back .authentication-pop .top-title span[data-v-3e41b827] {
        font-size: 18px;
        line-height: 40px;
        color: #fff;
}
.authentication-back .authentication-pop .face-recognition .recognition-img[data-v-3e41b827] {
      text-align: center;
}
.authentication-back .authentication-pop .face-recognition .recognition-img .resmsg-p[data-v-3e41b827] {
        color: red;
}
.authentication-back .authentication-pop .face-recognition .recognition-img img[data-v-3e41b827] {
        height: 200px;
        padding: 15px 0px 10px 0px;
}
.authentication-back .authentication-pop .face-recognition .recognition-img .ImgOne[data-v-3e41b827] {
        width: 260px;
}
.authentication-back .authentication-pop .face-recognition .recognition-img p[data-v-3e41b827] {
        font-size: 14px;
        margin-bottom: 10px;
}
.authentication-back .authentication-pop .face-recognition .recognition-img p a[data-v-3e41b827] {
          color: #838fe1;
}
.authentication-back .authentication-pop .face-recognition .camera-img[data-v-3e41b827] {
      width: 80%;
      height: 40px;
      background: #00a64a;
      margin: auto;
      border-radius: 5px;
      text-align: center;
}
.authentication-back .authentication-pop .face-recognition .camera-img img[data-v-3e41b827] {
        width: 30px;
        padding-top: 8px;
}
.authentication-back .authentication-pop .face-recognition .camera-img input[data-v-3e41b827] {
        display: none;
}
.authentication-back .authentication-pop .face-recognition .agreement-data[data-v-3e41b827] {
      margin: 10px 0px 4px 36px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-statu[data-v-3e41b827] {
        width: 20px;
        height: 20px;
        border: 1px solid;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-statu img[data-v-3e41b827] {
          width: 20px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .agree[data-v-3e41b827] {
        color: #009933;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-data[data-v-3e41b827] {
        margin-left: 4px;
}
.authentication-back .authentication-pop .face-recognition .agreement-data .checkbox-data a[data-v-3e41b827] {
          color: #009933;
          text-decoration: underline;
}
.authentication-back .authentication-pop .face-recognition .agreement-p[data-v-3e41b827] {
      color: red;
      margin-left: 34px;
      margin-bottom: 10px;
}
.authentication-back .authentication-pop .face-recognition .precautions-list[data-v-3e41b827] {
      width: 100%;
}
.authentication-back .authentication-pop .face-recognition .precautions-list span[data-v-3e41b827] {
        display: inline-block;
        width: 100%;
        height: 30px;
        background: #f5f5f9;
        color: #999;
        line-height: 30px;
        text-indent: 28px;
}
.authentication-back .authentication-pop .face-recognition .precautions-list p[data-v-3e41b827] {
        padding: 6px 0px 0px 30px;
        color: #474747;
        font-size: 14px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization[data-v-3e41b827] {
      margin-top: 15px;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      margin-bottom: 50px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization .civilization-img[data-v-3e41b827] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        width: 100px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization .civilization-img img[data-v-3e41b827] {
          margin: auto;
          width: 80px;
}
.authentication-back .authentication-pop .face-recognition .figure-civilization .civilization-img span[data-v-3e41b827] {
          color: #474747;
          margin: auto;
          padding: 10px 0px 10px 0px;
}
.authentication-back .authentication-pop .loading_Img[data-v-3e41b827] {
      position: fixed;
      top: 50%;
      left: 50%;
}
.authentication-back .shut-down[data-v-3e41b827] {
    position: relative;
    left: 5%;
    bottom: 0%;
    width: 90%;
    height: 40px;
    background: #00a64a;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}
.authentication-back .shut-gray[data-v-3e41b827] {
    position: relative;
    left: 5%;
    bottom: 0%;
    width: 90%;
    height: 40px;
    background: #999;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.continuous-container .plan[data-v-1415f91d] {
  padding: 8px;
  background: #fff;
}
.continuous-container .title[data-v-1415f91d] {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 8px 0.4rem;
  text-align: left;
  height: 28px;
  line-height: 28px;
  color: #000;
  font-size: 15px;
}
.continuous-container .line[data-v-1415f91d] {
  height: 10px;
}
.continuous-container .text[data-v-1415f91d] {
  text-align: left;
  color: #999;
}
.continuous-container .weight[data-v-1415f91d] {
  color: #000;
}
.continuous-container .color-red[data-v-1415f91d] {
  color: #e81c34;
}
.continuous-container .coupon-style[data-v-1415f91d] {
  padding: 5px 0;
  background: #fff;
}
.continuous-container .clause[data-v-1415f91d] {
  font-size: 12px;
  padding-bottom: 60px;
  color: #333;
}
.continuous-container .clause > div[data-v-1415f91d] {
    width: 92%;
    margin: 0 auto;
    line-height: 20px;
}
.continuous-container .clause > div .readAndAgree[data-v-1415f91d] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
}
.continuous-container .clause > div .readAndAgree .not-agree[data-v-1415f91d] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.continuous-container .clause > div .readAndAgree .agree[data-v-1415f91d] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.continuous-container .clause > div .clause-title[data-v-1415f91d] {
      display: inline-block;
      text-decoration: underline;
      color: #459855;
}
.continuous-container .footer[data-v-1415f91d] {
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 2;
}
.continuous-container .footer[data-v-1415f91d] .left-btn {
    color: #333;
}
.continuous-container[data-v-1415f91d] .ols-cell-group .ols-form-item-group-title {
  font-weight: 600;
}
.continuous-container[data-v-1415f91d] .ols-cell-group .ols-form-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.continuous-container[data-v-1415f91d] .ols-cell-group .ols-form-item .ols-viewer {
    color: #000;
    height: auto;
    line-height: unset;
}

.version-detail[data-v-cc735a82] {
  margin: 0 10px 20px;
  border: 1px solid #e4e4e4;
}
.version-detail ul[data-v-cc735a82] {
    margin: 0 10px;
}
.version-detail ul li[data-v-cc735a82] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      min-height: 50px;
      border-bottom: 1px dashed #e4e4e4;
      font-size: 14px;
      color: #333;
}
.version-detail ul li[data-v-cc735a82]:last-child {
        border: none;
}
.version-detail ul li .version-title[data-v-cc735a82] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
}
.version-detail ul li .version-title img[data-v-cc735a82] {
          width: 36px;
          height: 36px;
          vertical-align: middle;
          padding-right: 10px;
}
.version-detail ul li .color-red[data-v-cc735a82] {
        color: #e81c34;
}
.version-detail ul li .finial-amount[data-v-cc735a82] {
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
}
.version-detail .coverageDescPic img[data-v-cc735a82] {
    display: block;
    width: 100%;
}

.bottom-height[data-v-e1153c9c] {
  width: 100%;
  height: 50px;
}
.footer[data-v-e1153c9c] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #e1e1e1;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 2;
}
.footer .left-num[data-v-e1153c9c] {
    float: left;
    background-color: #fff;
    text-align: center;
    width: 50%;
    color: #459855;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
}
.footer .left-num .V[data-v-e1153c9c] {
      font-size: 14px;
      line-height: 50px;
      color: #333;
      margin-left: 10px;
}
.footer .right-but[data-v-e1153c9c] {
    /*font-weight: 600;*/
    float: right;
    width: 50%;
    height: 50px;
    line-height: 50px;
    background-color: #e4e4e4;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.footer .right-but.butOk[data-v-e1153c9c] {
      background-color: #5cae78;
}

.Insured-Information .Insured-name:last-child {
  border-top: none !important;
}
.Insured-Information .Insured-name {
  border-top: 1px dashed #e6e6e6 !important;
}
.Insured-Information .Insured-name .ols-form-item-inner .ols-form-item-label {
    color: #000 !important;
}

.pay-detail[data-v-7b66aae1] {
  background: #fafafa;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-detail .main-content[data-v-7b66aae1] {
    height: 100%;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.box[data-v-24f405fa] {
  background-color: #f5f5f5;
}

.pay-container[data-v-cb770be6] {
  padding-bottom: 50px;
  overflow-y: auto;
}
.pay-container .header[data-v-cb770be6] {
    width: 100%;
}
.pay-container .toub-box[data-v-cb770be6] {
    position: relative;
    margin: 0 auto;
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
}
.pay-container .toub-box[data-v-cb770be6]::before {
      content: "";
      position: absolute;
      top: 80px;
      left: -15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #f5f5f5;
}
.pay-container .toub-box[data-v-cb770be6]::after {
      content: "";
      position: absolute;
      top: 80px;
      right: -15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #f5f5f5;
}
.pay-container .toub-box .toub-title[data-v-cb770be6] {
      height: 80px;
      line-height: 80px;
      font-size: 22px;
      text-align: center;
      color: #fff;
      font-weight: 600;
      background-color: #169248;
}
.pay-container .toub-box .toub-service[data-v-cb770be6] {
      background: #fff;
      text-align: center;
}
.pay-container .toub-box .toub-service p[data-v-cb770be6] {
        font-size: 13px;
        line-height: 24px;
        color: #008c52;
}
.pay-container .toub-box .toub-service p.gift[data-v-cb770be6] {
          margin-top: 15px;
}
.pay-container .toub-box .toub-service p.gift i[data-v-cb770be6] {
            font-weight: 600;
            font-size: 38px;
}
.pay-container .toub-box .toub-content[data-v-cb770be6] {
      height: 80px;
      background-color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-container .toub-box .toub-content img[data-v-cb770be6] {
        width: 30px;
}
.pay-container .toub-box .toub-content .check-policy[data-v-cb770be6] {
        margin-top: 5px;
        font-size: 15px;
        color: #5cae78;
}
.pay-container .other-goods[data-v-cb770be6] {
    margin: 30px 0;
}
.pay-container .other-goods .other-title[data-v-cb770be6] {
      font-size: 18px;
      text-align: center;
      color: #0e755c;
      font-weight: 600;
}
.pay-container .other-goods .goods-list[data-v-cb770be6] {
      margin-top: 15px;
      background: #fff;
}
.pay-container .other-goods .goods-list ul[data-v-cb770be6] {
        padding: 0 10px;
}
.pay-container .other-goods .goods-list ul li[data-v-cb770be6] {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding: 10px 0;
          border-bottom: 1px solid #eee;
}
.pay-container .other-goods .goods-list ul li[data-v-cb770be6]:last-child {
            border: none;
}
.pay-container .other-goods .goods-list ul li .goods-banner[data-v-cb770be6] {
            width: 100px;
            height: 100px;
}
.pay-container .other-goods .goods-list ul li .goods-banner img[data-v-cb770be6] {
              width: 100%;
}
.pay-container .other-goods .goods-list ul li .goods-content[data-v-cb770be6] {
            padding-left: 8px;
}
.pay-container .other-goods .goods-list ul li .goods-content div[data-v-cb770be6] {
              white-space: nowrap;
              text-overflow: ellipsis;
              overflow: hidden;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-title[data-v-cb770be6] {
              color: #000;
              font-size: 16px;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-subtitle[data-v-cb770be6] {
              font-size: 14px;
              color: #999;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag[data-v-cb770be6] {
              height: 30px;
              line-height: 30px;
              color: #5cae78;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag span[data-v-cb770be6] {
                border: 1px solid #5cae78;
                border-radius: 20px;
                padding: 0 5px;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag span.red[data-v-cb770be6] {
                  border-color: #ff0000;
}
.pay-container .other-goods .goods-list ul li .goods-content .red[data-v-cb770be6] {
              color: #ff0000;
}
.pay-container .other-goods .goods-list ul li .goods-price[data-v-cb770be6] {
            position: absolute;
            right: 0;
            bottom: 10px;
            font-size: 16px;
            color: #169248;
}
.pay-container .other-goods .goods-list ul li .goods-price span[data-v-cb770be6] {
              font-size: 12px;
}
.pay-container .footer[data-v-cb770be6] {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.box-content[data-v-314bb923] {
  background-color: #f5f5f5;
}
.topView[data-v-314bb923] {
  height: 45px;
  background-color: #fff;
}
.successImage[data-v-314bb923] {
  width: 30%;
  height: 30%;
}
.successImageBg[data-v-314bb923] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
p[data-v-314bb923] {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.msgStyle[data-v-314bb923] {
  font-size: 20px;
  margin-top: 12px;
}
.detailMsg[data-v-314bb923] {
  margin-top: 20px;
  font-size: 16px;
}
.red[data-v-314bb923] {
  color: #459855;
  height: 30px;
}
.btnBg[data-v-314bb923] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 50px;
}
.padding-height[data-v-314bb923] {
  padding: 10px;
  height: 235px;
}
.btnStyle[data-v-314bb923] {
  width: 120px;
  height: 30px;
  font-size: 15px;
  border: 1px solid #5cae78;
  color: #5cae78;
  background-color: #f5f5f5;
  border-radius: 3px;
  margin: 0 auto;
  outline: 0 none !important;
  blr: expression(this.onFocus=this.blur());
}
.lineStyle[data-v-314bb923] {
  width: 64%;
  height: 1px;
  margin-top: 20px;
  margin-left: 18%;
  background-color: #e4e4e4;
}
.bodyIndex[data-v-314bb923] {
  z-index: 2;
  position: fixed;
  border-top: 1px solid #e4e4e4;
  background: #fff;
}
.outside[data-v-314bb923] {
  width: 100%;
  top: 45px;
}
.ssS[data-v-314bb923] {
  width: 100%;
  height: 50%;
  background-color: #fff;
  position: absolute;
  z-index: 1;
}

.detail-container[data-v-16a95283] {
  color: #333;
  background-color: #fff;
}
.detail-container .line[data-v-16a95283] {
    height: 10px;
    background-color: #f7f7f7;
}
.detail-container .duty[data-v-16a95283] {
    padding: 12px 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-top: 10px solid #f7f7f7;
    border-bottom: 1px solid #CFCFCF;
}
.detail-container .duty .duty-title[data-v-16a95283] {
      color: #333;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-16a95283] {
      position: relative;
      padding-right: 10px;
      color: #00A758;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-16a95283]:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 0;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
}
.detail-container .navWrap[data-v-16a95283] {
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e4e4e4;
    border-bottom: none;
}
.detail-container .navWrap .versions[data-v-16a95283] {
      text-align: center;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      height: 40px;
      line-height: 40px;
      font-size: 15px;
      color: #333;
      background-color: #f7f7f7;
      border-right: 1px solid #e4e4e4;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.detail-container .navWrap .versions[data-v-16a95283]:last-child {
        border-right: none;
}
.detail-container .navWrap .versions.recommend[data-v-16a95283]::before {
        content: "";
        background: url(../../assets/img/icon-recommend.f2c0e0b.png);
        background-size: 100% 100%;
        width: 36px;
        height: 36px;
        position: absolute;
        top: -3px;
        right: -4px;
}
.detail-container .navWrap .versions.active[data-v-16a95283] {
        background-color: #5cae78;
        color: #fff;
}
.detail-container .navWrap .versions.active[data-v-16a95283]::after {
          content: "";
          width: 0px;
          height: 0px;
          border: solid 10px transparent;
          border-bottom-color: #fff;
          position: absolute;
          bottom: -1px;
          left: 50%;
          -webkit-transform: translate(-50%, 0);
                  transform: translate(-50%, 0);
          z-index: 2;
}
.detail-container .electronic-card[data-v-16a95283] {
    margin: 10px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 0 20px #eef4f7;
    box-shadow: 0 0 20px #eef4f7;
    border-radius: 8px;
}
.detail-container .electronic-card .card-img[data-v-16a95283] {
      margin-right: 14px;
}
.detail-container .electronic-card .card-img img[data-v-16a95283] {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
}
.detail-container .electronic-card .card-information .card-name[data-v-16a95283] {
      font-size: 14px;
      color: #00a758;
      font-weight: bold;
}
.detail-container .electronic-card .card-information .card-contactDetails[data-v-16a95283] {
      font-size: 12px;
      color: #00a758;
}
.detail-container .electronic-card .card-information .card-contactDetails a[data-v-16a95283] {
        font-size: 12px;
}
.detail-container .electronic-card .card-information p[data-v-16a95283] {
      font-size: 12px;
      color: #666666;
}
.detail-container .tab-container .tab-title[data-v-16a95283] {
    padding-left: 10px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
}
.forwardimg[data-v-16a95283] {
  width: 184px;
  position: fixed;
  right: 25px;
  bottom: 90px;
  z-index: 2;
}
.pop1[data-v-16a95283] {
  display: block;
  margin: 200px auto;
  width: 67%;
}
.forwardbox[data-v-16a95283] {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 3;
}
#headerImage[data-v-16a95283] {
  width: 100%;
  min-height: 5rem;
  vertical-align: middle;
}
a[data-v-16a95283]:link {
  text-decoration: none;
  font-size: 20px;
  /*px*/
  text-align: center;
  margin-right: 10px;
  margin-right: 10px;
}
.outside[data-v-16a95283] {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ols-cell-group[data-v-fe1a20ac] {
  /*margin-left: 0.4rem;*/
  border-bottom: 1px dashed #e6e6e6;
  overflow-x: hidden;
}
.ols-cell-group .ols-form-item[data-v-fe1a20ac] {
    /*margin: 0;*/
}
.ols-cell-group .ols-form-item[data-v-fe1a20ac] .ols-form-item-label {
      -ms-flex-preferred-size: 125px;
          flex-basis: 125px;
      color: #333;
}
.ols-cell-group[data-v-fe1a20ac]:last-of-type {
    border-bottom: none;
}
.fade-enter-active[data-v-fe1a20ac],
.fade-leave-active[data-v-fe1a20ac] {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
.fade-enter[data-v-fe1a20ac],
.fade-leave-to[data-v-fe1a20ac] {
  opacity: 0;
}
#footer[data-v-fe1a20ac] {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  color: #afafaf;
  font-style: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#footer .color-red[data-v-fe1a20ac] {
    color: #e81c34;
}
#footer .btn-left[data-v-fe1a20ac] {
    color: #333;
    font-size: 14px;
    /*px*/
}
#footer .btn-left .newPrice[data-v-fe1a20ac] {
      font-size: 18px;
      /*px*/
}
.footerContent[data-v-fe1a20ac] {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.footerContent .ols-form-list .ols-form-item .ols-form-item-content[data-v-fe1a20ac] {
    width: 100%;
    text-align: left;
}
.term-popup[data-v-fe1a20ac] {
  width: 100%;
  height: 80%;
  position: fixed;
  left: 0;
  bottom: 48px;
  padding: 15px 0;
  min-height: 300px;
  z-index: 10;
  -webkit-box-shadow: 0 -3px 3px #eaeaea;
          box-shadow: 0 -3px 3px #eaeaea;
  overflow-y: hidden;
  background: #fff;
}
.term-popup .formList[data-v-fe1a20ac] {
    height: 100%;
    padding-top: 48px;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.form-title[data-v-fe1a20ac], .tips-btn[data-v-fe1a20ac] {
  width: 100%;
  height: 48px;
  line-height: 48px;
}
.form-title[data-v-fe1a20ac] {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  z-index: 100;
}
.form-title .text[data-v-fe1a20ac] {
    font-size: 18px;
    color: #333;
}
.tips-btn[data-v-fe1a20ac] {
  margin: 0 0.4rem 10px 0.4rem;
}
.tips-btn .tip-inner[data-v-fe1a20ac] {
    display: inline-block;
    padding: 4px;
    line-height: 1.0;
}
.tips-btn .tips-icon[data-v-fe1a20ac] {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 18px;
    margin-right: 8px;
    text-align: center;
    border: 1px solid #5cae78;
    border-radius: 100%;
    vertical-align: middle;
}
.tips-btn .text[data-v-fe1a20ac] {
    font-size: 16px;
    color: #5cae78;
    vertical-align: middle;
}
.value-table[data-v-fe1a20ac] {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  margin: 0 0.4rem;
}
.value-table .value-title[data-v-fe1a20ac] {
    padding: 15px 0;
    text-align: center;
}
.value-table .value-title .text[data-v-fe1a20ac] {
      font-size: 24px;
      color: #5cae78;
      margin-bottom: 4px;
}
.value-table .value-title .subtitle-text[data-v-fe1a20ac] {
      font-size: 14px;
      color: #c5c5c5;
}
.value-table .value-list[data-v-fe1a20ac] {
    width: 100%;
    display: table;
    border-top: 1px solid #e6e6e6;
}
.value-table .value-list .value-item[data-v-fe1a20ac] {
      display: table-row;
}
.value-table .value-list .value-item .value-cell[data-v-fe1a20ac] {
        display: table-cell;
        padding: 10px;
        border-right: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        color: #333;
        font-size: 14px;
        text-align: center;
}
.value-table .value-list .value-item .value-cell[data-v-fe1a20ac]:last-child {
          border-right: none;
}
.value-table .value-list .value-item:last-child .value-cell[data-v-fe1a20ac] {
        border-bottom: none;
}
.value-success[data-v-fe1a20ac] {
  position: fixed;
  left: 0;
  bottom: 46px;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  font-size: 14px;
}
.value-success .text[data-v-fe1a20ac] {
    color: #333;
}
.value-success .text-value[data-v-fe1a20ac] {
    color: #5cae78;
    font-style: normal;
}
.mask-pop[data-v-fe1a20ac] {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
}
.next-btn[data-v-fe1a20ac] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.left[data-v-fe1a20ac] {
  width: 50%;
  float: left;
  text-align: center;
  line-height: 49px;
  margin: 0 auto;
}
.top[data-v-fe1a20ac] {
  font-size: 14px;
  color: #afafaf;
  text-align: center;
}
.right[data-v-fe1a20ac] {
  width: 50%;
  float: right;
  background: #5cae78;
  font-size: 14px;
  /*px*/
  line-height: 49px;
  color: #fff;
  text-align: center;
}

.ols-occupation {
  min-height: 28px;
  min-width: 1px;
  padding: 0;
}
.ols-occupation .ols-select-input {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: 0;
    position: absolute;
    visibility: hidden;
}
.ols-occupation .ols-select-content {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
    height: 28px;
    line-height: 28px;
    min-width: 0.4rem;
    text-align: left;
    color: #666;
}
.ols-occupation .ols-select-content:empty::before {
      content: attr(placeholder);
      color: #c5c5c5;
}
.ols-occupation .ols-select-allow-right:after {
    border: 2px solid #999;
    border-bottom-width: 0;
    border-left-width: 0;
    content: "";
    top: 50%;
    right: 0.5rem;
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
}

@charset "UTF-8";
.view[data-v-c904238e] {
  background-color: #fff;
}
.view h2[data-v-c904238e] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-c904238e] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-c904238e] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .children-wrap[data-v-c904238e] {
    padding-top: 15px;
    padding-bottom: 65px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .children-title[data-v-c904238e] {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.view .sub-wrap .clause[data-v-c904238e] .qes {
    position: relative;
}
.view .sub-wrap .clause[data-v-c904238e] .qes .answer-box {
      width: 60px;
      position: absolute;
      top: 3px;
      right: -60px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap .clause[data-v-c904238e] .qes .answer-box .check-box {
        position: relative;
        width: 16px;
        height: 16px;
        border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-c904238e] .qes .answer-box .check-box.check::before {
          content: "\2713";
          position: absolute;
          width: 100%;
          text-align: center;
          line-height: 16px;
}
.view .sub-wrap .clause img[data-v-c904238e] {
    width: 100%;
}
.view .sub-wrap .clause p[data-v-c904238e] {
    margin-bottom: 6px;
    color: #333;
    font-size: 12px;
}
.view .footer[data-v-c904238e] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-c904238e] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-c904238e] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-c904238e] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-c904238e] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-c904238e] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-c904238e] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-c904238e] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

@charset "UTF-8";
.view[data-v-331e6910] {
  background-color: #fff;
}
.view .health-notice[data-v-331e6910] {
    width: 94%;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 10px;
}
.view .health-notice h2[data-v-331e6910] {
      margin-bottom: 10px;
      padding: 0 0px;
      font-size: 17px;
      font-weight: bold;
}
.view .health-notice .notice-text[data-v-331e6910] {
      margin-top: 10px;
}
.view .health-notice .notice-text .text-title[data-v-331e6910] {
        text-indent: 2em;
}
.view .health-notice .notice-text .text-description[data-v-331e6910] {
        text-indent: 2em;
        padding: 6px 0px;
}
.view .health-notice .notice-text .terms-text[data-v-331e6910] {
        text-indent: 2em;
}
.view .health-notice .notice-text .terms-text p[data-v-331e6910] {
          padding-bottom: 6px;
}
.view .health-notice .readAndAgree[data-v-331e6910] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
      margin-top: 14px;
}
.view .health-notice .readAndAgree .not-agree[data-v-331e6910] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.view .health-notice .readAndAgree .agree[data-v-331e6910] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.view h2[data-v-331e6910] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-331e6910] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-331e6910] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap[data-v-331e6910] {
    padding-bottom: 65px;
    padding-right: 60px;
    height: 80vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .sub-wrap .clause[data-v-331e6910] .qes {
      position: relative;
      color: #000;
}
.view .sub-wrap .clause[data-v-331e6910] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.view .sub-wrap .clause[data-v-331e6910] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-331e6910] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.view .sub-wrap .clause img[data-v-331e6910] {
      width: 100%;
}
.view .sub-wrap .clause p[data-v-331e6910] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.view .bottom-height[data-v-331e6910] {
    width: 100%;
    height: 50px;
}
.view .footer[data-v-331e6910] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-331e6910] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-331e6910] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-331e6910] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-331e6910] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-331e6910] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-331e6910] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-331e6910] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

.info-container .main[data-v-293e9e87] {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.info-container .form[data-v-293e9e87] {
  /*.form-group {*/
  /*margin-top: 15px;*/
  /*}*/
}
.info-container .form .ols-cell-group[data-v-293e9e87] {
    margin-left: 0;
}
.info-container .form .ols-form-item[data-v-293e9e87] {
    margin-left: 0.4rem;
    padding: 0.4rem 0.4rem 0.4rem 0;
}
.info-container .form .ols-form-item[data-v-293e9e87] .ols-form-item-content {
      overflow: hidden;
}
.info-container .form .ols-form-item[data-v-293e9e87] .ols-form-item-content .ols-viewer {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
}
.info-container .color-red[data-v-293e9e87] {
  color: #e81c34;
}
.info-container .btn-left[data-v-293e9e87] {
  color: #333;
  font-size: 14px;
  /*px*/
}
.info-container .btn-left .newPrice[data-v-293e9e87] {
    font-size: 18px;
    /*px*/
}
.info-container .bank-read[data-v-293e9e87] {
  text-align: left;
}
.info-container .getInfo-clause[data-v-293e9e87] {
  width: 92%;
  padding-bottom: 60px;
  margin: 0 auto;
}
.info-container .getInfo-clause[data-v-293e9e87], .info-container .bank-read[data-v-293e9e87] {
  font-size: 12px;
  color: #333;
}
.info-container .getInfo-clause > div[data-v-293e9e87], .info-container .bank-read > div[data-v-293e9e87] {
    line-height: 20px;
}
.info-container .getInfo-clause > div .readAndAgree[data-v-293e9e87], .info-container .bank-read > div .readAndAgree[data-v-293e9e87] {
      position: relative;
      display: inline-block;
}
.info-container .getInfo-clause > div .readAndAgree .not-agree[data-v-293e9e87], .info-container .bank-read > div .readAndAgree .not-agree[data-v-293e9e87] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.info-container .getInfo-clause > div .readAndAgree .agree[data-v-293e9e87], .info-container .bank-read > div .readAndAgree .agree[data-v-293e9e87] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.info-container .getInfo-clause > div .clause-title[data-v-293e9e87], .info-container .bank-read > div .clause-title[data-v-293e9e87] {
      display: inline-block;
      text-decoration: underline;
      color: #459855;
}
.info-container .formItem .ols-form-item-label[data-v-293e9e87] {
  display: none;
}
.info-container .formItemDelete .ols-form-item-content[data-v-293e9e87] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.info-container .formItemDelete .operationTextDelete[data-v-293e9e87] {
  font-size: 16px;
  color: #e81c34;
  margin: 0 10px;
  text-decoration: underline;
}
.info-container .switch-wrapper .switch-inner[data-v-293e9e87] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.info-container .switch-wrapper .switch-inner .switch-label[data-v-293e9e87] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
}
.info-container .switch-wrapper .switch-inner .switch-checker[data-v-293e9e87] {
    margin-right: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.info-container .switch-wrapper .switch-inner .switch-checker .ols-checker-options[data-v-293e9e87] {
      text-align: right;
}
.info-container .switch-wrapper .switch-inner .switch-checker .ols-checker-option[data-v-293e9e87] {
      margin-bottom: 0;
}
.info-container .switch-wrapper .switch-text[data-v-293e9e87] {
  color: #999;
  font-size: 12px;
  text-align: left;
}
.info-container .formItemOperation[data-v-293e9e87] {
  font-size: 16px;
}
.info-container .formItemOperation .operationText[data-v-293e9e87] {
    display: inline-block;
    color: #5cae78;
    padding: 4px 6px;
    text-decoration: underline;
}
.footer[data-v-293e9e87] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #f5f5f5;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 2;
}
.next-btn[data-v-293e9e87] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.mint-switch-core[data-v-293e9e87] {
  display: inline-block;
  position: relative;
  width: 46px;
  height: 26px;
  border: 1px solid #d9d9d9;
  border-radius: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #d9d9d9;
}
.mint-switch-core[data-v-293e9e87]::after {
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.occupation-select .ols-occupation .ols-select-content[data-v-293e9e87] {
  height: auto;
}
.ols-form-list .ols-form-item .ols-form-item-label[data-v-293e9e87] {
  -ms-flex-preferred-size: 115px;
      flex-basis: 115px;
}
.phone-square .ols-form-item-inner .ols-form-item-label[data-v-293e9e87] {
  -ms-flex-preferred-size: 115px;
      flex-basis: 115px;
}
.phone-square .ols-form-item-inner .ols-form-item-content[data-v-293e9e87] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.phone-square .ols-form-item-inner .ols-form-item-content .ols-input[data-v-293e9e87] {
    width: 40%;
}
.phone-square .ols-form-item-inner .ols-form-item-content .readAndAgree[data-v-293e9e87] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.phone-square .ols-form-item-inner .ols-form-item-content .readAndAgree span[data-v-293e9e87] {
      font-size: 12px;
      color: red;
}

.terms-page[data-v-40d777a5] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2) !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.terms-page .terms-pop[data-v-40d777a5] {
    width: 90%;
    max-height: 90%;
    overflow: auto;
    background-color: #fff;
    padding: 10px;
}
.terms-page .terms-pop .top-title[data-v-40d777a5] {
      width: 100%;
      height: 30px;
      text-align: right;
}
.terms-page .terms-pop .top-title span[data-v-40d777a5] {
        font-size: 18px;
}
.terms-page .terms-pop .title-center[data-v-40d777a5] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly;
      justify-items: center;
      margin-bottom: 10px;
}
.terms-page .terms-pop .title-center h3[data-v-40d777a5] {
        font-size: 16px;
}
.terms-page .terms-pop .text-center[data-v-40d777a5] {
      width: 210px;
      font-size: 15px;
      margin: 0 auto;
}
.terms-page .terms-pop .terms-content[data-v-40d777a5] {
      width: 210px;
      margin: 0 auto;
}
.terms-page .terms-pop .terms-content p[data-v-40d777a5] {
        padding-top: 6px;
        font-size: 18px;
        color: #459855;
}
.terms-page .terms-pop .terms-content p .preview-left[data-v-40d777a5] {
          text-align: left !important;
}
.terms-page .terms-pop .terms-content p .clauseTitle[data-v-40d777a5] {
          color: red;
}
.terms-page .terms-pop .agreeBtnOne[data-v-40d777a5] {
      background: #459855 !important;
}
.terms-page .terms-pop .clause[data-v-40d777a5] {
      margin-top: 10px;
      font-size: 12px;
      padding-bottom: 20px;
      color: #333;
}
.terms-page .terms-pop .clause > div[data-v-40d777a5] {
        width: 92%;
        margin: 0 auto;
        line-height: 20px;
}
.terms-page .terms-pop .clause > div .readAndAgree[data-v-40d777a5] {
          position: relative;
          display: inline-block;
}
.terms-page .terms-pop .clause > div .readAndAgree .not-agree[data-v-40d777a5] {
            position: absolute;
            left: 0;
            top: 0;
            line-height: 18px;
            font-size: 14px;
            color: #d0d0d0;
            width: 24px;
            z-index: 2;
}
.terms-page .terms-pop .clause > div .readAndAgree .agree[data-v-40d777a5] {
            position: absolute;
            left: 0;
            top: 0;
            line-height: 18px;
            font-size: 14px;
            color: #888888;
            width: 24px;
            z-index: 1;
}
.terms-page .terms-pop .clause > div .readAndAgree span[data-v-40d777a5] {
            text-indent: 25px;
}
.terms-page .terms-pop .agree-btn[data-v-40d777a5] {
      width: 0px;
      margin: 0 auto;
      width: 76%;
      background: #666;
      text-align: center;
      margin-bottom: 16px;
      color: #fff;
      font-size: 16px;
      padding: 16px 0px;
}
.terms-page .terms-pop .agree-btn span[data-v-40d777a5] {
        color: #fff;
        font-size: 16px;
        padding: 10px;
}

.terms-page[data-v-1a00e347] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.terms-page .terms-pop[data-v-1a00e347] {
    margin: auto;
    position: relative;
    top: 15%;
    left: 0;
    width: 80%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}
.terms-page .terms-pop .top-title[data-v-1a00e347] {
      width: 100%;
      height: 30px;
      text-align: center;
}
.terms-page .terms-pop .top-title .title-text[data-v-1a00e347] {
        font-size: 18px;
        color: #000;
}
.terms-page .terms-pop .top-title .clost-img[data-v-1a00e347] {
        font-size: 18px;
}
.terms-page .terms-pop .product-name[data-v-1a00e347] {
      text-align: center;
      font-size: 14px;
}
.terms-page .terms-pop .prompt-content[data-v-1a00e347] {
      margin: 10px 0px 10px 0px;
      max-height: 200px;
      overflow: auto;
}
.terms-page .terms-pop .prompt-content .text-amount[data-v-1a00e347] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 20px;
}
.terms-page .terms-pop .text-p[data-v-1a00e347] {
      font-size: 12px;
      color: red;
      margin-bottom: 10px;
      padding: 0;
}
.terms-page .terms-pop .bottom-btn[data-v-1a00e347] {
      display: inline-block;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.terms-page .terms-pop .bottom-btn .btn-click[data-v-1a00e347] {
        width: 100%;
        background: #088E08;
        padding: 10px 0px;
        color: #fff;
        border-radius: 4px;
        font-size: 16px;
        text-align: center;
}

*[data-v-ba307b12] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.ols-alert-mask[data-v-ba307b12] {
  position: fixed;
  top: 0;
  left: 0;
}
#detail-address .ols-form-item-inner .ols-form-item-content .ols-viewer[data-v-ba307b12] {
  height: auto !important;
  display: block !important;
  word-break: break-all !important;
  word-wrap: break-word !important;
}
.ols-cell-group[data-v-ba307b12] {
  background: #fff;
}
.ols-form-item[data-v-ba307b12] {
  margin-left: 0.4rem;
  padding: 8px 0.4rem 8px 0;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-form-item[data-v-ba307b12]::after {
    display: none;
}
.ols-form-item[data-v-ba307b12]:last-of-type {
    border-bottom: none;
}
.beneficiary-wrapper[data-v-ba307b12] {
  margin-bottom: 10px;
}
.beneficiary-wrapper .ols-form-item[data-v-ba307b12]:last-child {
    border-bottom: 1px dashed #e6e6e6;
}
.topView[data-v-ba307b12] {
  height: 45px;
  background-color: #fff;
}
.line[data-v-ba307b12] {
  height: 15px;
  background-color: #f5f5f5;
}
.orderFinish[data-v-ba307b12] {
  height: 100px;
  background-color: #fff;
}
.orderFinish .title[data-v-ba307b12] {
    padding-left: 10px;
    padding-top: 10px;
    height: 25px;
    color: #333;
    font-size: 14px;
}
.orderFinish .numberOrder[data-v-ba307b12] {
    padding-left: 10px;
    height: 20px;
    color: #666;
    font-size: 13px;
}
.orderFinish .numberIns[data-v-ba307b12] {
    padding-left: 10px;
    height: 25px;
    color: #666;
    font-size: 13px;
}
.order[data-v-ba307b12] {
  position: relative;
  height: 80px;
  background-color: #fff;
}
.order .title[data-v-ba307b12] {
    padding-left: 10px;
    padding-top: 10px;
    height: 25px;
    color: #333;
    font-size: 14px;
}
.order .number[data-v-ba307b12] {
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    vertical-align: -10px;
    color: #666;
    font-size: 13px;
}
.order .needToPay[data-v-ba307b12] {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 60px;
    height: 30px;
    border-color: #459855;
    color: #459855;
    background-color: #fff;
    border-radius: 5px;
    /*no*/
    outline: none;
}
.formWrap[data-v-ba307b12] {
  background-color: #fff;
}
.formWrap .form .tit[data-v-ba307b12] {
    height: 30px;
    line-height: 30px;
    color: #a8a8a8;
    font-size: 12px;
    background-color: #f5f5f5;
    padding-top: 10px;
    padding-left: 10px;
}
.formWrap .form .item[data-v-ba307b12] {
    position: relative;
    height: 45px;
    line-height: 45px;
    border-bottom: 1px solid #e1e1e1;
    /*no*/
    font-size: 14px;
    margin-left: 15px;
}
.formWrap .form .item .title[data-v-ba307b12] {
      float: left;
      color: #333;
      width: 22%;
      text-align: left;
}
.formWrap .form .item .content[data-v-ba307b12] {
      float: right;
      width: 65%;
      height: 45px;
      line-height: 45px;
      color: #666;
      margin-right: 15px;
      text-align: right;
}
.formWrap .form .item .content.term[data-v-ba307b12] {
        line-height: 22.5px;
}
.formWrap .form .item .triangle[data-v-ba307b12] {
      position: absolute;
      right: 17px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
}
.formWrap .form .item .triangle[data-v-ba307b12]::after {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-top: 1px solid #adadad;
        /*no*/
        border-right: 1px solid #adadad;
        /*no*/
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        vertical-align: 1.5px;
}
.formWrap .form .item.special[data-v-ba307b12] {
      border-bottom: none;
      /*no*/
}
.formWrap .form .item.special a[data-v-ba307b12] {
        width: 100%;
}
.clause[data-v-ba307b12] {
  font-size: 10px;
  background-color: #fff;
  /*margin-top: $margin-10*/
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
.clause > div[data-v-ba307b12] {
    width: 92%;
    margin: 0 auto;
}
.clause > div .readAndAgree[data-v-ba307b12] {
      display: inline-block;
}
.clause > div .readAndAgree .icon[data-v-ba307b12] {
        display: inline-block;
        width: 13px;
        height: 13px;
        background: url(../../assets/img/noagree.0586c1b.png) no-repeat;
        background-size: 13px 13px;
        vertical-align: middle;
}
.clause > div .readAndAgree .agreeImg[data-v-ba307b12] {
        background: url(../../assets/img/agree.1698ea8.png) no-repeat;
        background-size: 13px 13px;
}
.clause > div .clause-title[data-v-ba307b12] {
      display: inline-block;
      height: 30px;
      line-height: 30px;
      text-decoration: none;
      color: #459855;
}
.footer[data-v-ba307b12] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #e1e1e1;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  /*height: 50px;*/
  z-index: 2;
}
.footer .left-num[data-v-ba307b12] {
    float: left;
    background-color: #fff;
    text-align: center;
    width: 50%;
    color: #459855;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
}
.footer .left-num .V[data-v-ba307b12] {
      font-size: 14px;
      line-height: 50px;
      color: #333;
      margin-left: 10px;
}
.footer .right-but[data-v-ba307b12] {
    /*font-weight: 600;*/
    float: right;
    width: 50%;
    height: 50px;
    line-height: 50px;
    background-color: #e4e4e4;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.footer .right-but.butOk[data-v-ba307b12] {
      background-color: #5cae78;
}

.pay-detail[data-v-7574883c] {
  background: #fafafa;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-detail .main-content[data-v-7574883c] {
    height: 100%;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.bank-signing[data-v-16adc64c] {
  height: 100%;
  background: #fff;
}
.bank-signing .signing-btn[data-v-16adc64c] {
    padding: 20px;
}
.bank-signing .signing-btn .btn-text[data-v-16adc64c] {
      padding: 10px 0px;
      width: 120px;
      font-size: 16px;
      text-align: center;
      background: #33A40E;
      color: #fff;
      border-radius: 6px;
      margin: auto;
}
.bank-signing .payPremium-btn[data-v-16adc64c] {
    padding: 20px;
}
.bank-signing .payPremium-btn .btn-text[data-v-16adc64c] {
      padding: 10px 0px;
      width: 166px;
      font-size: 16px;
      text-align: center;
      background: #33A40E;
      color: #fff;
      border-radius: 6px;
      margin: auto;
}
.bank-signing .logo-img[data-v-16adc64c] {
    padding: 10px 0px;
    text-align: center;
}
.bank-signing .logo-img img[data-v-16adc64c] {
      height: 60px;
}
.bank-signing .title-page[data-v-16adc64c] {
    text-align: center;
    padding: 10px 0px 20px 0px;
}
.bank-signing .title-page p[data-v-16adc64c] {
      font-size: 18px;
      color: #42413E;
}
.bank-signing .main-content[data-v-16adc64c] {
    height: 100%;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.bank-signing .main-content .ols-cell-group[data-v-16adc64c] {
      margin-bottom: 0px;
}
.bank-signing .main-content .reserved-phone[data-v-16adc64c] {
      border-top: 1px dashed #e6e6e6;
}
.bank-signing .main-content .tips-text[data-v-16adc64c] {
      font-size: 16px;
      color: #42413E;
      padding: 16px;
}

#formItem .ols-form-item-inner .ols-form-item-label {
  -ms-flex-preferred-size: 214px;
      flex-basis: 214px;
}
.verification-code .ols-form-item-inner .ols-form-item-label {
  -ms-flex-preferred-size: 115px;
      flex-basis: 115px;
}
.verification-code .ols-form-item-inner .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.verification-code .ols-form-item-inner .ols-form-item-content .ols-input {
    width: 40%;
}
.verification-code .ols-form-item-inner .ols-form-item-content .obtain-code {
    padding: 6px;
    background: #33A40E;
    text-align: center;
    color: #fff;
    margin-right: 10px;
    border-radius: 6px;
}

.box[data-v-7c91751e] {
  background-color: #f5f5f5;
}

.pay-container[data-v-26aff55c] {
  padding-bottom: 50px;
  overflow-y: auto;
}
.pay-container .header[data-v-26aff55c] {
    width: 100%;
}
.pay-container .toub-box[data-v-26aff55c] {
    position: relative;
    margin: 0 auto;
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
}
.pay-container .toub-box[data-v-26aff55c]::before {
      content: "";
      position: absolute;
      top: 80px;
      left: -15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #f5f5f5;
}
.pay-container .toub-box[data-v-26aff55c]::after {
      content: "";
      position: absolute;
      top: 80px;
      right: -15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #f5f5f5;
}
.pay-container .toub-box .toub-title[data-v-26aff55c] {
      height: 80px;
      line-height: 80px;
      font-size: 22px;
      text-align: center;
      color: #fff;
      font-weight: 600;
      background-color: #169248;
}
.pay-container .toub-box .toub-service[data-v-26aff55c] {
      background: #fff;
      text-align: center;
}
.pay-container .toub-box .toub-service p[data-v-26aff55c] {
        font-size: 13px;
        line-height: 24px;
        color: #008c52;
}
.pay-container .toub-box .toub-service p.gift[data-v-26aff55c] {
          margin-top: 15px;
}
.pay-container .toub-box .toub-service p.gift i[data-v-26aff55c] {
            font-weight: 600;
            font-size: 38px;
}
.pay-container .toub-box .toub-content[data-v-26aff55c] {
      height: 80px;
      background-color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-container .toub-box .toub-content img[data-v-26aff55c] {
        width: 30px;
}
.pay-container .toub-box .toub-content .check-policy[data-v-26aff55c] {
        margin-top: 5px;
        font-size: 15px;
        color: #5cae78;
}
.pay-container .other-goods[data-v-26aff55c] {
    margin: 30px 0;
}
.pay-container .other-goods .other-title[data-v-26aff55c] {
      font-size: 18px;
      text-align: center;
      color: #0e755c;
      font-weight: 600;
}
.pay-container .other-goods .goods-list[data-v-26aff55c] {
      margin-top: 15px;
      background: #fff;
}
.pay-container .other-goods .goods-list ul[data-v-26aff55c] {
        padding: 0 10px;
}
.pay-container .other-goods .goods-list ul li[data-v-26aff55c] {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding: 10px 0;
          border-bottom: 1px solid #eee;
}
.pay-container .other-goods .goods-list ul li[data-v-26aff55c]:last-child {
            border: none;
}
.pay-container .other-goods .goods-list ul li .goods-banner[data-v-26aff55c] {
            width: 100px;
            height: 100px;
}
.pay-container .other-goods .goods-list ul li .goods-banner img[data-v-26aff55c] {
              width: 100%;
}
.pay-container .other-goods .goods-list ul li .goods-content[data-v-26aff55c] {
            padding-left: 8px;
}
.pay-container .other-goods .goods-list ul li .goods-content div[data-v-26aff55c] {
              white-space: nowrap;
              text-overflow: ellipsis;
              overflow: hidden;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-title[data-v-26aff55c] {
              color: #000;
              font-size: 16px;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-subtitle[data-v-26aff55c] {
              font-size: 14px;
              color: #999;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag[data-v-26aff55c] {
              height: 30px;
              line-height: 30px;
              color: #5cae78;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag span[data-v-26aff55c] {
                border: 1px solid #5cae78;
                border-radius: 20px;
                padding: 0 5px;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag span.red[data-v-26aff55c] {
                  border-color: #ff0000;
}
.pay-container .other-goods .goods-list ul li .goods-content .red[data-v-26aff55c] {
              color: #ff0000;
}
.pay-container .other-goods .goods-list ul li .goods-price[data-v-26aff55c] {
            position: absolute;
            right: 0;
            bottom: 10px;
            font-size: 16px;
            color: #169248;
}
.pay-container .other-goods .goods-list ul li .goods-price span[data-v-26aff55c] {
              font-size: 12px;
}
.pay-container .footer[data-v-26aff55c] {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.box-content[data-v-7f519d84] {
  background-color: #f5f5f5;
}
.topView[data-v-7f519d84] {
  height: 45px;
  background-color: #fff;
}
.successImage[data-v-7f519d84] {
  width: 30%;
  height: 30%;
}
.successImageBg[data-v-7f519d84] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
p[data-v-7f519d84] {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.msgStyle[data-v-7f519d84] {
  font-size: 20px;
  margin-top: 12px;
}
.detailMsg[data-v-7f519d84] {
  margin-top: 20px;
  font-size: 16px;
}
.red[data-v-7f519d84] {
  color: #459855;
  height: 30px;
}
.btnBg[data-v-7f519d84] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 50px;
}
.padding-height[data-v-7f519d84] {
  padding: 10px;
  height: 235px;
}
.btnStyle[data-v-7f519d84] {
  width: 120px;
  height: 30px;
  font-size: 15px;
  border: 1px solid #5cae78;
  color: #5cae78;
  background-color: #f5f5f5;
  border-radius: 3px;
  margin: 0 auto;
  outline: 0 none !important;
  blr: expression(this.onFocus=this.blur());
}
.lineStyle[data-v-7f519d84] {
  width: 64%;
  height: 1px;
  margin-top: 20px;
  margin-left: 18%;
  background-color: #e4e4e4;
}
.bodyIndex[data-v-7f519d84] {
  z-index: 2;
  position: fixed;
  border-top: 1px solid #e4e4e4;
  background: #fff;
}
.outside[data-v-7f519d84] {
  width: 100%;
  top: 45px;
}
.ssS[data-v-7f519d84] {
  width: 100%;
  height: 50%;
  background-color: #fff;
  position: absolute;
  z-index: 1;
}

.continuous-container .plan[data-v-5bc3c722] {
  padding: 8px;
  background: #fff;
}
.continuous-container .title[data-v-5bc3c722] {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 8px 0.4rem;
  text-align: left;
  height: 28px;
  line-height: 28px;
  color: #000;
  font-size: 15px;
}
.continuous-container .line[data-v-5bc3c722] {
  height: 10px;
}
.continuous-container .text[data-v-5bc3c722] {
  text-align: left;
  color: #999;
}
.continuous-container .weight[data-v-5bc3c722] {
  color: #000;
}
.continuous-container .color-red[data-v-5bc3c722] {
  color: #e81c34;
}
.continuous-container .coupon-style[data-v-5bc3c722] {
  padding: 5px 0;
  background: #fff;
}
.continuous-container .clause[data-v-5bc3c722] {
  font-size: 12px;
  padding-bottom: 60px;
  color: #333;
}
.continuous-container .clause > div[data-v-5bc3c722] {
    width: 92%;
    margin: 0 auto;
    line-height: 20px;
}
.continuous-container .clause > div .readAndAgree[data-v-5bc3c722] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
}
.continuous-container .clause > div .readAndAgree .not-agree[data-v-5bc3c722] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.continuous-container .clause > div .readAndAgree .agree[data-v-5bc3c722] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.continuous-container .clause > div .clause-title[data-v-5bc3c722] {
      display: inline-block;
      text-decoration: underline;
      color: #459855;
}
.continuous-container .footer[data-v-5bc3c722] {
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 2;
}
.continuous-container .footer[data-v-5bc3c722] .left-btn {
    color: #333;
}
.continuous-container[data-v-5bc3c722] .ols-cell-group .ols-form-item-group-title {
  font-weight: 600;
}
.continuous-container[data-v-5bc3c722] .ols-cell-group .ols-form-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.continuous-container[data-v-5bc3c722] .ols-cell-group .ols-form-item .ols-viewer {
    color: #000;
    height: auto;
    line-height: unset;
}

.continuous-container .tipstext[data-v-7afec61c] {
  width: 100%;
  background: #18a65b;
  color: #fff;
  height: 40px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 20px;
  height: 111px;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 17px;
  margin-bottom: 16px;
  padding-left: 16px;
}
.continuous-container .tipstext .font[data-v-7afec61c] {
    height: 40px;
    font-size: 13px;
    font-family: "Source Han Sans CN-Medium", "Source Han Sans CN";
    font-weight: 500;
    color: white;
    line-height: 20px;
    padding-right: 16px;
}
.continuous-container .tipstext .img[data-v-7afec61c] {
    width: 40px;
    height: 40px;
    padding-right: 16px;
}
.continuous-container .form-class[data-v-7afec61c] {
  position: relative;
}
.continuous-container .form-class .product-info[data-v-7afec61c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 12px;
}
.continuous-container .form-class .product-info .product-name[data-v-7afec61c] {
      font-size: 14px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #666666;
      line-height: 28px;
      margin-right: 18px;
      -ms-flex-preferred-size: 76px;
          flex-basis: 76px;
}
.continuous-container .form-class .product-info .product-right1[data-v-7afec61c] {
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #333333;
      line-height: 28px;
      width: 70%;
}
.continuous-container .form-class .product-info .product-right[data-v-7afec61c] {
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 400;
      color: #333333;
      line-height: 28px;
}
.continuous-container .form-class .product-info .product-color[data-v-7afec61c] {
      font-size: 14px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #E91A33;
      line-height: 28px;
}
.continuous-container .title[data-v-7afec61c] {
  display: inline-block;
  height: 20px;
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #000000;
  line-height: 20px;
}
.continuous-container .color-leftred[data-v-7afec61c] {
  margin-left: 4px;
  font-size: 20px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #E91A33;
  line-height: 20px;
}
.continuous-container .color-red[data-v-7afec61c] {
  color: #e81c34;
}
.continuous-container .clause[data-v-7afec61c] {
  font-size: 12px;
  color: #666;
  margin-bottom: 0;
  background: #ffffff;
  padding-top: 12px;
}
.continuous-container .clause > div[data-v-7afec61c] {
    width: 91.47%;
    margin: 0 auto;
    line-height: 20px;
}
.continuous-container .clause > div .readAndAgree[data-v-7afec61c] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
}
.continuous-container .clause > div .readAndAgree .not-agree[data-v-7afec61c] {
        position: absolute;
        left: 0;
        z-index: 2;
        width: 20px;
        height: 20px;
}
.continuous-container .clause > div .readAndAgree .agree[data-v-7afec61c] {
        position: absolute;
        left: 0;
        z-index: 1;
        width: 20px;
        height: 20px;
}
.continuous-container .clause > div .clause-title[data-v-7afec61c] {
      display: inline-block;
      text-decoration: underline;
      color: #00A758;
}
.continuous-container .clause-box[data-v-7afec61c] {
  width: 100%;
  background-color: #fff;
}
.continuous-container .clause-box .clause-health[data-v-7afec61c] {
    width: 92%;
    margin: 0 auto;
    padding-top: 10px;
    line-height: 20px;
    font-size: 12px;
    color: #666666;
    padding-bottom: 12px;
}
.continuous-container .clause-box .clause-health .readAndAgree[data-v-7afec61c] {
      position: relative;
}
.continuous-container .clause-box .clause-health .readAndAgree .not-agree[data-v-7afec61c] {
        width: 20px;
        height: 20px;
        vertical-align: top;
}
.continuous-container .clause-box .clause-health .agree[data-v-7afec61c] {
      width: 20px;
      height: 20px;
      vertical-align: top;
}
.continuous-container .clause-box .clause-health .clause-title[data-v-7afec61c] {
      display: inline-block;
      text-decoration: underline;
      color: #00A758;
}
.continuous-container .bottom-height[data-v-7afec61c] {
  width: 100%;
  padding-bottom: 99px;
}
.continuous-container .footer[data-v-7afec61c] {
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 78px;
  z-index: 2;
}
.continuous-container .footer[data-v-7afec61c] .left-btn {
    color: #333;
}
.continuous-container[data-v-7afec61c] .ols-form {
  margin: 10px auto;
  width: 91.47%;
}
.continuous-container[data-v-7afec61c] .ols-cell-group {
  border-radius: 10px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 12px;
}
.continuous-container[data-v-7afec61c] .ols-cell-group .ols-form-item-group-title {
    font-weight: 500;
    border-radius: 10px;
}
.continuous-container[data-v-7afec61c] .ols-cell-group .ols-form-item {
    margin-right: 16px;
    margin-left: 16px;
    padding: 12px 0;
}
.continuous-container[data-v-7afec61c] .ols-cell-group .ols-form-item .ols-form-item-inner .ols-form-item-label {
      -ms-flex-preferred-size: 85px;
          flex-basis: 85px;
      line-height: 20px;
}
.continuous-container[data-v-7afec61c] .ols-cell-group .ols-form-item .ols-form-item-inner .ols-form-item-content .ols-input {
      margin-left: 16px;
}
.continuous-container[data-v-7afec61c] .ols-cell-group .ols-form-item .ols-form-item-inner .ols-form-item-content .ols-input .ols-input-wrapper input {
        color: #333333;
        line-height: 20px;
        font-weight: 400;
}
.continuous-container[data-v-7afec61c] .ols-cell-group .ols-form-item .ols-viewer {
      height: auto;
      line-height: 20px;
      text-align: left;
      font-size: 14px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #333333;
      margin-left: 20px;
}
.continuous-container .phone-square[data-v-7afec61c] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.continuous-container .phone-square[data-v-7afec61c] .ols-form-item-content .ols-input {
    width: 40%;
}
.continuous-container .phone-square[data-v-7afec61c] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.continuous-container .phone-square[data-v-7afec61c] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #333333;
      margin-left: 5px;
}
.continuous-container .phone-square[data-v-7afec61c] .ols-form-item-content .readAndAgree img {
      width: 20px;
      height: 20px;
}
.continuous-container[data-v-7afec61c] .insured-address .ols-form-item-content {
  position: relative;
}
.continuous-container[data-v-7afec61c] .insured-address .ols-form-item-content .address-text {
    position: absolute;
    left: 0;
    z-index: 11;
    background-color: #fff;
    color: #666;
}
.continuous-container[data-v-7afec61c] .ols-form-list .ols-formnew-item .ols-formnew-item-label {
  -ms-flex-preferred-size: 85px;
      flex-basis: 85px;
}
.ols-checker-options[data-v-7afec61c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 16px;
}
.ols-checker-options[data-v-7afec61c]:after {
    content: '';
    display: table;
    clear: both;
}
[data-v-7afec61c].ols-select .ols-select-content {
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
  height: 19px;
  line-height: 19px;
  min-width: 0.5rem;
  text-align: left;
  color: #333333;
  margin-left: 16px !important;
  font-weight: 400;
}
.left-font[data-v-7afec61c] {
  font-size: 12px;
  font-family: "Source Han Sans CN-Regular", "Source Han Sans CN";
  font-weight: 400;
  color: #666666;
  line-height: 14px;
}
[data-v-7afec61c].footer-container .left-btn {
  margin-left: 16px;
}
[data-v-7afec61c].ols-form-list .ols-formnew-item {
  padding: 6px 0;
}
[data-v-7afec61c].ols-newinput input {
  margin-left: 16px !important;
}
[data-v-7afec61c].ols-input {
  margin-left: 16px !important;
}
.insured-info[data-v-7afec61c] {
  background: #FFFFFF;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #EEEEEE;
  margin: 12px;
  padding-left: 8px;
  padding-right: 8px;
}
.insured-info .insured-info-top[data-v-7afec61c] {
    margin-top: 16px;
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.insured-info .insured-info-top .right[data-v-7afec61c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.insured-info .insured-info-top .fontType1[data-v-7afec61c] {
      width: 34px;
      height: 16px;
      border-radius: 1px 1px 1px 1px;
      border: 1px solid #EDEDED;
      font-family: Source Han Sans CN, Source Han Sans CN;
      font-weight: 400;
      font-size: 11px;
      color: #999999;
      line-height: 16px;
      text-align: center;
      margin-left: 4px;
      margin-top: 2px;
}
.insured-info .insured-info-top .img-delete[data-v-7afec61c] {
      width: 16px;
      height: 16px;
      margin-left: 4PX;
      margin-top: 2PX;
}
.insured-info .insured-info-top .img1[data-v-7afec61c] {
      width: 16px;
      height: 16px;
}
.insured-info .insured-info-middle[data-v-7afec61c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 16px;
}
.insured-info .insured-info-bottom[data-v-7afec61c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 8px;
}
.insured-info .fontType[data-v-7afec61c] {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    text-transform: none;
}
.insured-info .fontType2[data-v-7afec61c] {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 10px;
    color: #999999;
    line-height: 14px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.insured-info .common .title[data-v-7afec61c] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.insured-info .common1[data-v-7afec61c] {
    width: 30%;
}
.insured-info .fontType3[data-v-7afec61c] {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    text-transform: none;
    margin-top: 6px;
}
.insured-info .fontType4[data-v-7afec61c] {
    background: #FFF4F5;
    border-radius: 6px 0px 6px 0px;
    color: #E91A33;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 10px;
}
.img2[data-v-7afec61c] {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}
.amout[data-v-7afec61c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.amount-count[data-v-7afec61c] {
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #E91A33;
  line-height: 16px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.bottom-price[data-v-7afec61c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bottom-price .price-left[data-v-7afec61c] {
    font-size: 10px;
    font-weight: 400;
    color: #999999;
    margin-right: 4px;
    margin-top: 2px;
    position: relative;
}
.bottom-price .price-left[data-v-7afec61c]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    width: 100%;
    height: 1px;
    background: #999999;
}
.ols-checker-options[data-v-7afec61c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ols-checker-options[data-v-7afec61c]:after {
    content: '';
    display: table;
    clear: both;
}
.ols-checker-option[data-v-7afec61c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 38px;
  margin-right: 40px;
}
.ols-checker-option .img[data-v-7afec61c] {
    width: 20px;
    height: 20px;
}
.ols-checker-option[data-v-7afec61c]:last-of-type {
    margin-right: 0;
}

.pop-up-panel[data-v-6b797768] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
}
.pop-up-panel .pop-up-box[data-v-6b797768] {
    width: 100%;
    top: 98px;
    text-align: center;
    background: #FFFFFF;
    opacity: 1;
    background-color: #fff;
    border-radius: 12px 12px 12px 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
}
.pop-up-panel .pop-up-box .headAll[data-v-6b797768] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: 14px 16px 25px 16px;
}
.pop-up-panel .pop-up-box .headAll .headChoose-title[data-v-6b797768] {
        font-size: 14px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #000000;
}
.pop-up-panel .pop-up-box .headAll .headChoose-index[data-v-6b797768] {
        height: 4px;
        background: #00A758;
        border-radius: 0px 0px 0px 0px;
        opacity: 0.4;
        margin-top: -4px;
}
.pop-up-panel .pop-up-box .showName[data-v-6b797768] {
      margin-bottom: 16px;
      background: white;
      margin-right: 12px;
      display: -webkit-box;
      overflow-x: auto;
      max-width: 100%;
      margin-left: 16px;
      margin-right: 16px;
}
.pop-up-panel .pop-up-box .showName .showName-nocheck[data-v-6b797768] {
        width: 90px;
        height: 32px;
        border-radius: 30px 30px 30px 30px;
        border: 1px solid #B9B9B9;
        margin-right: 16px;
        font-size: 14px;
        color: #333333;
        line-height: 20px;
        padding-top: 6px;
}
.pop-up-panel .pop-up-box .showName .showName-check[data-v-6b797768] {
        width: 90px;
        height: 32px;
        border-radius: 30px 30px 30px 30px;
        margin-right: 16px;
        background: #00A758;
        font-size: 14px;
        color: #FFFFFF;
        line-height: 20px;
        padding-top: 6px;
}
.pop-up-panel .pop-up-box .people-info[data-v-6b797768] {
      margin-left: 16px;
      margin-right: 16px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
}
.pop-up-panel .pop-up-box .people-info .border-sty[data-v-6b797768] {
        background: #FFFFFF;
        border-radius: 6px 6px 6px 6px;
        border: 1px solid #00A758;
}
.pop-up-panel .pop-up-box .people-info .border-sty .module-title[data-v-6b797768] {
          background: rgba(0, 167, 88, 0.1);
          border-radius: 14px 14px 0px 0px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          height: 28px;
          font-size: 14px;
          color: #00A758;
          margin: 12px;
}
.pop-up-panel .pop-up-box .people-info .border-sty .module-title img[data-v-6b797768] {
            width: 6px;
            height: 8px;
            margin: 0 8px;
}
.pop-up-panel .footer[data-v-6b797768] {
    background: #FFFFFF;
    -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
    border-radius: 12px 12px 0px 0px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}
.pop-up-panel .botton[data-v-6b797768] {
    height: 40px;
    background: #00A758;
    border-radius: 40px 40px 40px 40px;
    margin: 4px 16px 34px 16px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 20px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
[data-v-6b797768].ols-form-list .ols-formnew-item {
  margin-left: 12px;
  margin-right: 12px;
  padding: 4px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.06);
  position: relative;
  border-bottom: none;
}
[data-v-6b797768].ols-form-list .ols-form-item {
  margin-left: 12px;
  margin-right: 12px;
  padding: 4px 0;
  font-size: 14px;
  position: relative;
  opacity: 1;
  border-bottom: none;
}
.beneficiary-text[data-v-6b797768] {
  background-color: #ffffff;
  height: 28px;
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  line-height: 14px;
  padding-left: 16px;
  padding-right: 28px;
}
.benefit-class[data-v-6b797768] {
  display: -webkit-box;
  margin-left: 16px;
}
.benefit-class .benefit-left[data-v-6b797768] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 40px;
}
.benefit-class .benefit-left img[data-v-6b797768] {
      width: 20px;
      height: 20px;
}
.benefit-class .benefit-item[data-v-6b797768] {
    height: 28px;
    line-height: 26px;
    width: 70px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #666;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 14px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 5px;
}
.benefit-class .benefit-right[data-v-6b797768] {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.benefit-class .benefit-right img[data-v-6b797768] {
      width: 20px;
      height: 20px;
}
.benefit-class .select[data-v-6b797768] {
    color: #fff;
    background: #5cae78;
    border-color: #5cae78;
}
.product-info[data-v-6b797768] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 12px;
}
.product-info .product-name[data-v-6b797768] {
    font-size: 14px;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 28px;
    margin-right: 18px;
    -ms-flex-preferred-size: 76px;
        flex-basis: 76px;
}
.product-info .product-right1[data-v-6b797768] {
    font-size: 14px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #333333;
    line-height: 28px;
}
.product-info .product-right[data-v-6b797768] {
    font-size: 14px;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    line-height: 28px;
}
.product-info .product-color[data-v-6b797768] {
    font-size: 14px;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #E91A33;
    line-height: 28px;
}
.phone-square[data-v-6b797768] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.phone-square[data-v-6b797768] .ols-form-item-content .ols-input {
    width: 40%;
}
.phone-square[data-v-6b797768] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.phone-square[data-v-6b797768] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #333333;
      margin-left: 5px;
}
.phone-square[data-v-6b797768] .ols-form-item-content .readAndAgree img {
      width: 20px;
      height: 20px;
}
.choose-address[data-v-6b797768] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.choose-address .iconfont[data-v-6b797768] {
    margin-right: 10px;
}
.plan[data-v-6b797768] {
  padding: 12px;
  background: #fff;
  margin: 0 auto;
  border-radius: 10px;
}
.plan[data-v-6b797768] .version-detail ul li .version-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
}
.coupon-style[data-v-6b797768] {
  padding: 5px 0;
  background: #fff;
  border-radius: 10px;
  margin: 0 auto;
}
.line[data-v-6b797768] {
  height: 10px;
}
.cue-words[data-v-6b797768] {
  width: 91.47%;
  padding: 8px;
  background: #fff;
  margin: 0 auto;
  border-radius: 10px;
}
.cue-words .prompt-title[data-v-6b797768] {
    font-weight: 900;
    font-size: 16px;
    color: #E77566;
}
.cue-words .prompt-text[data-v-6b797768] {
    margin: 8px 0px 0px 8px;
    font-size: 14px;
    color: #333;
}

.coupon-wrap .coupon-container .coupon-one[data-v-aada7ea2] {
  padding: 8px 16px 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.coupon-wrap .coupon-container .coupon-one .name[data-v-aada7ea2] {
    margin-right: 20px;
    -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background: #069c4d;
}
.coupon-wrap .coupon-container .coupon-one .content[data-v-aada7ea2] {
    font-size: 10px;
    color: #898989;
}
.coupon-wrap .coupon-container .coupon-one .content .content-title[data-v-aada7ea2] {
      margin-bottom: 0.25rem;
      height: 20px;
      font-size: 13px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: bold;
      color: #333333;
      line-height: 20px;
}
.coupon-wrap .coupon-container .coupon-one .content .content[data-v-aada7ea2] {
      height: 20px;
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #999999;
      line-height: 20px;
}
.coupon-wrap .coupon-container .coupon-more .top[data-v-aada7ea2] {
  height: 0.45rem;
  line-height: 0.45rem;
  position: relative;
  margin: 0.3rem 0;
}
.coupon-wrap .coupon-container .coupon-more .top .name[data-v-aada7ea2] {
    z-index: 1;
    position: relative;
    font-size: 0.42rem;
    text-align: center;
    color: #333333;
    width: 1.8rem;
    margin: 0 auto;
}
.coupon-wrap .coupon-container .coupon-more .top .name[data-v-aada7ea2]::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -1.6rem;
      width: 1.37rem;
      height: 1px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      background: #d8d8d8;
}
.coupon-wrap .coupon-container .coupon-more .top .name[data-v-aada7ea2]::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -1.6rem;
      width: 1.37rem;
      height: 1px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      background: #d8d8d8;
}
.coupon-wrap .coupon-container .coupon-more .title[data-v-aada7ea2] {
  margin: 0.375rem 0 0.18rem 0;
  font-size: 0.375rem;
  padding-left: 15px;
  line-height: 24px;
  color: #999;
}
.coupon-wrap .coupon-container .coupon-more ul[data-v-aada7ea2] {
  margin: 6px 12px 12px 12px;
  background-color: #fff;
}
.coupon-wrap .coupon-container .coupon-more ul li[data-v-aada7ea2] {
    margin: 0 0.15rem;
    font-size: 0.325rem;
    color: #999999;
}
.coupon-wrap .coupon-container .coupon-more ul li[data-v-aada7ea2]:not(:last-child) {
      border-bottom: 1px dashed #eeeeee;
}
.coupon-wrap .coupon-container .coupon-more ul li .flexborder[data-v-aada7ea2] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.coupon-wrap .coupon-container .coupon-more ul li .flexborder .center[data-v-aada7ea2] {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: 13px;
}
.coupon-wrap .coupon-container .coupon-more ul li .flexborder .center img[data-v-aada7ea2] {
          width: 18px;
          height: 18px;
}
.coupon-wrap .coupon-container .coupon-more ul li .content-title[data-v-aada7ea2] {
      height: 20px;
      font-size: 13px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #333333;
      line-height: 20px;
}
.coupon-wrap .coupon-container .coupon-more ul li .content[data-v-aada7ea2] {
      height: 18px;
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #999999;
      line-height: 18px;
}
.coupon-wrap .coupon-container .coupon-more ul li .content[data-v-aada7ea2] img {
        max-width: 50px;
}
.coupon-wrap .coupon-container .coupon-more .module-title[data-v-aada7ea2] {
  background: rgba(0, 167, 88, 0.1);
  border-radius: 14px 14px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  font-size: 14px;
  color: #00A758;
  margin: 12px;
}
.coupon-wrap .coupon-container .coupon-more .module-title img[data-v-aada7ea2] {
    width: 6px;
    height: 8px;
    margin: 0 8px;
}

.common-title[data-v-6975fc4c] {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  line-height: 20px;
  position: relative;
  margin-bottom: 12px;
  display: inline;
}
.common-title[data-v-6975fc4c]::before {
    content: "";
    width: 100%;
    height: 4px;
    background: #00A758;
    opacity: 0.4;
    position: absolute;
    left: 0;
    bottom: -1px;
}
.common-title-index[data-v-6975fc4c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.common-title-index .common-title-name[data-v-6975fc4c] {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    line-height: 20px;
    position: relative;
    display: inline;
}
.common-title-index .common-title-name[data-v-6975fc4c]::before {
      content: "";
      width: 100%;
      height: 4px;
      background: #00A758;
      opacity: 0.4;
      position: absolute;
      left: 0;
      bottom: 2px;
}
.common-title-index .common-title-number[data-v-6975fc4c] {
    margin-left: 8px;
    width: 14px;
    height: 14px;
    background: #00A758;
    border-radius: 2px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 12px;
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.module-title[data-v-6975fc4c] {
  background: rgba(0, 167, 88, 0.1);
  border-radius: 14px 14px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  font-size: 14px;
  color: #00A758;
}
.module-title img[data-v-6975fc4c] {
    width: 6px;
    height: 8px;
    margin: 0 8px;
}
.info-item[data-v-6975fc4c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 0;
}
.info-item .left[data-v-6975fc4c] {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    -ms-flex-preferred-size: 76px;
        flex-basis: 76px;
    margin-right: 30px;
}
.info-item .right[data-v-6975fc4c] {
    font-size: 13px;
    color: #333333;
    width: 66%;
}
.info-item-two[data-v-6975fc4c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 0;
}
.info-item-two .left[data-v-6975fc4c] {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    -ms-flex-preferred-size: 76px;
        flex-basis: 76px;
    margin-right: 30px;
}
.info-item-two .right[data-v-6975fc4c] {
    font-size: 13px;
    color: #333333;
    width: 66%;
}
.top[data-v-6975fc4c] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.product-item[data-v-6975fc4c] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 0;
}
.product-item .left[data-v-6975fc4c] {
    font-size: 14px;
    color: #666666;
    line-height: 20px;
    -ms-flex-preferred-size: 76px;
        flex-basis: 76px;
    margin-right: 18px;
}
.product-item .right[data-v-6975fc4c] {
    font-size: 13px;
    color: #333333;
    width: 66%;
}
.product-item .right-bold[data-v-6975fc4c] {
    font-weight: 500;
    color: #333333;
}
.product-item .right-red[data-v-6975fc4c] {
    color: #E91A33;
}

.version-detail[data-v-19069466] {
  margin: 0 12px 12px 13px;
}
.version-detail ul[data-v-19069466] {
    margin: 0 10px;
}
.version-detail ul li[data-v-19069466] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      min-height: 44px;
      border-bottom: 1px dashed #e4e4e4;
      font-size: 14px;
      color: #333;
}
.version-detail ul li[data-v-19069466]:last-child {
        border: none;
}
.version-detail ul li .version-title[data-v-19069466] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
}
.version-detail ul li .version-title img[data-v-19069466] {
          width: 20px;
          height: 20px;
          vertical-align: middle;
          padding-right: 10px;
}
.version-detail ul li .version-title span[data-v-19069466] {
          height: 19px;
          font-size: 13px;
          font-family: Source Han Sans CN-Medium, Source Han Sans CN;
          font-weight: 500;
          color: #333333;
          line-height: 15px;
          -webkit-background-clip: text;
          display: contents;
}
.version-detail ul li .color-red[data-v-19069466] {
        height: 19px;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #E91A33;
        line-height: 19px;
}
.version-detail ul li .finial-amount[data-v-19069466] {
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
}
.version-detail .coverageDescPic img[data-v-19069466] {
    display: block;
    width: 100%;
}

@charset "UTF-8";
.bordertotal[data-v-48cf20ef] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 9999;
}
.bordertotal .view[data-v-48cf20ef] {
    background-color: #fff;
    height: 592px;
    /* top: 20%; */
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
}
.bordertotal .view h2[data-v-48cf20ef] {
      margin-bottom: 10px;
      padding: 0 12px;
      font-size: 17px;
      font-weight: bold;
}
.bordertotal .view .detail[data-v-48cf20ef] {
      position: relative;
      margin: 0 12px 15px;
      font-size: 14px;
}
.bordertotal .view .detail .answer-box[data-v-48cf20ef] {
        width: 60px;
        position: absolute;
        top: 0;
        right: 0;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .view .children-wrap[data-v-48cf20ef] {
      padding-top: 28px;
      padding-bottom: 65px;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
}
.bordertotal .view .children-title[data-v-48cf20ef] {
      margin-bottom: 12px;
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #000000;
      line-height: 20px;
      display: inline-block;
      height: 20px;
}
.bordertotal .view .children-title .child-info[data-v-48cf20ef] {
        padding-left: 16px;
        font-weight: bold;
}
.bordertotal .view .children-title .font-green[data-v-48cf20ef] {
        height: 4px;
        background: #00A758;
        border-radius: 0px 0px 0px 0px;
        opacity: 0.4;
        margin-left: 16px;
        margin-top: -5px;
}
.bordertotal .view .sub-wrap .clause[data-v-48cf20ef] .qes {
      position: relative;
}
.bordertotal .view .sub-wrap .clause[data-v-48cf20ef] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .view .sub-wrap .clause[data-v-48cf20ef] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.bordertotal .view .sub-wrap .clause[data-v-48cf20ef] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.bordertotal .view .sub-wrap .clause img[data-v-48cf20ef] {
      width: 100%;
}
.bordertotal .view .sub-wrap .clause p[data-v-48cf20ef] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.bordertotal .view .footer[data-v-48cf20ef] {
      position: fixed;
      left: 0px;
      right: 0px;
      bottom: 0;
      background-color: #fff;
      height: 78px;
      -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
              box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
      border-radius: 12px 12px 0px 0px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
      padding-top: 4px;
      padding-left: 16px;
      padding-right: 16px;
}
.bordertotal .view .footer .all-not[data-v-48cf20ef] {
        padding-right: 30px;
        font-size: 15px;
        color: #5cae78;
        text-decoration: underline;
        height: 40px;
        line-height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        background-color: #fff;
}
.bordertotal .view .footer i[data-v-48cf20ef] {
        vertical-align: middle;
        display: inline-block;
        width: 18px;
        height: 18px;
}
.bordertotal .view .footer[data-v-48cf20ef] .left-btn {
        border: none;
        border-top: 1px solid #5cae78;
}
.bordertotal .view .footer .btn-left[data-v-48cf20ef] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        line-height: 50px;
        text-align: center;
        color: #5cae78;
        background-color: #fff;
        width: 160px;
        height: 40px;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        height: 20px;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #666666;
        line-height: 40px;
}
.bordertotal .view .footer .btn-left i[data-v-48cf20ef] {
          background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
          background-size: 18px 18px;
}
.bordertotal .view .footer .btn-next[data-v-48cf20ef] {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: center;
        width: 160px;
        height: 40px;
        background: #00A758;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 40px;
}
.bordertotal .view .footer .btn-next i[data-v-48cf20ef] {
          background: url(../../assets/img/sure.e01d36c.png) no-repeat;
          background-size: 18px 18px;
}
[data-v-48cf20ef].material-model-container .text-content {
  font-size: 14px;
  padding-left: 0.427rem !important;
  padding-right: 0.427rem !important;
}
[data-v-48cf20ef]h1, h2[data-v-48cf20ef], h3[data-v-48cf20ef], h4[data-v-48cf20ef], h5[data-v-48cf20ef], h6[data-v-48cf20ef] {
  font-weight: bold;
  height: 40px;
  font-size: 13px;
  font-family: "Source Han Sans CN-Medium, Source Han Sans CN";
  color: #333333;
  line-height: 20px;
}
[data-v-48cf20ef].material-model-container p {
  display: block;
  text-indent: 20px;
  font-size: 13px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.terms-page[data-v-3d3f0efe] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.terms-page .terms-pop[data-v-3d3f0efe] {
    margin: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    position: fixed;
    background: #FFFFFF;
    border-radius: 12px 12px 0px 0px;
    opacity: 1;
}
.terms-page .terms-pop .top-title[data-v-3d3f0efe] {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-top: 16px;
      margin-left: 16px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.terms-page .terms-pop .top-title .top-sy[data-v-3d3f0efe] {
        display: inline-block;
}
.terms-page .terms-pop .top-title .title-text[data-v-3d3f0efe] {
        width: 100%;
        height: 16px;
        font-size: 14px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #000000;
        line-height: 16px;
}
.terms-page .terms-pop .top-title .title-color[data-v-3d3f0efe] {
        color: #00A758;
}
.terms-page .terms-pop .top-title .title_box[data-v-3d3f0efe] {
        height: 4px;
        background: #00a758;
        border-radius: 0px;
        opacity: 0.4;
        margin-top: -4px;
}
.terms-page .terms-pop .top-title .imgsrc[data-v-3d3f0efe] {
        width: 24px;
        height: 24px;
        position: absolute;
        right: 16px;
}
.terms-page .terms-pop .top-title .clost-img[data-v-3d3f0efe] {
        font-size: 18px;
}
.terms-page .terms-pop .product-name[data-v-3d3f0efe] {
      font-size: 14px;
      width: 205px;
      height: 20px;
      font-size: 15px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #333333;
      line-height: 20px;
      margin-top: 12px;
      margin-bottom: 12px;
      margin-left: 16px;
}
.terms-page .terms-pop .product-info[data-v-3d3f0efe] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      /* width: 343px; */
      height: 44px;
      border-radius: 0px 0px 0px 0px;
      opacity: 1;
      border-bottom: 1px solid rgba(228, 228, 228, 0.6);
}
.terms-page .terms-pop .product-info .imgtop[data-v-3d3f0efe] {
        margin-top: -6px;
        margin-left: 16px;
}
.terms-page .terms-pop .product-info .imginfo[data-v-3d3f0efe] {
        margin-top: 20px;
        margin-right: 20px;
        width: 20px;
        height: 20px;
}
.terms-page .terms-pop .product-info .conve[data-v-3d3f0efe] {
        font-size: 13px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #333333;
        line-height: 44px;
        -webkit-background-clip: text;
        /* padding-top: 13px; */
        height: 44px;
}
.terms-page .terms-pop .product-info .amout[data-v-3d3f0efe] {
        -webkit-background-clip: text;
        height: 44px;
        text-align: right;
        position: absolute;
        right: 16px;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #E91A33;
        line-height: 44px;
}
.terms-page .terms-pop .prompt-content[data-v-3d3f0efe] {
      margin: 10px 0px 10px 0px;
      max-height: 200px;
      overflow: auto;
}
.terms-page .terms-pop .prompt-content .text-amount[data-v-3d3f0efe] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 20px;
}
.terms-page .terms-pop .text-p[data-v-3d3f0efe] {
      padding: 0;
      width: 343px;
      height: 40px;
      font-size: 13px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #0000C1;
      line-height: 20px;
      margin-top: 12px;
      margin-bottom: 12px;
      margin-left: 16px;
}
.terms-page .terms-pop .bottom-btn[data-v-3d3f0efe] {
      display: inline-block;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%;
      height: 78px;
      background: #FFFFFF;
      -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
              box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
      border-radius: 12px 12px 0px 0px;
      opacity: 1;
}
.terms-page .terms-pop .bottom-btn .btn-click[data-v-3d3f0efe] {
        width: 100%;
        background: #088E08;
        padding: 10px 0px;
        color: #fff;
        border-radius: 4px;
        font-size: 16px;
        text-align: center;
        width: 343px;
        height: 40px;
        background: #00A758;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        margin-top: 4px;
}

.pop-up-panel[data-v-585c748a] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.pop-up-panel .pop-up-box[data-v-585c748a] {
    width: 84%;
    background: #FFFFFF;
    opacity: 1;
    border-radius: 12px 12px 12px 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.pop-up-panel .pop-up-box .title[data-v-585c748a] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: -23px;
}
.pop-up-panel .pop-up-box .title .img[data-v-585c748a] {
        width: 154px;
        height: 52px;
}
.pop-up-panel .pop-up-box .title .tips[data-v-585c748a] {
        font-size: 17px;
        font-family: Source Han Sans CN-Bold, Source Han Sans CN;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 24px;
        letter-spacing: 4px;
        position: absolute;
        margin-top: 20px;
}
.pop-up-panel .pop-up-box .middle-img[data-v-585c748a] {
      margin-top: 23px;
      text-align: center;
}
.pop-up-panel .pop-up-box .middle-img .img-midd[data-v-585c748a] {
        width: 283px;
        height: 120px;
}
.pop-up-panel .pop-up-box .tips[data-v-585c748a] {
      margin: 0px 16px 0 16px;
}
.pop-up-panel .pop-up-box .tips .title[data-v-585c748a] {
        margin-top: 10px;
        font-family: Source Han Sans CN, Source Han Sans CN;
        font-weight: 500;
        font-size: 16px;
        color: #00A758;
        line-height: 20px;
        text-align: center;
        font-style: normal;
        text-transform: none;
}
.pop-up-panel .pop-up-box .tips .content[data-v-585c748a] {
        font-size: 14px;
        font-weight: 400;
        color: #333333;
        line-height: 20px;
        margin: 12px 16px 0 16px;
        text-align: left;
}
.pop-up-panel .pop-up-box .button[data-v-585c748a] {
      height: 40px;
      background: white;
      border-radius: 50px;
      opacity: 1;
      border: 1px solid #00a758;
      margin: 24px 26px 16px 26px;
      line-height: 40px;
      font-size: 16px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #00A758;
      letter-spacing: 2px;
      text-align: center;
}

.pop-up-panel[data-v-2e49e78e] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.pop-up-panel .pop-up-box[data-v-2e49e78e] {
    width: 84%;
    background: #FFFFFF;
    opacity: 1;
    border-radius: 12px 12px 12px 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.pop-up-panel .pop-up-box .title[data-v-2e49e78e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: -23px;
}
.pop-up-panel .pop-up-box .title .img[data-v-2e49e78e] {
        width: 154px;
        height: 52px;
}
.pop-up-panel .pop-up-box .title .tips[data-v-2e49e78e] {
        font-size: 17px;
        font-family: Source Han Sans CN-Bold, Source Han Sans CN;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 24px;
        letter-spacing: 4px;
        position: absolute;
        margin-top: 20px;
}
.pop-up-panel .pop-up-box .middle-img[data-v-2e49e78e] {
      margin-top: 23px;
      text-align: center;
}
.pop-up-panel .pop-up-box .middle-img .img-midd[data-v-2e49e78e] {
        width: 283px;
        height: 120px;
}
.pop-up-panel .pop-up-box .tips[data-v-2e49e78e] {
      font-size: 14px;
      font-weight: 400;
      color: #333333;
      line-height: 20px;
      text-align: center;
}
.pop-up-panel .pop-up-box .button[data-v-2e49e78e] {
      height: 40px;
      background: #00A758;
      border-radius: 50px;
      opacity: 1;
      margin: 24px 26px 16px 26px;
      line-height: 40px;
      font-size: 16px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #FFFFFF;
      letter-spacing: 2px;
      text-align: center;
}
.pop-up-panel .pop-up-box .button-cancle[data-v-2e49e78e] {
      height: 40px;
      background: #FFFFFF;
      border-radius: 50px;
      opacity: 1;
      margin: 24px 26px 16px 26px;
      line-height: 40px;
      font-size: 16px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #666666;
      letter-spacing: 2px;
      text-align: center;
}

.view[data-v-bfd96038] {
  width: 100%;
  margin: 0 auto;
}
.view svg[data-v-bfd96038] {
    width: 100%;
    margin: 30vh auto 6px auto;
}
.view p[data-v-bfd96038] {
    font-size: 20px;
    text-align: center;
}

@charset "UTF-8";
.view[data-v-2c2c3c5e] {
  background-color: #fff;
}
.view h2[data-v-2c2c3c5e] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .mask-box[data-v-2c2c3c5e] {
    width: 100%;
    min-height: 100vh;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}
.view .mask-box .tips-box[data-v-2c2c3c5e] {
      width: 80%;
      height: 180px;
      margin: 140px auto 0 auto;
      background: #fff;
      position: relative;
      border-radius: 5px;
}
.view .mask-box .tips-box svg[data-v-2c2c3c5e] {
        margin: 20px auto;
        width: 100%;
}
.view .mask-box .tips-box p[data-v-2c2c3c5e] {
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid #e6e6e6;
        text-align: center;
        margin: 10px auto 0 auto;
        padding-bottom: 6px;
        display: inline-block;
}
.view .mask-box .tips-box .text[data-v-2c2c3c5e] {
        color: #000;
        width: 86%;
        margin: 20px auto;
        font-size: 16px;
}
.view .mask-box .tips-box .button[data-v-2c2c3c5e] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        width: 100%;
        bottom: 16px;
        position: absolute;
}
.view .mask-box .tips-box .button .yes[data-v-2c2c3c5e] {
          background: #5cae78;
          color: #fff;
}
.view .mask-box .tips-box .button div[data-v-2c2c3c5e] {
          width: 40%;
          height: 40px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          background: #cacaca;
          border-radius: 10px;
}
.view .detail[data-v-2c2c3c5e] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-2c2c3c5e] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap[data-v-2c2c3c5e] {
    padding-bottom: 65px;
    margin: 0 auto;
    width: 90vw;
    height: 80vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .sub-wrap .clause[data-v-2c2c3c5e] .qes {
      position: relative;
      color: #000;
      margin-bottom: 8px;
}
.view .sub-wrap .clause[data-v-2c2c3c5e] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.view .sub-wrap .clause[data-v-2c2c3c5e] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-2c2c3c5e] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.view .sub-wrap .clause img[data-v-2c2c3c5e] {
      width: 100%;
}
.view .sub-wrap .clause p[data-v-2c2c3c5e] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.view .footer[data-v-2c2c3c5e] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .checkbox[data-v-2c2c3c5e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 50px;
}
.view .footer .checkbox div span[data-v-2c2c3c5e] {
        width: 60%;
        height: 100%;
        border-radius: 4px;
        margin: 0 auto;
}
.view .footer #greenbg[data-v-2c2c3c5e] {
      color: #fff;
      background: #5cae78;
}
.view .footer .all-not[data-v-2c2c3c5e] {
      text-align: center;
      font-size: 15px;
      color: #5cae78;
      text-decoration: none;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer .all-not span[data-v-2c2c3c5e] {
        width: 100%;
}
.view .footer i[data-v-2c2c3c5e] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-2c2c3c5e] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-2c2c3c5e] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-2c2c3c5e] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-2c2c3c5e] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-2c2c3c5e] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

@charset "UTF-8";
.view[data-v-106a1c6e] {
  background-color: #fff;
}
.view .health-notice[data-v-106a1c6e] {
    width: 94%;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 10px;
}
.view .health-notice h2[data-v-106a1c6e] {
      margin-bottom: 10px;
      padding: 0 0px;
      font-size: 17px;
      font-weight: bold;
}
.view .health-notice .notice-text[data-v-106a1c6e] {
      margin-top: 10px;
}
.view .health-notice .notice-text .text-title[data-v-106a1c6e] {
        text-indent: 2em;
}
.view .health-notice .notice-text .text-description[data-v-106a1c6e] {
        text-indent: 2em;
        padding: 6px 0px;
}
.view .health-notice .notice-text .terms-text[data-v-106a1c6e] {
        text-indent: 2em;
}
.view .health-notice .notice-text .terms-text p[data-v-106a1c6e] {
          padding-bottom: 6px;
}
.view .health-notice .readAndAgree[data-v-106a1c6e] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
      margin-top: 14px;
}
.view .health-notice .readAndAgree .not-agree[data-v-106a1c6e] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.view .health-notice .readAndAgree .agree[data-v-106a1c6e] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.view h2[data-v-106a1c6e] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .mask-box[data-v-106a1c6e] {
    width: 100%;
    min-height: 100vh;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
}
.view .mask-box .tips-box[data-v-106a1c6e] {
      width: 80%;
      margin: 140px auto 0 auto;
      background: #fff;
      position: relative;
      border-radius: 5px;
}
.view .mask-box .tips-box svg[data-v-106a1c6e] {
        margin: 20px auto;
        width: 100%;
}
.view .mask-box .tips-box h4[data-v-106a1c6e] {
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid #e6e6e6;
        text-align: center;
        margin: 10px auto 0 auto;
        padding-bottom: 6px;
        display: inline-block;
}
.view .mask-box .tips-box .text[data-v-106a1c6e] {
        color: #000;
        width: 86%;
        margin: 20px auto;
        font-size: 16px;
}
.view .mask-box .tips-box .button[data-v-106a1c6e] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        width: 100%;
        padding-bottom: 20px;
}
.view .mask-box .tips-box .button .yes[data-v-106a1c6e] {
          background: #5cae78;
          color: #fff;
}
.view .mask-box .tips-box .button div[data-v-106a1c6e] {
          width: 40%;
          height: 40px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          background: #cacaca;
          border-radius: 10px;
}
.view .detail[data-v-106a1c6e] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-106a1c6e] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap[data-v-106a1c6e] {
    padding-bottom: 65px;
    margin: 0 auto;
    width: 90vw;
    height: 80vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .sub-wrap .clause[data-v-106a1c6e] .qes {
      position: relative;
      color: #000;
}
.view .sub-wrap .clause[data-v-106a1c6e] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.view .sub-wrap .clause[data-v-106a1c6e] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-106a1c6e] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.view .sub-wrap .clause img[data-v-106a1c6e] {
      width: 100%;
}
.view .sub-wrap .clause p[data-v-106a1c6e] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.view .bottom-height[data-v-106a1c6e] {
    width: 100%;
    height: 50px;
}
.view .footer[data-v-106a1c6e] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .checkbox[data-v-106a1c6e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 50px;
      background-color: #fff;
}
.view .footer .checkbox div span[data-v-106a1c6e] {
        width: 70%;
        height: 100%;
        border-radius: 4px;
        margin: 0 auto;
}
.view .footer #greenbg[data-v-106a1c6e] {
      color: #fff;
      background: #5cae78;
}
.view .footer .all-not[data-v-106a1c6e] {
      text-align: center;
      font-size: 15px;
      color: #5cae78;
      text-decoration: none;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer .all-not span[data-v-106a1c6e] {
        width: 100%;
}
.view .footer i[data-v-106a1c6e] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-106a1c6e] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-106a1c6e] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-106a1c6e] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-106a1c6e] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-106a1c6e] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

.outSide p[data-v-5a698256] {
  width: 96%;
  /*border-bottom: 1px solid gainsboro;*/
  margin-left: 2%;
}
.stopScroll[data-v-5a698256] {
  position: fixed;
}
.first-view[data-v-5a698256] {
  position: relative;
}
.first-view .tippoint[data-v-5a698256] {
    position: absolute;
    top: 30px;
    right: 0px;
    z-index: 3;
}
.first-view .tippoint > a[data-v-5a698256] {
      width: 100%;
      height: 100%;
      display: inline-block;
}
.first-view .tippoint > a img[data-v-5a698256] {
        width: 80px;
}
.first-view .tipbg[data-v-5a698256] {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}
.first-view .tipbg .tipbg-modal[data-v-5a698256] {
      background-color: rgba(9, 7, 5, 0.5);
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
}
.first-view .tipbg .youlist[data-v-5a698256] {
      position: absolute;
      top: 30px;
      right: 0;
      background-color: white;
      padding: 10px;
      width: 120px;
}
.first-view .tipbg .youlist .youtitle[data-v-5a698256] {
        width: 100px;
}
.first-view .tipbg .youlist a[data-v-5a698256] {
        display: inline-block;
        margin-top: 10px;
}
.first-view .linkblock[data-v-5a698256] {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0.267rem;
    z-index: 2;
}
.first-view .linkblock > ul[data-v-5a698256] {
      width: 95%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: auto;
      background-color: #35b173;
      padding: 6px 2px;
      border-radius: 3px;
}
.first-view .linkblock > ul li[data-v-5a698256] {
        /*width: calc(25% - 1px);*/
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        color: white;
        border-right: 1px solid #bbb;
}
.first-view .linkblock > ul li[data-v-5a698256]:last-child {
          border-right: 0px;
}
.first-view .linkblock > ul li a[data-v-5a698256] {
          display: block;
          width: 100%;
          height: 100%;
}
.first-view .linkblock > ul li a img[data-v-5a698256] {
            vertical-align: middle;
            width: 30px;
}
.first-view .linkblock > ul li a span[data-v-5a698256] {
            display: inline-block;
            line-height: 30px;
            font-size: 14px;
            color: #fff;
}
.first-view .mint-swipe-items-wrap > div a img[data-v-5a698256] {
    width: 100%;
    min-height: 86%;
    max-height: 93%;
}
.turnPhoto[data-v-5a698256] {
  height: 7.5rem;
}
.health-service[data-v-5a698256] {
  margin-top: 10px;
}
.health-service[data-v-5a698256] .service-swiper {
    display: block;
    margin: auto;
    overflow-y: hidden;
    margin-left: 2.5%;
    margin-right: 2.5%;
    position: relative;
}
.health-service[data-v-5a698256] .service-swiper .swiper-wrapper {
      margin-left: -15%;
}
.health-service[data-v-5a698256] .service-swiper .swiper-wrapper .swiper-slide {
        width: 70%;
}
.health-service[data-v-5a698256] .service-swiper .swiper-wrapper .swiper-slide img {
          width: 100%;
}
.xpwz[data-v-5a698256] {
  text-align: center;
  margin: 10px 2.5%;
  padding: 10px;
  font-size: 14px;
}
.xpwz img[data-v-5a698256] {
    width: 15px;
    vertical-align: middle;
}
.xpwz span[data-v-5a698256] {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    color: #169248;
}

.foryou .goods[data-v-c896468e] {
  width: 100%;
  padding: 10px 2.5%;
  border-bottom: 1px solid #eee;
  background-color: white;
}
.foryou .goods a[data-v-c896468e] {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.foryou .goods .goods-imgblock[data-v-c896468e] {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    position: relative;
    padding-right: 10px;
}
.foryou .goods .goods-imgblock .goods-img[data-v-c896468e] {
      width: 100px;
}
.foryou .goods .goods-detailblock[data-v-c896468e] {
    padding: 0;
    position: relative;
    min-height: 100px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
}
.foryou .goods .goods-detailblock .goods-title[data-v-c896468e] {
      font-size: 16px;
      color: #000;
      font-weight: bold;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.foryou .goods .goods-detailblock .goods-name[data-v-c896468e] {
      color: #999;
      line-height: 20px;
      font-size: 14px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.foryou .goods .goods-detailblock .goods-condition[data-v-c896468e] {
      padding: 0px;
      padding-top: 5px;
      margin-top: 0px;
      font-size: 0px;
}
.foryou .goods .goods-detailblock .goods-condition span[data-v-c896468e] {
        border-radius: 20px;
        font-size: 10px;
        padding: 0 10px;
        display: inline-block;
        margin: 0 5px 3px 0;
}
.foryou .goods .goods-detailblock .goods-condition .green-dark[data-v-c896468e] {
        color: #ff0000;
        border: 1px solid #ff0000;
}
.foryou .goods .goods-detailblock .goods-condition .green-pale[data-v-c896468e] {
        color: #00a758;
        border: 1px solid #00a758;
}
.foryou .goods .goods-detailblock .goods-his[data-v-c896468e] {
      color: #999;
      position: absolute;
      bottom: -3px;
      left: 0;
      font-size: 12px;
}
.foryou .goods .goods-detailblock .goods-his .goodsvalue[data-v-c896468e] {
        color: #169248;
        font-size: 14px;
}
.foryou .goods .goods-detailblock .goods-value[data-v-c896468e] {
      position: absolute;
      right: 0;
      bottom: -3px;
      color: #169248;
      font-size: 14px;
}
.foryou .goods .goods-detailblock .goods-value span[data-v-c896468e] {
        font-size: 20px;
        font-weight: bold;
}
.foryou .goods .goods-detailblock p[data-v-c896468e] {
      font-size: 12px;
      color: red;
      line-height: 15px;
      text-overflow: -o-ellipsis-lastline;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
}

.detail-container[data-v-44f6c750] {
  color: #333;
  background-color: #fff;
}
.detail-container .line[data-v-44f6c750] {
    height: 10px;
    background-color: #f7f7f7;
}
.detail-container .duty[data-v-44f6c750] {
    padding: 12px 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-top: 10px solid #f7f7f7;
    border-bottom: 1px solid #CFCFCF;
}
.detail-container .duty .duty-title[data-v-44f6c750] {
      color: #333;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-44f6c750] {
      position: relative;
      padding-right: 10px;
      color: #00A758;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-44f6c750]:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 0;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
}
.detail-container .navWrap[data-v-44f6c750] {
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e4e4e4;
    border-bottom: none;
}
.detail-container .navWrap .versions[data-v-44f6c750] {
      text-align: center;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      height: 40px;
      line-height: 40px;
      font-size: 15px;
      color: #333;
      background-color: #f7f7f7;
      border-right: 1px solid #e4e4e4;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.detail-container .navWrap .versions[data-v-44f6c750]:last-child {
        border-right: none;
}
.detail-container .navWrap .versions.recommend[data-v-44f6c750]::before {
        content: "";
        background: url(../../assets/img/icon-recommend.f2c0e0b.png);
        background-size: 100% 100%;
        width: 36px;
        height: 36px;
        position: absolute;
        top: -3px;
        right: -4px;
}
.detail-container .navWrap .versions.active[data-v-44f6c750] {
        background-color: #5cae78;
        color: #fff;
}
.detail-container .navWrap .versions.active[data-v-44f6c750]::after {
          content: "";
          width: 0px;
          height: 0px;
          border: solid 10px transparent;
          border-bottom-color: #fff;
          position: absolute;
          bottom: -1px;
          left: 50%;
          -webkit-transform: translate(-50%, 0);
                  transform: translate(-50%, 0);
          z-index: 2;
}
.detail-container .tab-container[data-v-44f6c750] {
    border-bottom: 10px solid #f7f7f7;
}
.detail-container .tab-container .tab-title[data-v-44f6c750] {
      padding-left: 10px;
      height: 32px;
      line-height: 32px;
      font-size: 16px;
}
#headerImage[data-v-44f6c750] {
  width: 100%;
  min-height: 5rem;
  vertical-align: middle;
}
a[data-v-44f6c750]:link {
  text-decoration: none;
  font-size: 20px;
  /*px*/
  text-align: center;
  margin-right: 10px;
  margin-right: 10px;
}
.outside[data-v-44f6c750] {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ols-cell-group[data-v-05df2a77] {
  margin-left: 0.4rem;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-cell-group .ols-form-item[data-v-05df2a77] {
    margin: 0;
}
.ols-cell-group .ols-form-item[data-v-05df2a77] .ols-form-item-label {
      -ms-flex-preferred-size: 125px;
          flex-basis: 125px;
      color: #333;
}
.ols-cell-group[data-v-05df2a77]:last-of-type {
    border-bottom: none;
}
.fade-enter-active[data-v-05df2a77],
.fade-leave-active[data-v-05df2a77] {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
.fade-enter[data-v-05df2a77],
.fade-leave-to[data-v-05df2a77] {
  opacity: 0;
}
.mask-pop[data-v-05df2a77] {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
}
#footer[data-v-05df2a77] {
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 -3px 3px #eaeaea;
          box-shadow: 0 -3px 3px #eaeaea;
  position: fixed;
  bottom: 0;
  z-index: 10;
  color: #afafaf;
  /*height: 49px;*/
  font-style: normal;
}
#footer .color-red[data-v-05df2a77] {
    color: #e81c34;
}
#footer .btn-left[data-v-05df2a77] {
    color: #333;
    font-size: 14px;
    /*px*/
}
#footer .btn-left .newPrice[data-v-05df2a77] {
      font-size: 18px;
      /*px*/
}
.next-btn[data-v-05df2a77] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.left[data-v-05df2a77] {
  width: 50%;
  float: left;
  text-align: center;
  line-height: 49px;
  margin: 0 auto;
}
.top[data-v-05df2a77] {
  font-size: 14px;
  color: #afafaf;
  text-align: center;
}
.right[data-v-05df2a77] {
  width: 50%;
  float: right;
  background: #5cae78;
  font-size: 14px;
  /*px*/
  line-height: 49px;
  color: #fff;
  text-align: center;
}

.detail-container[data-v-684f8a98] {
  color: #333;
  background-color: #fff;
}
.detail-container .line[data-v-684f8a98] {
    height: 10px;
    background-color: #f7f7f7;
}
.detail-container .duty[data-v-684f8a98] {
    padding: 12px 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-top: 10px solid #f7f7f7;
    border-bottom: 1px solid #CFCFCF;
}
.detail-container .duty .duty-title[data-v-684f8a98] {
      color: #333;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-684f8a98] {
      position: relative;
      padding-right: 10px;
      color: #00A758;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-684f8a98]:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 0;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
}
.detail-container .navWrap[data-v-684f8a98] {
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e4e4e4;
    border-bottom: none;
}
.detail-container .navWrap .versions[data-v-684f8a98] {
      text-align: center;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      height: 40px;
      line-height: 40px;
      font-size: 15px;
      color: #333;
      background-color: #f7f7f7;
      border-right: 1px solid #e4e4e4;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.detail-container .navWrap .versions[data-v-684f8a98]:last-child {
        border-right: none;
}
.detail-container .navWrap .versions.recommend[data-v-684f8a98]::before {
        content: "";
        background: url(../../assets/img/icon-recommend.f2c0e0b.png);
        background-size: 100% 100%;
        width: 36px;
        height: 36px;
        position: absolute;
        top: -3px;
        right: -4px;
}
.detail-container .navWrap .versions.active[data-v-684f8a98] {
        background-color: #5cae78;
        color: #fff;
}
.detail-container .navWrap .versions.active[data-v-684f8a98]::after {
          content: "";
          width: 0px;
          height: 0px;
          border: solid 10px transparent;
          border-bottom-color: #fff;
          position: absolute;
          bottom: -1px;
          left: 50%;
          -webkit-transform: translate(-50%, 0);
                  transform: translate(-50%, 0);
          z-index: 2;
}
.detail-container .tab-container .tab-title[data-v-684f8a98] {
    padding-left: 10px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
}
#headerImage[data-v-684f8a98] {
  width: 100%;
  min-height: 5rem;
  vertical-align: middle;
}
a[data-v-684f8a98]:link {
  text-decoration: none;
  font-size: 20px;
  /*px*/
  text-align: center;
  margin-right: 10px;
  margin-right: 10px;
}
.outside[data-v-684f8a98] {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ols-cell-group[data-v-7bd555db] {
  /*margin-left: 0.4rem;*/
  border-bottom: 1px dashed #e6e6e6;
  overflow-x: hidden;
}
.ols-cell-group .ols-form-item[data-v-7bd555db] {
    /*margin: 0;*/
}
.ols-cell-group .ols-form-item[data-v-7bd555db] .ols-form-item-label {
      -ms-flex-preferred-size: 125px;
          flex-basis: 125px;
      color: #333;
}
.ols-cell-group[data-v-7bd555db]:last-of-type {
    border-bottom: none;
}
.fade-enter-active[data-v-7bd555db],
.fade-leave-active[data-v-7bd555db] {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
.fade-enter[data-v-7bd555db],
.fade-leave-to[data-v-7bd555db] {
  opacity: 0;
}
#footer[data-v-7bd555db] {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  color: #afafaf;
  font-style: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#footer .color-red[data-v-7bd555db] {
    color: #e81c34;
}
#footer .btn-left[data-v-7bd555db] {
    color: #333;
    font-size: 14px;
    /*px*/
}
#footer .btn-left .newPrice[data-v-7bd555db] {
      font-size: 18px;
      /*px*/
}
.footerContent[data-v-7bd555db] {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
}
.footerContent .ols-form-list .ols-form-item .ols-form-item-content[data-v-7bd555db] {
    width: 100%;
    text-align: left;
}
.term-popup[data-v-7bd555db] {
  width: 100%;
  height: 80%;
  position: fixed;
  left: 0;
  bottom: 48px;
  padding: 15px 0;
  min-height: 300px;
  z-index: 10;
  -webkit-box-shadow: 0 -3px 3px #eaeaea;
          box-shadow: 0 -3px 3px #eaeaea;
  overflow-y: hidden;
  background: #fff;
}
.term-popup .formList[data-v-7bd555db] {
    height: 100%;
    padding-top: 48px;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.form-title[data-v-7bd555db], .tips-btn[data-v-7bd555db] {
  width: 100%;
  height: 48px;
  line-height: 48px;
}
.form-title[data-v-7bd555db] {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  z-index: 100;
}
.form-title .text[data-v-7bd555db] {
    font-size: 18px;
    color: #333;
}
.tips-btn[data-v-7bd555db] {
  margin: 0 0.4rem 10px 0.4rem;
}
.tips-btn .tip-inner[data-v-7bd555db] {
    display: inline-block;
    padding: 4px;
    line-height: 1.0;
}
.tips-btn .tips-icon[data-v-7bd555db] {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 18px;
    margin-right: 8px;
    text-align: center;
    border: 1px solid #5cae78;
    border-radius: 100%;
    vertical-align: middle;
}
.tips-btn .text[data-v-7bd555db] {
    font-size: 16px;
    color: #5cae78;
    vertical-align: middle;
}
.value-table[data-v-7bd555db] {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  margin: 0 0.4rem;
}
.value-table .value-title[data-v-7bd555db] {
    padding: 15px 0;
    text-align: center;
}
.value-table .value-title .text[data-v-7bd555db] {
      font-size: 24px;
      color: #5cae78;
      margin-bottom: 4px;
}
.value-table .value-title .subtitle-text[data-v-7bd555db] {
      font-size: 14px;
      color: #c5c5c5;
}
.value-table .value-list[data-v-7bd555db] {
    width: 100%;
    display: table;
    border-top: 1px solid #e6e6e6;
}
.value-table .value-list .value-item[data-v-7bd555db] {
      display: table-row;
}
.value-table .value-list .value-item .value-cell[data-v-7bd555db] {
        display: table-cell;
        padding: 10px;
        border-right: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        color: #333;
        font-size: 14px;
        text-align: center;
}
.value-table .value-list .value-item .value-cell[data-v-7bd555db]:last-child {
          border-right: none;
}
.value-table .value-list .value-item:last-child .value-cell[data-v-7bd555db] {
        border-bottom: none;
}
.value-success[data-v-7bd555db] {
  position: fixed;
  left: 0;
  bottom: 46px;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  font-size: 14px;
}
.value-success .text[data-v-7bd555db] {
    color: #333;
}
.value-success .text-value[data-v-7bd555db] {
    color: #5cae78;
    font-style: normal;
}
.mask-pop[data-v-7bd555db] {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
}
.next-btn[data-v-7bd555db] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.left[data-v-7bd555db] {
  width: 50%;
  float: left;
  text-align: center;
  line-height: 49px;
  margin: 0 auto;
}
.top[data-v-7bd555db] {
  font-size: 14px;
  color: #afafaf;
  text-align: center;
}
.right[data-v-7bd555db] {
  width: 50%;
  float: right;
  background: #5cae78;
  font-size: 14px;
  /*px*/
  line-height: 49px;
  color: #fff;
  text-align: center;
}

.detail-container[data-v-0c0a0498] {
  color: #333;
  background-color: #fff;
}
.detail-container .line[data-v-0c0a0498] {
    height: 10px;
    background-color: #f7f7f7;
}
.detail-container .duty[data-v-0c0a0498] {
    padding: 0 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 50px;
    line-height: 50px;
    border-top: 10px solid #f7f7f7;
}
.detail-container .duty .duty-content[data-v-0c0a0498] {
      position: relative;
      padding-right: 10px;
      color: #5cae78;
}
.detail-container .duty .duty-content[data-v-0c0a0498]:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 0;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
}
.detail-container .navWrap[data-v-0c0a0498] {
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e4e4e4;
    border-bottom: none;
}
.detail-container .navWrap .versions[data-v-0c0a0498] {
      text-align: center;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      height: 40px;
      line-height: 40px;
      font-size: 15px;
      color: #333;
      background-color: #f7f7f7;
      border-right: 1px solid #e4e4e4;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.detail-container .navWrap .versions[data-v-0c0a0498]:last-child {
        border-right: none;
}
.detail-container .navWrap .versions.recommend[data-v-0c0a0498]::before {
        content: "";
        background: url(../../assets/img/icon-recommend.f2c0e0b.png);
        background-size: 100% 100%;
        width: 36px;
        height: 36px;
        position: absolute;
        top: -3px;
        right: -4px;
}
.detail-container .navWrap .versions.active[data-v-0c0a0498] {
        background-color: #5cae78;
        color: #fff;
}
.detail-container .navWrap .versions.active[data-v-0c0a0498]::after {
          content: "";
          width: 0px;
          height: 0px;
          border: solid 10px transparent;
          border-bottom-color: #fff;
          position: absolute;
          bottom: -1px;
          left: 50%;
          -webkit-transform: translate(-50%, 0);
                  transform: translate(-50%, 0);
          z-index: 2;
}
.detail-container .tab-container[data-v-0c0a0498] {
    border-bottom: 10px solid #f7f7f7;
}
.detail-container .tab-container .tab-title[data-v-0c0a0498] {
      padding-left: 10px;
      height: 32px;
      line-height: 32px;
      font-size: 16px;
}
#headerImage[data-v-0c0a0498] {
  width: 100%;
  min-height: 5rem;
  vertical-align: middle;
}
a[data-v-0c0a0498]:link {
  text-decoration: none;
  font-size: 20px;
  /*px*/
  text-align: center;
  margin-right: 10px;
  margin-right: 10px;
}
.outside[data-v-0c0a0498] {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ols-cell-group[data-v-709ed7bf] {
  margin-left: 0.4rem;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-cell-group .ols-form-item[data-v-709ed7bf] {
    margin: 0;
}
.ols-cell-group .ols-form-item[data-v-709ed7bf] .ols-form-item-label {
      -ms-flex-preferred-size: 125px;
          flex-basis: 125px;
      color: #333;
}
.ols-cell-group[data-v-709ed7bf]:last-of-type {
    border-bottom: none;
}
.fade-enter-active[data-v-709ed7bf],
.fade-leave-active[data-v-709ed7bf] {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
.fade-enter[data-v-709ed7bf],
.fade-leave-to[data-v-709ed7bf] {
  opacity: 0;
}
.mask-pop[data-v-709ed7bf] {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
}
#footer[data-v-709ed7bf] {
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 -3px 3px #eaeaea;
          box-shadow: 0 -3px 3px #eaeaea;
  position: fixed;
  bottom: 0;
  z-index: 10;
  color: #afafaf;
  /*height: 49px;*/
  font-style: normal;
}
#footer .color-red[data-v-709ed7bf] {
    color: #e81c34;
}
#footer .btn-left[data-v-709ed7bf] {
    color: #333;
    font-size: 14px;
    /*px*/
}
#footer .btn-left .newPrice[data-v-709ed7bf] {
      font-size: 18px;
      /*px*/
}
.next-btn[data-v-709ed7bf] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.left[data-v-709ed7bf] {
  width: 50%;
  float: left;
  text-align: center;
  line-height: 49px;
  margin: 0 auto;
}
.top[data-v-709ed7bf] {
  font-size: 14px;
  color: #afafaf;
  text-align: center;
}
.right[data-v-709ed7bf] {
  width: 50%;
  float: right;
  background: #5cae78;
  font-size: 14px;
  /*px*/
  line-height: 49px;
  color: #fff;
  text-align: center;
}

.info-confirmInfor .main[data-v-28c2f114] {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.info-confirmInfor .form .form-group[data-v-28c2f114] {
  margin-top: 15px;
}
.info-confirmInfor .form .ols-form-item[data-v-28c2f114] {
  margin-left: 0.4rem;
  padding: 0.4rem 0.4rem 0.4rem 0;
}
.info-confirmInfor .form .ols-form-item[data-v-28c2f114] .ols-form-item-label {
    -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
}
.info-confirmInfor .form .ols-form-item[data-v-28c2f114] .ols-form-item-content {
    overflow: hidden;
}
.info-confirmInfor .form .ols-form-item[data-v-28c2f114] .ols-form-item-content .ols-viewer {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.info-confirmInfor .form .phone-square[data-v-28c2f114] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.info-confirmInfor .form .phone-square[data-v-28c2f114] .ols-form-item-content .ols-input {
    width: 40%;
}
.info-confirmInfor .form .phone-square[data-v-28c2f114] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.info-confirmInfor .form .phone-square[data-v-28c2f114] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      color: red;
}
.info-confirmInfor .color-red[data-v-28c2f114] {
  color: #e81c34;
}
.info-confirmInfor .btn-left[data-v-28c2f114] {
  color: #333;
  font-size: 14px;
  /*px*/
}
.info-confirmInfor .btn-left .newPrice[data-v-28c2f114] {
    font-size: 18px;
    /*px*/
}
.info-confirmInfor .bottom-height[data-v-28c2f114] {
  width: 100%;
  height: 60px;
}
.info-confirmInfor .clause[data-v-28c2f114] {
  font-size: 12px;
  padding-bottom: 60px;
  color: #333;
}
.info-confirmInfor .clause > div[data-v-28c2f114] {
    width: 92%;
    margin: 0 auto;
    line-height: 20px;
}
.info-confirmInfor .clause > div .readAndAgree[data-v-28c2f114] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
}
.info-confirmInfor .clause > div .readAndAgree .not-agree[data-v-28c2f114] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.info-confirmInfor .clause > div .readAndAgree .agree[data-v-28c2f114] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.info-confirmInfor .clause > div .clause-title[data-v-28c2f114] {
      display: inline-block;
      text-decoration: underline;
      color: #459855;
}
.info-confirmInfor .footer[data-v-28c2f114] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #f5f5f5;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 10;
}
.next-btn[data-v-28c2f114] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.ols-form-list .ols-form-item .ols-form-item-label[data-v-28c2f114] {
  -ms-flex-preferred-size: 115px;
      flex-basis: 115px;
}
.phone-square .ols-form-item-inner .ols-form-item-label[data-v-28c2f114] {
  -ms-flex-preferred-size: 115px;
      flex-basis: 115px;
}
.phone-square .ols-form-item-inner .ols-form-item-content[data-v-28c2f114] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.phone-square .ols-form-item-inner .ols-form-item-content .ols-input[data-v-28c2f114] {
    width: 40%;
}
.phone-square .ols-form-item-inner .ols-form-item-content .readAndAgree[data-v-28c2f114] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.phone-square .ols-form-item-inner .ols-form-item-content .readAndAgree span[data-v-28c2f114] {
      font-size: 12px;
      color: red;
}

.info-container .main[data-v-cd807748] {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.info-container .form .form-group[data-v-cd807748] {
  margin-top: 15px;
}
.info-container .form .ols-form-item[data-v-cd807748] {
  margin-left: 0.4rem;
  padding: 0.4rem 0.4rem 0.4rem 0;
}
.info-container .form .ols-form-item[data-v-cd807748] .ols-form-item-label {
    -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
}
.info-container .form .ols-form-item[data-v-cd807748] .ols-form-item-content {
    overflow: hidden;
}
.info-container .form .ols-form-item[data-v-cd807748] .ols-form-item-content .ols-viewer {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.info-container .form .phone-square[data-v-cd807748] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.info-container .form .phone-square[data-v-cd807748] .ols-form-item-content .ols-input {
    width: 40%;
}
.info-container .form .phone-square[data-v-cd807748] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.info-container .form .phone-square[data-v-cd807748] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      color: red;
}
.info-container .color-red[data-v-cd807748] {
  color: #e81c34;
}
.info-container .btn-left[data-v-cd807748] {
  color: #333;
  font-size: 14px;
  /*px*/
}
.info-container .btn-left .newPrice[data-v-cd807748] {
    font-size: 18px;
    /*px*/
}
.info-container .bottom-height[data-v-cd807748] {
  width: 100%;
  height: 60px;
}
.info-container .clause[data-v-cd807748] {
  font-size: 12px;
  padding-bottom: 60px;
  color: #333;
}
.info-container .clause > div[data-v-cd807748] {
    width: 92%;
    margin: 0 auto;
    line-height: 20px;
}
.info-container .clause > div .readAndAgree[data-v-cd807748] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
}
.info-container .clause > div .readAndAgree .not-agree[data-v-cd807748] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.info-container .clause > div .readAndAgree .agree[data-v-cd807748] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.info-container .clause > div .clause-title[data-v-cd807748] {
      display: inline-block;
      text-decoration: underline;
      color: #459855;
}
.info-container .footer[data-v-cd807748] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #f5f5f5;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 10;
}
.next-btn[data-v-cd807748] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.ols-form-list .ols-form-item .ols-form-item-label[data-v-cd807748] {
  -ms-flex-preferred-size: 115px;
      flex-basis: 115px;
}

#detail-address .ols-form-item-inner .ols-form-item-content .ols-viewer[data-v-cb640c7c] {
  height: auto !important;
  display: block !important;
  word-break: break-all !important;
  word-wrap: break-word !important;
}
.ols-cell-group[data-v-cb640c7c] {
  background: #fff;
}
.ols-form-item[data-v-cb640c7c] {
  margin-left: 0.4rem;
  padding: 8px 0.4rem 8px 0;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-form-item[data-v-cb640c7c]::after {
    display: none;
}
.ols-form-item[data-v-cb640c7c]:last-of-type {
    border-bottom: none;
}
.topView[data-v-cb640c7c] {
  height: 45px;
  background-color: #fff;
}
.line[data-v-cb640c7c] {
  height: 15px;
  background-color: #f5f5f5;
}
.orderFinish[data-v-cb640c7c] {
  height: 100px;
  background-color: #fff;
}
.orderFinish .title[data-v-cb640c7c] {
    padding-left: 10px;
    padding-top: 10px;
    height: 25px;
    color: #333;
    font-size: 14px;
}
.orderFinish .numberOrder[data-v-cb640c7c] {
    padding-left: 10px;
    height: 20px;
    color: #666;
    font-size: 13px;
}
.orderFinish .numberIns[data-v-cb640c7c] {
    padding-left: 10px;
    height: 25px;
    color: #666;
    font-size: 13px;
}
.order[data-v-cb640c7c] {
  position: relative;
  height: 80px;
  background-color: #fff;
}
.order .title[data-v-cb640c7c] {
    padding-left: 10px;
    padding-top: 10px;
    height: 25px;
    color: #333;
    font-size: 14px;
}
.order .number[data-v-cb640c7c] {
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    vertical-align: -10px;
    color: #666;
    font-size: 13px;
}
.order .needToPay[data-v-cb640c7c] {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 60px;
    height: 30px;
    border-color: #459855;
    color: #459855;
    background-color: #fff;
    border-radius: 5px;
    /*no*/
    outline: none;
}
.formWrap[data-v-cb640c7c] {
  background-color: #fff;
}
.formWrap .form .tit[data-v-cb640c7c] {
    height: 30px;
    line-height: 30px;
    color: #a8a8a8;
    font-size: 12px;
    background-color: #f5f5f5;
    padding-top: 10px;
    padding-left: 10px;
}
.formWrap .form .item[data-v-cb640c7c] {
    position: relative;
    height: 45px;
    line-height: 45px;
    border-bottom: 1px solid #e1e1e1;
    /*no*/
    font-size: 14px;
    margin-left: 15px;
}
.formWrap .form .item .title[data-v-cb640c7c] {
      float: left;
      color: #333;
      width: 22%;
      text-align: left;
}
.formWrap .form .item .content[data-v-cb640c7c] {
      float: right;
      width: 65%;
      height: 45px;
      line-height: 45px;
      color: #666;
      margin-right: 15px;
      text-align: right;
}
.formWrap .form .item .content.term[data-v-cb640c7c] {
        line-height: 22.5px;
}
.formWrap .form .item .triangle[data-v-cb640c7c] {
      position: absolute;
      right: 17px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
}
.formWrap .form .item .triangle[data-v-cb640c7c]::after {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-top: 1px solid #adadad;
        /*no*/
        border-right: 1px solid #adadad;
        /*no*/
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        vertical-align: 1.5px;
}
.formWrap .form .item.special[data-v-cb640c7c] {
      border-bottom: none;
      /*no*/
}
.formWrap .form .item.special a[data-v-cb640c7c] {
        width: 100%;
}
.clause[data-v-cb640c7c] {
  font-size: 10px;
  background-color: #fff;
  /*margin-top: $margin-10*/
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
.clause > div[data-v-cb640c7c] {
    width: 92%;
    margin: 0 auto;
}
.clause > div .readAndAgree[data-v-cb640c7c] {
      display: inline-block;
}
.clause > div .readAndAgree .icon[data-v-cb640c7c] {
        display: inline-block;
        width: 13px;
        height: 13px;
        background: url(../../assets/img/noagree.0586c1b.png) no-repeat;
        background-size: 13px 13px;
        vertical-align: middle;
}
.clause > div .readAndAgree .agreeImg[data-v-cb640c7c] {
        background: url(../../assets/img/agree.1698ea8.png) no-repeat;
        background-size: 13px 13px;
}
.clause > div .clause-title[data-v-cb640c7c] {
      display: inline-block;
      height: 30px;
      line-height: 30px;
      text-decoration: none;
      color: #459855;
}
.footer[data-v-cb640c7c] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #e1e1e1;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 2;
}
.footer .left-num[data-v-cb640c7c] {
    float: left;
    background-color: #fff;
    text-align: center;
    width: 50%;
    color: #459855;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
}
.footer .left-num .V[data-v-cb640c7c] {
      font-size: 14px;
      line-height: 50px;
      color: #333;
      margin-left: 10px;
}
.footer .right-but[data-v-cb640c7c] {
    /*font-weight: 600;*/
    float: right;
    width: 50%;
    height: 50px;
    line-height: 50px;
    background-color: #e4e4e4;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.footer .right-but.butOk[data-v-cb640c7c] {
      background-color: #5cae78;
}

.ols-cell-group[data-v-d83bffec] {
  background: #fff;
}
#detail-address .ols-form-item-inner .ols-form-item-content .ols-viewer[data-v-d83bffec] {
  height: auto !important;
  display: block !important;
  word-break: break-all !important;
  word-wrap: break-word !important;
}
.ols-form-item[data-v-d83bffec] {
  margin-left: 0.4rem;
  padding: 8px 0.4rem 8px 0;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-form-item[data-v-d83bffec]::after {
    display: none;
}
.ols-form-item[data-v-d83bffec]:last-of-type {
    border-bottom: none;
}
.topView[data-v-d83bffec] {
  height: 45px;
  background-color: #fff;
}
.line[data-v-d83bffec] {
  height: 15px;
  background-color: #f5f5f5;
}
.orderFinish[data-v-d83bffec] {
  height: 100px;
  background-color: #fff;
}
.orderFinish .title[data-v-d83bffec] {
    padding-left: 10px;
    padding-top: 10px;
    height: 25px;
    color: #333;
    font-size: 14px;
}
.orderFinish .numberOrder[data-v-d83bffec] {
    padding-left: 10px;
    height: 20px;
    color: #666;
    font-size: 13px;
}
.orderFinish .numberIns[data-v-d83bffec] {
    padding-left: 10px;
    height: 25px;
    color: #666;
    font-size: 13px;
}
.order[data-v-d83bffec] {
  position: relative;
  height: 80px;
  background-color: #fff;
}
.order .title[data-v-d83bffec] {
    padding-left: 10px;
    padding-top: 10px;
    height: 25px;
    color: #333;
    font-size: 14px;
}
.order .number[data-v-d83bffec] {
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    vertical-align: -10px;
    color: #666;
    font-size: 13px;
}
.order .needToPay[data-v-d83bffec] {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 60px;
    height: 30px;
    border-color: #459855;
    color: #459855;
    background-color: #fff;
    border-radius: 5px;
    /*no*/
    outline: none;
}
.formWrap[data-v-d83bffec] {
  background-color: #fff;
}
.formWrap .form .tit[data-v-d83bffec] {
    height: 30px;
    line-height: 30px;
    color: #a8a8a8;
    font-size: 12px;
    background-color: #f5f5f5;
    padding-top: 10px;
    padding-left: 10px;
}
.formWrap .form .item[data-v-d83bffec] {
    position: relative;
    height: 45px;
    line-height: 45px;
    border-bottom: 1px solid #e1e1e1;
    /*no*/
    font-size: 14px;
    margin-left: 15px;
}
.formWrap .form .item .title[data-v-d83bffec] {
      float: left;
      color: #333;
      width: 22%;
      text-align: left;
}
.formWrap .form .item .content[data-v-d83bffec] {
      float: right;
      width: 65%;
      height: 45px;
      line-height: 45px;
      color: #666;
      margin-right: 15px;
      text-align: right;
}
.formWrap .form .item .content.term[data-v-d83bffec] {
        line-height: 22.5px;
}
.formWrap .form .item .triangle[data-v-d83bffec] {
      position: absolute;
      right: 17px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
}
.formWrap .form .item .triangle[data-v-d83bffec]::after {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-top: 1px solid #adadad;
        /*no*/
        border-right: 1px solid #adadad;
        /*no*/
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        vertical-align: 1.5px;
}
.formWrap .form .item.special[data-v-d83bffec] {
      border-bottom: none;
      /*no*/
}
.formWrap .form .item.special a[data-v-d83bffec] {
        width: 100%;
}
.clause[data-v-d83bffec] {
  font-size: 10px;
  background-color: #fff;
  /*margin-top: $margin-10*/
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
.clause > div[data-v-d83bffec] {
    width: 92%;
    margin: 0 auto;
}
.clause > div .readAndAgree[data-v-d83bffec] {
      display: inline-block;
}
.clause > div .readAndAgree .icon[data-v-d83bffec] {
        display: inline-block;
        width: 13px;
        height: 13px;
        background: url(../../assets/img/noagree.0586c1b.png) no-repeat;
        background-size: 13px 13px;
        vertical-align: middle;
}
.clause > div .readAndAgree .agreeImg[data-v-d83bffec] {
        background: url(../../assets/img/agree.1698ea8.png) no-repeat;
        background-size: 13px 13px;
}
.clause > div .clause-title[data-v-d83bffec] {
      display: inline-block;
      height: 30px;
      line-height: 30px;
      text-decoration: none;
      color: #459855;
}
.footer[data-v-d83bffec] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #e1e1e1;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 2;
}
.footer .left-num[data-v-d83bffec] {
    float: left;
    background-color: #fff;
    text-align: center;
    width: 50%;
    color: #459855;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
}
.footer .left-num .V[data-v-d83bffec] {
      font-size: 14px;
      line-height: 50px;
      color: #333;
      margin-left: 10px;
}
.footer .right-but[data-v-d83bffec] {
    /*font-weight: 600;*/
    float: right;
    width: 50%;
    height: 50px;
    line-height: 50px;
    background-color: #e4e4e4;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.footer .right-but.butOk[data-v-d83bffec] {
      background-color: #5cae78;
}

#detail-address .ols-form-item-inner .ols-form-item-content .ols-viewer[data-v-2c78e65e] {
  height: auto !important;
  display: block !important;
  word-break: break-all !important;
  word-wrap: break-word !important;
}
.pay-detail[data-v-2c78e65e] {
  background: #fafafa;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-detail .main-content[data-v-2c78e65e] {
    height: 100%;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

#detail-address .ols-form-item-inner .ols-form-item-content .ols-viewer[data-v-b5a328ee] {
  height: auto !important;
  display: block !important;
  word-break: break-all !important;
  word-wrap: break-word !important;
}
.pay-detail[data-v-b5a328ee] {
  background: #fafafa;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-detail .main-content[data-v-b5a328ee] {
    height: 100%;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.box[data-v-26daca1a] {
  background-color: #f5f5f5;
}

.pay-container[data-v-7ccb9a1d] {
  padding-bottom: 50px;
  overflow-y: auto;
}
.pay-container .header[data-v-7ccb9a1d] {
    width: 100%;
}
.pay-container .toub-box[data-v-7ccb9a1d] {
    position: relative;
    margin: 0 auto;
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
}
.pay-container .toub-box[data-v-7ccb9a1d]::before {
      content: "";
      position: absolute;
      top: 80px;
      left: -15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #f5f5f5;
}
.pay-container .toub-box[data-v-7ccb9a1d]::after {
      content: "";
      position: absolute;
      top: 80px;
      right: -15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #f5f5f5;
}
.pay-container .toub-box .toub-title[data-v-7ccb9a1d] {
      height: 80px;
      line-height: 80px;
      font-size: 22px;
      text-align: center;
      color: #fff;
      font-weight: 600;
      background-color: #169248;
}
.pay-container .toub-box .toub-service[data-v-7ccb9a1d] {
      background: #fff;
      text-align: center;
}
.pay-container .toub-box .toub-service p[data-v-7ccb9a1d] {
        font-size: 13px;
        line-height: 24px;
        color: #008c52;
}
.pay-container .toub-box .toub-service p.gift[data-v-7ccb9a1d] {
          margin-top: 15px;
}
.pay-container .toub-box .toub-service p.gift i[data-v-7ccb9a1d] {
            font-weight: 600;
            font-size: 38px;
}
.pay-container .toub-box .toub-content[data-v-7ccb9a1d] {
      height: 80px;
      background-color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-container .toub-box .toub-content img[data-v-7ccb9a1d] {
        width: 30px;
}
.pay-container .toub-box .toub-content .check-policy[data-v-7ccb9a1d] {
        margin-top: 5px;
        font-size: 15px;
        color: #5cae78;
}
.pay-container .other-goods[data-v-7ccb9a1d] {
    margin: 30px 0;
}
.pay-container .other-goods .other-title[data-v-7ccb9a1d] {
      font-size: 18px;
      text-align: center;
      color: #0e755c;
      font-weight: 600;
}
.pay-container .other-goods .goods-list[data-v-7ccb9a1d] {
      margin-top: 15px;
      background: #fff;
}
.pay-container .other-goods .goods-list ul[data-v-7ccb9a1d] {
        padding: 0 10px;
}
.pay-container .other-goods .goods-list ul li[data-v-7ccb9a1d] {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding: 10px 0;
          border-bottom: 1px solid #eee;
}
.pay-container .other-goods .goods-list ul li[data-v-7ccb9a1d]:last-child {
            border: none;
}
.pay-container .other-goods .goods-list ul li .goods-banner[data-v-7ccb9a1d] {
            width: 100px;
            height: 100px;
}
.pay-container .other-goods .goods-list ul li .goods-banner img[data-v-7ccb9a1d] {
              width: 100%;
}
.pay-container .other-goods .goods-list ul li .goods-content[data-v-7ccb9a1d] {
            padding-left: 8px;
}
.pay-container .other-goods .goods-list ul li .goods-content div[data-v-7ccb9a1d] {
              white-space: nowrap;
              text-overflow: ellipsis;
              overflow: hidden;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-title[data-v-7ccb9a1d] {
              color: #000;
              font-size: 16px;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-subtitle[data-v-7ccb9a1d] {
              font-size: 14px;
              color: #999;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag[data-v-7ccb9a1d] {
              height: 30px;
              line-height: 30px;
              color: #5cae78;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag span[data-v-7ccb9a1d] {
                border: 1px solid #5cae78;
                border-radius: 20px;
                padding: 0 5px;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag span.red[data-v-7ccb9a1d] {
                  border-color: #ff0000;
}
.pay-container .other-goods .goods-list ul li .goods-content .red[data-v-7ccb9a1d] {
              color: #ff0000;
}
.pay-container .other-goods .goods-list ul li .goods-price[data-v-7ccb9a1d] {
            position: absolute;
            right: 0;
            bottom: 10px;
            font-size: 16px;
            color: #169248;
}
.pay-container .other-goods .goods-list ul li .goods-price span[data-v-7ccb9a1d] {
              font-size: 12px;
}
.pay-container .footer[data-v-7ccb9a1d] {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.box-content[data-v-30585713] {
  background-color: #f5f5f5;
}
.topView[data-v-30585713] {
  height: 45px;
  background-color: #fff;
}
.successImage[data-v-30585713] {
  width: 30%;
  height: 30%;
}
.successImageBg[data-v-30585713] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
p[data-v-30585713] {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.msgStyle[data-v-30585713] {
  font-size: 20px;
  margin-top: 12px;
}
.detailMsg[data-v-30585713] {
  margin-top: 20px;
  font-size: 16px;
}
.red[data-v-30585713] {
  color: #459855;
  height: 30px;
}
.btnBg[data-v-30585713] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 50px;
}
.padding-height[data-v-30585713] {
  padding: 10px;
  height: 235px;
}
.btnStyle[data-v-30585713] {
  width: 120px;
  height: 30px;
  font-size: 15px;
  border: 1px solid #5cae78;
  color: #5cae78;
  background-color: #f5f5f5;
  border-radius: 3px;
  margin: 0 auto;
  outline: 0 none !important;
  blr: expression(this.onFocus=this.blur());
}
.lineStyle[data-v-30585713] {
  width: 64%;
  height: 1px;
  margin-top: 20px;
  margin-left: 18%;
  background-color: #e4e4e4;
}
.bodyIndex[data-v-30585713] {
  z-index: 2;
  position: fixed;
  border-top: 1px solid #e4e4e4;
  background: #fff;
}
.outside[data-v-30585713] {
  width: 100%;
  top: 45px;
}
.ssS[data-v-30585713] {
  width: 100%;
  height: 50%;
  background-color: #fff;
  position: absolute;
  z-index: 1;
}

.box[data-v-7c15c7ab] {
  background-color: #f5f5f5;
}

.pay-container[data-v-44a3f736] {
  padding-bottom: 50px;
  overflow-y: auto;
}
.pay-container .header[data-v-44a3f736] {
    width: 100%;
}
.pay-container .toub-box[data-v-44a3f736] {
    position: relative;
    margin: 0 auto;
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
}
.pay-container .toub-box[data-v-44a3f736]::before {
      content: "";
      position: absolute;
      top: 80px;
      left: -15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #f5f5f5;
}
.pay-container .toub-box[data-v-44a3f736]::after {
      content: "";
      position: absolute;
      top: 80px;
      right: -15px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: #f5f5f5;
}
.pay-container .toub-box .toub-title[data-v-44a3f736] {
      height: 80px;
      line-height: 80px;
      font-size: 22px;
      text-align: center;
      color: #fff;
      font-weight: 600;
      background-color: #169248;
}
.pay-container .toub-box .toub-service[data-v-44a3f736] {
      background: #fff;
      text-align: center;
}
.pay-container .toub-box .toub-service p[data-v-44a3f736] {
        font-size: 13px;
        line-height: 24px;
        color: #008c52;
}
.pay-container .toub-box .toub-service p.gift[data-v-44a3f736] {
          margin-top: 15px;
}
.pay-container .toub-box .toub-service p.gift i[data-v-44a3f736] {
            font-weight: 600;
            font-size: 38px;
}
.pay-container .toub-box .toub-content[data-v-44a3f736] {
      height: 80px;
      background-color: #fff;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-container .toub-box .toub-content img[data-v-44a3f736] {
        width: 30px;
}
.pay-container .toub-box .toub-content .check-policy[data-v-44a3f736] {
        margin-top: 5px;
        font-size: 15px;
        color: #5cae78;
}
.pay-container .other-goods[data-v-44a3f736] {
    margin: 30px 0;
}
.pay-container .other-goods .other-title[data-v-44a3f736] {
      font-size: 18px;
      text-align: center;
      color: #0e755c;
      font-weight: 600;
}
.pay-container .other-goods .goods-list[data-v-44a3f736] {
      margin-top: 15px;
      background: #fff;
}
.pay-container .other-goods .goods-list ul[data-v-44a3f736] {
        padding: 0 10px;
}
.pay-container .other-goods .goods-list ul li[data-v-44a3f736] {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding: 10px 0;
          border-bottom: 1px solid #eee;
}
.pay-container .other-goods .goods-list ul li[data-v-44a3f736]:last-child {
            border: none;
}
.pay-container .other-goods .goods-list ul li .goods-banner[data-v-44a3f736] {
            width: 100px;
            height: 100px;
}
.pay-container .other-goods .goods-list ul li .goods-banner img[data-v-44a3f736] {
              width: 100%;
}
.pay-container .other-goods .goods-list ul li .goods-content[data-v-44a3f736] {
            padding-left: 8px;
}
.pay-container .other-goods .goods-list ul li .goods-content div[data-v-44a3f736] {
              white-space: nowrap;
              text-overflow: ellipsis;
              overflow: hidden;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-title[data-v-44a3f736] {
              color: #000;
              font-size: 16px;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-subtitle[data-v-44a3f736] {
              font-size: 14px;
              color: #999;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag[data-v-44a3f736] {
              height: 30px;
              line-height: 30px;
              color: #5cae78;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag span[data-v-44a3f736] {
                border: 1px solid #5cae78;
                border-radius: 20px;
                padding: 0 5px;
}
.pay-container .other-goods .goods-list ul li .goods-content .goods-tag span.red[data-v-44a3f736] {
                  border-color: #ff0000;
}
.pay-container .other-goods .goods-list ul li .goods-content .red[data-v-44a3f736] {
              color: #ff0000;
}
.pay-container .other-goods .goods-list ul li .goods-price[data-v-44a3f736] {
            position: absolute;
            right: 0;
            bottom: 10px;
            font-size: 16px;
            color: #169248;
}
.pay-container .other-goods .goods-list ul li .goods-price span[data-v-44a3f736] {
              font-size: 12px;
}
.pay-container .footer[data-v-44a3f736] {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.box-content[data-v-8048f86a] {
  background-color: #f5f5f5;
}
.topView[data-v-8048f86a] {
  height: 45px;
  background-color: #fff;
}
.successImage[data-v-8048f86a] {
  width: 30%;
  height: 30%;
}
.successImageBg[data-v-8048f86a] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
p[data-v-8048f86a] {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.msgStyle[data-v-8048f86a] {
  font-size: 20px;
  margin-top: 12px;
}
.detailMsg[data-v-8048f86a] {
  margin-top: 20px;
  font-size: 16px;
}
.red[data-v-8048f86a] {
  color: #459855;
  height: 30px;
}
.btnBg[data-v-8048f86a] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 50px;
}
.padding-height[data-v-8048f86a] {
  padding: 10px;
  height: 235px;
}
.btnStyle[data-v-8048f86a] {
  width: 120px;
  height: 30px;
  font-size: 15px;
  border: 1px solid #5cae78;
  color: #5cae78;
  background-color: #f5f5f5;
  border-radius: 3px;
  margin: 0 auto;
  outline: 0 none !important;
  blr: expression(this.onFocus=this.blur());
}
.lineStyle[data-v-8048f86a] {
  width: 64%;
  height: 1px;
  margin-top: 20px;
  margin-left: 18%;
  background-color: #e4e4e4;
}
.bodyIndex[data-v-8048f86a] {
  z-index: 2;
  position: fixed;
  border-top: 1px solid #e4e4e4;
  background: #fff;
}
.outside[data-v-8048f86a] {
  width: 100%;
  top: 45px;
}
.ssS[data-v-8048f86a] {
  width: 100%;
  height: 50%;
  background-color: #fff;
  position: absolute;
  z-index: 1;
}

.test-box[data-v-23e10d28] {
  width: 200px;
  height: 300px;
  background-color: yellow;
  color: skyblue;
  font-size: 20px;
}

.no-signal-box[data-v-19a48626] {
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.no-signal-box .no-signal-content[data-v-19a48626] {
  padding-top: 96.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.no-signal-box .no-signal-content .signal[data-v-19a48626] {
  display: block;
  width: 297px;
  height: 208px;
}
.no-signal-box .no-signal-content .text[data-v-19a48626] {
  padding-top: 18px;
  padding-bottom: 48px;
  font-size: 14px;
  color: #8E90A2;
}
.no-signal-box .no-signal-content .btn[data-v-19a48626] {
  display: block;
  height: 40px;
  width: 161.5px;
}

.code-error[data-v-4df1d6d2] {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  text-align: center;
  font-size: 16px;
}

.clinic-detail-box[data-v-2454c473] {
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100vh;
}
.clinic-detail-box .picker-box[data-v-2454c473] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 41px;
  padding: 10px;
  border-radius: 12px;
  background-color: #fff;
  color: #181818;
  font-size: 14px;
}
.clinic-detail-box .picker-box .right-img[data-v-2454c473] {
  width: 16px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.clinic-detail-box .title[data-v-2454c473] {
  font-size: 14px;
  line-height: 20px;
  color: #888888;
  padding: 16px 0;
}
.clinic-detail-box .detail-list[data-v-2454c473] {
  padding-bottom: 16px;
}
.clinic-detail-box .detail-list .detail-item[data-v-2454c473] {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 8px;
}
.clinic-detail-box .detail-list .detail-item .detail-top[data-v-2454c473] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding-bottom: 6px;
}
.clinic-detail-box .detail-list .detail-item .detail-top .detail-title[data-v-2454c473] {
  max-width: 70%;
  color: #1f1616;
  font-size: 14px;
  line-height: 22px;
}
.clinic-detail-box .detail-list .detail-item .detail-top .detail-star[data-v-2454c473] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.clinic-detail-box .detail-list .detail-item .detail-top .detail-star img[data-v-2454c473] {
  width: 12px;
  height: 12px;
  margin-right: 5px;
}
.clinic-detail-box .detail-list .detail-item .detail-address[data-v-2454c473] {
  color: #888888;
  font-size: 12px;
  line-height: 20px;
  padding-bottom: 6px;
}
.clinic-detail-box .detail-list .detail-item .detail-tips[data-v-2454c473] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 16px;
  color: #888888;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.clinic-detail-box .detail-list .detail-item .detail-tips .tips[data-v-2454c473] {
  padding-right: 4px;
  color: #00a758;
}
.clinic-detail-box .popup-bottom-box[data-v-2454c473] {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.clinic-detail-box .popup-bottom-box .popup-title[data-v-2454c473] {
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 18px;
  color: #181818;
  border-bottom: 1px solid #e8e8e8;
}
.clinic-detail-box .popup-bottom-box .picker[data-v-2454c473] {
  padding-bottom: 20px;
}
.clinic-detail-box .popup-bottom-box .picker[data-v-2454c473] .picker-item {
  font-size: 14px;
  color: #888888;
}
.clinic-detail-box .popup-bottom-box .picker[data-v-2454c473] .picker-selected {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #00a758;
}
.clinic-detail-box .popup-bottom-box .popup-btn[data-v-2454c473] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 18px;
  border-right: 1px solid #E8E8E8;
  color: #181818;
  height: 65px;
  width: 100%;
  border-top: 1px solid #e8e8e8;
}
.clinic-detail-box[data-v-2454c473] .van-tabs__line {
  background-color: #00a758;
  -webkit-transform: translateX(37px) translateX(-50%);
          transform: translateX(37px) translateX(-50%);
}
.clinic-detail-box[data-v-2454c473] .van-cascader__option--selected {
  color: #00a758;
}

.detail-container[data-v-7f6c8c01] {
  color: #333;
  background-color: #fff;
  position: relative;
}
.detail-container .duty[data-v-7f6c8c01] {
    padding: 12px 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-top: 10px solid #f7f7f7;
    border-bottom: 1px solid #CFCFCF;
}
.detail-container .duty .duty-title[data-v-7f6c8c01] {
      color: #333;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-7f6c8c01] {
      position: relative;
      padding-right: 10px;
      color: #00A758;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-7f6c8c01]:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 0;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
}
.detail-container .tab-container .tab-title[data-v-7f6c8c01] {
    padding-left: 10px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
}
.detail-container .footer-box[data-v-7f6c8c01] {
    width: 100%;
    height: 50px;
    font-size: 15px;
    color: #fff;
    background: #5cae78;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    position: fixed;
    bottom: 0;
}
.detail-container .grey-btn[data-v-7f6c8c01] {
    background: #666;
}
#headerImage[data-v-7f6c8c01] {
  width: 100%;
  min-height: 5rem;
  vertical-align: middle;
}
a[data-v-7f6c8c01]:link {
  text-decoration: none;
  font-size: 20px;
  /*px*/
  text-align: center;
  margin-right: 10px;
  margin-right: 10px;
}
.outside[data-v-7f6c8c01] {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.version-detail[data-v-2c5ff1ba] {
  margin: 0 10px 20px;
  border: 1px solid #e4e4e4;
}
.version-detail ul[data-v-2c5ff1ba] {
    margin: 0 10px;
}
.version-detail ul li[data-v-2c5ff1ba] {
      border-bottom: 1px dashed #e4e4e4;
      font-size: 14px;
      color: #333;
}
.version-detail ul li[data-v-2c5ff1ba]:last-child {
        border: none;
}
.version-detail ul li .version-top[data-v-2c5ff1ba] {
        min-height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
}
.version-detail ul li .version-top .version-title[data-v-2c5ff1ba] {
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
}
.version-detail ul li .version-top .version-title img[data-v-2c5ff1ba] {
            width: 36px;
            height: 36px;
            vertical-align: middle;
            padding-right: 10px;
}
.version-detail ul li .version-top .right-icon[data-v-2c5ff1ba] {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 18px;
                  flex: 0 0 18px;
          height: 100%;
          position: relative;
}
.version-detail ul li .version-top .right-icon .icon-inner[data-v-2c5ff1ba] {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 16px;
            height: 16px;
            line-height: 16px;
            text-align: center;
            text-rendering: optimizeLegibility;
            -webkit-transform-origin: 50% 50%;
                    transform-origin: 50% 50%;
            -webkit-transform: rotate(0);
                    transform: rotate(0);
            -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.version-detail ul li .version-top .right-icon .icon-inner-top[data-v-2c5ff1ba] {
            -webkit-transform: rotate(180deg);
                    transform: rotate(180deg);
}
.version-detail ul li .version-top .right-icon .iconfont[data-v-2c5ff1ba] {
            font-size: 12px;
            color: #B3B3B3;
}
.version-detail ul li .version-content[data-v-2c5ff1ba] {
        font-size: 14px;
        color: #8E90A2;
        line-height: 1.4;
        background: #F5F5F5;
        text-align: left;
        overflow: auto;
}
.version-detail ul li .version-content .content-inner[data-v-2c5ff1ba] {
          padding: 10px;
}
.version-detail ul li .fade-content-enter-active[data-v-2c5ff1ba], .version-detail ul li .fade-content-leave-active[data-v-2c5ff1ba] {
        -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.version-detail ul li .fade-content-enter[data-v-2c5ff1ba], .version-detail ul li .fade-content-leave-to[data-v-2c5ff1ba] {
        height: 0;
        overflow: hidden;
}
.version-detail ul li .color-red[data-v-2c5ff1ba] {
        color: #e81c34;
}
.version-detail ul li .finial-amount[data-v-2c5ff1ba] {
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
}
.version-detail ul .flex-box[data-v-2c5ff1ba] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      min-height: 50px;
}
.version-detail .coverageDescPic img[data-v-2c5ff1ba] {
    display: block;
    width: 100%;
}

.terms-page[data-v-02c7ce98] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.terms-page .terms-pop[data-v-02c7ce98] {
    width: 76%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px  10px 20px;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.terms-page .terms-pop .top-title[data-v-02c7ce98] {
      width: 100%;
      height: 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.terms-page .terms-pop .top-title .title-text[data-v-02c7ce98] {
        font-size: 16px;
        color: #333;
}
.terms-page .terms-pop .top-title .clost-img[data-v-02c7ce98] {
        font-size: 18px;
}
.terms-page .terms-pop .prompt-content[data-v-02c7ce98] {
      margin: 10px 0px 20px 0px;
      max-height: 200px;
      overflow: auto;
}
.terms-page .terms-pop .prompt-content p[data-v-02c7ce98] {
        font-size: 15px;
        color: #333;
}
.terms-page .terms-pop .bottom-btn[data-v-02c7ce98] {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      justify-items: center;
      margin-top: 10px;
      padding-top: 10px;
      margin-bottom: 20px;
}
.terms-page .terms-pop .bottom-btn .cancel-btn[data-v-02c7ce98] {
        background: #A29D9D;
        padding: 10px 16px;
        font-size: 16px;
        color: #333;
        border-radius: 4px;
}
.terms-page .terms-pop .bottom-btn .agree-btn[data-v-02c7ce98] {
        background: #0D7D0A;
        padding: 10px 16px;
        font-size: 16px;
        color: #fff;
        border-radius: 4px;
}

[data-v-4d524e85].title-style .ols-form-item-inner .ols-form-item-label {
  height: auto;
  white-space: normal;
}
.info-title[data-v-4d524e85] {
  padding: 17px 0 2px 16px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-align: left;
  background: #fff;
}
.info-title .info-title-rig[data-v-4d524e85] {
    float: right;
    color: #00A758;
    font-weight: normal;
    font-size: 13px;
    padding-right: 15px;
}
.info-title .info-title-rig img[data-v-4d524e85] {
      width: 16px;
      height: 16px;
      position: relative;
      top: 2px;
}
.trial-main[data-v-4d524e85] {
  background: #fff;
}
[data-v-4d524e85].ols-form-list .space {
  padding-right: 10px;
}
.phone-square[data-v-4d524e85] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.phone-square[data-v-4d524e85] .ols-form-item-content .ols-input {
    width: 40%;
}
.phone-square[data-v-4d524e85] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.phone-square[data-v-4d524e85] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      color: red;
}
.trial-top[data-v-4d524e85] {
  text-align: center;
  border-bottom: 1px solid #efefef;
  padding-bottom: 0;
}
.trial-top .trial-top-desc[data-v-4d524e85] {
    padding: 20px 0 10px;
    text-align: center;
    color: #101010;
    font-weight: bold;
    font-size: 14px;
}
.trial-top .trial-top-desc .end-age[data-v-4d524e85] {
      color: #00a758;
}
.trial-top .trial-money[data-v-4d524e85] {
    color: #00a758;
    font-size: 38px;
    font-weight: bold;
    padding-bottom: 4px;
}
.trial-top .trial-money .trial-monty-unit[data-v-4d524e85] {
      display: inline-block;
      padding-left: 6px;
      font-size: 22px;
}
.benefit-demonstration[data-v-4d524e85] {
  padding: 10px 0 18px;
}
.benefit-demonstration .benfit-box[data-v-4d524e85] {
    color: #fff;
    padding: 0px 15px 0px 19px;
    height: 32px;
    line-height: 32px;
    border-radius: 17px;
    background: #00A758;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}
.benefit-demonstration .icon-right[data-v-4d524e85] {
    position: relative;
    top: 2px;
    left: -3px;
}
.benefit-demonstration .icon-right img[data-v-4d524e85] {
      width: 15px;
      height: 15px;
}
.insure-info-main[data-v-4d524e85] {
  background: #fff;
  margin-bottom: 14px;
}
.insure-info-main .form-row-desc[data-v-4d524e85] {
    color: #787878;
    font-size: 14px;
    padding: 12px 0 10px 16px;
}
.insure-info-main .form-row-check[data-v-4d524e85] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 16px 20px 16px;
}
.insure-info-main .form-row-check .check-box[data-v-4d524e85] {
      overflow: hidden;
      position: relative;
      background: #f4f4f4;
      color: #787878;
      width: 23%;
      padding: 6px 0;
      font-size: 14px;
      text-align: center;
      border-radius: 5px;
}
.insure-info-main .form-row-check .check-box .checked-icon[data-v-4d524e85] {
        display: none;
}
.insure-info-main .form-row-check .check-box.w30b[data-v-4d524e85] {
      width: 30%;
}
.insure-info-main .form-row-check .check-box.checked[data-v-4d524e85] {
      background: #DEEFE7;
      color: #00A758;
}
.insure-info-main .form-row-check .check-box.checked .checked-icon[data-v-4d524e85] {
        display: block;
        position: absolute;
        right: -13px;
        bottom: -13px;
        width: 25px;
        height: 25px;
        color: #fff;
        font-size: 12px;
}
.insure-info-main .form-row-check .check-box.checked .checked-icon-bg[data-v-4d524e85] {
        width: 100%;
        height: 100%;
        background: #00A758;
        -webkit-transform: rotate(315deg);
                transform: rotate(315deg);
}
.insure-info-main .form-row-check .check-box.checked .checked-icon-font[data-v-4d524e85] {
        position: absolute;
        left: 3px;
        top: -1px;
}
.insure-info-main .form-row-check .check-box.checked .checked-icon-font img[data-v-4d524e85] {
          width: 7px;
          height: 7px;
}
.readAndAgree[data-v-4d524e85] {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  padding-right: 10px;
}
.readAndAgree .not-agree[data-v-4d524e85] {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 18px;
    font-size: 14px;
    color: #d0d0d0;
    width: 24px;
    z-index: 2;
}
.readAndAgree .agree[data-v-4d524e85] {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 18px;
    font-size: 14px;
    color: #888888;
    width: 24px;
    z-index: 1;
}
.readAndAgree .read-span[data-v-4d524e85] {
    color: #00A758 !important;
}
.idityAgree .not-agree[data-v-4d524e85], .idityAgree .agree[data-v-4d524e85] {
  color: #00A758;
}
.idNo-square .ols-form-item-inner .ols-form-item-label[data-v-4d524e85] {
  -ms-flex-preferred-size: 115px;
      flex-basis: 115px;
}
.idNo-square .ols-form-item-inner .ols-form-item-content[data-v-4d524e85] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.idNo-square .ols-form-item-inner .ols-form-item-content .ols-input[data-v-4d524e85] {
    width: 40%;
}
.idNo-square .ols-form-item-inner .ols-form-item-content .readAndAgree[data-v-4d524e85] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.idNo-square .ols-form-item-inner .ols-form-item-content .readAndAgree span[data-v-4d524e85] {
      font-size: 12px;
      color: red;
}
[data-v-4d524e85].idNo-square .ols-select .ols-select-allow-right:after {
  top: 20px;
}
.getinfo-main[data-v-4d524e85] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  padding-bottom: 50px;
}
.swiper-trial[data-v-4d524e85] {
  background: #F4FCF9;
  padding: 6px 0 12px;
}
.money-row[data-v-4d524e85] {
  display: inline-block;
  text-align: right;
  padding-right: 15px;
  position: relative;
  top: 2px;
}
.money-row .money-reduce[data-v-4d524e85], .money-row .money-add[data-v-4d524e85], .money-row .money-num[data-v-4d524e85] {
    display: inline-block;
    padding: 0 3px;
}
.money-row .money-reduce img[data-v-4d524e85], .money-row .money-add img[data-v-4d524e85], .money-row .money-num img[data-v-4d524e85] {
      width: 16px;
      height: 16px;
}
.money-row .money-reduce[data-v-4d524e85], .money-row .money-add[data-v-4d524e85] {
    position: relative;
    top: 3px;
}
.money-row .money-num[data-v-4d524e85] {
    position: relative;
}
.footer[data-v-4d524e85] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #f5f5f5;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 2;
}
.next-btn[data-v-4d524e85] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.tip-desc[data-v-4d524e85] {
  color: #EE9900;
  background: #FFF6E8;
  padding: 8px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 6px;
}
.tip-desc .icon-warning[data-v-4d524e85] {
    width: 14px;
    height: 14px;
    position: relative;
    top: 2px;
}
.bank-tip[data-v-4d524e85] {
  text-align: left;
  color: #F8625D;
  font-size: 13px;
}
.popup-main[data-v-4d524e85] {
  width: 100%;
  padding: 10px 20px 20px;
  height: 500px;
  overflow: scroll;
}
.popup-title[data-v-4d524e85] {
  text-align: center;
  padding: 10px;
  color: #00A758;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #efefef;
  position: relative;
}
.popup-title img[data-v-4d524e85] {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    margin-top: 2px;
}
.popup-box[data-v-4d524e85] .van-picker__toolbar {
  font-size: 16px;
}
.popup-box[data-v-4d524e85] .van-picker__toolbar .van-picker__cancel {
    color: #5cae78;
}
.popup-box[data-v-4d524e85] .van-picker__toolbar .van-picker__confirm {
    color: #5cae78;
}
.popup-box[data-v-4d524e85] .van-picker__toolbar .van-ellipsis .van-picker__title {
    color: #333;
}
.put-money-input[data-v-4d524e85] {
  width: 100px;
}
.choose-address[data-v-4d524e85] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.choose-address .iconfont[data-v-4d524e85] {
    margin-right: 10px;
}
.btn-left[data-v-4d524e85] {
  text-align: center;
}
.btn-left .first-pay-box[data-v-4d524e85] {
    color: #f56c6c;
    font-weight: bold;
}
.btn-left .next-pay-box[data-v-4d524e85] {
    padding-top: 0px;
    color: #aaa;
    font-size: 12px;
}
.bank-tip[data-v-4d524e85] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bank-tip .grey-color[data-v-4d524e85] {
    color: #c5c5c5;
    height: 28px;
    line-height: 28px;
    min-width: 0.4rem;
    font-size: 14px;
}
.bank-tip .blank-color[data-v-4d524e85] {
    color: #666;
    height: 28px;
    line-height: 28px;
    min-width: 0.4rem;
    font-size: 14px;
}
.bank-tip .ols-select-allow-right[data-v-4d524e85]:after {
    border: 2px solid #999;
    border-bottom-width: 0;
    border-left-width: 0;
    content: "";
    top: 50%;
    right: 0.5rem;
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
}
.padding-right[data-v-4d524e85] {
  padding-right: 10px;
}

.swiper[data-v-48ca3b47] {
  position: relative;
}
.swiper-main[data-v-48ca3b47] {
  padding-top: 25px;
  width: 100%;
  position: relative;
}
.swiper-main .swiper-desc[data-v-48ca3b47] {
    padding-top: 4px;
    text-align: center;
    font-size: 12px;
    color: #666;
}
.age-point[data-v-48ca3b47] {
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 9px;
  height: 20px;
  width: 4px;
  border-radius: 2px;
  z-index: 1;
}
.age-point img[data-v-48ca3b47] {
    width: 15px;
    height: 12px;
}
.age-box[data-v-48ca3b47] {
  text-align: center;
  position: relative;
}
.age-box .age-list-box[data-v-48ca3b47] {
    margin: 0 auto;
    width: 100%;
}
.age-box .age-list-box .age-list-line[data-v-48ca3b47] {
      width: 1px;
      background: #d1d1d1;
      height: 4px;
      margin: 0 auto;
}
.age-box .age-list-box .age-list-x-line[data-v-48ca3b47] {
      height: 1px;
      background: #d1d1d1;
      position: absolute;
      top: 3px;
      left: -3px;
      right: -3px;
}
.age-box .age-list-box .age-list-num[data-v-48ca3b47] {
      margin: 5px auto;
      color: #93D5BD;
      font-weight: bold;
      font-size: 12px;
}
[data-v-48ca3b47].age-box:last-child .age-list-x-line {
  height: 1px;
  background: #d1d1d1;
  position: absolute;
  top: 3px;
  left: -3px;
  right: 50%;
}
[data-v-48ca3b47].age-box:first-child .age-list-x-line {
  height: 1px;
  background: #d1d1d1;
  position: absolute;
  top: 3px;
  left: 50%;
  right: -3px;
}
[data-v-48ca3b47].swiper-main .swiper-slide-active .age-list-num {
  color: #00A758;
  font-size: 14px;
}

.terms-page[data-v-1f092432] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2) !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.terms-page .terms-pop[data-v-1f092432] {
    width: 90%;
    max-height: 90%;
    overflow: auto;
    background-color: #fff;
    padding: 10px;
}
.terms-page .terms-pop .top-title[data-v-1f092432] {
      width: 100%;
      height: 30px;
      text-align: right;
}
.terms-page .terms-pop .top-title span[data-v-1f092432] {
        font-size: 18px;
}
.terms-page .terms-pop .title-center[data-v-1f092432] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly;
      justify-items: center;
      margin-bottom: 10px;
}
.terms-page .terms-pop .title-center h3[data-v-1f092432] {
        font-size: 16px;
}
.terms-page .terms-pop .text-center[data-v-1f092432] {
      width: 210px;
      font-size: 15px;
      margin: 0 auto;
}
.terms-page .terms-pop .terms-content[data-v-1f092432] {
      width: 210px;
      margin: 0 auto;
}
.terms-page .terms-pop .terms-content p[data-v-1f092432] {
        padding-top: 6px;
        font-size: 18px;
        color: #459855;
}
.terms-page .terms-pop .terms-content p .preview-left[data-v-1f092432] {
          text-align: left !important;
}
.terms-page .terms-pop .terms-content p .clauseTitle[data-v-1f092432] {
          color: red;
}
.terms-page .terms-pop .agreeBtnOne[data-v-1f092432] {
      background: #459855 !important;
}
.terms-page .terms-pop .clause[data-v-1f092432] {
      margin-top: 10px;
      font-size: 12px;
      padding-bottom: 20px;
      color: #333;
}
.terms-page .terms-pop .clause > div[data-v-1f092432] {
        width: 92%;
        margin: 0 auto;
        line-height: 20px;
}
.terms-page .terms-pop .clause > div .readAndAgree[data-v-1f092432] {
          position: relative;
          display: inline-block;
}
.terms-page .terms-pop .clause > div .readAndAgree .not-agree[data-v-1f092432] {
            position: absolute;
            left: 0;
            top: 0;
            line-height: 18px;
            font-size: 14px;
            color: #d0d0d0;
            width: 24px;
            z-index: 2;
}
.terms-page .terms-pop .clause > div .readAndAgree .agree[data-v-1f092432] {
            position: absolute;
            left: 0;
            top: 0;
            line-height: 18px;
            font-size: 14px;
            color: #888888;
            width: 24px;
            z-index: 1;
}
.terms-page .terms-pop .clause > div .readAndAgree span[data-v-1f092432] {
            text-indent: 25px;
}
.terms-page .terms-pop .agree-btn[data-v-1f092432] {
      width: 0px;
      margin: 0 auto;
      width: 76%;
      background: #666;
      text-align: center;
      margin-bottom: 16px;
      color: #fff;
      font-size: 16px;
      padding: 16px 0px;
}
.terms-page .terms-pop .agree-btn span[data-v-1f092432] {
        color: #fff;
        font-size: 16px;
        padding: 10px;
}

@charset "UTF-8";
*[data-v-4bc15c5a] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.preview[data-v-4bc15c5a] {
  display: inline-block;
}
.check[data-v-4bc15c5a] {
  font-size: 13px;
  color: #459855;
}
.triangle[data-v-4bc15c5a] {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #adadad;
  /*no*/
  border-right: 1px solid #adadad;
  /*no*/
  -webkit-transform: translateY(-35%) rotate(45deg);
          transform: translateY(-35%) rotate(45deg);
}
.section[data-v-4bc15c5a] {
  height: 90%;
  overflow-y: auto;
}
.section img[data-v-4bc15c5a] {
    width: 100%;
}
.scroll-bar[data-v-4bc15c5a]::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-bar[data-v-4bc15c5a]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mask-container .mask-pop[data-v-c9dfc628] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
  overflow: hidden;
}
.mask-container .mask-content[data-v-c9dfc628] {
  padding: 0 20px 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  color: #333;
  z-index: 111;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.mask-container .mask-content[data-v-c9dfc628] a {
    color: #079b4d;
    text-decoration: underline;
}
.mask-container .mask-content .mask-header[data-v-c9dfc628] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
.mask-container .mask-content .mask-header .close-btn[data-v-c9dfc628] {
      font-size: 20px;
}
.mask-container .mask-content .section div[data-v-c9dfc628] {
    font-size: 15px;
    line-height: 20px;
}
.mask-container .mask-content .section[data-v-c9dfc628] .section-title {
    padding: 10px 6px 10px 0px;
    font-size: 15px;
    color: #5cae78;
}
.mask-container .mask-content .section[data-v-c9dfc628] .section-title.toggle {
      position: relative;
      border-bottom: #e5e5e5 1px dashed;
      margin-right: 6px;
}
.mask-container .mask-content .section[data-v-c9dfc628] .section-title.toggle:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 3px;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg);
}
.mask-container .mask-content .section[data-v-c9dfc628] .section-title.toggle::after {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
}
.mask-container .mask-content .section[data-v-c9dfc628] .section-title.toggle.actived::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
}
.mask-container .mask-content .section[data-v-c9dfc628] .section-content {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: #e5e5e5 1px dashed;
}
.mask-container .mask-content .section[data-v-c9dfc628] .section-content.hide {
      display: none;
}
.mask-container .mask-content .section[data-v-c9dfc628] .section-content.actived {
      max-height: 999rem;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
              transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
}
.mask-container .mask-content .mask-footer[data-v-c9dfc628] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background: #5cae78;
}
.mask-container .mask-content .mask-button[data-v-c9dfc628] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.mask-container .mask-content .mask-button .submit-button[data-v-c9dfc628] {
      width: 100%;
      height: 40px;
      background: #666666;
      text-align: center;
}
.mask-container .mask-content .mask-button .submit-button span[data-v-c9dfc628] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}
.mask-container .mask-content .mask-button .submit-text[data-v-c9dfc628] {
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: red;
      text-align: center;
}
.mask-container .mask-content .mask-button .submitBack[data-v-c9dfc628] {
      background: #5cae78;
}
.mask-container .mask-content .mask-button .footer-button[data-v-c9dfc628] {
      width: 100%;
      height: 40px;
      background: #5cae78;
      text-align: center;
}
.mask-container .mask-content .mask-button .footer-button span[data-v-c9dfc628] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}

.mask-header .ly-tab .ly-tabbar {
  width: 100%;
  background: #F0F2F5;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list {
    padding: 0px;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list .ly-tab-item {
      display: inline-block;
      height: 50px;
      line-height: 50px;
      color: #333;
      text-decoration: none;
      margin: 0;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-active-bar {
    display: none;
}

.header[data-v-0f0bf879] {
  width: 100%;
  background-color: #F0F2F5;
}
.header[data-v-0f0bf879] .service-swiper {
    width: 100%;
    display: block;
    margin: auto;
    overflow-y: hidden;
    position: relative;
}
.header[data-v-0f0bf879] .service-swiper .swiper-wrapper .swiper-slide {
      width: auto !important;
      padding-right: 20px;
      margin-right: 0px !important;
      height: 45px;
      line-height: 45px;
      text-align: center;
}
.header[data-v-0f0bf879] .service-swiper .swiper-wrapper .swiper-slide .header_tab {
        font-size: 14px;
        color: #333;
        display: inline-block;
}
.header[data-v-0f0bf879] .service-swiper .swiper-wrapper .swiper-slide .activeheader {
        background: #fff;
        padding: 0px 8px;
}
.header[data-v-0f0bf879] .service-swiper .swiper-wrapper .swiper-slide .activeheaderOne {
        background: #fff;
        color: red;
        padding: 0px 8px;
}
.header[data-v-0f0bf879] .service-swiper .swiper-wrapper .swiper-slide .headerColor {
        color: red;
}

.ols-occupation {
  min-height: 28px;
  min-width: 1px;
  padding: 0;
}
.ols-occupation .ols-select-input {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: 0;
    position: absolute;
    visibility: hidden;
}
.ols-occupation .ols-select-content {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
    height: 28px;
    line-height: 28px;
    min-width: 0.4rem;
    text-align: left;
    color: #666;
}
.ols-occupation .ols-select-content:empty::before {
      content: attr(placeholder);
      color: #c5c5c5;
}
.ols-occupation .ols-select-allow-right:after {
    border: 2px solid #999;
    border-bottom-width: 0;
    border-left-width: 0;
    content: "";
    top: 50%;
    right: 0.5rem;
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
}

.occupationWrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: white;
  text-align: left;
  padding-top: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
}
.occupationWrapper .mint-header {
    border-bottom: 1px solid #e6e6e6;
}
.occupationWrapper .searchForm {
    width: 100%;
    height: 60px;
}
.occupationWrapper .occupationContainer {
    height: calc(100% - 44px);
    overflow: auto;
}
.occupationWrapper .occupationContainer .occupation-title {
      padding: 0.4rem;
      border-bottom: 1px solid #e6e6e6;
}
.occupationWrapper .occupationContainer .occupation-title .flex-cancel {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: nowrap;
            flex-flow: nowrap;
}
.occupationWrapper .occupationContainer .occupation-title .flex-cancel .occupation-inquireOne {
          border: 1px solid #e6e6e6;
          width: 100%;
          height: 40px;
          margin-bottom: 10px;
}
.occupationWrapper .occupationContainer .occupation-title .flex-none {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: nowrap;
            flex-flow: nowrap;
}
.occupationWrapper .occupationContainer .occupation-title .flex-none .cancel-button {
          width: 50%;
          height: 28px;
          border-radius: 4px;
          line-height: 28px;
          background: #9E9E9E;
          color: #ffffff;
          text-align: center;
          font-size: 14px;
}
.occupationWrapper .occupationContainer .occupation-title .flex-none .Inquire-button {
          width: 50%;
          height: 28px;
          border-radius: 4px;
          line-height: 28px;
          margin-left: 10px;
          background: #5cae78;
          color: #ffffff;
          text-align: center;
          font-size: 14px;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul {
        margin-top: 4px;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul li {
          padding: 10px;
          border-bottom: 1px dashed #e6e6e6;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul li:last-child {
          border-bottom: none;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul .liBack {
          background: #5cae78;
          color: #ffffff;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations {
        margin-bottom: 20px;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-title {
          font-size: 16px;
          padding-left: 0;
          padding-bottom: 0;
          border: none;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list span {
            background: #e6e6e6;
            padding: 4px;
            text-align: center;
            margin-right: 6px;
            margin-top: 10px;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list .spanBack {
            background: #5cae78;
            color: #ffffff;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list p {
            margin: 0 auto;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .title-selected .title-text {
        font-size: 16px;
        margin-bottom: 8px;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .title-selected .text {
        display: inline-block;
        max-width: 120px;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .title-selected .text-active {
        color: #5cae78;
}
.occupationWrapper .occupationList {
    width: 100%;
    height: 100%;
    max-height: 600px;
    overflow-y: auto;
}
.occupationWrapper .occupationList .occupationItem {
      padding: 0 10px;
      text-align: left;
      line-height: 1.0;
}
.occupationWrapper .occupationList .occupationItem .cell-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 16px 0;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        border-bottom: 1px solid #d9d9d9;
        /*background-image: -webkit-gradient(linear, bottom top, left bottom, from(#d9d9d9), color-stop(50%, #d9d9d9), color-stop(50%, transparent));*/
        /*background-image: linear-gradient(180deg, #d9d9d9, #d9d9d9 50%, transparent 50%);*/
        /*background-size: 100% 1px;*/
        /*background-repeat: no-repeat;*/
        /*background-position: bottom left;*/
        /*background-origin: border-box;*/
        /*-webkit-box-align: center;*/
}
.occupationWrapper .occupationList .occupationItem .text {
        font-size: 16px;
}
.occupationWrapper .occupationList .occupationItem .mint-cell-allow-right {
        position: relative;
}

.benefit-box[data-v-34723e7c] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.benefit-box .value-table[data-v-34723e7c] {
    width: 100%;
    height: 80%;
    position: fixed;
    left: 0;
    bottom: 0px;
    padding: 0 0 15px;
    min-height: 300px;
    z-index: 10;
    background: #fff;
    border: 1px solid #e6e6e6;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow-y: auto;
}
.benefit-box .value-table .value-top[data-v-34723e7c] {
      background: #fff;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
}
.benefit-box .value-table .value-top .value-title[data-v-34723e7c] {
        padding: 15px 0 15px 15px;
        font-size: 15px;
        position: relative;
}
.benefit-box .value-table .value-top .value-title img[data-v-34723e7c] {
          width: 20px;
          position: absolute;
          right: 15px;
}
.benefit-box .value-table .value-top .value-tips[data-v-34723e7c] {
        font-size: 12px;
        padding-left: 15px;
        padding-bottom: 15px;
        color: #939393;
}
.benefit-box .value-table .table-box[data-v-34723e7c] {
      padding: 82px 15px 0;
      height: 100%;
}
.benefit-box .value-table .table-box table[data-v-34723e7c] {
        width: 100%;
        border-right: 1px solid #fbe2b6;
        border-bottom: 1px solid #fbe2b6;
}
.benefit-box .value-table .table-box table td[data-v-34723e7c] {
          white-space: nowrap;
          text-align: center;
          border-top: 1px solid #fbe2b6;
          border-left: 1px solid #fbe2b6;
          padding: 6px 5px;
}
.benefit-box .value-table .table-box table .table-head[data-v-34723e7c] {
          font-size: 14px;
          font-weight: bold;
          background: #fdf6e6;
}
.benefit-box .value-table .table-box table .table-body[data-v-34723e7c] {
          font-size: 12px;
}

.ocr-wapper[data-v-3ee3361e] {
  text-align: left;
}
.ocr-wapper .ocr-mask[data-v-3ee3361e] {
    z-index: 10 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.ocr-wapper .ocr-container[data-v-3ee3361e] {
    padding: 18px;
    padding-bottom: 50px;
    width: 80%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 20;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 14px;
    background: #fff;
}
.ocr-wapper .ocr-container .section[data-v-3ee3361e] {
      overflow-y: auto;
      max-height: 70vh;
      -webkit-overflow-scrolling: touch;
}
.ocr-wapper .ocr-container .section[data-v-3ee3361e] .ols-form-list .ols-form-item {
        margin-left: 0;
}
.ocr-wapper .ocr-container .ocr-idcard[data-v-3ee3361e] {
      margin: 18px 0 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-3ee3361e],
      .ocr-wapper .ocr-container .ocr-idcard .back[data-v-3ee3361e] {
        position: relative;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        border-radius: 5px;
        overflow: hidden;
        background: #f6fff4;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-bottom[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-bottom[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-bottom[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-bottom[data-v-3ee3361e] {
          height: 40px;
          line-height: 40px;
          text-align: center;
          color: #5cae78;
          background-color: #eeeeee;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-show[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-show[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-show[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-show[data-v-3ee3361e] {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          width: 90%;
          height: 80%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .uplod-img[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .back .uplod-img[data-v-3ee3361e] {
          position: absolute;
          right: 0;
          top: 0;
          width: 15px;
}
.ocr-wapper .ocr-container .ocr-idcard .front .prev-img[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .back .prev-img[data-v-3ee3361e] {
          position: absolute;
          right: 0;
          top: 35%;
          width: 15px;
          z-index: 2222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-content[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-content[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-content[data-v-3ee3361e] {
          position: relative;
          padding: 5px;
          margin: 15px;
          height: 80px;
          background: url(../../assets/img/border.c960060.png);
          background-size: 100% 100%;
          z-index: 222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content .front-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .front .back-content .front-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .back .front-content .front-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .front-img[data-v-3ee3361e] {
            height: 100%;
            background: url(../../assets/img/front.875253b.png);
            background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content .back-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .front .back-content .back-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .back .front-content .back-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .back-img[data-v-3ee3361e] {
            height: 100%;
            background: url(../../assets/img/back.a64c20d.png);
            background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content .photo-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .front .back-content .photo-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .back .front-content .photo-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .photo-img[data-v-3ee3361e] {
            width: 43px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
}
.ocr-wapper .ocr-container .ocr-idcard .front .passport-content[data-v-3ee3361e],
        .ocr-wapper .ocr-container .ocr-idcard .back .passport-content[data-v-3ee3361e] {
          height: 150px;
}
.ocr-wapper .ocr-container .ocr-idcard .front .passport-content .front-img[data-v-3ee3361e],
          .ocr-wapper .ocr-container .ocr-idcard .back .passport-content .front-img[data-v-3ee3361e] {
            height: 100%;
            background: url(../../assets/img/passportbg.4406635.png);
            background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-3ee3361e] {
        margin-right: 10px;
}
.ocr-wapper .ocr-container .notice .notice-title[data-v-3ee3361e] {
      margin-bottom: 10px;
      color: #5cae78;
}
.ocr-wapper .ocr-container .notice ul[data-v-3ee3361e] {
      margin-bottom: 20px;
}
.ocr-wapper .ocr-container .notice ul li[data-v-3ee3361e] {
        font-size: 13px;
        margin-bottom: 5px;
        color: #b6b9c1;
}
.ocr-wapper .ocr-container .notice ul li span[data-v-3ee3361e] {
          color: #ee4d64;
}
.ocr-wapper .ocr-container .footer[data-v-3ee3361e] {
      position: absolute;
      left: 0;
      bottom: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      width: 100%;
      height: 50px;
      background: #f4f4f4;
}
.ocr-wapper .ocr-container .footer .confirm[data-v-3ee3361e],
      .ocr-wapper .ocr-container .footer .cancle[data-v-3ee3361e] {
        margin: 0 10px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: #fff;
        background: #5cae78;
}
.ocr-wapper .ocr-demo[data-v-3ee3361e] {
    width: 70%;
    height: 350px;
    padding: 20px 30px 50px;
    position: fixed;
    top: 55%;
    left: 50%;
    z-index: 12;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 14px;
    border-radius: 5px;
    background: #fff;
    z-index: 100 !important;
}
.ocr-wapper .ocr-demo .ocr-demo-title[data-v-3ee3361e] {
      font-size: 16px;
      text-align: center;
}
.ocr-wapper .ocr-demo .ocr-demo-content[data-v-3ee3361e] {
      margin: 20px 0 20px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content[data-v-3ee3361e] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content .right-img[data-v-3ee3361e] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          width: 50%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul[data-v-3ee3361e] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: right;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-3ee3361e] {
            position: relative;
            margin-bottom: 6px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-3ee3361e]:last-child {
              margin: 0;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-3ee3361e]::before {
              content: "";
              position: absolute;
              top: 50%;
              left: 30px;
              -webkit-transform: translate(-50%, -50%);
                      transform: translate(-50%, -50%);
              width: 13px;
              height: 13px;
              background: url(../../assets/img/icon-radio.c5723b7.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content[data-v-3ee3361e] {
        margin-top: 50px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul[data-v-3ee3361e] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li[data-v-3ee3361e] {
            overflow: hidden;
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
            -ms-flex-direction: column;
                flex-direction: column;
            -webkit-box-flex: 0;
                -ms-flex: none;
                    flex: none;
            -ms-flex-preferred-size: 58px;
                flex-basis: 58px;
            border-radius: 5px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li img[data-v-3ee3361e] {
              width: 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li .icon-error[data-v-3ee3361e] {
              position: absolute;
              left: 50%;
              bottom: 35px;
              -webkit-transform: translate(-50%, -50%);
                      transform: translate(-50%, -50%);
              width: 14px;
              height: 14px;
              background: url(../../assets/img/icon-error.50ba2e9.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li p[data-v-3ee3361e] {
              width: 100%;
              height: 50px;
              line-height: 50px;
              text-align: center;
              background-color: #f1f1f1;
}
.ocr-wapper .ocr-demo .ocr-demo-footer[data-v-3ee3361e] {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 45px;
      line-height: 45px;
      font-size: 15px;
      text-align: center;
      color: #fff;
      background: #5cae78;
}
.ocr-wapper .prev-mask[data-v-3ee3361e] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    z-index: 100;
}
.ocr-wapper .prev-mask img[data-v-3ee3361e] {
      width: 100%;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
}

.content-box[data-v-3f16a230] {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 8;
  font-size: 16px;
}
.content-box .box-container[data-v-3f16a230] {
    margin: auto;
    position: relative;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}
.content-box .box-container .title[data-v-3f16a230] {
      width: 100%;
      height: 40px;
      background: #009933;
      text-align: center;
      font-size: 18px;
      line-height: 40px;
      color: #fff;
}
.content-box .box-container .face[data-v-3f16a230] {
      width: 240px;
      height: 240px;
      padding-top: 20px;
}
.content-box .box-container .tips[data-v-3f16a230] {
      margin-bottom: 10px;
}
.content-box .box-container .tips .name[data-v-3f16a230] {
        color: #838fe1;
}
.content-box .box-container .get[data-v-3f16a230] {
      color: #00a64a;
}
.content-box .box-container .photo[data-v-3f16a230] {
      width: 80%;
      height: 40px;
      background: #00a64a;
      border-radius: 5px;
      text-align: center;
      margin-bottom: 10px;
}
.content-box .box-container .photo img[data-v-3f16a230] {
        width: 30px;
        padding-top: 8px;
}
.content-box .box-container .agreement-data[data-v-3f16a230] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      margin-bottom: 10px;
}
.content-box .box-container .agreement-data .checkbox-statu[data-v-3f16a230] {
        width: 20px;
        height: 20px;
        border: 1px solid;
}
.content-box .box-container .agreement-data .checkbox-statu img[data-v-3f16a230] {
          width: 20px;
}
.content-box .box-container .agreement-data .agree[data-v-3f16a230] {
        color: #009933;
}
.content-box .box-container .agreement-data .checkbox-data[data-v-3f16a230] {
        margin-left: 4px;
}
.content-box .box-container .agreement-data .checkbox-data a[data-v-3f16a230] {
          color: #009933;
          text-decoration: underline;
}
.content-box .box-container .precautions-list[data-v-3f16a230] {
      width: 100%;
      color: #999;
      line-height: 1.2;
      padding: 5px 28px;
      position: relative;
}
.content-box .box-container .precautions-list .text[data-v-3f16a230] {
        background: #f5f5f9;
        padding: 5px;
}
.content-box .box-container .btn[data-v-3f16a230] {
      width: 80%;
      height: 40px;
      background: #00a64a;
      line-height: 40px;
      position: absolute;
      text-align: center;
      bottom: 80px;
      font-size: 18px;
      border-radius: 5px;
}
.content-box .box-container .btn span[data-v-3f16a230] {
        color: #fff;
}

.pop-ups[data-v-3463f182] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}
.pop-ups .declare-authorization[data-v-3463f182] {
    margin: 0 auto;
    position: relative;
    top: 25%;
    width: 300px;
    max-height: 400px;
    background-color: #fff;
    overflow: auto;
}
.pop-ups .declare-authorization h4[data-v-3463f182] {
      text-align: center;
      padding: 20px 0px 15px 0px;
}
.pop-ups .declare-authorization h6[data-v-3463f182] {
      padding: 0px 15px 0px 15px;
}
.pop-ups .declare-authorization p[data-v-3463f182] {
      padding: 8px 15px 0px 15px;
      font-size: 12px;
      color: #333;
}
.pop-ups .declare-authorization .bottom-btn[data-v-3463f182] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      margin-top: 20px;
}
.pop-ups .declare-authorization .bottom-btn span[data-v-3463f182] {
        width: 50%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #ffffff;
}
.pop-ups .declare-authorization .bottom-btn .confirm-btn[data-v-3463f182] {
        background: #009933;
}
.pop-ups .declare-authorization .bottom-btn .cancel-btn[data-v-3463f182] {
        background: #666;
}

.confirm-info-box[data-v-64386139] {
  padding-bottom: 50px;
}
.ols-cell-group[data-v-64386139] {
  background: #fff;
}
.ols-form-item[data-v-64386139] {
  margin-left: 0.4rem;
  padding: 8px 0.4rem 8px 0;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-form-item[data-v-64386139]::after {
    display: none;
}
.ols-form-item[data-v-64386139]:last-of-type {
    border-bottom: none;
}
[data-v-64386139].min-height .ols-form-item-content .ols-viewer {
  height: 100%;
  padding-right: 10px;
}
[data-v-64386139].ols-form-list .ols-form-item-inner .ols-form-item-label {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  height: 100%;
  line-height: 28px;
  white-space: pre-wrap;
  color: #999;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 10px;
  line-height: 28px;
}
.footer[data-v-64386139] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #e1e1e1;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 2;
}
.footer .left-num[data-v-64386139] {
    float: left;
    background-color: #fff;
    text-align: center;
    width: 50%;
    color: #459855;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
}
.footer .left-num .V[data-v-64386139] {
      font-size: 14px;
      line-height: 50px;
      color: #333;
      margin-left: 10px;
}
.footer .right-but[data-v-64386139] {
    float: right;
    width: 50%;
    height: 50px;
    line-height: 50px;
    background-color: #e4e4e4;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.footer .right-but.butOk[data-v-64386139] {
      background-color: #5cae78;
}

.pay-detail[data-v-39479e8c] {
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-detail .main-content[data-v-39479e8c] {
    height: 100%;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.pay-detail .footer[data-v-39479e8c] {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.pay-result-box[data-v-9020dcf4] {
  background-color: #f5f5f5;
  width: 100%;
  height: 100vh;
}
.pay-result-box .pay-fail[data-v-9020dcf4] {
    background: #fff;
    padding: 60px 0 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.pay-result-box .pay-fail .successImage[data-v-9020dcf4] {
      width: 30%;
      height: 30%;
}
.pay-result-box .pay-fail .fail-text[data-v-9020dcf4] {
      padding: 12px 0 20px 0;
      font-size: 20px;
      color: #333;
}
.pay-result-box .pay-fail .fail-line[data-v-9020dcf4] {
      width: 64%;
      height: 1px;
      background-color: #e4e4e4;
}
.pay-result-box .pay-fail .fail-tip[data-v-9020dcf4] {
      padding-top: 20px;
      font-size: 16px;
      color: #333;
}
.pay-result-box .pay-container[data-v-9020dcf4] {
    padding-bottom: 50px;
    overflow-y: auto;
}
.pay-result-box .pay-container .header[data-v-9020dcf4] {
      width: 100%;
}
.pay-result-box .pay-container .toub-box[data-v-9020dcf4] {
      position: relative;
      margin: 0 auto;
      width: 80%;
      border-radius: 20px;
      overflow: hidden;
}
.pay-result-box .pay-container .toub-box[data-v-9020dcf4]::before {
        content: "";
        position: absolute;
        top: 80px;
        left: -15px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #f5f5f5;
}
.pay-result-box .pay-container .toub-box[data-v-9020dcf4]::after {
        content: "";
        position: absolute;
        top: 80px;
        right: -15px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #f5f5f5;
}
.pay-result-box .pay-container .toub-box .toub-title[data-v-9020dcf4] {
        height: 80px;
        line-height: 80px;
        font-size: 22px;
        text-align: center;
        color: #fff;
        font-weight: 600;
        background-color: #169248;
}
.pay-result-box .pay-container .toub-box .toub-content[data-v-9020dcf4] {
        height: 80px;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -ms-flex-direction: column;
            flex-direction: column;
        text-align: center;
        font-size: 15px;
        color: #333;
}

@charset "UTF-8";
.view[data-v-7b6f40eb] {
  background-color: #fff;
}
.view h2[data-v-7b6f40eb] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-7b6f40eb] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-7b6f40eb] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .children-wrap[data-v-7b6f40eb] {
    padding-top: 15px;
    padding-bottom: 65px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .children-title[data-v-7b6f40eb] {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.view .sub-wrap .clause[data-v-7b6f40eb] .qes {
    position: relative;
}
.view .sub-wrap .clause[data-v-7b6f40eb] .qes .answer-box {
      width: 60px;
      position: absolute;
      top: 3px;
      right: -60px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap .clause[data-v-7b6f40eb] .qes .answer-box .check-box {
        position: relative;
        width: 16px;
        height: 16px;
        border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-7b6f40eb] .qes .answer-box .check-box.check::before {
          content: "\2713";
          position: absolute;
          width: 100%;
          text-align: center;
          line-height: 16px;
}
.view .sub-wrap .clause img[data-v-7b6f40eb] {
    width: 100%;
}
.view .sub-wrap .clause p[data-v-7b6f40eb] {
    margin-bottom: 6px;
    color: #333;
    font-size: 12px;
}
.view .footer[data-v-7b6f40eb] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-7b6f40eb] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-7b6f40eb] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-7b6f40eb] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-7b6f40eb] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-7b6f40eb] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-7b6f40eb] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-7b6f40eb] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

@charset "UTF-8";
.footer[data-v-3b2fd00d] {
  position: relative;
  z-index: 100;
}
#headerImage[data-v-3b2fd00d] {
  width: 100%;
  min-height: 5rem;
  vertical-align: middle;
  height: 100%;
}
.videobox[data-v-3b2fd00d] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
}
.videobox .positonPng[data-v-3b2fd00d] {
    width: 76px;
    position: absolute;
    top: 31%;
    z-index: 100;
}
.videobox .time-box[data-v-3b2fd00d] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    bottom: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 100;
    width: 100%;
    padding: 0 35px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.videobox .time-box #playProgress[data-v-3b2fd00d] {
      background-color: #999;
      width: 100%;
      height: 3px;
      position: relative;
      border-radius: 1.5px;
}
.videobox .time-box #playProgress #progressWrap[data-v-3b2fd00d] {
        position: absolute;
        background-color: #fff;
        height: 3px;
        border-radius: 1.5px;
}
.videobox .time-box .time—text[data-v-3b2fd00d] {
      color: #fff;
      margin-left: 20px;
      font-size: 14px;
}
.videobox #headervideo[data-v-3b2fd00d] {
    position: absolute;
    width: 100%;
    min-height: 5rem;
}
.videobox .left-img[data-v-3b2fd00d] {
    position: absolute;
    left: 15px;
    width: 20px;
    top: 5px;
}
.videobox .right-img[data-v-3b2fd00d] {
    position: absolute;
    right: 15px;
    top: 5px;
    width: 20px;
}
.forwardimg[data-v-3b2fd00d] {
  width: 184px;
  position: fixed;
  right: 25px;
  bottom: 90px;
  z-index: 2;
}
.pop1[data-v-3b2fd00d] {
  display: block;
  margin: 200px auto;
  width: 67%;
}
.forwardbox[data-v-3b2fd00d] {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 3;
}
.detail-container[data-v-3b2fd00d] {
  color: #333;
  background-color: #fff;
}
.detail-container .line[data-v-3b2fd00d] {
    height: 10px;
    background-color: #f7f7f7;
}
.detail-container .duty[data-v-3b2fd00d] {
    padding: 0 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 50px;
    line-height: 50px;
    border-top: 10px solid #f7f7f7;
}
.detail-container .duty .duty-content[data-v-3b2fd00d] {
      position: relative;
      padding-right: 10px;
      color: #5cae78;
}
.detail-container .duty .duty-content[data-v-3b2fd00d]:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 0;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
}
.detail-container .navWrap[data-v-3b2fd00d] {
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #e4e4e4;
    border-bottom: none;
}
.detail-container .navWrap .versions[data-v-3b2fd00d] {
      text-align: center;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      height: 40px;
      line-height: 40px;
      font-size: 15px;
      color: #333;
      background-color: #f7f7f7;
      border-right: 1px solid #e4e4e4;
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.detail-container .navWrap .versions[data-v-3b2fd00d]:last-child {
        border-right: none;
}
.detail-container .navWrap .versions.recommend[data-v-3b2fd00d]::before {
        content: "";
        background: url(../../assets/img/icon-recommend.f2c0e0b.png);
        background-size: 100% 100%;
        width: 36px;
        height: 36px;
        position: absolute;
        top: -3px;
        right: -4px;
}
.detail-container .navWrap .versions.active[data-v-3b2fd00d] {
        background-color: #5cae78;
        color: #fff;
}
.detail-container .navWrap .versions.active[data-v-3b2fd00d]::after {
          content: "";
          width: 0px;
          height: 0px;
          border: solid 10px transparent;
          border-bottom-color: #fff;
          position: absolute;
          bottom: -1px;
          left: 50%;
          -webkit-transform: translate(-50%, 0);
                  transform: translate(-50%, 0);
          z-index: 2;
}
.detail-container .electronic-card[data-v-3b2fd00d] {
    margin: 10px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 0 20px #eef4f7;
    box-shadow: 0 0 20px #eef4f7;
    border-radius: 8px;
}
.detail-container .electronic-card .card-img[data-v-3b2fd00d] {
      margin-right: 14px;
}
.detail-container .electronic-card .card-img img[data-v-3b2fd00d] {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
}
.detail-container .electronic-card .card-information .card-name[data-v-3b2fd00d] {
      font-size: 14px;
      color: #00a758;
      font-weight: bold;
}
.detail-container .electronic-card .card-information .card-contactDetails[data-v-3b2fd00d] {
      font-size: 12px;
      color: #00a758;
}
.detail-container .electronic-card .card-information .card-contactDetails a[data-v-3b2fd00d] {
        font-size: 12px;
}
.detail-container .electronic-card .card-information p[data-v-3b2fd00d] {
      font-size: 12px;
      color: #666666;
}
.detail-container .tab-container .tab-title[data-v-3b2fd00d] {
    padding-left: 10px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
}
a[data-v-3b2fd00d]:link {
  text-decoration: none;
  font-size: 20px;
  /*px*/
  text-align: center;
  margin-right: 10px;
  margin-right: 10px;
}
.outside[data-v-3b2fd00d] {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.guide-box[data-v-3b2fd00d] {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.guide-box .guide-content[data-v-3b2fd00d] {
    position: absolute;
    right: 8px;
    top: 40px;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, right top, from(#00c46e), to(#00A859));
    background: linear-gradient(to right, #00c46e, #00A859);
    padding: 8px 15px;
}
.guide-box .guide-content .guide-text[data-v-3b2fd00d] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      font-size: 14px;
      color: #fff;
      line-height: 1.8;
}
.guide-box .guide-content .guide-text .guide-btn[data-v-3b2fd00d] {
        border: 1px solid #fff;
        border-radius: 15px;
        padding: 3px 10px;
        margin-right: 8px;
        font-size: 12px;
        line-height: initial;
}
.guide-box .guide-content .guide-arrow[data-v-3b2fd00d] {
      width: 0px;
      height: 0px;
      border: 7px solid transparent;
      border-bottom-color: #00A859;
      position: absolute;
      top: -14px;
      right: 14px;
}
.guide-box .guide-content .guide-arrow .guide-line[data-v-3b2fd00d] {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        bottom: 0;
        width: 1px;
        height: 50px;
        background: #00A859;
}

.ols-cell-group[data-v-5e2e9884] {
  margin-left: 0.4rem;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-cell-group .ols-form-item[data-v-5e2e9884] {
    margin: 0;
}
.ols-cell-group .ols-form-item[data-v-5e2e9884] .ols-form-item-label {
      -ms-flex-preferred-size: 125px;
          flex-basis: 125px;
      color: #333;
}
.ols-cell-group[data-v-5e2e9884]:last-of-type {
    border-bottom: none;
}
.fade-enter-active[data-v-5e2e9884],
.fade-leave-active[data-v-5e2e9884] {
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
.fade-enter[data-v-5e2e9884],
.fade-leave-to[data-v-5e2e9884] {
  opacity: 0;
}
.mask-pop[data-v-5e2e9884] {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
}
#footer[data-v-5e2e9884] {
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 -3px 3px #eaeaea;
          box-shadow: 0 -3px 3px #eaeaea;
  position: fixed;
  bottom: 0;
  z-index: 10;
  color: #afafaf;
  /*height: 49px;*/
  font-style: normal;
}
#footer .color-red[data-v-5e2e9884] {
    color: #e81c34;
}
#footer .btn-left[data-v-5e2e9884] {
    color: #333;
    font-size: 14px;
    /*px*/
}
#footer .btn-left .newPrice[data-v-5e2e9884] {
      font-size: 18px;
      /*px*/
}
.next-btn[data-v-5e2e9884] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.left[data-v-5e2e9884] {
  width: 50%;
  float: left;
  text-align: center;
  line-height: 49px;
  margin: 0 auto;
}
.top[data-v-5e2e9884] {
  font-size: 14px;
  color: #afafaf;
  text-align: center;
}
.right[data-v-5e2e9884] {
  width: 50%;
  float: right;
  background: #5cae78;
  font-size: 14px;
  /*px*/
  line-height: 49px;
  color: #fff;
  text-align: center;
}

.info-container .radio-box[data-v-c97a865e] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 100px;
  padding-top: 10px;
}
.info-container .radio-box .radio-btn[data-v-c97a865e] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    background-color: #00A758;
    position: relative;
    margin-right: 2px;
}
.info-container .radio-box .radio-btn[data-v-c97a865e]:after {
      content: "";
      position: absolute;
      left: 2px;
      top: 3px;
      width: 7px;
      height: 3px;
      border: 2px solid #fff;
      border-radius: 1px;
      border-top: none;
      border-right: none;
      background: transparent;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
}
.info-container .radio-box .radio-not-btn[data-v-c97a865e] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    margin-right: 2px;
}
.info-container .clause-box[data-v-c97a865e] {
  width: 100%;
  background-color: #fff;
}
.info-container .clause-box .clause-health[data-v-c97a865e] {
    width: 92%;
    margin: 0 auto;
    padding-top: 10px;
    line-height: 20px;
    font-size: 12px;
    color: #333;
}
.info-container .clause-box .clause-health .readAndAgree[data-v-c97a865e] {
      position: relative;
}
.info-container .clause-box .clause-health .readAndAgree .not-agree[data-v-c97a865e] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.info-container .clause-box .clause-health .agree[data-v-c97a865e] {
      line-height: 18px;
      font-size: 14px;
      color: #888888;
      width: 24px;
      z-index: 1;
}
.info-container .clause-box .clause-health .clause-title[data-v-c97a865e] {
      display: inline-block;
      text-decoration: underline;
      color: #459855;
}
.info-container .main[data-v-c97a865e] {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.info-container .form .form-group[data-v-c97a865e] {
  margin-top: 15px;
}
.info-container .form .ols-form-item[data-v-c97a865e] {
  margin-left: 0.4rem;
  padding: 0.4rem 0.4rem 0.4rem 0;
}
.info-container .form .ols-form-item[data-v-c97a865e] .ols-form-item-label {
    -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
}
.info-container .form .ols-form-item[data-v-c97a865e] .ols-form-item-content {
    overflow: hidden;
}
.info-container .form .ols-form-item[data-v-c97a865e] .ols-form-item-content .ols-viewer {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.info-container .form .phone-square[data-v-c97a865e] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.info-container .form .phone-square[data-v-c97a865e] .ols-form-item-content .ols-input {
    width: 40%;
}
.info-container .form .phone-square[data-v-c97a865e] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.info-container .form .phone-square[data-v-c97a865e] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      color: red;
}
.info-container .beneficiary-text[data-v-c97a865e] {
  padding: 10px 15px;
  color: #666;
  background-color: #f4f4f4;
}
.info-container .color-red[data-v-c97a865e] {
  color: #e81c34;
}
.info-container .btn-left[data-v-c97a865e] {
  color: #333;
  font-size: 14px;
  /*px*/
}
.info-container .btn-left .newPrice[data-v-c97a865e] {
    font-size: 18px;
    /*px*/
}
.info-container .bottom-height[data-v-c97a865e] {
  width: 100%;
  height: 1px;
  padding-bottom: 60px;
}
.info-container .clause[data-v-c97a865e] {
  font-size: 12px;
  color: #333;
  margin-bottom: 0px;
}
.info-container .clause > div[data-v-c97a865e] {
    width: 92%;
    margin: 0 auto;
    line-height: 20px;
}
.info-container .clause > div .readAndAgree[data-v-c97a865e] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
}
.info-container .clause > div .readAndAgree .not-agree[data-v-c97a865e] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.info-container .clause > div .readAndAgree .agree[data-v-c97a865e] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.info-container .clause > div .clause-title[data-v-c97a865e] {
      display: inline-block;
      text-decoration: underline;
      color: #459855;
}
.info-container .footer[data-v-c97a865e] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #f5f5f5;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 10;
}
.info-container .automatic-renewal[data-v-c97a865e] {
  padding: 16px;
}
.info-container .automatic-renewal .renewal-title[data-v-c97a865e] {
    margin-bottom: 20px;
    font-size: 15px;
    color: #000000;
    font-weight: 800;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.info-container .automatic-renewal .renewal-title span[data-v-c97a865e] {
      display: inline-block;
      background: #E39D2D;
      font-size: 14px;
      color: #ffffff;
      margin-left: 6px;
      padding: 2px 10px;
      border-radius: 10px 10px 10px 0;
}
.info-container .automatic-renewal .renewal-title[data-v-c97a865e] .mint-switch-core {
      background: #fff;
}
.info-container .automatic-renewal .renewal-title[data-v-c97a865e] .mint-switch-input:checked + .mint-switch-core {
      border-color: #5cae78;
      background-color: #5cae78;
}
.info-container .automatic-renewal .renewal-title[data-v-c97a865e] .mint-switch-core::before {
      background-color: transparent;
}
.info-container .automatic-renewal .renewal-description[data-v-c97a865e] {
    width: 100%;
    background: #f4f5f7;
    position: relative;
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
}
.info-container .automatic-renewal .renewal-description p[data-v-c97a865e] {
      font-size: 15px;
      color: #000;
      font-weight: 800;
      margin-bottom: 6px;
}
.info-container .automatic-renewal .renewal-description ul li[data-v-c97a865e] {
      font-size: 14px;
      color: #7B7B7B;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.info-container .automatic-renewal .renewal-description ul li .title[data-v-c97a865e] {
        padding-left: 5px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}
.info-container .automatic-renewal .open-state[data-v-c97a865e] :before {
    content: '';
    width: 0px;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f4f5f7;
    position: absolute;
    top: -40px;
    left: 22px;
}
.info-container .automatic-renewal .unopened-state[data-v-c97a865e]:before {
    content: '';
    width: 0px;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f4f5f7;
    position: absolute;
    top: -40px;
    right: 109px;
}
.info-container .choose-address[data-v-c97a865e] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.info-container .choose-address .iconfont[data-v-c97a865e] {
    margin-right: 10px;
}
.info-container[data-v-c97a865e] .insured-address .ols-form-item-content {
  position: relative;
}
.info-container[data-v-c97a865e] .insured-address .ols-form-item-content .address-text {
    position: absolute;
    left: 0;
    z-index: 11;
    background-color: #fff;
    color: #666;
}
.fixed-box[data-v-c97a865e] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fixed-box .box-content[data-v-c97a865e] {
    width: 90%;
    background: #fff;
    border-radius: 0.08rem;
    overflow: auto;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 11;
    border-radius: 0.08rem;
}
.fixed-box .box-content .close[data-v-c97a865e] {
      position: absolute;
      right: 0;
      top: 0;
      width: 40px;
      height: 40px;
      font-size: 20px;
      text-align: center;
      line-height: 40px;
      color: #ccc;
}
.fixed-box .box-content .box-title[data-v-c97a865e] {
      text-align: center;
      line-height: 40px;
      border-bottom: 1px solid #e6e6e6;
      font-size: 18px;
      color: #424242;
}
.fixed-box .box-content .box-text[data-v-c97a865e] {
      padding: 10px 0;
      border-bottom: 1px solid #e6e6e6;
      font-size: 18px;
}
.fixed-box .box-content .box-text p[data-v-c97a865e] {
        padding: 12px 20px;
        font-size: 16px;
        line-height: 22px;
        color: #424242;
        font: initial;
}
.fixed-box .box-content .box-btn[data-v-c97a865e] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 45px;
      font-size: 16px;
      outline: none;
      border: none;
      background: #5cae78;
      color: #fff;
}
.next-btn[data-v-c97a865e] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.ols-form-list .ols-form-item .ols-form-item-label[data-v-c97a865e] {
  -ms-flex-preferred-size: 115px;
      flex-basis: 115px;
}

.ocr-wapper[data-v-83423702] {
  text-align: left;
}
.ocr-wapper .ocr-mask[data-v-83423702] {
    z-index: 10 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
}
.ocr-wapper .ocr-container[data-v-83423702] {
    padding: 18px;
    padding-bottom: 50px;
    width: 80%;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 20;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 14px;
    background: #fff;
}
.ocr-wapper .ocr-container .section[data-v-83423702] {
      overflow-y: auto;
      max-height: 70vh;
      -webkit-overflow-scrolling: touch;
}
.ocr-wapper .ocr-container .section[data-v-83423702] .ols-form-list .ols-form-item {
        margin-left: 0;
}
.ocr-wapper .ocr-container .ocr-idcard[data-v-83423702] {
      margin: 18px 0 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-83423702],
      .ocr-wapper .ocr-container .ocr-idcard .back[data-v-83423702] {
        position: relative;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        border-radius: 5px;
        overflow: hidden;
        background: #f6fff4;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-bottom[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-bottom[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-bottom[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-bottom[data-v-83423702] {
          height: 40px;
          line-height: 40px;
          text-align: center;
          color: #5cae78;
          background-color: #eeeeee;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-show[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-show[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-show[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-show[data-v-83423702] {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%);
          width: 90%;
          height: 80%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .uplod-img[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .back .uplod-img[data-v-83423702] {
          position: absolute;
          right: 0;
          top: 0;
          width: 15px;
}
.ocr-wapper .ocr-container .ocr-idcard .front .prev-img[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .back .prev-img[data-v-83423702] {
          position: absolute;
          right: 0;
          top: 35%;
          width: 15px;
          z-index: 2222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .front .back-content[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .back .front-content[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .back .back-content[data-v-83423702] {
          position: relative;
          padding: 5px;
          margin: 15px;
          height: 80px;
          background: url(../../assets/img/border.c960060.png);
          background-size: 100% 100%;
          z-index: 222;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content .front-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .front .back-content .front-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .back .front-content .front-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .front-img[data-v-83423702] {
            height: 100%;
            background: url(../../assets/img/front.875253b.png);
            background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content .back-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .front .back-content .back-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .back .front-content .back-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .back-img[data-v-83423702] {
            height: 100%;
            background: url(../../assets/img/back.a64c20d.png);
            background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front .front-content .photo-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .front .back-content .photo-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .back .front-content .photo-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .back .back-content .photo-img[data-v-83423702] {
            width: 43px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
}
.ocr-wapper .ocr-container .ocr-idcard .front .passport-content[data-v-83423702],
        .ocr-wapper .ocr-container .ocr-idcard .back .passport-content[data-v-83423702] {
          height: 150px;
}
.ocr-wapper .ocr-container .ocr-idcard .front .passport-content .front-img[data-v-83423702],
          .ocr-wapper .ocr-container .ocr-idcard .back .passport-content .front-img[data-v-83423702] {
            height: 100%;
            background: url(../../assets/img/passportbg.4406635.png);
            background-size: 100% 100%;
}
.ocr-wapper .ocr-container .ocr-idcard .front[data-v-83423702] {
        margin-right: 10px;
}
.ocr-wapper .ocr-container .notice .notice-title[data-v-83423702] {
      margin-bottom: 10px;
      color: #5cae78;
}
.ocr-wapper .ocr-container .notice ul[data-v-83423702] {
      margin-bottom: 20px;
}
.ocr-wapper .ocr-container .notice ul li[data-v-83423702] {
        font-size: 13px;
        margin-bottom: 5px;
        color: #b6b9c1;
}
.ocr-wapper .ocr-container .notice ul li span[data-v-83423702] {
          color: #ee4d64;
}
.ocr-wapper .ocr-container .footer[data-v-83423702] {
      position: absolute;
      left: 0;
      bottom: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      width: 100%;
      height: 50px;
      background: #f4f4f4;
}
.ocr-wapper .ocr-container .footer .confirm[data-v-83423702],
      .ocr-wapper .ocr-container .footer .cancle[data-v-83423702] {
        margin: 0 10px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: #fff;
        background: #5cae78;
}
.ocr-wapper .ocr-demo[data-v-83423702] {
    width: 70%;
    height: 350px;
    padding: 20px 30px 50px;
    position: fixed;
    top: 55%;
    left: 50%;
    z-index: 12;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 14px;
    border-radius: 5px;
    background: #fff;
    z-index: 100 !important;
}
.ocr-wapper .ocr-demo .ocr-demo-title[data-v-83423702] {
      font-size: 16px;
      text-align: center;
}
.ocr-wapper .ocr-demo .ocr-demo-content[data-v-83423702] {
      margin: 20px 0 20px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content[data-v-83423702] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content .right-img[data-v-83423702] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          width: 50%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul[data-v-83423702] {
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: right;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-83423702] {
            position: relative;
            margin-bottom: 6px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-83423702]:last-child {
              margin: 0;
}
.ocr-wapper .ocr-demo .ocr-demo-content .right-content ul li[data-v-83423702]::before {
              content: "";
              position: absolute;
              top: 50%;
              left: 30px;
              -webkit-transform: translate(-50%, -50%);
                      transform: translate(-50%, -50%);
              width: 13px;
              height: 13px;
              background: url(../../assets/img/icon-radio.c5723b7.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content[data-v-83423702] {
        margin-top: 50px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul[data-v-83423702] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li[data-v-83423702] {
            overflow: hidden;
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 1;
                -ms-flex: 1;
                    flex: 1;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
            -ms-flex-direction: column;
                flex-direction: column;
            -webkit-box-flex: 0;
                -ms-flex: none;
                    flex: none;
            -ms-flex-preferred-size: 58px;
                flex-basis: 58px;
            border-radius: 5px;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li img[data-v-83423702] {
              width: 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li .icon-error[data-v-83423702] {
              position: absolute;
              left: 50%;
              bottom: 35px;
              -webkit-transform: translate(-50%, -50%);
                      transform: translate(-50%, -50%);
              width: 14px;
              height: 14px;
              background: url(../../assets/img/icon-error.50ba2e9.png);
              background-size: 100% 100%;
}
.ocr-wapper .ocr-demo .ocr-demo-content .error-content ul li p[data-v-83423702] {
              width: 100%;
              height: 50px;
              line-height: 50px;
              text-align: center;
              background-color: #f1f1f1;
}
.ocr-wapper .ocr-demo .ocr-demo-footer[data-v-83423702] {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 45px;
      line-height: 45px;
      font-size: 15px;
      text-align: center;
      color: #fff;
      background: #5cae78;
}
.ocr-wapper .prev-mask[data-v-83423702] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    z-index: 100;
}
.ocr-wapper .prev-mask img[data-v-83423702] {
      width: 100%;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
}

@charset "UTF-8";
*[data-v-0a1acd4a] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.preview[data-v-0a1acd4a] {
  display: inline-block;
}
.check[data-v-0a1acd4a] {
  font-size: 13px;
  color: #459855;
}
.triangle[data-v-0a1acd4a] {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #adadad;
  /*no*/
  border-right: 1px solid #adadad;
  /*no*/
  -webkit-transform: translateY(-35%) rotate(45deg);
          transform: translateY(-35%) rotate(45deg);
}
.section[data-v-0a1acd4a] {
  height: 90%;
  overflow: auto;
}
.section img[data-v-0a1acd4a] {
    width: 100%;
}
.scroll-bar[data-v-0a1acd4a]::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-bar[data-v-0a1acd4a]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mask-container .mask-pop[data-v-14ecb77e] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
  overflow: hidden;
}
.mask-container .mask-content[data-v-14ecb77e] {
  padding: 0 20px 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  color: #333;
  z-index: 111;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.mask-container .mask-content[data-v-14ecb77e] a {
    color: #079b4d;
    text-decoration: underline;
}
.mask-container .mask-content .mask-header[data-v-14ecb77e] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
.mask-container .mask-content .mask-header .close-btn[data-v-14ecb77e] {
      font-size: 20px;
}
.mask-container .mask-content .section div[data-v-14ecb77e] {
    font-size: 15px;
    line-height: 20px;
}
.mask-container .mask-content .section[data-v-14ecb77e] .section-title {
    padding: 10px 6px 10px 0px;
    font-size: 15px;
    color: #5cae78;
}
.mask-container .mask-content .section[data-v-14ecb77e] .section-title.toggle {
      position: relative;
      border-bottom: #e5e5e5 1px dashed;
      margin-right: 6px;
}
.mask-container .mask-content .section[data-v-14ecb77e] .section-title.toggle:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 3px;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg);
}
.mask-container .mask-content .section[data-v-14ecb77e] .section-title.toggle::after {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
}
.mask-container .mask-content .section[data-v-14ecb77e] .section-title.toggle.actived::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
}
.mask-container .mask-content .section[data-v-14ecb77e] .section-content {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: #e5e5e5 1px dashed;
}
.mask-container .mask-content .section[data-v-14ecb77e] .section-content.hide {
      display: none;
}
.mask-container .mask-content .section[data-v-14ecb77e] .section-content.actived {
      max-height: 999rem;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
              transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
}
.mask-container .mask-content .mask-footer[data-v-14ecb77e] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background: #5cae78;
}
.mask-container .mask-content .mask-button[data-v-14ecb77e] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.mask-container .mask-content .mask-button .submit-button[data-v-14ecb77e] {
      width: 100%;
      height: 40px;
      background: #666666;
      text-align: center;
}
.mask-container .mask-content .mask-button .submit-button span[data-v-14ecb77e] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}
.mask-container .mask-content .mask-button .submit-text[data-v-14ecb77e] {
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: red;
      text-align: center;
}
.mask-container .mask-content .mask-button .submitBack[data-v-14ecb77e] {
      background: #5cae78;
}
.mask-container .mask-content .mask-button .footer-button[data-v-14ecb77e] {
      width: 100%;
      height: 40px;
      background: #5cae78;
      text-align: center;
}
.mask-container .mask-content .mask-button .footer-button span[data-v-14ecb77e] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}

.mask-header .ly-tab .ly-tabbar {
  width: 100%;
  background: #F0F2F5;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list {
    padding: 0px;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list .ly-tab-item {
      display: inline-block;
      height: 50px;
      line-height: 50px;
      color: #333;
      text-decoration: none;
      margin: 0;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-active-bar {
    display: none;
}

.header[data-v-2933b3c2] {
  width: 100%;
  background-color: #F0F2F5;
}
.header[data-v-2933b3c2] .service-swiper {
    width: 100%;
    display: block;
    margin: auto;
    overflow-y: hidden;
    position: relative;
}
.header[data-v-2933b3c2] .service-swiper .swiper-wrapper .swiper-slide {
      width: auto !important;
      padding-right: 20px;
      margin-right: 0px !important;
      height: 45px;
      line-height: 45px;
      text-align: center;
}
.header[data-v-2933b3c2] .service-swiper .swiper-wrapper .swiper-slide .header_tab {
        font-size: 14px;
        color: #333;
        display: inline-block;
}
.header[data-v-2933b3c2] .service-swiper .swiper-wrapper .swiper-slide .activeheader {
        background: #fff;
        padding: 0px 8px;
}
.header[data-v-2933b3c2] .service-swiper .swiper-wrapper .swiper-slide .activeheaderOne {
        background: #fff;
        color: red;
        padding: 0px 8px;
}
.header[data-v-2933b3c2] .service-swiper .swiper-wrapper .swiper-slide .headerColor {
        color: red;
}

.terms-page[data-v-01a05450] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 12;
}
.terms-page .terms-pop[data-v-01a05450] {
    margin: auto;
    position: relative;
    top: 15%;
    left: 0;
    width: 80%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}
.terms-page .terms-pop .top-title[data-v-01a05450] {
      width: 100%;
      height: 30px;
      text-align: center;
}
.terms-page .terms-pop .top-title .title-text[data-v-01a05450] {
        font-size: 18px;
        color: #000;
}
.terms-page .terms-pop .top-title .clost-img[data-v-01a05450] {
        font-size: 18px;
}
.terms-page .terms-pop .product-name[data-v-01a05450] {
      text-align: center;
      font-size: 14px;
}
.terms-page .terms-pop .prompt-content[data-v-01a05450] {
      margin: 10px 0px 10px 0px;
      max-height: 200px;
      overflow: auto;
}
.terms-page .terms-pop .prompt-content .text-amount[data-v-01a05450] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 20px;
}
.terms-page .terms-pop .text-p[data-v-01a05450] {
      font-size: 12px;
      color: red;
      margin-bottom: 10px;
      padding: 0;
}
.terms-page .terms-pop .bottom-btn[data-v-01a05450] {
      display: inline-block;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.terms-page .terms-pop .bottom-btn .btn-click[data-v-01a05450] {
        width: 100%;
        background: #088E08;
        padding: 10px 0px;
        color: #fff;
        border-radius: 4px;
        font-size: 16px;
        text-align: center;
}

.content-box[data-v-4362431c] {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  font-size: 16px;
}
.content-box .box-container[data-v-4362431c] {
    margin: auto;
    position: relative;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}
.content-box .box-container .title[data-v-4362431c] {
      width: 100%;
      height: 40px;
      background: #009933;
      text-align: center;
      font-size: 18px;
      line-height: 40px;
      color: #fff;
}
.content-box .box-container .face[data-v-4362431c] {
      width: 240px;
      height: 240px;
      padding-top: 20px;
}
.content-box .box-container .tips[data-v-4362431c] {
      margin-bottom: 10px;
}
.content-box .box-container .tips .name[data-v-4362431c] {
        color: #838fe1;
}
.content-box .box-container .get[data-v-4362431c] {
      color: #00a64a;
}
.content-box .box-container .photo[data-v-4362431c] {
      width: 80%;
      height: 40px;
      background: #00a64a;
      border-radius: 5px;
      text-align: center;
      margin-bottom: 10px;
}
.content-box .box-container .photo img[data-v-4362431c] {
        width: 30px;
        padding-top: 8px;
}
.content-box .box-container .agreement-data[data-v-4362431c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      margin-bottom: 10px;
}
.content-box .box-container .agreement-data .checkbox-statu[data-v-4362431c] {
        width: 20px;
        height: 20px;
        border: 1px solid;
}
.content-box .box-container .agreement-data .checkbox-statu img[data-v-4362431c] {
          width: 20px;
}
.content-box .box-container .agreement-data .agree[data-v-4362431c] {
        color: #009933;
}
.content-box .box-container .agreement-data .checkbox-data[data-v-4362431c] {
        margin-left: 4px;
}
.content-box .box-container .agreement-data .checkbox-data a[data-v-4362431c] {
          color: #009933;
          text-decoration: underline;
}
.content-box .box-container .precautions-list[data-v-4362431c] {
      width: 100%;
      color: #999;
      line-height: 1.2;
      padding: 5px 28px;
      position: relative;
}
.content-box .box-container .precautions-list .text[data-v-4362431c] {
        background: #f5f5f9;
        padding: 5px;
}
.content-box .box-container .btn[data-v-4362431c] {
      width: 80%;
      height: 40px;
      background: #00a64a;
      line-height: 40px;
      position: absolute;
      text-align: center;
      bottom: 80px;
      font-size: 18px;
      border-radius: 5px;
}
.content-box .box-container .btn span[data-v-4362431c] {
        color: #fff;
}

.pop-ups[data-v-2c892884] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}
.pop-ups .declare-authorization[data-v-2c892884] {
    margin: 0 auto;
    position: relative;
    top: 25%;
    width: 300px;
    max-height: 400px;
    background-color: #fff;
    overflow: auto;
}
.pop-ups .declare-authorization h4[data-v-2c892884] {
      text-align: center;
      padding: 20px 0px 15px 0px;
}
.pop-ups .declare-authorization h6[data-v-2c892884] {
      padding: 0px 15px 0px 15px;
}
.pop-ups .declare-authorization p[data-v-2c892884] {
      padding: 8px 15px 0px 15px;
      font-size: 12px;
      color: #333;
}
.pop-ups .declare-authorization .bottom-btn[data-v-2c892884] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      margin-top: 20px;
}
.pop-ups .declare-authorization .bottom-btn span[data-v-2c892884] {
        width: 50%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #ffffff;
}
.pop-ups .declare-authorization .bottom-btn .confirm-btn[data-v-2c892884] {
        background: #009933;
}
.pop-ups .declare-authorization .bottom-btn .cancel-btn[data-v-2c892884] {
        background: #666;
}

.get-info-box[data-v-55730947] {
  padding-bottom: 50px;
}
.branchDepartment[data-v-55730947] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 8px 0.4rem 8px 0.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
}
.branchDepartment .left[data-v-55730947] {
    line-height: 28px;
    white-space: nowrap;
    color: #999;
    -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
    text-align: left;
}
.branchDepartment .right[data-v-55730947] {
    color: #666;
    width: 100%;
    line-height: 28px;
}
.ols-cell-group[data-v-55730947] {
  background: #fff;
}
.ols-form-item[data-v-55730947] {
  margin-left: 0.4rem;
  padding: 8px 0.4rem 8px 0;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-form-item[data-v-55730947]::after {
    display: none;
}
.ols-form-item[data-v-55730947]:last-of-type {
    border-bottom: none;
}
.benefit-list[data-v-55730947] {
  margin-bottom: 0;
}
.benefit-list .ols-form-item[data-v-55730947]:last-of-type {
    border-bottom: 1px dashed #e6e6e6;
}
[data-v-55730947].min-height .ols-form-item-content .ols-viewer {
  height: 100%;
  padding-right: 10px;
}
[data-v-55730947].ols-form-list .ols-form-item-inner .ols-form-item-label {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  height: 100%;
  line-height: 28px;
  white-space: pre-wrap;
  color: #999;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 10px;
  line-height: 28px;
}
.topView[data-v-55730947] {
  height: 45px;
  background-color: #fff;
}
.line[data-v-55730947] {
  height: 15px;
  background-color: #f5f5f5;
}
.orderFinish[data-v-55730947] {
  height: 100px;
  background-color: #fff;
}
.orderFinish .title[data-v-55730947] {
    padding-left: 10px;
    padding-top: 10px;
    height: 25px;
    color: #333;
    font-size: 14px;
}
.orderFinish .numberOrder[data-v-55730947] {
    padding-left: 10px;
    height: 20px;
    color: #666;
    font-size: 13px;
}
.orderFinish .numberIns[data-v-55730947] {
    padding-left: 10px;
    height: 25px;
    color: #666;
    font-size: 13px;
}
.order[data-v-55730947] {
  position: relative;
  height: 80px;
  background-color: #fff;
}
.order .title[data-v-55730947] {
    padding-left: 10px;
    padding-top: 10px;
    height: 25px;
    color: #333;
    font-size: 14px;
}
.order .number[data-v-55730947] {
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    vertical-align: -10px;
    color: #666;
    font-size: 13px;
}
.order .needToPay[data-v-55730947] {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 60px;
    height: 30px;
    border-color: #459855;
    color: #459855;
    background-color: #fff;
    border-radius: 5px;
    /*no*/
    outline: none;
}
.formWrap[data-v-55730947] {
  background-color: #fff;
}
.formWrap .form .tit[data-v-55730947] {
    height: 30px;
    line-height: 30px;
    color: #a8a8a8;
    font-size: 12px;
    background-color: #f5f5f5;
    padding-top: 10px;
    padding-left: 10px;
}
.formWrap .form .item[data-v-55730947] {
    position: relative;
    height: 45px;
    line-height: 45px;
    border-bottom: 1px solid #e1e1e1;
    /*no*/
    font-size: 14px;
    margin-left: 15px;
}
.formWrap .form .item .title[data-v-55730947] {
      float: left;
      color: #333;
      width: 22%;
      text-align: left;
}
.formWrap .form .item .content[data-v-55730947] {
      float: right;
      width: 65%;
      height: 45px;
      line-height: 45px;
      color: #666;
      margin-right: 15px;
      text-align: right;
}
.formWrap .form .item .content.term[data-v-55730947] {
        line-height: 22.5px;
}
.formWrap .form .item .triangle[data-v-55730947] {
      position: absolute;
      right: 17px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
}
.formWrap .form .item .triangle[data-v-55730947]::after {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-top: 1px solid #adadad;
        /*no*/
        border-right: 1px solid #adadad;
        /*no*/
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        vertical-align: 1.5px;
}
.formWrap .form .item.special[data-v-55730947] {
      border-bottom: none;
      /*no*/
}
.formWrap .form .item.special a[data-v-55730947] {
        width: 100%;
}
.clause[data-v-55730947] {
  font-size: 10px;
  background-color: #fff;
  /*margin-top: $margin-10*/
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 50px;
}
.clause > div[data-v-55730947] {
    width: 92%;
    margin: 0 auto;
}
.clause > div .readAndAgree[data-v-55730947] {
      display: inline-block;
}
.clause > div .readAndAgree .icon[data-v-55730947] {
        display: inline-block;
        width: 13px;
        height: 13px;
        background: url(../../assets/img/noagree.0586c1b.png) no-repeat;
        background-size: 13px 13px;
        vertical-align: middle;
}
.clause > div .readAndAgree .agreeImg[data-v-55730947] {
        background: url(../../assets/img/agree.1698ea8.png) no-repeat;
        background-size: 13px 13px;
}
.clause > div .clause-title[data-v-55730947] {
      display: inline-block;
      height: 30px;
      line-height: 30px;
      text-decoration: none;
      color: #459855;
}
.footer[data-v-55730947] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #e1e1e1;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 2;
}
.footer .left-num[data-v-55730947] {
    float: left;
    background-color: #fff;
    text-align: center;
    width: 50%;
    color: #459855;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
}
.footer .left-num .V[data-v-55730947] {
      font-size: 14px;
      line-height: 50px;
      color: #333;
      margin-left: 10px;
}
.footer .right-but[data-v-55730947] {
    /*font-weight: 600;*/
    float: right;
    width: 50%;
    height: 50px;
    line-height: 50px;
    background-color: #e4e4e4;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.footer .right-but.butOk[data-v-55730947] {
      background-color: #5cae78;
}

.pay-detail[data-v-33b61306] {
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-detail .main-content[data-v-33b61306] {
    height: 100%;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.pay-detail .footer[data-v-33b61306] {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.pay-result-box[data-v-4f64fcd2] {
  background-color: #f5f5f5;
  width: 100%;
  height: 100vh;
}
.pay-result-box .pay-fail[data-v-4f64fcd2] {
    background: #fff;
    padding: 60px 0 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.pay-result-box .pay-fail .successImage[data-v-4f64fcd2] {
      width: 30%;
      height: 30%;
}
.pay-result-box .pay-fail .fail-text[data-v-4f64fcd2] {
      padding: 12px 0 20px 0;
      font-size: 20px;
      color: #333;
}
.pay-result-box .pay-fail .fail-line[data-v-4f64fcd2] {
      width: 64%;
      height: 1px;
      background-color: #e4e4e4;
}
.pay-result-box .pay-fail .fail-tip[data-v-4f64fcd2] {
      padding-top: 20px;
      font-size: 16px;
      color: #333;
}
.pay-result-box .pay-container[data-v-4f64fcd2] {
    padding-bottom: 50px;
    overflow-y: auto;
}
.pay-result-box .pay-container .header[data-v-4f64fcd2] {
      width: 100%;
}
.pay-result-box .pay-container .toub-box[data-v-4f64fcd2] {
      position: relative;
      margin: 0 auto;
      width: 80%;
      border-radius: 20px;
      overflow: hidden;
}
.pay-result-box .pay-container .toub-box[data-v-4f64fcd2]::before {
        content: "";
        position: absolute;
        top: 80px;
        left: -15px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #f5f5f5;
}
.pay-result-box .pay-container .toub-box[data-v-4f64fcd2]::after {
        content: "";
        position: absolute;
        top: 80px;
        right: -15px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #f5f5f5;
}
.pay-result-box .pay-container .toub-box .toub-title[data-v-4f64fcd2] {
        height: 80px;
        line-height: 80px;
        font-size: 22px;
        text-align: center;
        color: #fff;
        font-weight: 600;
        background-color: #169248;
}
.pay-result-box .pay-container .toub-box .toub-content[data-v-4f64fcd2] {
        height: 80px;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -ms-flex-direction: column;
            flex-direction: column;
        text-align: center;
        font-size: 15px;
        color: #333;
}

@charset "UTF-8";
.view[data-v-6fb969e4] {
  background-color: #fff;
}
.view h2[data-v-6fb969e4] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-6fb969e4] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-6fb969e4] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .children-wrap[data-v-6fb969e4] {
    padding-top: 15px;
    padding-bottom: 65px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .children-title[data-v-6fb969e4] {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.view .sub-wrap .clause[data-v-6fb969e4] .qes {
    position: relative;
}
.view .sub-wrap .clause[data-v-6fb969e4] .qes .answer-box {
      width: 60px;
      position: absolute;
      top: 3px;
      right: -60px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap .clause[data-v-6fb969e4] .qes .answer-box .check-box {
        position: relative;
        width: 16px;
        height: 16px;
        border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-6fb969e4] .qes .answer-box .check-box.check::before {
          content: "\2713";
          position: absolute;
          width: 100%;
          text-align: center;
          line-height: 16px;
}
.view .sub-wrap .clause img[data-v-6fb969e4] {
    width: 100%;
}
.view .sub-wrap .clause p[data-v-6fb969e4] {
    margin-bottom: 6px;
    color: #333;
    font-size: 12px;
}
.view .footer[data-v-6fb969e4] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-6fb969e4] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-6fb969e4] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-6fb969e4] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-6fb969e4] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-6fb969e4] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-6fb969e4] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-6fb969e4] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

@charset "UTF-8";
.view[data-v-da99b1f0] {
  background-color: #fff;
}
.view .health-notice[data-v-da99b1f0] {
    width: 94%;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 10px;
}
.view .health-notice h2[data-v-da99b1f0] {
      padding: 0;
}
.view .health-notice .notice-text[data-v-da99b1f0] {
      margin-top: 10px;
}
.view .health-notice .notice-text .text-title[data-v-da99b1f0] {
        text-indent: 2em;
}
.view .health-notice .notice-text .text-description[data-v-da99b1f0] {
        text-indent: 2em;
        padding: 6px 0px;
}
.view .health-notice .notice-text .terms-text[data-v-da99b1f0] {
        text-indent: 2em;
}
.view .health-notice .notice-text .terms-text p[data-v-da99b1f0] {
          padding-bottom: 6px;
}
.view .health-notice .readAndAgree[data-v-da99b1f0] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
      margin-top: 14px;
}
.view .health-notice .readAndAgree .not-agree[data-v-da99b1f0] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.view .health-notice .readAndAgree .agree[data-v-da99b1f0] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.view h2[data-v-da99b1f0] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-da99b1f0] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-da99b1f0] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap[data-v-da99b1f0] {
    margin-bottom: 300px;
    padding-right: 60px;
    -webkit-overflow-scrolling: touch;
}
.view .sub-wrap .clause[data-v-da99b1f0] .qes {
      position: relative;
}
.view .sub-wrap .clause[data-v-da99b1f0] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.view .sub-wrap .clause[data-v-da99b1f0] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-da99b1f0] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.view .sub-wrap .clause img[data-v-da99b1f0] {
      width: 100%;
}
.view .sub-wrap .clause p[data-v-da99b1f0] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.view .sub-wrap .bottom-height[data-v-da99b1f0] {
      width: 100%;
      height: 100px;
}
.view .footer[data-v-da99b1f0] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-da99b1f0] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      padding: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-da99b1f0] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-da99b1f0] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-da99b1f0] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-da99b1f0] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-da99b1f0] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-da99b1f0] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

@charset "UTF-8";
.view[data-v-43486ef7] {
  background-color: #fff;
}
.view .health-notice[data-v-43486ef7] {
    width: 94%;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 10px;
}
.view .health-notice h2[data-v-43486ef7] {
      padding: 0;
}
.view .health-notice .notice-text[data-v-43486ef7] {
      margin-top: 10px;
}
.view .health-notice .notice-text .text-title[data-v-43486ef7] {
        text-indent: 2em;
}
.view .health-notice .notice-text .text-description[data-v-43486ef7] {
        text-indent: 2em;
        padding: 6px 0px;
}
.view .health-notice .notice-text .terms-text[data-v-43486ef7] {
        text-indent: 2em;
}
.view .health-notice .notice-text .terms-text p[data-v-43486ef7] {
          padding-bottom: 6px;
}
.view .health-notice .readAndAgree[data-v-43486ef7] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
      margin-top: 14px;
}
.view .health-notice .readAndAgree .not-agree[data-v-43486ef7] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.view .health-notice .readAndAgree .agree[data-v-43486ef7] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.view h2[data-v-43486ef7] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-43486ef7] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-43486ef7] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap[data-v-43486ef7] {
    margin-bottom: 300px;
    padding-right: 60px;
    -webkit-overflow-scrolling: touch;
}
.view .sub-wrap .clause[data-v-43486ef7] .qes {
      position: relative;
}
.view .sub-wrap .clause[data-v-43486ef7] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.view .sub-wrap .clause[data-v-43486ef7] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-43486ef7] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.view .sub-wrap .clause img[data-v-43486ef7] {
      width: 100%;
}
.view .sub-wrap .clause p[data-v-43486ef7] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.view .sub-wrap .bottom-height[data-v-43486ef7] {
      width: 100%;
      height: 100px;
}
.view .footer[data-v-43486ef7] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-43486ef7] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      padding: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-43486ef7] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-43486ef7] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-43486ef7] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-43486ef7] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-43486ef7] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-43486ef7] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

.detail-container[data-v-06b4c630] {
  color: #333;
  background-color: #fff;
  position: relative;
}
.detail-container .duty[data-v-06b4c630] {
    padding: 12px 10px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-top: 10px solid #f7f7f7;
    border-bottom: 1px solid #CFCFCF;
}
.detail-container .duty .duty-title[data-v-06b4c630] {
      color: #333;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-06b4c630] {
      position: relative;
      padding-right: 10px;
      color: #00A758;
      font-size: 14px;
}
.detail-container .duty .duty-content[data-v-06b4c630]:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 0;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg);
}
.detail-container .tab-container .tab-title[data-v-06b4c630] {
    padding-left: 10px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
}
.detail-container .footer-box[data-v-06b4c630] {
    width: 100%;
    height: 50px;
    font-size: 15px;
    color: #fff;
    background: #5cae78;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    position: fixed;
    bottom: 0;
}
.detail-container .grey-btn[data-v-06b4c630] {
    background: #666;
}
#headerImage[data-v-06b4c630] {
  width: 100%;
  min-height: 5rem;
  vertical-align: middle;
}
a[data-v-06b4c630]:link {
  text-decoration: none;
  font-size: 20px;
  text-align: center;
  margin-right: 10px;
  margin-right: 10px;
}
.outside[data-v-06b4c630] {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.version-detail[data-v-48c0fa90] {
  margin: 0 10px 20px;
  border: 1px solid #e4e4e4;
}
.version-detail ul[data-v-48c0fa90] {
    margin: 0 10px;
}
.version-detail ul li[data-v-48c0fa90] {
      border-bottom: 1px dashed #e4e4e4;
      font-size: 14px;
      color: #333;
}
.version-detail ul li[data-v-48c0fa90]:last-child {
        border: none;
}
.version-detail ul li .version-top[data-v-48c0fa90] {
        min-height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
}
.version-detail ul li .version-top .version-title[data-v-48c0fa90] {
          overflow: hidden;
          white-space: nowrap;
          text-overflow: ellipsis;
}
.version-detail ul li .version-top .version-title img[data-v-48c0fa90] {
            width: 36px;
            height: 36px;
            vertical-align: middle;
            padding-right: 10px;
}
.version-detail ul li .version-top .right-icon[data-v-48c0fa90] {
          -webkit-box-flex: 0;
              -ms-flex: 0 0 18px;
                  flex: 0 0 18px;
          height: 100%;
          position: relative;
}
.version-detail ul li .version-top .right-icon .icon-inner[data-v-48c0fa90] {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 16px;
            height: 16px;
            line-height: 16px;
            text-align: center;
            text-rendering: optimizeLegibility;
            -webkit-transform-origin: 50% 50%;
                    transform-origin: 50% 50%;
            -webkit-transform: rotate(0);
                    transform: rotate(0);
            -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
            transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.version-detail ul li .version-top .right-icon .icon-inner-top[data-v-48c0fa90] {
            -webkit-transform: rotate(180deg);
                    transform: rotate(180deg);
}
.version-detail ul li .version-top .right-icon .iconfont[data-v-48c0fa90] {
            font-size: 12px;
            color: #B3B3B3;
}
.version-detail ul li .version-content[data-v-48c0fa90] {
        font-size: 14px;
        color: #8E90A2;
        line-height: 1.4;
        background: #F5F5F5;
        text-align: left;
        overflow: auto;
}
.version-detail ul li .version-content .content-inner[data-v-48c0fa90] {
          padding: 10px;
}
.version-detail ul li .fade-content-enter-active[data-v-48c0fa90], .version-detail ul li .fade-content-leave-active[data-v-48c0fa90] {
        -webkit-transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
        transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.version-detail ul li .fade-content-enter[data-v-48c0fa90], .version-detail ul li .fade-content-leave-to[data-v-48c0fa90] {
        height: 0;
        overflow: hidden;
}
.version-detail ul li .color-red[data-v-48c0fa90] {
        color: #e81c34;
}
.version-detail ul li .finial-amount[data-v-48c0fa90] {
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
}
.version-detail ul .flex-box[data-v-48c0fa90] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      min-height: 50px;
}
.version-detail .coverageDescPic img[data-v-48c0fa90] {
    display: block;
    width: 100%;
}

.terms-page[data-v-cf3d34fc] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.terms-page .terms-pop[data-v-cf3d34fc] {
    width: 76%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px  10px 20px;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.terms-page .terms-pop .top-title[data-v-cf3d34fc] {
      width: 100%;
      height: 30px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.terms-page .terms-pop .top-title .title-text[data-v-cf3d34fc] {
        font-size: 16px;
        color: #333;
}
.terms-page .terms-pop .top-title .clost-img[data-v-cf3d34fc] {
        font-size: 18px;
}
.terms-page .terms-pop .prompt-content[data-v-cf3d34fc] {
      margin: 10px 0px 20px 0px;
      max-height: 200px;
      overflow: auto;
}
.terms-page .terms-pop .prompt-content p[data-v-cf3d34fc] {
        font-size: 15px;
        color: #333;
}
.terms-page .terms-pop .bottom-btn[data-v-cf3d34fc] {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      justify-items: center;
      margin-top: 10px;
      padding-top: 10px;
      margin-bottom: 20px;
}
.terms-page .terms-pop .bottom-btn .cancel-btn[data-v-cf3d34fc] {
        background: #A29D9D;
        padding: 10px 16px;
        font-size: 16px;
        color: #333;
        border-radius: 4px;
}
.terms-page .terms-pop .bottom-btn .agree-btn[data-v-cf3d34fc] {
        background: #0D7D0A;
        padding: 10px 16px;
        font-size: 16px;
        color: #fff;
        border-radius: 4px;
}

[data-v-68de09ec].title-style .ols-form-item-inner .ols-form-item-label {
  height: auto;
  white-space: normal;
}
.info-title[data-v-68de09ec] {
  padding: 17px 0 2px 16px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-align: left;
  background: #fff;
}
.info-title .info-title-rig[data-v-68de09ec] {
    float: right;
    color: #00A758;
    font-weight: normal;
    font-size: 13px;
    padding-right: 15px;
}
.info-title .info-title-rig img[data-v-68de09ec] {
      width: 16px;
      height: 16px;
      position: relative;
      top: 2px;
}
.trial-main[data-v-68de09ec] {
  background: #fff;
}
[data-v-68de09ec].ols-form-list .space {
  padding-right: 10px;
}
.phone-square[data-v-68de09ec] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.phone-square[data-v-68de09ec] .ols-form-item-content .ols-input {
    width: 40%;
}
.phone-square[data-v-68de09ec] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.phone-square[data-v-68de09ec] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      color: red;
}
.trial-top[data-v-68de09ec] {
  text-align: center;
  border-bottom: 1px solid #efefef;
  padding-bottom: 0;
}
.trial-top .trial-top-desc[data-v-68de09ec] {
    padding: 20px 0 10px;
    text-align: center;
    color: #101010;
    font-weight: bold;
    font-size: 14px;
}
.trial-top .trial-top-desc .end-age[data-v-68de09ec] {
      color: #00a758;
}
.trial-top .trial-money[data-v-68de09ec] {
    color: #00a758;
    font-size: 38px;
    font-weight: bold;
    padding-bottom: 4px;
}
.trial-top .trial-money .trial-monty-unit[data-v-68de09ec] {
      display: inline-block;
      padding-left: 6px;
      font-size: 22px;
}
.benefit-demonstration[data-v-68de09ec] {
  padding: 10px 0 18px;
}
.benefit-demonstration .benfit-box[data-v-68de09ec] {
    color: #fff;
    padding: 0px 15px 0px 19px;
    height: 32px;
    line-height: 32px;
    border-radius: 17px;
    background: #00A758;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}
.benefit-demonstration .icon-right[data-v-68de09ec] {
    position: relative;
    top: 2px;
    left: -3px;
}
.benefit-demonstration .icon-right img[data-v-68de09ec] {
      width: 15px;
      height: 15px;
}
.insure-info-main[data-v-68de09ec] {
  background: #fff;
  margin-bottom: 14px;
}
.insure-info-main .form-row-desc[data-v-68de09ec] {
    color: #787878;
    font-size: 14px;
    padding: 12px 0 10px 16px;
}
.insure-info-main .form-row-check[data-v-68de09ec] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 16px 20px 16px;
}
.insure-info-main .form-row-check .check-box[data-v-68de09ec] {
      overflow: hidden;
      position: relative;
      background: #f4f4f4;
      color: #787878;
      width: 23%;
      padding: 6px 0;
      font-size: 14px;
      text-align: center;
      border-radius: 5px;
}
.insure-info-main .form-row-check .check-box .checked-icon[data-v-68de09ec] {
        display: none;
}
.insure-info-main .form-row-check .check-box.w30b[data-v-68de09ec] {
      width: 30%;
}
.insure-info-main .form-row-check .check-box.checked[data-v-68de09ec] {
      background: #DEEFE7;
      color: #00A758;
}
.insure-info-main .form-row-check .check-box.checked .checked-icon[data-v-68de09ec] {
        display: block;
        position: absolute;
        right: -13px;
        bottom: -13px;
        width: 25px;
        height: 25px;
        color: #fff;
        font-size: 12px;
}
.insure-info-main .form-row-check .check-box.checked .checked-icon-bg[data-v-68de09ec] {
        width: 100%;
        height: 100%;
        background: #00A758;
        -webkit-transform: rotate(315deg);
                transform: rotate(315deg);
}
.insure-info-main .form-row-check .check-box.checked .checked-icon-font[data-v-68de09ec] {
        position: absolute;
        left: 3px;
        top: -1px;
}
.insure-info-main .form-row-check .check-box.checked .checked-icon-font img[data-v-68de09ec] {
          width: 7px;
          height: 7px;
}
.readAndAgree[data-v-68de09ec] {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  padding-right: 10px;
}
.readAndAgree .not-agree[data-v-68de09ec] {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 18px;
    font-size: 14px;
    color: #d0d0d0;
    width: 24px;
    z-index: 2;
}
.readAndAgree .agree[data-v-68de09ec] {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 18px;
    font-size: 14px;
    color: #888888;
    width: 24px;
    z-index: 1;
}
.readAndAgree .read-span[data-v-68de09ec] {
    color: #00A758 !important;
}
.idityAgree .not-agree[data-v-68de09ec], .idityAgree .agree[data-v-68de09ec] {
  color: #00A758;
}
.idNo-square .ols-form-item-inner .ols-form-item-label[data-v-68de09ec] {
  -ms-flex-preferred-size: 115px;
      flex-basis: 115px;
}
.idNo-square .ols-form-item-inner .ols-form-item-content[data-v-68de09ec] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.idNo-square .ols-form-item-inner .ols-form-item-content .ols-input[data-v-68de09ec] {
    width: 40%;
}
.idNo-square .ols-form-item-inner .ols-form-item-content .readAndAgree[data-v-68de09ec] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.idNo-square .ols-form-item-inner .ols-form-item-content .readAndAgree span[data-v-68de09ec] {
      font-size: 12px;
      color: red;
}
[data-v-68de09ec].idNo-square .ols-select .ols-select-allow-right:after {
  top: 20px;
}
.getinfo-main[data-v-68de09ec] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  padding-bottom: 50px;
}
.swiper-trial[data-v-68de09ec] {
  background: #F4FCF9;
  padding: 6px 0 12px;
}
.money-row[data-v-68de09ec] {
  display: inline-block;
  text-align: right;
  padding-right: 15px;
  position: relative;
  top: 2px;
}
.money-row .money-reduce[data-v-68de09ec], .money-row .money-add[data-v-68de09ec], .money-row .money-num[data-v-68de09ec] {
    display: inline-block;
    padding: 0 3px;
}
.money-row .money-reduce img[data-v-68de09ec], .money-row .money-add img[data-v-68de09ec], .money-row .money-num img[data-v-68de09ec] {
      width: 16px;
      height: 16px;
}
.money-row .money-reduce[data-v-68de09ec], .money-row .money-add[data-v-68de09ec] {
    position: relative;
    top: 3px;
}
.money-row .money-num[data-v-68de09ec] {
    position: relative;
}
.footer[data-v-68de09ec] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #f5f5f5;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 2;
}
.next-btn[data-v-68de09ec] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 50px;
  text-align: center;
}
.tip-desc[data-v-68de09ec] {
  color: #EE9900;
  background: #FFF6E8;
  padding: 8px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 6px;
}
.tip-desc .icon-warning[data-v-68de09ec] {
    width: 14px;
    height: 14px;
    position: relative;
    top: 2px;
}
.bank-tip[data-v-68de09ec] {
  text-align: left;
  color: #F8625D;
  font-size: 13px;
}
.popup-main[data-v-68de09ec] {
  width: 100%;
  padding: 10px 20px 20px;
  height: 500px;
  overflow: scroll;
}
.popup-title[data-v-68de09ec] {
  text-align: center;
  padding: 10px;
  color: #00A758;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #efefef;
  position: relative;
}
.popup-title img[data-v-68de09ec] {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    margin-top: 2px;
}
.popup-box[data-v-68de09ec] .van-picker__toolbar {
  font-size: 16px;
}
.popup-box[data-v-68de09ec] .van-picker__toolbar .van-picker__cancel {
    color: #5cae78;
}
.popup-box[data-v-68de09ec] .van-picker__toolbar .van-picker__confirm {
    color: #5cae78;
}
.popup-box[data-v-68de09ec] .van-picker__toolbar .van-ellipsis .van-picker__title {
    color: #333;
}
.put-money-input[data-v-68de09ec] {
  width: 100px;
}
.choose-address[data-v-68de09ec] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.choose-address .iconfont[data-v-68de09ec] {
    margin-right: 10px;
}
.btn-left[data-v-68de09ec] {
  text-align: center;
}
.btn-left .first-pay-box[data-v-68de09ec] {
    color: #f56c6c;
    font-weight: bold;
}
.btn-left .next-pay-box[data-v-68de09ec] {
    padding-top: 0px;
    color: #aaa;
    font-size: 12px;
}
.bank-tip[data-v-68de09ec] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bank-tip .grey-color[data-v-68de09ec] {
    color: #c5c5c5;
    height: 28px;
    line-height: 28px;
    min-width: 0.4rem;
    font-size: 14px;
}
.bank-tip .blank-color[data-v-68de09ec] {
    color: #666;
    height: 28px;
    line-height: 28px;
    min-width: 0.4rem;
    font-size: 14px;
}
.bank-tip .ols-select-allow-right[data-v-68de09ec]:after {
    border: 2px solid #999;
    border-bottom-width: 0;
    border-left-width: 0;
    content: "";
    top: 50%;
    right: 0.5rem;
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
}
.padding-right[data-v-68de09ec] {
  padding-right: 10px;
}

.swiper[data-v-69d70bc6] {
  position: relative;
}
.swiper-main[data-v-69d70bc6] {
  padding-top: 25px;
  width: 100%;
  position: relative;
}
.swiper-main .swiper-desc[data-v-69d70bc6] {
    padding-top: 4px;
    text-align: center;
    font-size: 12px;
    color: #666;
}
.age-point[data-v-69d70bc6] {
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 9px;
  height: 20px;
  width: 4px;
  border-radius: 2px;
  z-index: 1;
}
.age-point img[data-v-69d70bc6] {
    width: 15px;
    height: 12px;
}
.age-box[data-v-69d70bc6] {
  text-align: center;
  position: relative;
}
.age-box .age-list-box[data-v-69d70bc6] {
    margin: 0 auto;
    width: 100%;
}
.age-box .age-list-box .age-list-line[data-v-69d70bc6] {
      width: 1px;
      background: #d1d1d1;
      height: 4px;
      margin: 0 auto;
}
.age-box .age-list-box .age-list-x-line[data-v-69d70bc6] {
      height: 1px;
      background: #d1d1d1;
      position: absolute;
      top: 3px;
      left: -3px;
      right: -3px;
}
.age-box .age-list-box .age-list-num[data-v-69d70bc6] {
      margin: 5px auto;
      color: #93D5BD;
      font-weight: bold;
      font-size: 12px;
}
[data-v-69d70bc6].age-box:last-child .age-list-x-line {
  height: 1px;
  background: #d1d1d1;
  position: absolute;
  top: 3px;
  left: -3px;
  right: 50%;
}
[data-v-69d70bc6].age-box:first-child .age-list-x-line {
  height: 1px;
  background: #d1d1d1;
  position: absolute;
  top: 3px;
  left: 50%;
  right: -3px;
}
[data-v-69d70bc6].swiper-main .swiper-slide-active .age-list-num {
  color: #00A758;
  font-size: 14px;
}

.terms-page[data-v-99835c86] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2) !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.terms-page .terms-pop[data-v-99835c86] {
    width: 90%;
    max-height: 90%;
    overflow: auto;
    background-color: #fff;
    padding: 10px;
}
.terms-page .terms-pop .top-title[data-v-99835c86] {
      width: 100%;
      height: 30px;
      text-align: right;
}
.terms-page .terms-pop .top-title span[data-v-99835c86] {
        font-size: 18px;
}
.terms-page .terms-pop .title-center[data-v-99835c86] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly;
      justify-items: center;
      margin-bottom: 10px;
}
.terms-page .terms-pop .title-center h3[data-v-99835c86] {
        font-size: 16px;
}
.terms-page .terms-pop .text-center[data-v-99835c86] {
      width: 210px;
      font-size: 15px;
      margin: 0 auto;
}
.terms-page .terms-pop .terms-content[data-v-99835c86] {
      width: 210px;
      margin: 0 auto;
}
.terms-page .terms-pop .terms-content p[data-v-99835c86] {
        padding-top: 6px;
        font-size: 18px;
        color: #459855;
}
.terms-page .terms-pop .terms-content p .preview-left[data-v-99835c86] {
          text-align: left !important;
}
.terms-page .terms-pop .terms-content p .clauseTitle[data-v-99835c86] {
          color: red;
}
.terms-page .terms-pop .agreeBtnOne[data-v-99835c86] {
      background: #459855 !important;
}
.terms-page .terms-pop .clause[data-v-99835c86] {
      margin-top: 10px;
      font-size: 12px;
      padding-bottom: 20px;
      color: #333;
}
.terms-page .terms-pop .clause > div[data-v-99835c86] {
        width: 92%;
        margin: 0 auto;
        line-height: 20px;
}
.terms-page .terms-pop .clause > div .readAndAgree[data-v-99835c86] {
          position: relative;
          display: inline-block;
}
.terms-page .terms-pop .clause > div .readAndAgree .not-agree[data-v-99835c86] {
            position: absolute;
            left: 0;
            top: 0;
            line-height: 18px;
            font-size: 14px;
            color: #d0d0d0;
            width: 24px;
            z-index: 2;
}
.terms-page .terms-pop .clause > div .readAndAgree .agree[data-v-99835c86] {
            position: absolute;
            left: 0;
            top: 0;
            line-height: 18px;
            font-size: 14px;
            color: #888888;
            width: 24px;
            z-index: 1;
}
.terms-page .terms-pop .clause > div .readAndAgree span[data-v-99835c86] {
            text-indent: 25px;
}
.terms-page .terms-pop .agree-btn[data-v-99835c86] {
      width: 0px;
      margin: 0 auto;
      width: 76%;
      background: #666;
      text-align: center;
      margin-bottom: 16px;
      color: #fff;
      font-size: 16px;
      padding: 16px 0px;
}
.terms-page .terms-pop .agree-btn span[data-v-99835c86] {
        color: #fff;
        font-size: 16px;
        padding: 10px;
}

@charset "UTF-8";
*[data-v-4fb4c986] {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.preview[data-v-4fb4c986] {
  display: inline-block;
}
.check[data-v-4fb4c986] {
  font-size: 13px;
  color: #459855;
}
.triangle[data-v-4fb4c986] {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #adadad;
  /*no*/
  border-right: 1px solid #adadad;
  /*no*/
  -webkit-transform: translateY(-35%) rotate(45deg);
          transform: translateY(-35%) rotate(45deg);
}
.section[data-v-4fb4c986] {
  height: 90%;
  overflow-y: auto;
}
.section img[data-v-4fb4c986] {
    width: 100%;
}
.scroll-bar[data-v-4fb4c986]::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-bar[data-v-4fb4c986]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mask-container .mask-pop[data-v-5dd300c2] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
  overflow: hidden;
}
.mask-container .mask-content[data-v-5dd300c2] {
  padding: 0 20px 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  color: #333;
  z-index: 111;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.mask-container .mask-content[data-v-5dd300c2] a {
    color: #079b4d;
    text-decoration: underline;
}
.mask-container .mask-content .mask-header[data-v-5dd300c2] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}
.mask-container .mask-content .mask-header .close-btn[data-v-5dd300c2] {
      font-size: 20px;
}
.mask-container .mask-content .section div[data-v-5dd300c2] {
    font-size: 15px;
    line-height: 20px;
}
.mask-container .mask-content .section[data-v-5dd300c2] .section-title {
    padding: 10px 6px 10px 0px;
    font-size: 15px;
    color: #5cae78;
}
.mask-container .mask-content .section[data-v-5dd300c2] .section-title.toggle {
      position: relative;
      border-bottom: #e5e5e5 1px dashed;
      margin-right: 6px;
}
.mask-container .mask-content .section[data-v-5dd300c2] .section-title.toggle:after {
        border: 2px solid #5cae78;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 3px;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg);
}
.mask-container .mask-content .section[data-v-5dd300c2] .section-title.toggle::after {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
}
.mask-container .mask-content .section[data-v-5dd300c2] .section-title.toggle.actived::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
}
.mask-container .mask-content .section[data-v-5dd300c2] .section-content {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: #e5e5e5 1px dashed;
}
.mask-container .mask-content .section[data-v-5dd300c2] .section-content.hide {
      display: none;
}
.mask-container .mask-content .section[data-v-5dd300c2] .section-content.actived {
      max-height: 999rem;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
              transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
}
.mask-container .mask-content .mask-footer[data-v-5dd300c2] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    background: #5cae78;
}
.mask-container .mask-content .mask-button[data-v-5dd300c2] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.mask-container .mask-content .mask-button .submit-button[data-v-5dd300c2] {
      width: 100%;
      height: 40px;
      background: #666666;
      text-align: center;
}
.mask-container .mask-content .mask-button .submit-button span[data-v-5dd300c2] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}
.mask-container .mask-content .mask-button .submit-text[data-v-5dd300c2] {
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: red;
      text-align: center;
}
.mask-container .mask-content .mask-button .submitBack[data-v-5dd300c2] {
      background: #5cae78;
}
.mask-container .mask-content .mask-button .footer-button[data-v-5dd300c2] {
      width: 100%;
      height: 40px;
      background: #5cae78;
      text-align: center;
}
.mask-container .mask-content .mask-button .footer-button span[data-v-5dd300c2] {
        line-height: 40px;
        font-size: 15px;
        color: #fff;
}

.mask-header .ly-tab .ly-tabbar {
  width: 100%;
  background: #F0F2F5;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list {
    padding: 0px;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-list .ly-tab-item {
      display: inline-block;
      height: 50px;
      line-height: 50px;
      color: #333;
      text-decoration: none;
      margin: 0;
}
.mask-header .ly-tab .ly-tabbar .ly-tab-active-bar {
    display: none;
}

.header[data-v-5c624762] {
  width: 100%;
  background-color: #F0F2F5;
}
.header[data-v-5c624762] .service-swiper {
    width: 100%;
    display: block;
    margin: auto;
    overflow-y: hidden;
    position: relative;
}
.header[data-v-5c624762] .service-swiper .swiper-wrapper .swiper-slide {
      width: auto !important;
      padding-right: 20px;
      margin-right: 0px !important;
      height: 45px;
      line-height: 45px;
      text-align: center;
}
.header[data-v-5c624762] .service-swiper .swiper-wrapper .swiper-slide .header_tab {
        font-size: 14px;
        color: #333;
        display: inline-block;
}
.header[data-v-5c624762] .service-swiper .swiper-wrapper .swiper-slide .activeheader {
        background: #fff;
        padding: 0px 8px;
}
.header[data-v-5c624762] .service-swiper .swiper-wrapper .swiper-slide .activeheaderOne {
        background: #fff;
        color: red;
        padding: 0px 8px;
}
.header[data-v-5c624762] .service-swiper .swiper-wrapper .swiper-slide .headerColor {
        color: red;
}

.ols-occupation {
  min-height: 28px;
  min-width: 1px;
  padding: 0;
}
.ols-occupation .ols-select-input {
    width: 0px;
    height: 0px;
    padding: 0;
    margin: 0;
    position: absolute;
    visibility: hidden;
}
.ols-occupation .ols-select-content {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
    height: 28px;
    line-height: 28px;
    min-width: 0.4rem;
    text-align: left;
    color: #666;
}
.ols-occupation .ols-select-content:empty::before {
      content: attr(placeholder);
      color: #c5c5c5;
}
.ols-occupation .ols-select-allow-right:after {
    border: 2px solid #999;
    border-bottom-width: 0;
    border-left-width: 0;
    content: "";
    top: 50%;
    right: 0.5rem;
    position: absolute;
    width: 7px;
    height: 7px;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
}

.occupationWrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: white;
  text-align: left;
  padding-top: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
}
.occupationWrapper .mint-header {
    border-bottom: 1px solid #e6e6e6;
}
.occupationWrapper .searchForm {
    width: 100%;
    height: 60px;
}
.occupationWrapper .occupationContainer {
    height: calc(100% - 44px);
    overflow: auto;
}
.occupationWrapper .occupationContainer .occupation-title {
      padding: 0.4rem;
      border-bottom: 1px solid #e6e6e6;
}
.occupationWrapper .occupationContainer .occupation-title .flex-cancel {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: nowrap;
            flex-flow: nowrap;
}
.occupationWrapper .occupationContainer .occupation-title .flex-cancel .occupation-inquireOne {
          border: 1px solid #e6e6e6;
          width: 100%;
          height: 40px;
          margin-bottom: 10px;
}
.occupationWrapper .occupationContainer .occupation-title .flex-none {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: nowrap;
            flex-flow: nowrap;
}
.occupationWrapper .occupationContainer .occupation-title .flex-none .cancel-button {
          width: 50%;
          height: 28px;
          border-radius: 4px;
          line-height: 28px;
          background: #9E9E9E;
          color: #ffffff;
          text-align: center;
          font-size: 14px;
}
.occupationWrapper .occupationContainer .occupation-title .flex-none .Inquire-button {
          width: 50%;
          height: 28px;
          border-radius: 4px;
          line-height: 28px;
          margin-left: 10px;
          background: #5cae78;
          color: #ffffff;
          text-align: center;
          font-size: 14px;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul {
        margin-top: 4px;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul li {
          padding: 10px;
          border-bottom: 1px dashed #e6e6e6;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul li:last-child {
          border-bottom: none;
}
.occupationWrapper .occupationContainer .occupation-title .search-results ul .liBack {
          background: #5cae78;
          color: #ffffff;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations {
        margin-bottom: 20px;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-title {
          font-size: 16px;
          padding-left: 0;
          padding-bottom: 0;
          border: none;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list span {
            background: #e6e6e6;
            padding: 4px;
            text-align: center;
            margin-right: 6px;
            margin-top: 10px;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list .spanBack {
            background: #5cae78;
            color: #ffffff;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .common-occupations .occupation-list p {
            margin: 0 auto;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .title-selected .title-text {
        font-size: 16px;
        margin-bottom: 8px;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .title-selected .text {
        display: inline-block;
        max-width: 120px;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
}
.occupationWrapper .occupationContainer .occupation-title .job-information .title-selected .text-active {
        color: #5cae78;
}
.occupationWrapper .occupationList {
    width: 100%;
    height: 100%;
    max-height: 600px;
    overflow-y: auto;
}
.occupationWrapper .occupationList .occupationItem {
      padding: 0 10px;
      text-align: left;
      line-height: 1.0;
}
.occupationWrapper .occupationList .occupationItem .cell-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 16px 0;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        border-bottom: 1px solid #d9d9d9;
}
.occupationWrapper .occupationList .occupationItem .text {
        font-size: 16px;
}
.occupationWrapper .occupationList .occupationItem .mint-cell-allow-right {
        position: relative;
}

@charset "UTF-8";
*[data-v-6bfc7a34] {
  -ms-touch-action: auto;
      touch-action: auto;
}
.benefit-box[data-v-6bfc7a34] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.benefit-box .value-table[data-v-6bfc7a34] {
    width: 100%;
    height: 450px;
    position: fixed;
    left: 0;
    bottom: 0px;
    padding: 0 15px 15px;
    min-height: 300px;
    z-index: 10;
    background: #fff;
    border: 1px solid #e6e6e6;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
}
.benefit-box .value-table .value-top[data-v-6bfc7a34] {
      background: #fff;
}
.benefit-box .value-table .value-top .value-title[data-v-6bfc7a34] {
        padding: 15px 0 15px 15px;
        font-size: 15px;
        position: relative;
}
.benefit-box .value-table .value-top .value-title img[data-v-6bfc7a34] {
          width: 20px;
          position: absolute;
          right: 15px;
}
.benefit-box .value-table .value-top .value-tips[data-v-6bfc7a34] {
        font-size: 12px;
        padding-left: 15px;
        padding-bottom: 15px;
        color: #939393;
}
.benefit-box .value-table .table-box[data-v-6bfc7a34] {
      overflow: auto;
      padding: 0;
      width: 100%;
      height: 350px;
      border-top: 1px solid #fbe2b6;
}
.benefit-box .value-table .table-box table[data-v-6bfc7a34] {
        border-right: 1px solid #fbe2b6;
}
.benefit-box .value-table .table-box table td[data-v-6bfc7a34], .benefit-box .value-table .table-box table th[data-v-6bfc7a34] {
          white-space: nowrap;
          text-align: center;
          border-bottom: 1px solid #fbe2b6;
          border-left: 1px solid #fbe2b6;
          padding: 6px 5px;
}
.benefit-box .value-table .table-box table thead[data-v-6bfc7a34] {
          font-size: 14px;
          font-weight: bold;
          background: #fdf6e6;
}
.benefit-box .value-table .table-box table thead tr th[data-v-6bfc7a34] {
            position: sticky;
            top: -1px;
            /* 列首永远固定在头部  */
            left: -1px;
            background: #fdf6e6;
}
.benefit-box .value-table .table-box table tbody[data-v-6bfc7a34] {
          font-size: 12px;
}
.benefit-box .value-table .table-box table td[data-v-6bfc7a34]:first-child, .benefit-box .value-table .table-box table th[data-v-6bfc7a34]:first-child {
          position: sticky;
          left: 0;
          /* 首行永远固定在左侧 */
          z-index: 1;
          background-color: #fdf6e6;
}
.benefit-box .value-table .table-box table td[data-v-6bfc7a34]:nth-child(2), .benefit-box .value-table .table-box table th[data-v-6bfc7a34]:nth-child(2) {
          position: sticky;
          left: 67px;
          /* 首行永远固定在左侧 */
          z-index: 1;
          background-color: #fdf6e6;
}
.benefit-box .value-table .table-box table th[data-v-6bfc7a34]:first-child, .benefit-box .value-table .table-box table th[data-v-6bfc7a34]:nth-child(2) {
          z-index: 2;
          background: #fdf6e6;
}

.content-box[data-v-39073286] {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 8;
  font-size: 16px;
}
.content-box .box-container[data-v-39073286] {
    margin: auto;
    position: relative;
    top: 0%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}
.content-box .box-container .title[data-v-39073286] {
      width: 100%;
      height: 40px;
      background: #009933;
      text-align: center;
      font-size: 18px;
      line-height: 40px;
      color: #fff;
}
.content-box .box-container .face[data-v-39073286] {
      width: 240px;
      height: 240px;
      padding-top: 20px;
}
.content-box .box-container .tips[data-v-39073286] {
      margin-bottom: 10px;
}
.content-box .box-container .tips .name[data-v-39073286] {
        color: #838fe1;
}
.content-box .box-container .get[data-v-39073286] {
      color: #00a64a;
}
.content-box .box-container .photo[data-v-39073286] {
      width: 80%;
      height: 40px;
      background: #00a64a;
      border-radius: 5px;
      text-align: center;
      margin-bottom: 10px;
}
.content-box .box-container .photo img[data-v-39073286] {
        width: 30px;
        padding-top: 8px;
}
.content-box .box-container .agreement-data[data-v-39073286] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      margin-bottom: 10px;
}
.content-box .box-container .agreement-data .checkbox-statu[data-v-39073286] {
        width: 20px;
        height: 20px;
        border: 1px solid;
}
.content-box .box-container .agreement-data .checkbox-statu img[data-v-39073286] {
          width: 20px;
}
.content-box .box-container .agreement-data .agree[data-v-39073286] {
        color: #009933;
}
.content-box .box-container .agreement-data .checkbox-data[data-v-39073286] {
        margin-left: 4px;
}
.content-box .box-container .agreement-data .checkbox-data a[data-v-39073286] {
          color: #009933;
          text-decoration: underline;
}
.content-box .box-container .precautions-list[data-v-39073286] {
      width: 100%;
      color: #999;
      line-height: 1.2;
      padding: 5px 28px;
      position: relative;
}
.content-box .box-container .precautions-list .text[data-v-39073286] {
        background: #f5f5f9;
        padding: 5px;
}
.content-box .box-container .btn[data-v-39073286] {
      width: 80%;
      height: 40px;
      background: #00a64a;
      line-height: 40px;
      position: absolute;
      text-align: center;
      bottom: 80px;
      font-size: 18px;
      border-radius: 5px;
}
.content-box .box-container .btn span[data-v-39073286] {
        color: #fff;
}

.pop-ups[data-v-29ef81a9] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}
.pop-ups .declare-authorization[data-v-29ef81a9] {
    margin: 0 auto;
    position: relative;
    top: 25%;
    width: 300px;
    max-height: 400px;
    background-color: #fff;
    overflow: auto;
}
.pop-ups .declare-authorization h4[data-v-29ef81a9] {
      text-align: center;
      padding: 20px 0px 15px 0px;
}
.pop-ups .declare-authorization h6[data-v-29ef81a9] {
      padding: 0px 15px 0px 15px;
}
.pop-ups .declare-authorization p[data-v-29ef81a9] {
      padding: 8px 15px 0px 15px;
      font-size: 12px;
      color: #333;
}
.pop-ups .declare-authorization .bottom-btn[data-v-29ef81a9] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      margin-top: 20px;
}
.pop-ups .declare-authorization .bottom-btn span[data-v-29ef81a9] {
        width: 50%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #ffffff;
}
.pop-ups .declare-authorization .bottom-btn .confirm-btn[data-v-29ef81a9] {
        background: #009933;
}
.pop-ups .declare-authorization .bottom-btn .cancel-btn[data-v-29ef81a9] {
        background: #666;
}

.terms-page[data-v-6e08e9d0] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.terms-page .terms-pop[data-v-6e08e9d0] {
    margin: auto;
    position: relative;
    top: 35%;
    left: 0;
    width: 80%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}
.terms-page .terms-pop .top-title[data-v-6e08e9d0] {
      width: 100%;
      height: 30px;
      text-align: center;
}
.terms-page .terms-pop .top-title .title-text[data-v-6e08e9d0] {
        font-size: 18px;
        color: #000;
}
.terms-page .terms-pop .top-title .clost-img[data-v-6e08e9d0] {
        font-size: 18px;
}
.terms-page .terms-pop .product-name[data-v-6e08e9d0] {
      text-align: center;
      font-size: 14px;
}
.terms-page .terms-pop .prompt-content[data-v-6e08e9d0] {
      margin: 10px 0px 10px 0px;
      max-height: 200px;
      overflow: auto;
}
.terms-page .terms-pop .prompt-content .text-amount[data-v-6e08e9d0] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-bottom: 20px;
}
.terms-page .terms-pop .text-p[data-v-6e08e9d0] {
      font-size: 12px;
      color: red;
      margin-bottom: 10px;
      padding: 0;
}
.terms-page .terms-pop .bottom-btn[data-v-6e08e9d0] {
      display: inline-block;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
}
.terms-page .terms-pop .bottom-btn .btn-click[data-v-6e08e9d0] {
        width: 100%;
        background: #088E08;
        padding: 10px 0px;
        color: #fff;
        border-radius: 4px;
        font-size: 16px;
        text-align: center;
}

@charset "UTF-8";
.view[data-v-0de13269] {
  background-color: #fff;
}
.view h2[data-v-0de13269] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-0de13269] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-0de13269] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .children-wrap[data-v-0de13269] {
    padding-top: 15px;
    padding-bottom: 65px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.view .children-title[data-v-0de13269] {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.view .sub-wrap .clause[data-v-0de13269] .qes {
    position: relative;
}
.view .sub-wrap .clause[data-v-0de13269] .qes .answer-box {
      width: 60px;
      position: absolute;
      top: 3px;
      right: -60px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap .clause[data-v-0de13269] .qes .answer-box .check-box {
        position: relative;
        width: 16px;
        height: 16px;
        border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-0de13269] .qes .answer-box .check-box.check::before {
          content: "\2713";
          position: absolute;
          width: 100%;
          text-align: center;
          line-height: 16px;
}
.view .sub-wrap .clause img[data-v-0de13269] {
    width: 100%;
}
.view .sub-wrap .clause p[data-v-0de13269] {
    margin-bottom: 6px;
    color: #333;
    font-size: 12px;
}
.view .footer[data-v-0de13269] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-0de13269] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      height: 40px;
      line-height: 40px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-0de13269] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-0de13269] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-0de13269] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-0de13269] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-0de13269] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-0de13269] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

@charset "UTF-8";
.view[data-v-bd9a5a66] {
  background-color: #fff;
}
.view .health-notice[data-v-bd9a5a66] {
    width: 94%;
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 10px;
}
.view .health-notice h2[data-v-bd9a5a66] {
      padding: 0;
}
.view .health-notice .notice-text[data-v-bd9a5a66] {
      margin-top: 10px;
}
.view .health-notice .notice-text .text-title[data-v-bd9a5a66] {
        text-indent: 2em;
}
.view .health-notice .notice-text .text-description[data-v-bd9a5a66] {
        text-indent: 2em;
        padding: 6px 0px;
}
.view .health-notice .notice-text .terms-text[data-v-bd9a5a66] {
        text-indent: 2em;
}
.view .health-notice .notice-text .terms-text p[data-v-bd9a5a66] {
          padding-bottom: 6px;
}
.view .health-notice .readAndAgree[data-v-bd9a5a66] {
      position: relative;
      display: inline-block;
      padding-left: 24px;
      margin-top: 14px;
}
.view .health-notice .readAndAgree .not-agree[data-v-bd9a5a66] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #d0d0d0;
        width: 24px;
        z-index: 2;
}
.view .health-notice .readAndAgree .agree[data-v-bd9a5a66] {
        position: absolute;
        left: 0;
        top: 0;
        line-height: 18px;
        font-size: 14px;
        color: #888888;
        width: 24px;
        z-index: 1;
}
.view h2[data-v-bd9a5a66] {
    margin-bottom: 10px;
    padding: 0 12px;
    font-size: 17px;
    font-weight: bold;
}
.view .detail[data-v-bd9a5a66] {
    position: relative;
    margin: 0 12px 15px;
    font-size: 14px;
}
.view .detail .answer-box[data-v-bd9a5a66] {
      width: 60px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.view .sub-wrap[data-v-bd9a5a66] {
    padding-right: 60px;
    -webkit-overflow-scrolling: touch;
}
.view .sub-wrap .clause[data-v-bd9a5a66] .qes {
      position: relative;
}
.view .sub-wrap .clause[data-v-bd9a5a66] .qes .answer-box {
        width: 60px;
        position: absolute;
        top: 3px;
        right: -60px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.view .sub-wrap .clause[data-v-bd9a5a66] .qes .answer-box .check-box {
          position: relative;
          width: 16px;
          height: 16px;
          border: 1px solid #a5a5a5;
}
.view .sub-wrap .clause[data-v-bd9a5a66] .qes .answer-box .check-box.check::before {
            content: "\2713";
            position: absolute;
            width: 100%;
            text-align: center;
            line-height: 16px;
}
.view .sub-wrap .clause img[data-v-bd9a5a66] {
      width: 100%;
}
.view .sub-wrap .clause p[data-v-bd9a5a66] {
      margin-bottom: 6px;
      color: #333;
      font-size: 12px;
}
.view .sub-wrap .bottom-height[data-v-bd9a5a66] {
      width: 100%;
      height: 100px;
}
.view .footer[data-v-bd9a5a66] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-bd9a5a66] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      padding: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-bd9a5a66] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-bd9a5a66] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-bd9a5a66] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-bd9a5a66] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-bd9a5a66] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-bd9a5a66] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

.view[data-v-962e49b4] {
  background-color: #fff;
}
.view .health-notice[data-v-962e49b4] {
    width: 100%;
    height: 100vh;
    padding: 10px;
}
.view .health-notice .font-common[data-v-962e49b4] {
      font-size: 14px;
      line-height: 24px;
      color: #000000;
}
.view .readAndAgree[data-v-962e49b4] {
    position: relative;
    display: inline-block;
    padding-left: 24px;
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.view .readAndAgree .not-agree[data-v-962e49b4] {
      line-height: 18px;
      font-size: 14px;
      color: #d0d0d0;
      width: 24px;
      z-index: 2;
}
.view .readAndAgree .agree[data-v-962e49b4] {
      line-height: 18px;
      font-size: 14px;
      color: #888888;
      width: 24px;
      z-index: 1;
}
.view .footer[data-v-962e49b4] {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0;
}
.view .footer .all-not[data-v-962e49b4] {
      padding-right: 30px;
      font-size: 15px;
      color: #5cae78;
      text-decoration: underline;
      padding: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      background-color: #fff;
}
.view .footer i[data-v-962e49b4] {
      vertical-align: middle;
      display: inline-block;
      width: 18px;
      height: 18px;
}
.view .footer[data-v-962e49b4] .left-btn {
      border: none;
      border-top: 1px solid #5cae78;
}
.view .footer .btn-left[data-v-962e49b4] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #5cae78;
      background-color: #fff;
}
.view .footer .btn-left i[data-v-962e49b4] {
        background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
        background-size: 18px 18px;
}
.view .footer .btn-next[data-v-962e49b4] {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      line-height: 50px;
      text-align: center;
      color: #fff;
}
.view .footer .btn-next i[data-v-962e49b4] {
        background: url(../../assets/img/sure.e01d36c.png) no-repeat;
        background-size: 18px 18px;
}

.confirm-info-box[data-v-63f2b50c] {
  padding-bottom: 50px;
}
.ols-cell-group[data-v-63f2b50c] {
  background: #fff;
}
.ols-form-item[data-v-63f2b50c] {
  margin-left: 0.4rem;
  padding: 8px 0.4rem 8px 0;
  border-bottom: 1px dashed #e6e6e6;
}
.ols-form-item[data-v-63f2b50c]::after {
    display: none;
}
.ols-form-item[data-v-63f2b50c]:last-of-type {
    border-bottom: none;
}
[data-v-63f2b50c].min-height .ols-form-item-content .ols-viewer {
  height: 100%;
  padding-right: 10px;
}
[data-v-63f2b50c].ols-form-list .ols-form-item-inner .ols-form-item-label {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  height: 100%;
  line-height: 28px;
  white-space: pre-wrap;
  color: #999;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 10px;
  line-height: 28px;
}
.footer[data-v-63f2b50c] {
  -webkit-box-shadow: 0 -1px 1px #eaeaea;
          box-shadow: 0 -1px 1px #eaeaea;
  border-top: 1px solid #e1e1e1;
  /*no*/
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 50px;
  z-index: 2;
}
.footer .left-num[data-v-63f2b50c] {
    float: left;
    background-color: #fff;
    text-align: center;
    width: 50%;
    color: #459855;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
}
.footer .left-num .V[data-v-63f2b50c] {
      font-size: 14px;
      line-height: 50px;
      color: #333;
      margin-left: 10px;
}
.footer .right-but[data-v-63f2b50c] {
    float: right;
    width: 50%;
    height: 50px;
    line-height: 50px;
    background-color: #e4e4e4;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
.footer .right-but.butOk[data-v-63f2b50c] {
      background-color: #5cae78;
}

.pay-detail[data-v-07b28561] {
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pay-detail .main-content[data-v-07b28561] {
    height: 100%;
    padding-bottom: 10px;
    overflow-y: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.pay-detail .footer[data-v-07b28561] {
    position: fixed;
    bottom: 0;
    width: 100%;
}

.pay-result-box[data-v-23616f2d] {
  background-color: #f5f5f5;
  width: 100%;
  height: 100vh;
}
.pay-result-box .pay-fail[data-v-23616f2d] {
    background: #fff;
    padding: 60px 0 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.pay-result-box .pay-fail .successImage[data-v-23616f2d] {
      width: 30%;
      height: 30%;
}
.pay-result-box .pay-fail .fail-text[data-v-23616f2d] {
      padding: 12px 0 20px 0;
      font-size: 20px;
      color: #333;
}
.pay-result-box .pay-fail .fail-line[data-v-23616f2d] {
      width: 64%;
      height: 1px;
      background-color: #e4e4e4;
}
.pay-result-box .pay-fail .fail-tip[data-v-23616f2d] {
      padding-top: 20px;
      font-size: 16px;
      color: #333;
}
.pay-result-box .pay-container[data-v-23616f2d] {
    padding-bottom: 50px;
    overflow-y: auto;
}
.pay-result-box .pay-container .header[data-v-23616f2d] {
      width: 100%;
}
.pay-result-box .pay-container .toub-box[data-v-23616f2d] {
      position: relative;
      margin: 0 auto;
      width: 80%;
      border-radius: 20px;
      overflow: hidden;
}
.pay-result-box .pay-container .toub-box[data-v-23616f2d]::before {
        content: "";
        position: absolute;
        top: 80px;
        left: -15px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #f5f5f5;
}
.pay-result-box .pay-container .toub-box[data-v-23616f2d]::after {
        content: "";
        position: absolute;
        top: 80px;
        right: -15px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #f5f5f5;
}
.pay-result-box .pay-container .toub-box .toub-title[data-v-23616f2d] {
        height: 80px;
        line-height: 80px;
        font-size: 22px;
        text-align: center;
        color: #fff;
        font-weight: 600;
        background-color: #169248;
}
.pay-result-box .pay-container .toub-box .toub-content[data-v-23616f2d] {
        height: 80px;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -ms-flex-direction: column;
            flex-direction: column;
        text-align: center;
        font-size: 15px;
        color: #333;
}

@charset "UTF-8";
.detail-container[data-v-4127160d] {
  color: #333;
  background-color: #fff;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  position: relative;
}
.detail-container .outside[data-v-4127160d] {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 78px;
}
.detail-container .videobox[data-v-4127160d] {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    position: relative;
}
.detail-container .videobox .positonPng[data-v-4127160d] {
      width: 76px;
      position: absolute;
      top: 31%;
      z-index: 1;
}
.detail-container .videobox .time-box[data-v-4127160d] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: absolute;
      bottom: 8px;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: 100;
      width: 100%;
      padding: 0 35px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
}
.detail-container .videobox .time-box #playProgress[data-v-4127160d] {
        background-color: #999;
        width: 100%;
        height: 3px;
        position: relative;
        border-radius: 1.5px;
}
.detail-container .videobox .time-box #playProgress #progressWrap[data-v-4127160d] {
          position: absolute;
          background-color: #fff;
          height: 3px;
          border-radius: 1.5px;
}
.detail-container .videobox .time-box .time—text[data-v-4127160d] {
        color: #fff;
        margin-left: 20px;
        font-size: 14px;
}
.detail-container .videobox #headervideo[data-v-4127160d] {
      position: absolute;
      width: 100%;
      min-height: 5rem;
}
.detail-container .videobox .left-img[data-v-4127160d] {
      position: absolute;
      left: 15px;
      width: 20px;
      top: 5px;
}
.detail-container .videobox .right-img[data-v-4127160d] {
      position: absolute;
      right: 15px;
      top: 5px;
      width: 20px;
}
.detail-container #headerImage[data-v-4127160d] {
    width: 100%;
    min-height: 5rem;
    vertical-align: middle;
}
.detail-container .count-box[data-v-4127160d] {
    padding-right: 12px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    color: #333;
}
.detail-container .count-box .number-span[data-v-4127160d] {
      color: #E91A33;
      font-size: 16px;
      font-weight: bold;
}
.detail-container .count-box .count-text[data-v-4127160d] {
      color: #666;
      padding-left: 5px;
}
.detail-container .grey-line[data-v-4127160d] {
    height: 10px;
    width: 100%;
    background-color: #F3F4F5;
}
.detail-container .guarantee-box[data-v-4127160d] {
    padding: 0 16px;
}
.detail-container .guarantee-box .guarantee-title[data-v-4127160d] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-top: 16px;
      padding-bottom: 10px;
}
.detail-container .guarantee-box .guarantee-title .title-left[data-v-4127160d] {
        font-size: 16px;
        font-weight: bold;
        color: #000000;
}
.detail-container .guarantee-box .guarantee-title .title-right[data-v-4127160d] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
}
.detail-container .guarantee-box .guarantee-title .title-right span[data-v-4127160d] {
          line-height: 15px;
          font-size: 13px;
          color: #00A758;
}
.detail-container .guarantee-box .guarantee-title .title-right img[data-v-4127160d] {
          margin-left: 2px;
          width: 16px;
          height: 16px;
          vertical-align: top;
}
.detail-container .guarantee-box .navWrap[data-v-4127160d] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border: 1px solid #EEEEEE;
      border-bottom: none;
      border-radius: 6px 6px 0px 0px;
}
.detail-container .guarantee-box .navWrap .versions[data-v-4127160d] {
        text-align: center;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        height: 44px;
        line-height: 44px;
        font-size: 13px;
        color: #00A758;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        border-bottom: 1px solid #EEEEEE;
}
.detail-container .guarantee-box .navWrap .versions[data-v-4127160d]::after {
          content: "";
          height: 16px;
          width: 0px;
          border: 1px solid #EEEEEE;
          position: absolute;
          right: 0;
          top: 50%;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
}
.detail-container .guarantee-box .navWrap .versions[data-v-4127160d]:last-child::after {
          border: none;
}
.detail-container .guarantee-box .navWrap .versions.recommend[data-v-4127160d]::before {
          content: "";
          background: url(../../assets/img/icon-recommend1.feafacb.png);
          background-size: 100% 100%;
          width: 30px;
          height: 30px;
          position: absolute;
          top: 0;
          right: 0;
          z-index: 2;
}
.detail-container .guarantee-box .navWrap .versions.active[data-v-4127160d] {
          background-color: #00A758;
          color: #fff;
          border-radius: 6px 6px 0px 0px;
          border: none;
}
.detail-container .guarantee-box .navWrap .versions.active[data-v-4127160d]::after {
            border: none;
}
.detail-container .tab-title[data-v-4127160d] {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    line-height: 20px;
    padding: 16px 0 12px 16px;
}
.detail-container .electronic-card[data-v-4127160d] {
    margin: 10px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 0 20px #eef4f7;
    box-shadow: 0 0 20px #eef4f7;
    border-radius: 8px;
}
.detail-container .electronic-card .card-img[data-v-4127160d] {
      margin-right: 14px;
}
.detail-container .electronic-card .card-img img[data-v-4127160d] {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
}
.detail-container .electronic-card .card-information .card-name[data-v-4127160d] {
      font-size: 14px;
      color: #00a758;
      font-weight: bold;
}
.detail-container .electronic-card .card-information .card-contactDetails[data-v-4127160d] {
      font-size: 12px;
      color: #00a758;
}
.detail-container .electronic-card .card-information .card-contactDetails a[data-v-4127160d] {
        font-size: 12px;
}
.detail-container .electronic-card .card-information p[data-v-4127160d] {
      font-size: 12px;
      color: #666666;
}
.detail-container .preview-background[data-v-4127160d] {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}
.detail-container .preview-background .preview-content[data-v-4127160d] {
      width: 86%;
      border-radius: 10px;
      background-color: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      text-align: center;
      padding-top: 10px;
}
.detail-container .preview-background .preview-content .preview-title[data-v-4127160d] {
        font-size: 18px;
        color: #424242;
        height: 40px;
        line-height: 40px;
}
.detail-container .preview-background .preview-content input[data-v-4127160d] {
        height: 50px;
        border: 1px solid #ccc;
        margin-top: 10px;
        padding-left: 10px;
        width: 70%;
        border-radius: 10px;
        font-size: 18px;
}
.detail-container .preview-background .preview-content .preview-text[data-v-4127160d] {
        color: red;
        font-size: 12px;
        min-height: 18px;
        padding-top: 4px;
        padding-bottom: 10px;
}
.detail-container .preview-background .preview-content .preview-btn[data-v-4127160d] {
        background-color: #00A758;
        color: #fff;
        font-size: 16px;
        height: 44px;
        line-height: 44px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
}
.detail-container .guide-box[data-v-4127160d] {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 120;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.detail-container .guide-box .guide-content[data-v-4127160d] {
      position: absolute;
      right: 8px;
      top: 40px;
      border-radius: 10px;
      background: -webkit-gradient(linear, left top, right top, from(#00c46e), to(#00A859));
      background: linear-gradient(to right, #00c46e, #00A859);
      padding: 8px 15px;
}
.detail-container .guide-box .guide-content .guide-text[data-v-4127160d] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        font-size: 14px;
        color: #fff;
        line-height: 1.8;
}
.detail-container .guide-box .guide-content .guide-text .guide-btn[data-v-4127160d] {
          border: 1px solid #fff;
          border-radius: 15px;
          padding: 3px 10px;
          margin-right: 8px;
          font-size: 12px;
          line-height: initial;
}
.detail-container .guide-box .guide-content .guide-arrow[data-v-4127160d] {
        width: 0px;
        height: 0px;
        border: 7px solid transparent;
        border-bottom-color: #00A859;
        position: absolute;
        top: -14px;
        right: 14px;
}
.detail-container .guide-box .guide-content .guide-arrow .guide-line[data-v-4127160d] {
          position: absolute;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          bottom: 0;
          width: 1px;
          height: 50px;
          background: #00A859;
}
.detail-container .submit-btn[data-v-4127160d] {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-bottom: 34px;
    background-color: #fff;
    -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
            box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
    z-index: 10;
}
.detail-container .submit-btn .submit-btn-content[data-v-4127160d] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 14px;
      padding: 8px 12px 8px 10px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.detail-container .submit-btn .submit-btn-content a[data-v-4127160d] {
        display: block;
}
.detail-container .submit-btn .submit-btn-content .submit-btn-content-center[data-v-4127160d] {
        font-family: Source Han Sans CN, Source Han Sans CN;
}
.detail-container .submit-btn .submit-btn-content .submit-btn-content-center .submit-btn-content-total[data-v-4127160d] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.detail-container .submit-btn .submit-btn-content .submit-btn-content-center .submit-btn-content-total .amount-pricename[data-v-4127160d] {
            font-weight: 400;
            font-size: 12px;
            color: #999999;
            margin-right: 2px;
            height: 18px;
            line-height: 14px;
}
.detail-container .submit-btn .submit-btn-content .submit-btn-content-center .submit-btn-content-total .amount-price[data-v-4127160d] {
            font-weight: 400;
            font-size: 12px;
            color: #E91A33;
            height: 18px;
            line-height: 14px;
}
.detail-container .submit-btn .submit-btn-content .submit-btn-content-center .submit-btn-content-total .tips[data-v-4127160d] {
            font-weight: 400;
            font-size: 10px;
            color: #999999;
            height: 15px;
            line-height: 12px;
}
.detail-container .submit-btn .submit-btn-content .submit-btn-content-right[data-v-4127160d] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 14px;
        color: #FFFFFF;
        line-height: 32px;
        text-align: center;
        font-family: Source Han Sans CN, Source Han Sans CN;
}
.detail-container .submit-btn .submit-btn-content .submit-btn-content-right .submit-left[data-v-4127160d] {
          width: 80px;
          height: 32px;
          background: #F39330;
          border-radius: 40px 0px 0px 40px;
}
.detail-container .submit-btn .submit-btn-content .submit-btn-content-right .submit-right[data-v-4127160d] {
          width: 80px;
          height: 32px;
          background: #00A758;
          border-radius: 0px 40px 40px 0px;
}
.detail-container .terms-page[data-v-4127160d] {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}
.detail-container .forwardimg[data-v-4127160d] {
    width: 184px;
    position: fixed;
    right: 25px;
    bottom: 90px;
    z-index: 2;
}
.detail-container .pop1[data-v-4127160d] {
    display: block;
    margin: 200px auto;
    width: 67%;
}
.detail-container .forwardbox[data-v-4127160d] {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 103;
}

.ols-tab.if-fixed-nav {
  padding-top: 44px;
}
.ols-tab.if-fixed-nav .ols-tab-item-area {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
}
.ols-tab-item-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.ols-tab-item-area .ols-tab-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 100%;
    font-size: 13px;
    border: 1px solid #e4e4e4;
    border-left: none;
    color: #000;
}
.ols-tab-item-area .ols-tab-item:last-of-type {
      border-right: none;
}
.ols-tab-item-area .ols-tab-item.ols-active {
      font-weight: bold;
      color: #00A758;
}
.ols-tab-item-area .ols-tab-activeline {
    bottom: 0;
    background-color: #00A758;
    position: absolute;
}
.ols-tab-item-area .ols-transition-forward {
    -webkit-transition: right 0.3s ease-out, left 0.2s ease-in-out 0.3s;
    transition: right 0.3s ease-out, left 0.2s ease-in-out 0.3s;
}
.ols-tab-item-area .ols-transition-backward {
    -webkit-transition: left 0.3s ease-out, right 0.2s ease-in-out 0.3s;
    transition: left 0.3s ease-out, right 0.2s ease-in-out 0.3s;
}

.ols-tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  height: 100%;
  font-size: 13px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ols-tab-item.ols-active {
    color: #5cae78;
}

.material-model-container[data-v-121f822f] {
  width: 100%;
}
.material-model-container[data-v-121f822f] p {
    display: block;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
}
.material-model-container h1[data-v-121f822f],
  .material-model-container h2[data-v-121f822f],
  .material-model-container h3[data-v-121f822f],
  .material-model-container h4[data-v-121f822f],
  .material-model-container h5[data-v-121f822f],
  .material-model-container h6[data-v-121f822f] {
    display: block;
    -webkit-margin-before: 0.67em;
            margin-block-start: 0.67em;
    -webkit-margin-after: 0.67em;
            margin-block-end: 0.67em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    font-weight: bold;
}
.material-model-container[data-v-121f822f] ul {
    margin: 0;
    padding-left: 20px;
    display: block;
    list-style-type: disc;
    -webkit-margin-before: 1em;
            margin-block-start: 1em;
    -webkit-margin-after: 1em;
            margin-block-end: 1em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0px;
            margin-inline-end: 0px;
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
}
.material-model-container[data-v-121f822f] ol {
    margin: 0;
    padding: 0 0 20px 15px;
}
.material-model-container[data-v-121f822f] li {
    list-style: unset;
    display: list-item;
    text-align: -webkit-match-parent;
}
.material-model-container .text-content[data-v-121f822f] {
    padding: 0 16px 10px;
    font-size: 14px;
    position: relative;
}
.material-model-container .text-content .text-wrap[data-v-121f822f] {
      max-height: 320px;
      margin-bottom: 10px;
      overflow: hidden;
      -webkit-transition: all 0.5s cubic-bezier(0, 1, 0, 1) -0.1s;
      transition: all 0.5s cubic-bezier(0, 1, 0, 1) -0.1s;
}
.material-model-container .text-content .text-wrap.isShow[data-v-121f822f] {
        max-height: 999rem;
        -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
                transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
        -webkit-transition-delay: 0s;
                transition-delay: 0s;
}
.material-model-container .text-content .text-wrap .detail[data-v-121f822f] {
        padding-bottom: 5px;
}
.material-model-container .text-content .check-more[data-v-121f822f] {
      font-size: 13px;
      color: #00A758;
      line-height: 20px;
      padding: 6px 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 16px;
}
.material-model-container .text-content .check-more img[data-v-121f822f] {
        width: 16px;
        height: 16px;
        margin-left: 3px;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
}
.material-model-container .text-content .check-more img.toggle[data-v-121f822f] {
          -webkit-transform: rotate(-180deg);
                  transform: rotate(-180deg);
}
.material-model-container .text-content .grey-line[data-v-121f822f] {
      width: 100%;
      height: 10px;
      background-color: #F3F4F5;
      position: absolute;
      left: 0;
      bottom: 0;
}
.material-model-container .pic-content[data-v-121f822f] {
    position: relative;
}
.material-model-container .pic-content .grey-line[data-v-121f822f] {
      width: 100%;
      height: 10px;
      background-color: #F3F4F5;
      position: absolute;
      left: 0;
      bottom: 0;
}
.material-model-container[data-v-121f822f] img {
    width: 100%;
    vertical-align: middle;
}
.material-model-container[data-v-121f822f] a {
    color: #079b4d;
    text-decoration: underline;
}
[data-v-121f822f].material-model-container ol {
  margin: 0;
  padding: 0;
}

@charset "UTF-8";
.preview[data-v-d3eb5496] {
  display: inline-block;
}
.check[data-v-d3eb5496] {
  font-size: 13px;
  color: #459855;
}
.triangle[data-v-d3eb5496] {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #adadad;
  /*no*/
  border-right: 1px solid #adadad;
  /*no*/
  -webkit-transform: translateY(-35%) rotate(45deg);
          transform: translateY(-35%) rotate(45deg);
}
.section[data-v-d3eb5496] {
  height: 90%;
  overflow: auto;
}
.section img[data-v-d3eb5496] {
    width: 100%;
}
.scroll-bar[data-v-d3eb5496]::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
.scroll-bar[data-v-d3eb5496]::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.mask-container .mask-pop[data-v-43091375] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.mask-container .mask-content[data-v-43091375] {
  border-radius: 12px;
  padding: 28px 16px 56px;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 60%;
  color: #333;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 111;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.mask-container .mask-content[data-v-43091375] a {
    color: #079b4d;
    text-decoration: underline;
}
.mask-container .mask-content .mask-header[data-v-43091375] {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    position: relative;
}
.mask-container .mask-content .mask-header .header-line[data-v-43091375] {
      position: absolute;
      left: 0;
      bottom: 1px;
      width: 70px;
      height: 4px;
      background: #00A758;
      opacity: 0.4;
}
.mask-container .mask-content .section div[data-v-43091375] {
    font-size: 13px;
    color: #333333;
    line-height: 16px;
}
.mask-container .mask-content .section[data-v-43091375] .section-title {
    padding: 17px 6px 8px 0px;
    font-size: 14px;
    color: #00A758;
    font-weight: bold;
    line-height: 20px;
}
.mask-container .mask-content .section[data-v-43091375] .section-title.toggle {
      position: relative;
      border-bottom: 1px dashed #F3F3F3;
      margin-right: 6px;
      padding: 12px 0;
}
.mask-container .mask-content .section[data-v-43091375] .section-title.toggle:after {
        border: 2px solid #93959E;
        border-bottom-width: 0;
        border-left-width: 0;
        content: "";
        top: 50%;
        right: 3px;
        position: absolute;
        width: 7px;
        height: 7px;
        -webkit-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg);
}
.mask-container .mask-content .section[data-v-43091375] .section-title.toggle::after {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
}
.mask-container .mask-content .section[data-v-43091375] .section-title.toggle.actived::after {
        -webkit-transform: translateY(-50%) rotate(-45deg);
                transform: translateY(-50%) rotate(-45deg);
}
.mask-container .mask-content .section[data-v-43091375] .section-content {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px dashed #F3F3F3;
}
.mask-container .mask-content .section[data-v-43091375] .section-content.hide {
      display: none;
}
.mask-container .mask-content .section[data-v-43091375] .section-content.actived {
      max-height: 999rem;
      -webkit-transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
              transition-timing-function: cubic-bezier(0.5, 0, 1, 0);
      -webkit-transition-delay: 0s;
              transition-delay: 0s;
}
.mask-container .mask-content .mask-footer[data-v-43091375] {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    height: 40px;
    font-size: 16px;
    padding: 0 16px;
}
.mask-container .mask-content .mask-footer .mask-btn[data-v-43091375] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      width: 100%;
      border-radius: 50px;
      color: #fff;
      background: #00A758;
      font-weight: bold;
}

.version-detail[data-v-85f70314] {
  margin: 0 0 20px;
  border: 1px solid #00A758;
  border-radius: 0 0 6px 6px;
}
.version-detail .version-content[data-v-85f70314] {
    padding: 13px 0 8px 0;
}
.version-detail .version-content .version-box[data-v-85f70314] {
      padding: 0 8px 0 16px;
      font-size: 0.32rem;
      font-weight: bold;
      color: #00A758;
      height: 24px;
      width: 23.5%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #E5F6EE;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
}
.version-detail .version-content .version-box-red[data-v-85f70314] {
      padding: 0 8px 0 16px;
      font-size: 0.32rem;
      font-weight: bold;
      color: #EC6453;
      height: 24px;
      width: 23.5%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #FDEFEE;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
}
.version-detail ul[data-v-85f70314] {
    margin: 0 16px;
    padding-bottom: 10px;
}
.version-detail ul li[data-v-85f70314] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      min-height: 44px;
      border-bottom: 1px dashed #E4E4E4;
      font-size: 13px;
}
.version-detail ul li[data-v-85f70314]:last-child {
        border-bottom: none;
}
.version-detail ul li .version-title[data-v-85f70314] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: bold;
        color: #333333;
}
.version-detail ul li .version-title img[data-v-85f70314] {
          width: 20px;
          height: 20px;
          vertical-align: top;
          padding-right: 8px;
}
.version-detail ul li .color-red[data-v-85f70314] {
        color: #E91A33;
        font-weight: normal;
}
.version-detail ul li .finial-amount[data-v-85f70314] {
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
}
.version-detail .coverageDescPic img[data-v-85f70314] {
    display: block;
    width: 100%;
}

.pop-up-panel[data-v-6311f1ea] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.pop-up-panel .pop-up-box[data-v-6311f1ea] {
    width: 84%;
    text-align: center;
    background: #FFFFFF;
    opacity: 1;
    top: 35%;
    left: 8%;
    background-color: #fff;
    border-radius: 12px 12px 12px 12px;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.pop-up-panel .pop-up-box .title[data-v-6311f1ea] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: -23px;
}
.pop-up-panel .pop-up-box .title .img[data-v-6311f1ea] {
        width: 154px;
        height: 52px;
}
.pop-up-panel .pop-up-box .title .tips[data-v-6311f1ea] {
        font-size: 17px;
        font-family: Source Han Sans CN-Bold, Source Han Sans CN;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 24px;
        letter-spacing: 4px;
        position: absolute;
        margin-top: 22px;
}
.pop-up-panel .pop-up-box .middle-img[data-v-6311f1ea] {
      margin-top: 23px;
}
.pop-up-panel .pop-up-box .middle-img .img-midd[data-v-6311f1ea] {
        width: 283px;
        height: 120px;
}
.pop-up-panel .pop-up-box .tips[data-v-6311f1ea] {
      font-size: 14px;
      font-weight: 400;
      color: #333333;
      line-height: 20px;
      margin: 12px 16px 0 16px;
      text-align: left;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.pop-up-panel .pop-up-box .button[data-v-6311f1ea] {
      height: 40px;
      background: white;
      border-radius: 50px;
      opacity: 1;
      border: 1px solid #00a758;
      margin: 24px 26px 16px 26px;
      line-height: 40px;
      font-size: 16px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #00A758;
      letter-spacing: 2px;
}

.terms-page[data-v-229577fa] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.terms-page .terms-pop[data-v-229577fa] {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 560px;
    overflow-y: auto;
    border-radius: 12px 12px 0px 0px;
    font-family: Source Han Sans CN, Source Han Sans CN;
}
.terms-page .terms-pop .title-contain[data-v-229577fa] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 12px 16px;
      height: 48px;
}
.terms-page .terms-pop .title-contain .title-name[data-v-229577fa] {
        font-size: 17px;
        font-weight: bold;
        color: #333333;
        margin-left: 16px;
        margin-right: 16px;
}
.terms-page .terms-pop .title-contain .title-name .title-bottom[data-v-229577fa] {
          height: 4px;
          background: #00A758;
          border-radius: 0px 0px 0px 0px;
          opacity: 0.4;
          width: 100%;
          margin-top: -3px;
}
.terms-page .terms-pop .contain-info[data-v-229577fa] {
      margin-bottom: 94px;
      padding: 0 16px;
}
.terms-page .terms-pop .choosePeople[data-v-229577fa] {
      height: 44px;
      margin-top: 10px;
      font-size: 14px;
      font-weight: 400;
}
.terms-page .terms-pop .muilterContain[data-v-229577fa] {
      background: #FFFFFF;
      border-radius: 6px 6px 6px 6px;
      opacity: 1;
      border: 1px solid #EEEEEE;
      font-family: Source Han Sans CN, Source Han Sans CN;
      padding-bottom: 8px;
      margin-top: 10px;
}
.terms-page .terms-pop .muilterContain .button-leftamount[data-v-229577fa] {
        color: red;
        text-align: left;
        margin-left: 30px;
        line-height: 20px;
}
.terms-page .terms-pop .muilterContain .bottom-price[data-v-229577fa] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        line-height: 20px;
        text-align: left;
        margin-left: 30px;
}
.terms-page .terms-pop .muilterContain .bottom-price .price-left[data-v-229577fa] {
          font-size: 10px;
          font-weight: 400;
          color: #999999;
          margin-right: 4px;
          position: relative;
}
.terms-page .terms-pop .muilterContain .bottom-price .price-left[data-v-229577fa]::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%);
                  transform: translate(-50%);
          width: 100%;
          height: 1px;
          background: #999999;
}
.terms-page .terms-pop .muilterContain .bottom-price .price-right[data-v-229577fa] {
          font-size: 14px;
          color: #E91A33;
}
.terms-page .terms-pop .muilterContain .plancontain[data-v-229577fa] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding-left: 8px;
}
.terms-page .terms-pop .muilterContain .plancontain .plancontain-left[data-v-229577fa] {
          padding-right: 30px;
          font-size: 14px;
          font-weight: 400;
          color: #666666;
}
.terms-page .terms-pop .muilterContain .plancontain .plancontain-right1[data-v-229577fa] {
          border-radius: 40px 40px 40px 40px;
          font-size: 14px;
          font-weight: 500;
          color: #00A758;
          border: 1px solid #00A758;
          width: 80px;
          height: 32px;
          text-align: center;
          line-height: 32px;
          margin-top: 6px;
          margin-bottom: 6px;
}
.terms-page .terms-pop .muilterContain .plancontain .plancontain-right2[data-v-229577fa] {
          border-radius: 40px 40px 40px 40px;
          border: 1px solid #999999;
          font-size: 14px;
          font-weight: 500;
          width: 80px;
          height: 32px;
          color: #999999;
          text-align: center;
          line-height: 32px;
          margin: 6px 0 6px 8px;
}
.terms-page .terms-pop .submit-btn[data-v-229577fa] {
      position: fixed;
      bottom: 0;
      width: 100%;
      padding-bottom: 38px;
      background-color: #fff;
      -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
              box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
      z-index: 10;
}
.terms-page .terms-pop .submit-btn .submit-btn-content[data-v-229577fa] {
        padding: 4px 16px 0 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        text-align: center;
}
.terms-page .terms-pop .submit-btn .submit-btn-content .bottom-price-name[data-v-229577fa] {
          font-size: 12px;
          margin-right: 19px;
}
.terms-page .terms-pop .submit-btn .submit-btn-content .bottom-price-name .bottom-price[data-v-229577fa] {
            font-weight: 400;
            font-size: 12px;
            color: #666666;
}
.terms-page .terms-pop .submit-btn .submit-btn-content .bottom-price-name .font[data-v-229577fa] {
            color: red;
            font-size: 14px;
}
.terms-page .terms-pop .submit-btn .submit-btn-content .bottom-price-name .amount[data-v-229577fa] {
            font-weight: 500;
            font-size: 20px;
            color: #E91A33;
}
.terms-page .terms-pop .submit-btn .submit-btn-content .bottom-price-name .mind[data-v-229577fa] {
            font-weight: 500;
            font-size: 12px;
            color: #E91A33;
}
.terms-page .terms-pop .submit-btn .submit-btn-content .submit-btn-right[data-v-229577fa] {
          height: 36px;
          background: #00A758;
          border-radius: 40px 40px 40px 40px;
          text-align: center;
          line-height: 36px;
          font-size: 16px;
          font-weight: bold;
          width: 30.33%;
          color: #FFFFFF;
}
.terms-page .terms-pop[data-v-229577fa] .ols-form-list {
      padding-bottom: 0px;
}
.terms-page .terms-pop[data-v-229577fa] .ols-form-list .ols-cell-group {
        padding-bottom: 0;
        margin-left: 8px;
        margin-right: 8px;
        margin-bottom: 0px;
}
.terms-page .terms-pop[data-v-229577fa] .ols-form-list .ols-cell-group .ols-form-item {
          margin: 0;
          padding-bottom: 0;
}
.terms-page .terms-pop[data-v-229577fa] .ols-form-list .ols-cell-group .ols-form-item .ols-form-item-inner {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: baseline;
                -ms-flex-align: baseline;
                    align-items: baseline;
}
.terms-page .terms-pop[data-v-229577fa] .ols-form-list .ols-form-item .ols-form-item-label {
      text-align: left;
      -ms-flex-preferred-size: 96px;
          flex-basis: 96px;
      line-height: 20px;
      white-space: nowrap;
      color: #666;
}
.terms-page .imgcommon[data-v-229577fa] {
    height: 22px;
    height: 22px;
}
.terms-page .img-close[data-v-229577fa] {
    height: 24px;
    position: absolute;
    right: 16px;
}
.trial-right[data-v-229577fa] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.trial-right .trial-list[data-v-229577fa] {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    padding: 4px 0;
    border-radius: 30px;
    border: 1px solid #B9B9B9;
    margin-left: 25px;
    min-width: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.trial-right .current-trail[data-v-229577fa] {
    color: #00A758;
    border: 1px solid #00A758;
}
[data-v-229577fa].ols-cell-group {
  margin-bottom: 10px;
  background: #fff;
  background: #FFFFFF;
  border-radius: 6px 6px 6px 6px;
  margin-left: 16px;
  margin-right: 16px;
  padding-bottom: 0;
  position: relative;
}

.info-container[data-v-25a682d1] .sex-box .ols-form-item-inner .ols-checker .ols-checker-options {
  padding-left: 30px;
}
.info-container .radio-box[data-v-25a682d1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 100px;
  padding-top: 10px;
}
.info-container .radio-box .radio-btn[data-v-25a682d1] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    background-color: #00A758;
    position: relative;
    margin-right: 2px;
}
.info-container .radio-box .radio-btn[data-v-25a682d1]:after {
      content: "";
      position: absolute;
      left: 2px;
      top: 3px;
      width: 7px;
      height: 3px;
      border: 2px solid #fff;
      border-radius: 1px;
      border-top: none;
      border-right: none;
      background: transparent;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
}
.info-container .radio-box .radio-not-btn[data-v-25a682d1] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    margin-right: 2px;
}
.info-container .clause-box[data-v-25a682d1] {
  width: 100%;
  background-color: #fff;
}
.info-container .clause-box .clause-health[data-v-25a682d1] {
    width: 92%;
    margin: 0 auto;
    padding-top: 10px;
    line-height: 20px;
    font-size: 12px;
    color: #666666;
    padding-bottom: 12px;
}
.info-container .clause-box .clause-health .readAndAgree[data-v-25a682d1] {
      position: relative;
}
.info-container .clause-box .clause-health .readAndAgree .not-agree[data-v-25a682d1] {
        position: absolute;
        left: 0;
        z-index: 2;
        width: 20px;
        height: 20px;
}
.info-container .clause-box .clause-health .readAndAgree .agree[data-v-25a682d1] {
        position: absolute;
        left: 0;
        z-index: 2;
        width: 20px;
        height: 20px;
}
.info-container .clause-box .clause-health .clause-title[data-v-25a682d1] {
      display: inline-block;
      text-decoration: underline;
      color: #00A758;
}
.info-container .main[data-v-25a682d1] {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.info-container .titleinfo[data-v-25a682d1] {
  font-size: 16px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #000000;
  line-height: 20px;
  padding: 16px 0 0 16px;
}
.info-container .form .form-group[data-v-25a682d1] {
  margin-top: 15px;
}
.info-container .form .ols-form-item[data-v-25a682d1] {
  margin-left: 12px;
  margin-right: 12px;
}
.info-container .form .ols-form-item[data-v-25a682d1] .ols-form-item-content {
    overflow: hidden;
}
.info-container .form .ols-form-item[data-v-25a682d1] .ols-form-item-content .ols-viewer {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.info-container .form .phone-square[data-v-25a682d1] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.info-container .form .phone-square[data-v-25a682d1] .ols-form-item-content .ols-input {
    width: 40%;
}
.info-container .form .phone-square[data-v-25a682d1] .ols-form-item-content .readAndAgree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.info-container .form .phone-square[data-v-25a682d1] .ols-form-item-content .readAndAgree span {
      font-size: 12px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #333333;
      margin-left: 5px;
}
.info-container .form .phone-square[data-v-25a682d1] .ols-form-item-content .readAndAgree img {
      width: 20px;
      height: 20px;
}
.info-container[data-v-25a682d1] .beneficiary-text {
  padding: 10px 15px;
  color: #666;
  background-color: #ffffff;
}
.info-container .color-leftred[data-v-25a682d1] {
  font-size: 20px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #E91A33;
  line-height: 20px;
}
.info-container .color-red[data-v-25a682d1] {
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #E91A33;
}
.info-container .btn-left[data-v-25a682d1] {
  height: 18px;
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #666666;
  line-height: 14px;
}
.info-container .btn-left .newPrice[data-v-25a682d1] {
    font-size: 20px;
    /*px*/
}
.info-container .bottom-height[data-v-25a682d1] {
  width: 100%;
  height: 1px;
  padding-bottom: 85px;
}
.info-container .clause[data-v-25a682d1] {
  font-size: 12px;
  color: #333;
  margin-bottom: 0px;
  background: #ffffff;
  padding-top: 16px;
}
.info-container .clause > div[data-v-25a682d1] {
    width: 91.47%;
    margin: 0 auto;
    line-height: 20px;
}
.info-container .clause > div .readAndAgree[data-v-25a682d1] {
      position: relative;
}
.info-container .clause > div .readAndAgree .not-agree[data-v-25a682d1] {
        position: absolute;
        width: 20px;
        height: 20px;
}
.info-container .clause > div .readAndAgree .agree[data-v-25a682d1] {
        position: absolute;
        width: 20px;
        height: 20px;
}
.info-container .clause > div .clause-title[data-v-25a682d1] {
      display: inline-block;
      text-decoration: underline;
      color: #00A758;
      font-size: 12px;
      line-height: 12px;
}
.info-container .footer[data-v-25a682d1] {
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  height: 78px;
  z-index: 10;
  height: 78px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
}
.info-container .automatic-renewal[data-v-25a682d1] {
  padding: 16px;
}
.info-container .automatic-renewal .renewal-title[data-v-25a682d1] {
    margin-bottom: 20px;
    font-size: 15px;
    color: #000000;
    font-weight: 800;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.info-container .automatic-renewal .renewal-title span[data-v-25a682d1] {
      display: inline-block;
      background: #E39D2D;
      font-size: 14px;
      color: #ffffff;
      margin-left: 6px;
      padding: 2px 10px;
      border-radius: 10px 10px 10px 0;
}
.info-container .automatic-renewal .renewal-title[data-v-25a682d1] .mint-switch-core {
      background: #fff;
}
.info-container .automatic-renewal .renewal-title[data-v-25a682d1] .mint-switch-input:checked + .mint-switch-core {
      border-color: #5cae78;
      background-color: #5cae78;
}
.info-container .automatic-renewal .renewal-title[data-v-25a682d1] .mint-switch-core::before {
      background-color: transparent;
}
.info-container .automatic-renewal .renewal-description[data-v-25a682d1] {
    width: 100%;
    background: #f4f5f7;
    position: relative;
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
}
.info-container .automatic-renewal .renewal-description p[data-v-25a682d1] {
      font-size: 15px;
      color: #000;
      font-weight: 800;
      margin-bottom: 6px;
}
.info-container .automatic-renewal .renewal-description ul li[data-v-25a682d1] {
      font-size: 14px;
      color: #7B7B7B;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
}
.info-container .automatic-renewal .renewal-description ul li .title[data-v-25a682d1] {
        padding-left: 5px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}
.info-container .automatic-renewal .open-state[data-v-25a682d1] :before {
    content: '';
    width: 0px;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f4f5f7;
    position: absolute;
    top: -40px;
    left: 22px;
}
.info-container .automatic-renewal .unopened-state[data-v-25a682d1]:before {
    content: '';
    width: 0px;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #f4f5f7;
    position: absolute;
    top: -40px;
    right: 109px;
}
.info-container .choose-address[data-v-25a682d1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.info-container .choose-address img[data-v-25a682d1] {
    width: 20px;
    height: 20px;
}
.info-container .choose-address span[data-v-25a682d1] {
    margin-left: 4px;
    height: 20px;
    font-size: 12px;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
}
.info-container .span-class[data-v-25a682d1] {
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #666666;
  line-height: 20px;
}
.info-container .destination-box[data-v-25a682d1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-container .destination-box .destination-btn[data-v-25a682d1] {
    height: 28px;
    line-height: 28px;
    min-width: 70px;
    text-align: center;
    padding: 0 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #666;
    font-size: 14px;
    margin-right: 10px;
}
.info-container .destination-box .destination-checked[data-v-25a682d1] {
    color: #fff;
    background: #5cae78;
    border-color: #5cae78;
}
.info-container[data-v-25a682d1] .insured-address .ols-form-item-content {
  position: relative;
}
.info-container[data-v-25a682d1] .insured-address .ols-form-item-content .address-text {
    position: absolute;
    left: 0;
    z-index: 11;
    background-color: #fff;
    color: #666;
}
.next-btn[data-v-25a682d1] {
  height: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.ols-checker-options[data-v-25a682d1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}
.ols-checker-options[data-v-25a682d1]:after {
    content: '';
    display: table;
    clear: both;
}
.ols-checker-option[data-v-25a682d1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.ols-checker-option .img[data-v-25a682d1] {
    width: 20px;
    height: 20px;
}
.ols-checker-option[data-v-25a682d1]:last-of-type {
    margin-right: 0;
}
.spanbox[data-v-25a682d1] {
  height: 36px;
  background: rgba(0, 167, 88, 0.1);
  border-radius: 0px 5px 0px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  position: absolute;
  right: 0;
  top: 0;
}
.img[data-v-25a682d1] {
  width: 24px;
  height: 24px;
}
.spanFont[data-v-25a682d1] {
  font-size: 14px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  color: #00A758;
  line-height: 20px;
  margin: 8px 10px 8px 4px;
}
.relation[data-v-25a682d1] {
  width: 52px;
  height: 28px;
  border-radius: 30px;
  opacity: 1;
  font-size: 14px;
  font-family: "Source Han Sans CN-Regular", "Source Han Sans CN";
  font-weight: 400;
  line-height: 28px;
  background-clip: text;
  clear: both;
  text-align: center;
  margin-right: 12px;
  display: inline-block;
}
.relation-bor[data-v-25a682d1] {
  width: 319px;
  height: 40px;
  margin-left: 12px;
  padding-top: 6px;
}
.alreadyinfo[data-v-25a682d1] {
  height: 20px;
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  line-height: 20px;
  margin-left: 12px;
}
.healthInfo[data-v-25a682d1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 12px;
  height: 44px;
}
.healthInfo .confirminfo[data-v-25a682d1] {
    width: 84px;
    height: 20px;
    font-size: 12px;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #0000C1;
    line-height: 20px;
    padding-top: 12px;
}
.healthInfo .right-arrow[data-v-25a682d1]:after {
    content: "";
    display: inline-block;
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    width: 5px;
    height: 5px;
    border-radius: 0px 0px 0px 0px;
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(45deg);
    margin-left: 6px;
    margin-top: 19px;
}
.youhui[data-v-25a682d1] {
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.youhui img[data-v-25a682d1] {
    height: 89px;
    width: 100%;
}
.content-box[data-v-25a682d1] {
  padding: 0 12px;
}
.content-box .content-detail[data-v-25a682d1] {
    border-radius: 6px 6px 6px 6px;
    border: 1px solid #EEEEEE;
    padding: 16px 8px 12px 8px;
    margin-bottom: 12px;
    position: relative;
}
.content-box .content-detail .content-detail-position[data-v-25a682d1] {
      position: absolute;
      right: 0;
      top: 0;
      background: rgba(0, 0, 193, 0.04);
      border-radius: 0px 5px 0px 10px;
      font-weight: 500;
      color: #0000C1;
      font-size: 12px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 6px 10px;
      line-height: 20px;
}
.content-box .content-detail .content-detail-position img[data-v-25a682d1] {
        width: 18px;
        height: 18px;
}
.content-box .content-detail .content-detail-position .positon-grey[data-v-25a682d1] {
        background: #F3F4F5;
        font-size: 12px;
        font-weight: 400;
        color: #999999;
        line-height: 20px;
}
.content-box .content-detail .content-detail-top[data-v-25a682d1] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-bottom: 12px;
}
.content-box .content-detail .content-detail-top .top-name[data-v-25a682d1] {
        font-weight: 500;
        color: #333333;
        line-height: 20px;
        font-size: 14px;
        padding-right: 4px;
}
.content-box .content-detail .content-detail-top .top-tag[data-v-25a682d1] {
        font-size: 11px;
        font-weight: 400;
        color: #999999;
        line-height: 16px;
        border-radius: 1px;
        border: 1px solid #EDEDED;
        padding: 0 6px;
        margin-right: 4px;
}
.content-box .content-detail .content-detail-top .top-social[data-v-25a682d1] {
        font-size: 11px;
        font-weight: 400;
        color: #999999;
        line-height: 16px;
        border-radius: 1px 1px 1px 1px;
        border: 1px solid #EDEDED;
        padding: 0 6px;
        margin-right: 4px;
}
.content-box .content-detail .content-detail-top .top-social-orange[data-v-25a682d1] {
        font-size: 11px;
        font-weight: 400;
        color: #F49600;
        line-height: 16px;
        border-radius: 1px 1px 1px 1px;
        border: 1px solid #F49600;
        padding: 0 6px;
        margin-right: 4px;
}
.content-box .content-detail .content-detail-top .top-dele[data-v-25a682d1] {
        width: 16px;
        height: 16px;
}
.content-box .content-detail .content-detail-bottom[data-v-25a682d1] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.content-box .content-detail .content-detail-bottom .bottom-type[data-v-25a682d1] {
        border-radius: 6px;
        opacity: 1;
        border: 1px solid #00A758;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 4px 8px;
}
.content-box .content-detail .content-detail-bottom .bottom-type span[data-v-25a682d1] {
          padding-right: 4px;
          color: #00A758;
          line-height: 20px;
          font-size: 12px;
}
.content-box .content-detail .content-detail-bottom .bottom-type img[data-v-25a682d1] {
          width: 18px;
          height: 18px;
}
.content-box .content-detail .content-detail-bottom .bottom-price[data-v-25a682d1] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        line-height: 20px;
}
.content-box .content-detail .content-detail-bottom .bottom-price .price-left[data-v-25a682d1] {
          font-size: 10px;
          font-weight: 400;
          color: #999999;
          margin-right: 4px;
          position: relative;
}
.content-box .content-detail .content-detail-bottom .bottom-price .price-left[data-v-25a682d1]::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%);
                  transform: translate(-50%);
          width: 100%;
          height: 1px;
          background: #999999;
}
.content-box .content-detail .content-detail-bottom .bottom-price .price-right[data-v-25a682d1] {
          font-size: 14px;
          color: #E91A33;
}
.imgimfo[data-v-25a682d1] {
  width: 18px;
  height: 18px;
}
.imgimfo1[data-v-25a682d1] {
  width: 16px;
  height: 16px;
}
.imgimfo2[data-v-25a682d1] {
  width: 16px;
  height: 16px;
  position: absolute;
}
.btn-add[data-v-25a682d1] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-add img[data-v-25a682d1] {
    height: 40px;
    width: 240px;
}
[data-v-25a682d1].footer-container .nextTip.canNext {
  background: #666;
  width: 148px;
  height: 40px;
  background: #00A758;
  border-radius: 40px 40px 40px 40px;
  opacity: 1;
  margin-top: 4px;
  margin-right: 16px;
}
[data-v-25a682d1].footer-container .left-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: left;
  color: #5cae78;
  border: 1px solid #fff;
  background: #fff;
  margin-left: 16px;
}
[data-v-25a682d1].footer-container .nextTip {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  color: #fff;
  width: 148px;
  height: 40px;
  background: #00A758;
  border-radius: 40px 40px 40px 40px;
  opacity: 1;
  margin-top: 4px;
  font-size: 18px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  margin-right: 16px;
}
[data-v-25a682d1].ols-form-list .ols-formnew-item .ols-formnew-item-label {
  text-align: left;
  -ms-flex-preferred-size: 76px;
  width: 60px;
  white-space: normal;
  color: #666;
  height: 39px;
}
.left-font[data-v-25a682d1] {
  font-size: 12px;
  font-family: "Source Han Sans CN-Regular", "Source Han Sans CN";
  font-weight: 400;
  color: #666666;
  line-height: 14px;
}

.pop-up-panel[data-v-03d22850] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
}
.pop-up-box[data-v-03d22850] {
  width: 100%;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  bottom: 0;
  position: fixed;
  height: 362px;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  opacity: 1;
}
.cancle[data-v-03d22850] {
  text-align: left;
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #999999;
  line-height: 20px;
  margin-top: 14px;
  margin-left: 16px;
  display: inline-block;
  float: left;
}
.pop-title[data-v-03d22850] {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  opacity: 1;
  border: 1px solid #EEEEEE;
}
.pop-up-title[data-v-03d22850] {
  font-size: 17px;
  font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: inline-block;
}
.heng[data-v-03d22850] {
  width: 136px;
  height: 4px;
  background: #00A758;
  border-radius: 0px 0px 0px 0px;
  opacity: 0.4;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  margin-top: 33px;
  left: 0px;
  right: 0px;
}
.confirm[data-v-03d22850] {
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #00A758;
  line-height: 20px;
  margin-top: 14px;
  margin-right: 16px;
  float: right;
}
.midldle[data-v-03d22850] {
  height: 280px;
  border-radius: 0px;
  opacity: 1;
  margin-left: 16px;
  margin-right: 16px;
  overflow: scroll;
}
.middle-top[data-v-03d22850] {
  border-bottom: 1px solid rgba(51, 51, 51, 0.06);
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.middle-top .middle-box-left[data-v-03d22850] {
    padding-right: 10px;
}
.middle-top .middle-box-left img[data-v-03d22850] {
      width: 20px;
      height: 20px;
}
.middle-top .middle-box-center[data-v-03d22850] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.middle-top .middle-box-center .middle-box-top[data-v-03d22850] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-bottom: 4px;
}
.middle-top .middle-box-center .middle-box-top .namespan[data-v-03d22850] {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        padding-right: 4px;
        color: #686868;
}
.middle-top .middle-box-center .middle-box-top .current-name[data-v-03d22850] {
        color: #333;
        font-weight: 500;
}
.middle-top .middle-box-center .middle-box-bottom[data-v-03d22850] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      padding-bottom: 4px;
}
.middle-top .middle-box-center .middle-box-bottom .idcard[data-v-03d22850] {
        height: 20px;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #999999;
        line-height: 20px;
        padding-bottom: 4px;
}
.middle-top .middle-box-center .middle-box-bottom .complete[data-v-03d22850] {
        font-size: 12px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #0000C1;
}
.middle-top .middle-box-right[data-v-03d22850] {
    width: 20px;
    height: 20px;
}
.margin-wa[data-v-03d22850] {
  width: 34px;
  height: 16px;
  border-radius: 1px 1px 1px 1px;
  border: 1px solid #EDEDED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 11px;
  line-height: 16px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #999999;
  margin: 2px 4px 2px 0;
}
.ishos[data-v-03d22850] {
  width: 45px;
  height: 16px;
  border-radius: 8px 8px 8px 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 11px;
  margin: 2px 0;
}
.tips[data-v-03d22850] {
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  text-align: left;
  padding-bottom: 6px;
}
.toedit[data-v-03d22850] {
  position: fixed;
  right: 16px;
}
.toedit img[data-v-03d22850] {
    width: 20px;
    height: 20px;
}

.pop-up-panel[data-v-79372f43] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}
.pop-up-box1[data-v-79372f43] {
  width: 100%;
  background-color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  bottom: 0;
  position: fixed;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  opacity: 1;
}
.cancle[data-v-79372f43] {
  text-align: left;
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #999999;
  line-height: 20px;
  margin-top: 14px;
  margin-left: 16px;
  display: inline-block;
  float: left;
}
.pop-title[data-v-79372f43] {
  width: 100%;
  height: 48px;
  background: #FFFFFF;
  border-radius: 12px 12px 0px 0px;
  opacity: 1;
  border: 1px solid #EEEEEE;
}
.pop-up-title[data-v-79372f43] {
  font-size: 17px;
  font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  font-weight: bold;
  color: #333333;
  line-height: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
  display: inline-block;
}
.heng[data-v-79372f43] {
  width: 105px;
  height: 4px;
  background: #00A758;
  border-radius: 0px 0px 0px 0px;
  opacity: 0.4;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  left: 0px;
  right: 0px;
}
.confirm[data-v-79372f43] {
  font-size: 14px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #00A758;
  line-height: 20px;
  margin-top: 14px;
  margin-right: 16px;
  float: right;
}
.cont-midldle[data-v-79372f43] {
  height: 100%;
  min-height: 544px;
  max-height: 544px;
  overflow: auto;
}
.info-container .radio-box[data-v-79372f43] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 100px;
  padding-top: 10px;
}
.info-container .radio-box .radio-btn[data-v-79372f43] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    background-color: #00A758;
    position: relative;
    margin-right: 2px;
}
.info-container .radio-box .radio-btn[data-v-79372f43]:after {
      content: "";
      position: absolute;
      left: 2px;
      top: 3px;
      width: 7px;
      height: 3px;
      border: 2px solid #fff;
      border-radius: 1px;
      border-top: none;
      border-right: none;
      background: transparent;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg);
}
.info-container .radio-box .radio-not-btn[data-v-79372f43] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #00A758;
    margin-right: 2px;
}
.info-container .main[data-v-79372f43] {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.info-container .form .form-group[data-v-79372f43] {
  margin-top: 15px;
  margin-left: 0;
  margin-right: 0;
}
.info-container .form .ols-form-item[data-v-79372f43] {
  margin-left: 16px;
  margin-right: 16px;
}
.info-container .form .ols-form-item[data-v-79372f43] .ols-form-item-content {
    overflow: hidden;
}
.info-container .form .ols-form-item[data-v-79372f43] .ols-form-item-content .ols-viewer {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
}
.info-container .form .phone-square[data-v-79372f43] .ols-form-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.info-container .form .phone-square[data-v-79372f43] .ols-form-item-content .ols-input {
    width: 40%;
}
.info-container .choose-address[data-v-79372f43] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.info-container .choose-address img[data-v-79372f43] {
    width: 20px;
    height: 20px;
}
.info-container .choose-address span[data-v-79372f43] {
    margin-left: 4px;
    height: 20px;
    font-size: 12px;
    font-family: Source Han Sans CN-Regular, Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
}
.info-container[data-v-79372f43] .insured-address .ols-form-item-content {
  position: relative;
}
.info-container[data-v-79372f43] .insured-address .ols-form-item-content .ols-form-item-content .address-text {
    position: absolute;
    left: 0;
    z-index: 11;
    background-color: #fff;
    color: #666;
}
[data-v-79372f43].ols-form-list .ols-form-item .ols-form-item-inner {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
[data-v-79372f43].ols-form-list .form-checker-box .ols-form-item-inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
[data-v-79372f43].ols-form-list .form-checker-box .ols-form-item-inner .ols-form-item-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
[data-v-79372f43].ols-form-list .form-checker-box .ols-form-item-inner .ols-form-item-label .imgsy {
      margin-left: 4px;
}
[data-v-79372f43].ols-form-list .form-checker-box .ols-form-item-inner .ols-checker {
    height: 100%;
}
.ols-checker-options[data-v-79372f43] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}
.ols-checker-options[data-v-79372f43]:after {
    content: '';
    display: table;
    clear: both;
}
.ols-checker-option[data-v-79372f43] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.ols-checker-option .img[data-v-79372f43] {
    width: 20px;
    height: 20px;
}
.ols-checker-option[data-v-79372f43]:last-of-type {
    margin-right: 0;
}
.relation-box[data-v-79372f43] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
  margin-left: 9px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.relation-box .relation[data-v-79372f43] {
    line-height: 20px;
    padding: 4px 12px;
    border-radius: 30px;
    opacity: 1;
    font-size: 14px;
    font-family: "Source Han Sans CN-Regular", "Source Han Sans CN";
    color: #333333;
    border: 1px solid #B9B9B9;
}
.relation-box .current-relation[data-v-79372f43] {
    color: #00A758;
    border: 1px solid #00A758;
}
.relation-bor[data-v-79372f43] {
  font-size: 12px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #B9B9B9;
  line-height: 20px;
  position: absolute;
  left: 0;
  bottom: 5px;
}
[data-v-79372f43].ols-form-list .ols-formnew-item .ols-formnew-item-label {
  text-align: left;
  -ms-flex-preferred-size: 76px;
  width: 60px;
  white-space: normal;
  color: #666;
  height: 39px;
}
[data-v-79372f43].sex-box .ols-form-item-inner .ols-checker .ols-checker-options {
  padding-left: 30px;
}

.bordertotal[data-v-7de3142e] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 59;
}
.bordertotal .view[data-v-7de3142e] {
    background-color: #fff;
    margin-top: 40px;
    overflow: auto;
    height: 100%;
    border-radius: 12px 12px 0px 0px;
    opacity: 1;
}
.bordertotal .view .health-notice[data-v-7de3142e] {
      width: 100%;
      margin: 0 auto;
      border-radius: 4px;
      padding: 28px 12px 0 16px;
}
.bordertotal .view .health-notice .health-noticetotal[data-v-7de3142e] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .view .health-notice h2[data-v-7de3142e] {
        padding: 0;
}
.bordertotal .view .health-notice .notice-text[data-v-7de3142e] {
        border: 1px solid #B9B9B9;
        border-radius: 6px;
        padding: 16px 10px;
}
.bordertotal .view .health-notice .notice-text .text-title[data-v-7de3142e] {
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #333333;
          line-height: 20px;
}
.bordertotal .view .health-notice .notice-text .text-description[data-v-7de3142e] {
          padding: 6px 0px;
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #333333;
          line-height: 20px;
}
.bordertotal .view .health-notice .notice-text .terms-text[data-v-7de3142e] {
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #333333;
          line-height: 20px;
}
.bordertotal .view .health-notice .notice-text .terms-text p[data-v-7de3142e] {
            padding-bottom: 6px;
}
.bordertotal .view .grrenborder[data-v-7de3142e] {
      display: inline-block;
      margin-bottom: 16px;
}
.bordertotal .view .grrenborder .green[data-v-7de3142e] {
        width: 100%;
        height: 4px;
        background: #00a758;
        border-radius: 0px;
        opacity: 0.4;
        position: relative;
        left: 0;
        right: 0;
        margin-top: -6px;
}
.bordertotal .view .imgsrc[data-v-7de3142e] {
      width: 24px;
      height: 24px;
}
.bordertotal .view h2[data-v-7de3142e] {
      width: 84px;
      height: 20px;
      font-size: 14px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      color: #000000;
      line-height: 20px;
}
.bordertotal .view .detail[data-v-7de3142e] {
      position: relative;
      margin: 0 16px 15px;
      font-size: 14px;
      line-height: 20px;
}
.bordertotal .view .detail .muchposi[data-v-7de3142e] {
        width: 69.98%;
        display: block;
        font-size: 13px;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        font-weight: 400;
        color: #666666;
}
.bordertotal .view .detail .answer-box[data-v-7de3142e] {
        width: 60px;
        position: absolute;
        top: 0;
        right: 5%;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
}
.bordertotal .view .detail .answer-box .spanfont[data-v-7de3142e] {
          font-size: 13px;
          font-family: Source Han Sans CN-Regular, Source Han Sans CN;
          font-weight: 400;
          color: #333333;
          line-height: 20px;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
}
.bordertotal .view .sub-wrap[data-v-7de3142e] {
      margin-bottom: 250px !important;
      -webkit-overflow-scrolling: touch;
}
.bordertotal .view .sub-wrap .clause[data-v-7de3142e] .qes {
        position: relative;
        padding-bottom: 12px;
        width: 70%;
}
.bordertotal .view .sub-wrap .clause[data-v-7de3142e] .qes .answer-box {
          width: 69px;
          position: absolute;
          top: 3px;
          right: -38%;
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1;
          display: -ms-flexbox;
          display: -webkit-box;
          display: flex;
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
}
.bordertotal .view .sub-wrap .clause[data-v-7de3142e] .qes .answer-box .check-box {
            position: relative;
            width: 20px;
            height: 20px;
            border-radius: 2px 2px 2px 2px;
            border: 1px solid #B9B9B9;
}
.bordertotal .view .sub-wrap .clause[data-v-7de3142e] .qes .answer-box .check-box.check {
              border: 1px solid #00A758;
}
.bordertotal .view .sub-wrap .clause[data-v-7de3142e] .qes .answer-box .check-box.check::before {
                content: "\2713";
                position: absolute;
                top: -1px;
                width: 100%;
                text-align: center;
                background: #00A758;
                color: #ffffff;
                border-radius: 2px;
}
.bordertotal .view .sub-wrap .clause img[data-v-7de3142e] {
        width: 100%;
}
.bordertotal .view .sub-wrap .clause p[data-v-7de3142e] {
        margin-bottom: 6px;
        color: #333;
        font-size: 12px;
}
.bordertotal .view .footer[data-v-7de3142e] {
      position: fixed;
      left: 0px;
      right: 0px;
      bottom: 0;
      background-color: #fff;
      height: 78px;
      -webkit-box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
              box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.08);
      border-radius: 12px 12px 0px 0px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
}
.bordertotal .view .footer .all-not[data-v-7de3142e] {
        height: 20px;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #00A758;
        line-height: 20px;
        padding-top: 12px;
        padding-left: 16px;
}
.bordertotal .view .footer .complete[data-v-7de3142e] {
        width: 160px;
        height: 40px;
        background: #00A758;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 40px;
        margin-top: 4px;
        margin-right: 16px;
        text-align: center;
}
.bordertotal .view .footer .completes[data-v-7de3142e] {
        width: 160px;
        height: 40px;
        background: #666;
        border-radius: 40px 40px 40px 40px;
        opacity: 1;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 40px;
        margin-top: 4px;
        margin-right: 16px;
        text-align: center;
}
.bordertotal .view .footer i[data-v-7de3142e] {
        vertical-align: middle;
        display: inline-block;
        width: 18px;
        height: 18px;
}
.bordertotal .view .footer[data-v-7de3142e] .left-btn {
        border: none;
        border-top: 1px solid #5cae78;
}
.bordertotal .view .footer .btn-left[data-v-7de3142e] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        line-height: 50px;
        text-align: center;
        color: #5cae78;
        background-color: #fff;
}
.bordertotal .view .footer .btn-left i[data-v-7de3142e] {
          background: url(../../assets/img/nosure.fd9e23b.png) no-repeat;
          background-size: 18px 18px;
}
.bordertotal .view .footer .btn-next[data-v-7de3142e] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        line-height: 50px;
        text-align: center;
        color: #fff;
}
.bordertotal .view .footer .btn-next i[data-v-7de3142e] {
          background: url(../../assets/img/sure.e01d36c.png) no-repeat;
          background-size: 18px 18px;
}
.bordertotal .readAndAgree[data-v-7de3142e] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.bordertotal .readAndAgree .not-agree[data-v-7de3142e] {
      width: 20px;
      height: 20px;
      border-radius: 2px 2px 2px 2px;
      border: 1px solid #B9B9B9;
}
.bordertotal .readAndAgree .agree[data-v-7de3142e] {
      position: relative;
      color: #B9B9B9;
      width: 20px;
      height: 20px;
}
.bordertotal .readAndAgree .agree[data-v-7de3142e]::before {
        content: "\2713";
        position: absolute;
        top: 0;
        font-size: 14px;
        background: #00A758;
        color: #ffffff;
        text-align: center;
        width: 20px;
        height: 20px;
        border-radius: 2px 2px 2px 2px;
}
.bordertotal .readAndAgree .alreadyread[data-v-7de3142e] {
      font-size: 13px;
      font-family: Source Han Sans CN-Regular, Source Han Sans CN;
      font-weight: 400;
      color: #00A758;
      padding-left: 5px;
}
[data-v-7de3142e].material-model-container .text-content {
  padding: 0 16px 10px;
  position: relative;
  font-size: 13px !important;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN !important;
  font-weight: 400 !important;
  color: #333333 !important;
  line-height: 20px !important;
}

.categorypop-up-panel[data-v-0fbbb804] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.categorypop-up-panel .categorypop-up-box[data-v-0fbbb804] {
    width: 100%;
    background-color: #fff;
    text-align: center;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    bottom: 0;
    position: fixed;
    background: #FFFFFF;
    border-radius: 12px 12px 0px 0px;
    opacity: 1;
    height: 620px;
}
.categorypop-up-panel .categorypop-up-box .headAll[data-v-0fbbb804] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: 14px 16px 25px 16px;
}
.categorypop-up-panel .categorypop-up-box .headAll .headChoose-title[data-v-0fbbb804] {
        font-size: 14px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        color: #000000;
}
.categorypop-up-panel .categorypop-up-box .headAll .headChoose-index[data-v-0fbbb804] {
        height: 4px;
        background: #00A758;
        border-radius: 0px 0px 0px 0px;
        opacity: 0.4;
        margin-top: -4px;
}
.categorypop-up-panel .categorypop-up-box .content[data-v-0fbbb804] {
      overflow: scroll;
      height: 515px;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container[data-v-0fbbb804] {
        color: #333;
        background-color: #fff;
        font-family: Source Han Sans CN-Regular, Source Han Sans CN;
        padding-bottom: 78px;
        position: relative;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .outside[data-v-0fbbb804] {
          width: 100%;
          height: 100vh;
          overflow-y: auto;
          -webkit-overflow-scrolling: touch;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box[data-v-0fbbb804] {
          padding: 0 16px;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap[data-v-0fbbb804] {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            border: 1px solid #EEEEEE;
            border-bottom: none;
            border-radius: 6px 6px 0px 0px;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions[data-v-0fbbb804] {
              text-align: center;
              -webkit-box-flex: 1;
                  -ms-flex: 1;
                      flex: 1;
              height: 44px;
              line-height: 44px;
              font-size: 13px;
              color: #00A758;
              position: relative;
              overflow: hidden;
              white-space: nowrap;
              text-overflow: ellipsis;
              border-bottom: 1px solid #EEEEEE;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions[data-v-0fbbb804]::after {
                content: "";
                height: 16px;
                width: 0px;
                border: 1px solid #EEEEEE;
                position: absolute;
                right: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                        transform: translateY(-50%);
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions[data-v-0fbbb804]:last-child::after {
                border: none;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions.recommend[data-v-0fbbb804]::before {
                content: "";
                background: url(../../assets/img/icon-recommend1.feafacb.png);
                background-size: 100% 100%;
                width: 30px;
                height: 30px;
                position: absolute;
                top: 0;
                right: 0;
                z-index: 2;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions.active[data-v-0fbbb804] {
                background-color: #00A758;
                color: #fff;
                border-radius: 6px 6px 0px 0px;
                border: none;
}
.categorypop-up-panel .categorypop-up-box .content .detail-container .guarantee-box .navWrap .versions.active[data-v-0fbbb804]::after {
                  border: none;
}
.categorypop-up-panel .categorypop-up-box .content[data-v-0fbbb804] .version-detail {
        margin: 0 0 20px;
        border: 1px solid #00A758;
        border-radius: 0 0 6px 6px;
        text-align: left !important;
}
.categorypop-up-panel .categorypop-up-box .footer[data-v-0fbbb804] {
      background: white;
      -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px -2px 6px 0px;
              box-shadow: rgba(0, 0, 0, 0.08) 0px -2px 6px 0px;
      border-radius: 12px 12px 0px 0px;
      opacity: 1;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      position: fixed;
      height: 78px;
      font-weight: 500;
      color: white;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
}
.categorypop-up-panel .categorypop-up-box .footer .footer-confirm[data-v-0fbbb804] {
        background: #00a758;
        border-radius: 40px;
        opacity: 1;
        margin-left: 16px;
        margin-right: 16px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        font-size: 16px;
        font-family: Source Han Sans CN-Medium, Source Han Sans CN;
        font-weight: 500;
        margin-top: 4px;
        height: 40px;
}

.version-detail[data-v-1882790a] {
  margin: 0 0 20px;
  border: 1px solid #00A758;
  border-radius: 0 0 6px 6px;
}
.version-detail .version-content[data-v-1882790a] {
    padding: 13px 0 8px 0;
}
.version-detail .version-content .version-box[data-v-1882790a] {
      padding: 0 8px 0 16px;
      font-size: 0.32rem;
      font-weight: bold;
      color: #00A758;
      height: 24px;
      width: 23.5%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #E5F6EE;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
}
.version-detail .version-content .version-box-red[data-v-1882790a] {
      padding: 0 8px 0 16px;
      font-size: 0.32rem;
      font-weight: bold;
      color: #EC6453;
      height: 24px;
      width: 23.5%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #FDEFEE;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
}
.version-detail ul[data-v-1882790a] {
    margin: 0 16px;
    padding-bottom: 10px;
}
.version-detail ul li[data-v-1882790a] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      min-height: 44px;
      border-bottom: 1px dashed #E4E4E4;
      font-size: 13px;
}
.version-detail ul li[data-v-1882790a]:last-child {
        border-bottom: none;
}
.version-detail ul li .version-title[data-v-1882790a] {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: bold;
        color: #333333;
}
.version-detail ul li .version-title img[data-v-1882790a] {
          width: 20px;
          height: 20px;
          vertical-align: top;
          padding-right: 8px;
}
.version-detail ul li .color-red[data-v-1882790a] {
        color: #E91A33;
        font-weight: normal;
}
.version-detail ul li .finial-amount[data-v-1882790a] {
        margin: 0 5px;
        font-size: 18px;
        font-weight: 600;
}
.version-detail .coverageDescPic img[data-v-1882790a] {
    display: block;
    width: 100%;
}

.confirmInfor-box[data-v-9f09f972] {
  padding: 0 16px 10px 16px;
  position: relative;
  margin-bottom: 76px;
}
.confirmInfor-box .insurance-info[data-v-9f09f972] {
    margin-top: 16px;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 12px 12px 0 12px;
    margin-bottom: 12px;
}
.confirmInfor-box .insurance-info .product-list[data-v-9f09f972] {
      padding-top: 12px;
      padding-bottom: 12px;
}
.confirmInfor-box .insurance-info .info-box[data-v-9f09f972] {
      padding-top: 12px;
      padding-bottom: 24px;
}
.confirmInfor-box .insurance-info .serve-box[data-v-9f09f972] {
      padding: 12px 0;
}
.confirmInfor-box .insurance-info .serve-box .serve-item[data-v-9f09f972] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border-bottom: 1px dashed #EFEFEF;
        padding: 13px 0 12px 0;
}
.confirmInfor-box .insurance-info .serve-box .serve-item .serve-item-left[data-v-9f09f972] {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          font-size: 13px;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
}
.confirmInfor-box .insurance-info .serve-box .serve-item .serve-item-left .plan-item-img[data-v-9f09f972] {
            width: 20px;
            height: 20px;
            margin-right: 8px;
}
.confirmInfor-box .insurance-info .serve-box .serve-item .serve-item-left .plan-item-decimg[data-v-9f09f972] {
            display: block;
            width: 100%;
}
.confirmInfor-box .insurance-info .serve-box .serve-item .serve-item-left div[data-v-9f09f972] {
            font-weight: 500;
            color: #333333;
}
.confirmInfor-box .insurance-info .serve-box .serve-item .serve-item-right[data-v-9f09f972] {
          color: #E91A33;
}
.confirmInfor-box .insurance-info .serve-box .serve-item[data-v-9f09f972]:last-child {
        border-bottom: none;
}
.confirmInfor-box .insurance-info .serve-box .serve-detail[data-v-9f09f972] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 6px 0;
}
.confirmInfor-box .insurance-info .serve-box .serve-detail .serve-detail-left[data-v-9f09f972] {
          width: 20px;
          height: 20px;
          margin-right: 13px;
}
.confirmInfor-box .insurance-info .serve-box .serve-detail .serve-detail-right[data-v-9f09f972] {
          line-height: 20px;
          font-weight: 500;
          color: #333333;
          font-size: 13px;
}
.confirmInfor-box .insurance-info .serve-box .serve-detail .serve-detail-right .bottom[data-v-9f09f972] {
            font-weight: 400;
            color: #999999;
            font-size: 12px;
}
.confirmInfor-box .btn-box[data-v-9f09f972] {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 4px 16px 34px 16px;
    width: 100%;
    background-color: #fff;
}
.confirmInfor-box .btn-box .btn-content[data-v-9f09f972] {
      width: 100%;
      height: 40px;
      background: #00A758;
      border-radius: 40px;
      color: #fff;
      font-weight: 500;
      font-size: 16px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.confirmInfor-box .btn-box .canNext[data-v-9f09f972] {
      background: #666;
}
.confirmInfor-box .tips-box[data-v-9f09f972] {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.confirmInfor-box .tips-box .pop-up-box[data-v-9f09f972] {
      width: 84%;
      text-align: center;
      background: #FFFFFF;
      background-color: #fff;
      border-radius: 12px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 0 16px 16px 16px;
      max-height: 80%;
}
.confirmInfor-box .tips-box .pop-up-box .title[data-v-9f09f972] {
        height: 32px;
        position: relative;
}
.confirmInfor-box .tips-box .pop-up-box .title .img[data-v-9f09f972] {
          width: 154px;
          height: 52px;
          position: absolute;
          top: -23px;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
}
.confirmInfor-box .tips-box .pop-up-box .title .tips[data-v-9f09f972] {
          font-size: 17px;
          font-weight: bold;
          color: #FFFFFF;
          line-height: 24px;
          letter-spacing: 4px;
          position: relative;
}
.confirmInfor-box .tips-box .pop-up-box .img-midd[data-v-9f09f972] {
        width: 283px;
        height: 120px;
        padding: 23px 0 12px 0;
}
.confirmInfor-box .tips-box .pop-up-box .tips-content-box[data-v-9f09f972] {
        max-height: 300px;
        overflow: auto;
}
.confirmInfor-box .tips-box .pop-up-box .tips-content-box .tips-content[data-v-9f09f972] {
          font-size: 14px;
          color: #333333;
          line-height: 20px;
          text-align: left;
}
.confirmInfor-box .tips-box .pop-up-box .btn-common[data-v-9f09f972] {
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        font-weight: 500;
        font-size: 16px;
        border-radius: 20px;
}
.confirmInfor-box .tips-box .pop-up-box .btn-continue[data-v-9f09f972] {
        background: #00A758;
        color: #fff;
        margin-top: 24px;
}
.confirmInfor-box .tips-box .pop-up-box .btn-cancle[data-v-9f09f972] {
        font-weight: 500;
        color: #666666;
        margin-top: 12px;
}

.pay-result .pay-result-box[data-v-60217a5c] {
  padding: 24px;
  text-align: center;
}
.pay-result .pay-result-box .success-img[data-v-60217a5c] {
    width: 116px;
    height: 116px;
}
.pay-result .pay-result-box .success-text[data-v-60217a5c] {
    padding: 24px 0;
    font-size: 18px;
    font-weight: bold;
    color: #00A758;
    line-height: 20px;
}
.pay-result .pay-result-box .server-box[data-v-60217a5c] {
    width: 100%;
    position: relative;
    padding: 4px 4px 0 4px;
    margin-bottom: 43px;
}
.pay-result .pay-result-box .server-box .bg-img[data-v-60217a5c] {
      width: 100%;
      height: 8px;
      position: absolute;
      left: 0;
      top: 0;
}
.pay-result .pay-result-box .server-box .server-content[data-v-60217a5c] {
      padding: 16px 24px 4px;
      background-color: #fff;
      position: relative;
      border-radius: 0px 0px 6px 6px;
}
.pay-result .pay-result-box .server-box .server-content .server-list[data-v-60217a5c] {
        padding-bottom: 33px;
}
.pay-result .pay-result-box .server-box .server-content .server-list .server-item[data-v-60217a5c] {
          padding-top: 12px;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          font-size: 13px;
          color: #333333;
}
.pay-result .pay-result-box .server-box .server-content .server-list .server-item .tick-img[data-v-60217a5c] {
            width: 20px;
            height: 20px;
            margin-right: 8px;
}
.pay-result .pay-result-box .server-box .server-content .rights-detail[data-v-60217a5c] {
        padding: 16px 0 36px 0;
        font-size: 13px;
        font-weight: bold;
        color: #333333;
        line-height: 20px;
        text-align: left;
}
.pay-result .pay-result-box .server-box .server-content .jump-detail-btn[data-v-60217a5c] {
        height: 40px;
        background: #00A758;
        border-radius: 50px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 2px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 12px;
}
.pay-result .pay-result-box .server-box .server-content .jump-welfare-btn[data-v-60217a5c] {
        height: 40px;
        border-radius: 50px;
        background: #fff;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 2px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border: 1px solid #00A758;
        color: #00A758;
        margin-bottom: 12px;
}
.pay-result .product-box .product-title[data-v-60217a5c] {
  font-size: 16px;
  color: #666666;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.pay-result .product-box .product-title .product-line[data-v-60217a5c] {
    width: 16px;
    height: 2px;
    background: #D9D9D9;
    margin-right: 6px;
}
.pay-result .product-box .product-title .product-line-right[data-v-60217a5c] {
    width: 16px;
    height: 2px;
    background: #D9D9D9;
    margin-left: 6px;
}
.pay-result .product-box .product-list[data-v-60217a5c] {
  padding: 12px 18px 27px 10px;
  background-color: #fff;
}
.pay-result .product-box .product-list .lunbo[data-v-60217a5c] {
    margin-bottom: 16px;
}
.pay-result .product-box .product-list .lunbo[data-v-60217a5c] .van-swipe__indicator {
      width: 4px;
      height: 4px;
      border-radius: 100%;
      -webkit-transition: opacity .2s, background-color .2s;
      transition: opacity .2s, background-color .2s;
      border: 1px solid #00A758;
}
.pay-result .product-box .product-list .lunbo[data-v-60217a5c] .van-swipe__indicator .van-swipe__indicator--active {
      width: 4px;
      height: 4px;
      background-color: #ebedf0;
      border-radius: 100%;
      border: 1px solid #00A758;
      -webkit-transition: opacity .2s, background-color .2s;
      transition: opacity .2s, background-color .2s;
}
.pay-result .product-box .product-list .product-item[data-v-60217a5c] {
    padding-bottom: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.pay-result .product-box .product-list .product-item .product-left[data-v-60217a5c] {
      margin-right: 12px;
}
.pay-result .product-box .product-list .product-item .product-left img[data-v-60217a5c] {
        width: 95px;
        height: 95px;
}
.pay-result .product-box .product-list .product-item .product-right .right-title[data-v-60217a5c] {
      font-size: 16px;
      font-weight: bold;
      color: #333333;
      line-height: 24px;
      padding-bottom: 4px;
}
.pay-result .product-box .product-list .product-item .product-right .right-tips[data-v-60217a5c] {
      padding-bottom: 13px;
      font-size: 14px;
      color: #888888;
      line-height: 16px;
}
.pay-result .product-box .product-list .product-item .product-right .right-label[data-v-60217a5c] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.pay-result .product-box .product-list .product-item .product-right .right-label .label-item[data-v-60217a5c] {
        border-radius: 16px;
        border: 1px solid #00A758;
        font-size: 11px;
        color: #00A758;
        line-height: 15px;
        padding: 0 8px;
        margin-bottom: 5px;
        margin-right: 5px;
}
.pay-result .pay-faliure[data-v-60217a5c] {
  text-align: center;
  padding-top: 24px;
}
.pay-result .pay-faliure .img-fail[data-v-60217a5c] {
    width: 116px;
    height: 116px;
}
.pay-result .pay-faliure .fail-text[data-v-60217a5c] {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    line-height: 20px;
    padding: 24px 0 32px 0;
}
.pay-result .pay-faliure .fali-btn[data-v-60217a5c] {
    width: 263px;
    height: 40px;
    background: #00A758;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 20px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}










































































.ly-tabbar {
  position: relative;
  background-color: rgba(255 ,255, 255, .8);
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eee;
  -webkit-box-shadow: 0 0px 6px 1px #eee;
          box-shadow: 0 0px 6px 1px #eee
}
.ly-tabbar.ly-tabbar-fix-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #ccc;
  border-bottom: none;
}
.ly-tabbar.ly-tabbar-fix-bottom .ly-tab-item {
  border-bottom: none!important;
}
.ly-tab-list {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 14px 10px;
  min-width: 100%;
}
.ly-tab-active-bar {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 30px;
  height: 3px;
  border-radius: 4px;
}
.ly-tab-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 14px;
  text-align: center;
  padding: 0 5px;
}
.ly-tab-item:not(:first-child) {
  margin-left: 15px;
}

.ly-tab-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  text-align: center;
}
.ly-tab-item-icon {
  margin: 0 auto 5px;
}


@font-face {font-family: "iconfont";
  src: url(data:application/font-woff;base64,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) format('woff')
}

.iconfont {
  font-family:"iconfont" !important;
  font-size:16px;
  font-style:normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-gouwuche:before { content: "\E604"; }

.icon-weishiyong:before { content: "\E689"; }

.icon-huodong:before { content: "\E619"; }

.icon-liebiao:before { content: "\E62E"; }

.icon-yemian:before { content: "\E6EA"; }

.icon-weigouxuan:before { content: "\E69E"; }

.icon-gouxuan:before { content: "\E69F"; }

.icon-xiangxia:before { content: "\E741"; }

.icon-dianhua:before { content: "\E6FA"; }

.icon-wenhao:before { content: "\E62C"; }

.icon-tuijian-right:before { content: "\E601"; }

.icon-yishiyong:before { content: "\E628"; }

.icon-gou:before { content: "\E605"; }

.icon-goback:before { content: "\E61A"; }

.icon-wode:before { content: "\E61D"; }

.icon-shangcheng:before { content: "\E635"; }

.icon-yiguoqi:before { content: "\E61B"; }

.icon-cha:before { content: "\E68C"; }

.icon-fanhui:before { content: "\E618"; }

.icon-shouji:before { content: "\E65C"; }

.icon-dianhua1:before { content: "\E611"; }

.icon-gou1:before { content: "\E602"; }

.icon-yanzheng:before { content: "\E61F"; }

.icon-weixin:before { content: "\E603"; }

.icon-xiangyou:before { content: "\E733"; }

@font-face {font-family: "iconfont";
  src: url(data:application/font-woff;base64,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); /* IE9 */
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-gift:before {
  content: "\E76F";
}

.icon-edit:before {
  content: "\E604";
}

.icon-friend_settings_light:before {
  content: "\E7FE";
}

.icon-add:before {
  content: "\E60D";
}

@font-face {font-family: 'ManulifeJHSans-Demibold';
  src: url(../../assets/fonts/ManulifeJHSans-Demibold.fb720d5.ttf); /* IE9*/
  src: url(../../assets/fonts/ManulifeJHSans-Demibold.fb720d5.ttf) format('embedded-opentype'), 
  url(../../assets/fonts/ManulifeJHSans-Demibold.fb720d5.ttf) format('woff'), 
  url(../../assets/fonts/ManulifeJHSans-Demibold.fb720d5.ttf) format('truetype'), 
  url(../../assets/fonts/ManulifeJHSans-Demibold.fb720d5.ttf) format('svg'); /* iOS 4.1- */
}@font-face {font-family: 'ManulifeJHSans-Regular';
  src: url(../../assets/fonts/ManulifeJHSans-Regular.7f5eba0.ttf); /* IE9*/
  src: url(../../assets/fonts/ManulifeJHSans-Regular.7f5eba0.ttf) format('embedded-opentype'), 
  url(../../assets/fonts/ManulifeJHSans-Regular.7f5eba0.ttf) format('woff'), 
  url(../../assets/fonts/ManulifeJHSans-Regular.7f5eba0.ttf) format('truetype'), 
  url(../../assets/fonts/ManulifeJHSans-Regular.7f5eba0.ttf) format('svg'); /* iOS 4.1- */
}@font-face {font-family: 'NotoSansCJKsc-Regular';
  src: url('//at.alicdn.com/t/webfont_pcdndi4qps.eot'); /* IE9*/
  src: url('//at.alicdn.com/t/webfont_pcdndi4qps.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('//at.alicdn.com/t/webfont_pcdndi4qps.woff') format('woff'), /* chrome、firefox */
  url('//at.alicdn.com/t/webfont_pcdndi4qps.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('//at.alicdn.com/t/webfont_pcdndi4qps.svg#思源黑体-粗') format('svg'); /* iOS 4.1- */
}@font-face {font-family: 'NotoSansCJKsc-Bold';
  src: url('//at.alicdn.com/t/webfont_7k8huuo8tx4.eot'); /* IE9*/
  src: url('//at.alicdn.com/t/webfont_7k8huuo8tx4.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
  url('//at.alicdn.com/t/webfont_7k8huuo8tx4.woff') format('woff'), /* chrome、firefox */
  url('//at.alicdn.com/t/webfont_7k8huuo8tx4.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url('//at.alicdn.com/t/webfont_7k8huuo8tx4.svg#思源黑体-极细') format('svg'); /* iOS 4.1- */
}
.pop-up-panel[data-v-4589cf91] {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
.pop-up-panel .pop-up-box[data-v-4589cf91] {
    width: 84%;
    text-align: center;
    background: #FFFFFF;
    opacity: 1;
    top: 35%;
    left: 8%;
    background-color: #fff;
    border-radius: 12px 12px 12px 12px;
    left: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.pop-up-panel .pop-up-box .title[data-v-4589cf91] {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: -23px;
}
.pop-up-panel .pop-up-box .title .img[data-v-4589cf91] {
        width: 154px;
        height: 52px;
}
.pop-up-panel .pop-up-box .title .tips[data-v-4589cf91] {
        font-size: 17px;
        font-family: Source Han Sans CN-Bold, Source Han Sans CN;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 24px;
        letter-spacing: 4px;
        position: absolute;
        margin-top: 22px;
}
.pop-up-panel .pop-up-box .middle-img[data-v-4589cf91] {
      margin-top: 23px;
}
.pop-up-panel .pop-up-box .middle-img .img-midd[data-v-4589cf91] {
        width: 283px;
        height: 120px;
}
.pop-up-panel .pop-up-box .tips[data-v-4589cf91] {
      font-size: 14px;
      font-weight: 400;
      color: #333333;
      line-height: 20px;
      margin: 12px 16px 0 16px;
      text-align: left;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
}
.pop-up-panel .pop-up-box .button[data-v-4589cf91] {
      height: 40px;
      background: white;
      border-radius: 50px;
      opacity: 1;
      border: 1px solid #00a758;
      margin: 24px 26px 16px 26px;
      line-height: 40px;
      font-size: 16px;
      font-family: Source Han Sans CN-Medium, Source Han Sans CN;
      font-weight: 500;
      color: #00A758;
      letter-spacing: 2px;
}
@charset "UTF-8";
.mint-header {
  background-color: #5cae78; }

.mint-button:not(.is-disabled):active::after {
  opacity: .2; }

.mint-button--primary {
  background-color: #5cae78; }

.mint-button--primary.is-plain {
  border: 1px solid #5cae78;
  color: #5cae78; }

.mint-badge.is-primary {
  background-color: #5cae78; }

.mint-switch-input:checked + .mint-switch-core {
  border-color: #5cae78;
  background-color: #5cae78; }

.mint-navbar .mint-tab-item.is-selected {
  border-bottom: 2px solid #5cae78;
  color: #5cae78; }

.mint-tabbar > .mint-tab-item.is-selected {
  color: #5cae78; }

.mint-searchbar-cancel {
  color: #5cae78; }

.mint-checkbox-input:checked + .mint-checkbox-core {
  background-color: #5cae78;
  border-color: #5cae78; }

.mint-radio-input:checked + .mint-radio-core {
  background-color: #5cae78;
  border-color: #5cae78; }

.mt-range-progress {
  background-color: #5cae78; }

.mt-progress-progress {
  background-color: #5cae78; }

.mint-msgbox-confirm {
  color: #5cae78; }

.mint-msgbox-confirm:active {
  color: #5cae78; }

.mint-datetime-action {
  color: #5cae78; }

.mint-tab-item-label {
  color: inherit;
  font-size: 15px;
  line-height: 1; }

.mint-navbar {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center; }

/* 补充修改全局mint-ui组件里的样式*/
.mint-header {
  background-color: #fff;
  color: #000;
  height: 44px; }

.mint-header-title {
  font-size: 18px;
  font-weight: 500; }

.mint-swipe-indicators {
  bottom: 60px; }

.mint-swipe-indicator {
  background: #888;
  opacity: 0.2; }

.mint-swipe-indicator.is-active {
  opacity: 1; }

.mint-navbar .mint-tab-item {
  font-size: 16px;
  color: #666666; }

.mint-tabbar.is-fixed {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); }

.classify-title {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  padding: 0 2.5%;
  line-height: 30px; }
/**
 * Swiper 6.8.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 23, 2021
 */

@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, 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') format('woff');
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */

:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* a11y */

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@charset "UTF-8";
body,
div,
span,
header,
footer,
nav,
section,
aside,
article,
ul,
dl,
dt,
dd,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
i,
b,
textarea,
button,
input,
select,
figure,
figcaption {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-size: inherit;
  font: inherit;
  text-decoration: none;
  vertical-align: baseline;
  font-family: "Source Han Sans CN-Regular","Source Han Sans CN","ManulifeJHSans-Light", "NotoSansCJKsc-Regular";
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased; }
  body:hover,
  div:hover,
  span:hover,
  header:hover,
  footer:hover,
  nav:hover,
  section:hover,
  aside:hover,
  article:hover,
  ul:hover,
  dl:hover,
  dt:hover,
  dd:hover,
  li:hover,
  a:hover,
  p:hover,
  h1:hover,
  h2:hover,
  h3:hover,
  h4:hover,
  h5:hover,
  h6:hover,
  i:hover,
  b:hover,
  textarea:hover,
  button:hover,
  input:hover,
  select:hover,
  figure:hover,
  figcaption:hover {
    outline: none; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ManulifeJHSans-Demibold", "NotoSansCJKsc-Bold";
  font-weight: bold; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none; }

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: #F5F5F5; }

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
  border-radius: 10px;
  background-color: #F5F5F5; }

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555; }

input::-webkit-input-placeholder {
  /* placeholder颜色  */
  color: #cdccd5; }

input[type="button"],
input[type="submit"],
input[type="search"],
input[type="reset"] {
  -webkit-appearance: none; }

textarea {
  -webkit-appearance: none; }

html,
body,
#app {
  background-color: #f4f4f4; }

._v-content {
  background: #f0f3f5; }

._v-content .pull-to-refresh-layer {
  background-repeat: no-repeat;
  background-position: 100px 10px;
  background-size: 40px 40px;
  opacity: 0.3;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all .15s linear;
  -webkit-transition: all .15s linear; }

._v-content .pull-to-refresh-layer.active {
  opacity: 1;
  -webkit-transform: scale(1.35);
  transform: scale(1.35); }
  ._v-content .pull-to-refresh-layer.active span span {
    -webkit-transform: scale(0.7) !important;
    transform: scale(0.7) !important; }

.loadmore-top, .loadmore-bottom {
  margin-top: -50px; }

.loadmore-top {
  text-align: center;
  height: 50px;
  line-height: 50px; }
  .loadmore-top svg {
    display: none; }
  .loadmore-top > div {
    background-repeat: no-repeat;
    background-size: 40px 40px;
    -webkit-transform: scale(1);
    transform: scale(1);
    background-position: 100px 5px;
    transition: all .15s linear;
    -webkit-transition: all .15s linear; }
  .loadmore-top .pull {
    background-position: 100px 5px;
    opacity: 0.3; }
  .loadmore-top .drop {
    opacity: 1;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    background-position: 110px 0px; }
    .loadmore-top .drop span {
      -webkit-transform: scale(0.7) !important;
      transform: scale(0.7) !important; }

.select-icon {
  background-size: 100% 100% !important; }

.mint-toast, .mint-indicator {
  z-index: 100000000000000000 !important; }

.modal-popup {
  width: 100%;
  height: 100%;
  max-width: 10rem;
  min-width: 10rem; }

.select-default-icon {
  display: table;
  width: 20px;
  height: 20px;
  background-size: 100% 100%; }

.eye-icon {
  display: block;
  width: 25px;
  height: 25px;
  background-size: 100% 100%; }
  .eye-icon.eye-close-icon {
    background-size: 100% 100%; }

.cell-btn {
  background: #f23030;
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin: .8rem auto;
  border-radius: 2px;
  width: 90%;
  padding: 10px 0; }

.disabled-btn {
  background: #f4f4f4 !important;
  color: #ccc !important;
  pointer-events: none;
  cursor: default; }

.distpicker-address-wrapper {
  font-size: 15px !important;
  color: #333 !important;
  height: 100%; }
  .distpicker-address-wrapper .address-container {
    height: 100%; }
  .distpicker-address-wrapper .address-header {
    border-bottom: 1px solid #eee; }
    .distpicker-address-wrapper .address-header ul {
      justify-content: flex-start !important; }
      .distpicker-address-wrapper .address-header ul li {
        padding: 10px 10px !important; }
        .distpicker-address-wrapper .address-header ul li.active {
          color: #f23030 !important;
          border-bottom: #f23030 solid 1px !important; }
  .distpicker-address-wrapper li {
    padding: 12px 10px !important;
    border: none !important; }
    .distpicker-address-wrapper li.active {
      color: #f23030 !important; }

.arrow-right {
  display: block;
  width: 16px;
  height: 20px;
  background-size: 100%; }

.starList {
  margin-top: 5px;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap; }
  .starList .star {
    display: block;
    width: 14px;
    height: 14px;
    background-size: 100%; }
  .starList .blur {
    display: block;
    width: 14px;
    height: 14px;
    background-size: 100%; }

img[lazy] {
  opacity: 1;
  transition: opacity .3s ease-in;
  -webkit-transition: opacity .3s ease-in; }

img[lazy=loading] {
  opacity: 0;
  background: #f5f5f5;
  visibility: hidden;
  margin: auto; }

img[lazy=loaded] {
  opacity: 1;
  visibility: visible; }

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none; }

.ios-select-widget-box .layer header.iosselect-header a {
  color: #5cae78; }

.body .scroll {
  position: fixed; }

/*mint-ui 消息弹框样式*/
.mint-msgbox {
  width: 86%;
  font-size: 0; }
  .mint-msgbox .mint-msgbox-header {
    padding: 0;
    text-align: center;
    line-height: 40px;
    border-bottom: 1px solid #e6e6e6; }
    .mint-msgbox .mint-msgbox-header .mint-msgbox-title {
      font-size: 18px;
      color: #424242;
      font-weight: normal; }
  .mint-msgbox .mint-msgbox-content {
    padding: 10px 0; }
    .mint-msgbox .mint-msgbox-content .mint-msgbox-message {
      padding: 12px 20px;
      line-height: 26px;
      font-size: 16px;
      color: #424242; }
  .mint-msgbox .mint-msgbox-btns {
    height: 44px;
    line-height: 44px;
    font-size: 16px; }
    .mint-msgbox .mint-msgbox-btns .mint-msgbox-btn {
      background: #5cae78;
      color: #fff; }

input,
textarea {
  user-select: text;
  -webkit-user-select: text; }
.md-activity-indicator-rolling:after{content:"";display:table;clear:both}.md-activity-indicator-rolling .rolling-container{position:relative;float:left}.md-activity-indicator-rolling .rolling{float:left}.md-activity-indicator-rolling .rolling circle.stroke{will-change:auto}.md-activity-indicator-rolling .content{position:absolute;top:0;right:0;bottom:0;left:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.md-icon{background-size:contain;fill:currentColor;-webkit-backface-visibility:hidden;-webkit-transform:translateZ(0) scale(1);transform:translateZ(0) scale(1)}.md-icon.icon-font{font-family:Mand-Mobile-Icon!important;font-size:16px;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:0;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.md-icon.icon-font.xss{font-size:icon-size-xxs}.md-icon.icon-font.xs{font-size:20px}.md-icon.icon-font.sm{font-size:24px}.md-icon.icon-font.md{font-size:32px}.md-icon.icon-font.lg{font-size:42px}.md-icon.icon-font:before{position:relative;z-index:2}.md-icon.icon-svg.xss{width:icon-size-xxs;height:icon-size-xxs;line-height:icon-size-xxs}.md-icon.icon-svg.xs{width:20px;height:20px;line-height:20px}.md-icon.icon-svg.sm{width:24px;height:24px;line-height:24px}.md-icon.icon-svg.md{width:32px;height:32px;line-height:32px}.md-icon.icon-svg.lg{width:42px;height:42px;line-height:42px}.md-icon-arrow:before{content:"\E68D"}.md-icon-rectangle:before{content:"\E68E"}.md-icon-invisible:before{content:"\E601"}.md-icon-visible:before{content:"\E602"}.md-icon-right:before{content:"\E68F"}.md-icon-wrong:before{content:"\E604"}.md-icon-info:before{content:"\E605"}.md-icon-service:before{content:"\E606"}.md-icon-edit:before{content:"\E607"}.md-icon-refresh:before{content:"\E692"}.md-icon-question:before{content:"\E608"}.md-icon-setting:before{content:"\E609"}.md-icon-wait:before{content:"\E690"}.md-icon-check:before{content:"\E60C"}.md-icon-check-disabled:before{content:"\E636"}.md-icon-checked:before,.md-icon-success:before{content:"\E60D"}.md-icon-clear:before,.md-icon-fail:before{content:"\E60E"}.md-icon-info-solid:before{content:"\E635"}.md-icon-warn:before{content:"\E60B"}.md-icon-security:before{content:"\E60F"}.md-icon-rmb:before{content:"\E610"}.md-icon-scan:before{content:"\E611"}.md-icon-share:before{content:"\E612"}.md-icon-back:before{content:"\E613"}.md-icon-card-bag:before{content:"\E614"}.md-icon-message:before{content:"\E615"}.md-icon-order:before{content:"\E616"}.md-icon-balance:before{content:"\E617"}.md-icon-coupon:before{content:"\E618"}.md-icon-sort:before{content:"\E619"}.md-icon-address-book:before{content:"\E61A"}.md-icon-mobile-phone:before{content:"\E61B"}.md-icon-home:before{content:"\E61C"}.md-icon-discovery:before{content:"\E61D"}.md-icon-calendar:before{content:"\E61E"}.md-icon-user:before{content:"\E61F"}.md-icon-time:before{content:"\E620"}.md-icon-search:before{content:"\E621"}.md-icon-switch:before{content:"\E622"}.md-icon-camera:before{content:"\E623"}.md-icon-clock:before{content:"\E624"}.md-icon-profession:before{content:"\E625"}.md-icon-delete:before{content:"\E626"}.md-icon-id-card:before{content:"\E627"}.md-icon-filter:before{content:"\E628"}.md-icon-location:before{content:"\E629"}.md-icon-authentication:before{content:"\E62A"}.md-icon-motor-vehicle:before{content:"\E62B"}.md-icon-phone:before{content:"\E62C"}.md-icon-volumn:before{content:"\E62D"}.md-icon-arrow-left:before{content:"\E603"}.md-icon-arrow-right:before{content:"\E630"}.md-icon-arrow-up:before{content:"\E633"}.md-icon-arrow-down:before{content:"\E634"}.md-icon-close:before{content:"\E68C"}.md-icon-square-check:before{content:"\E695"}.md-icon-square-checked:before{content:"\E696"}@font-face{font-family:Mand-Mobile-Icon;font-style:normal;font-weight:400;src:url(https://manhattan.didistatic.com/static/manhattan/mand-mobile-iconfont.2.6.0.woff) format("woff"),url(https://manhattan.didistatic.com/static/manhattan/mand-mobile-iconfont.2.6.0.ttf) format("truetype")}.md-button{display:block;height:100px;line-height:100px;font-size:36px;font-weight:500;font-family:Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif;text-align:center;border:none;border-radius:16px;box-sizing:border-box;outline:0;-webkit-transition:all .3s;transition:all .3s;-webkit-appearance:none;-webkit-user-select:none;-webkit-tap-highlight-color:transparent;overflow:visible}.md-button-inner{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;width:100%;height:100%;overflow:hidden;text-overflow:ellipsis;word-break:break-all;word-wrap:break-word;white-space:nowrap}.md-button-loading .md-activity-indicator-svg{width:35px!important;height:35px!important;margin-right:10px}.md-button-content{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 6px}.md-button-content .md-icon{padding:0}.md-button{position:relative}.md-button .md-icon{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:0 6px}.md-button.default{background:#fff;color:#41485d}.md-button.default:after{content:"";position:absolute;top:0;left:0;right:auto;bottom:auto;width:200%;height:200%;border:3px solid #c5cad5;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scale(.5);transform:scale(.5);z-index:2;border-radius:32px}.md-button.default.active:active{background:#f9fafb}.md-button.default .md-button-loading .md-activity-indicator-svg .circle circle{stroke:#41485d!important}.md-button.primary{background:#198cff;color:#fff}.md-button.primary:after{content:"";position:absolute;top:0;left:0;right:auto;bottom:auto;width:200%;height:200%;border:3px solid #198cff;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scale(.5);transform:scale(.5);z-index:2;border-radius:32px}.md-button.primary.active:active{background:#167de5}.md-button.primary .md-button-loading .md-activity-indicator-svg .circle circle{stroke:#fff!important}.md-button.warning{background:#ff4040;color:#fff}.md-button.warning:after{content:"";position:absolute;top:0;left:0;right:auto;bottom:auto;width:200%;height:200%;border:3px solid #ff4040;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scale(.5);transform:scale(.5);z-index:2;border-radius:32px}.md-button.warning.active:active{background:#e9424f}.md-button.warning .md-button-loading .md-activity-indicator-svg .circle circle{stroke:#fff!important}.md-button.disabled{background:#e2e4ea;color:#fff}.md-button.disabled:after{content:"";position:absolute;top:0;left:0;right:auto;bottom:auto;width:200%;height:200%;border:3px solid #e2e4ea;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scale(.5);transform:scale(.5);z-index:2;border-radius:32px}.md-button.disabled .md-button-loading .md-activity-indicator-svg .circle circle{stroke:#fff!important}.md-button.plain{background:0 0}.md-button.plain.default{color:#41485d}.md-button.plain.default:after{content:"";position:absolute;top:0;left:0;right:auto;bottom:auto;width:200%;height:200%;border:3px solid #c5cad5;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scale(.5);transform:scale(.5);z-index:2;border-radius:32px}.md-button.plain.default.active:active{background:#f9fafb}.md-button.plain.default .md-button-loading .md-activity-indicator-svg .circle circle{stroke:#41485d!important}.md-button.plain.primary{color:#198cff}.md-button.plain.primary:after{content:"";position:absolute;top:0;left:0;right:auto;bottom:auto;width:200%;height:200%;border:3px solid #198cff;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scale(.5);transform:scale(.5);z-index:2;border-radius:32px}.md-button.plain.primary.active:active{background:#ebf5ff}.md-button.plain.primary .md-button-loading .md-activity-indicator-svg .circle circle{stroke:#198cff!important}.md-button.plain.warning{color:#ff4040}.md-button.plain.warning:after{content:"";position:absolute;top:0;left:0;right:auto;bottom:auto;width:200%;height:200%;border:3px solid #ff4040;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scale(.5);transform:scale(.5);z-index:2;border-radius:32px}.md-button.plain.warning.active:active{background:#fac3c6}.md-button.plain.warning .md-button-loading .md-activity-indicator-svg .circle circle{stroke:#ff4040!important}.md-button.plain.disabled{color:#d9e0e7}.md-button.plain.disabled:after{content:"";position:absolute;top:0;left:0;right:auto;bottom:auto;width:200%;height:200%;border:3px solid #c5cad5;box-sizing:border-box;-webkit-transform-origin:0 0;transform-origin:0 0;-webkit-transform:scale(.5);transform:scale(.5);z-index:2;border-radius:32px}.md-button.plain.disabled .md-button-loading .md-activity-indicator-svg .circle circle{stroke:#d9e0e7!important}.md-button.round{border-radius:100px}.md-button.round:after{border-radius:100px!important}.md-button.inline{display:inline-block;padding:0 20px}.md-button.block{width:100%}.md-button.small{height:64px;line-height:64px;font-size:28px}.md-button.small.round,.md-button.small.round:after{border-radius:64px}.md-button.link{display:inline;width:auto;height:auto;line-height:normal;font-size:28px;font-weight:400;color:#198cff;background:0 0}.md-button.link.inactive{color:#d9e0e7;opacity:1}.md-button.inactive{opacity:.3}.md-button.inactive.disabled{opacity:1}.md-bounce-enter-active{-webkit-animation:bounce-in .3s linear;animation:bounce-in .3s linear}.md-bounce-leave-active{-webkit-animation:zoom-out .25s linear;animation:zoom-out .25s linear}.md-zoom-enter,.md-zoom-leave-to{opacity:.01;-webkit-transform:scale(.75);transform:scale(.75)}.md-zoom-enter-active{-webkit-transition:all .3s cubic-bezier(.215,.61,.355,1);transition:all .3s cubic-bezier(.215,.61,.355,1)}.md-zoom-leave-active{-webkit-transition:all .25s linear;transition:all .25s linear}.md-punch-enter,.md-punch-leave-to{opacity:.01;-webkit-transform:scale(1.35);transform:scale(1.35)}.md-punch-enter-active{-webkit-transition:all .3s cubic-bezier(.215,.61,.355,1);transition:all .3s cubic-bezier(.215,.61,.355,1)}.md-punch-leave-active{-webkit-transition:all .25s linear;transition:all .25s linear}.md-slide-up-enter,.md-slide-up-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.md-slide-up-enter-active{-webkit-transition:-webkit-transform .3s cubic-bezier(.165,.84,.44,1);transition:-webkit-transform .3s cubic-bezier(.165,.84,.44,1);transition:transform .3s cubic-bezier(.165,.84,.44,1);transition:transform .3s cubic-bezier(.165,.84,.44,1), -webkit-transform .3s cubic-bezier(.165,.84,.44,1)}.md-slide-up-leave-active{-webkit-transition:-webkit-transform .25s cubic-bezier(.165,.84,.44,1);transition:-webkit-transform .25s cubic-bezier(.165,.84,.44,1);transition:transform .25s cubic-bezier(.165,.84,.44,1);transition:transform .25s cubic-bezier(.165,.84,.44,1), -webkit-transform .25s cubic-bezier(.165,.84,.44,1)}.md-slide-right-enter,.md-slide-right-leave-to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.md-slide-right-enter-active{-webkit-transition:-webkit-transform .3s cubic-bezier(.165,.84,.44,1);transition:-webkit-transform .3s cubic-bezier(.165,.84,.44,1);transition:transform .3s cubic-bezier(.165,.84,.44,1);transition:transform .3s cubic-bezier(.165,.84,.44,1), -webkit-transform .3s cubic-bezier(.165,.84,.44,1)}.md-slide-right-leave-active{-webkit-transition:-webkit-transform .25s cubic-bezier(.165,.84,.44,1);transition:-webkit-transform .25s cubic-bezier(.165,.84,.44,1);transition:transform .25s cubic-bezier(.165,.84,.44,1);transition:transform .25s cubic-bezier(.165,.84,.44,1), -webkit-transform .25s cubic-bezier(.165,.84,.44,1)}.md-slide-left-enter,.md-slide-left-leave-to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.md-slide-left-enter-active{-webkit-transition:-webkit-transform .3s cubic-bezier(.165,.84,.44,1);transition:-webkit-transform .3s cubic-bezier(.165,.84,.44,1);transition:transform .3s cubic-bezier(.165,.84,.44,1);transition:transform .3s cubic-bezier(.165,.84,.44,1), -webkit-transform .3s cubic-bezier(.165,.84,.44,1)}.md-slide-left-leave-active{-webkit-transition:-webkit-transform .25s cubic-bezier(.165,.84,.44,1);transition:-webkit-transform .25s cubic-bezier(.165,.84,.44,1);transition:transform .25s cubic-bezier(.165,.84,.44,1);transition:transform .25s cubic-bezier(.165,.84,.44,1), -webkit-transform .25s cubic-bezier(.165,.84,.44,1)}.md-slide-down-enter,.md-slide-down-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.md-slide-down-enter-active{-webkit-transition:-webkit-transform .3s cubic-bezier(.165,.84,.44,1);transition:-webkit-transform .3s cubic-bezier(.165,.84,.44,1);transition:transform .3s cubic-bezier(.165,.84,.44,1);transition:transform .3s cubic-bezier(.165,.84,.44,1), -webkit-transform .3s cubic-bezier(.165,.84,.44,1)}.md-slide-down-leave-active{-webkit-transition:-webkit-transform .25s cubic-bezier(.165,.84,.44,1);transition:-webkit-transform .25s cubic-bezier(.165,.84,.44,1);transition:transform .25s cubic-bezier(.165,.84,.44,1);transition:transform .25s cubic-bezier(.165,.84,.44,1), -webkit-transform .25s cubic-bezier(.165,.84,.44,1)}.md-fade-enter,.md-fade-leave-to{opacity:.01}.md-fade-enter-active{-webkit-transition:opacity .3s cubic-bezier(.215,.61,.355,1);transition:opacity .3s cubic-bezier(.215,.61,.355,1)}.md-fade-leave-active{-webkit-transition:opacity .25s linear;transition:opacity .25s linear}.md-fade-up-enter,.md-fade-up-leave-to{opacity:.01;-webkit-transform:translate3d(0,20%,0);transform:translate3d(0,20%,0)}.md-fade-up-enter-active{-webkit-transition:all .3s cubic-bezier(.215,.61,.355,1);transition:all .3s cubic-bezier(.215,.61,.355,1)}.md-fade-up-leave-active{-webkit-transition:all .25s linear;transition:all .25s linear}.md-fade-down-enter,.md-fade-down-leave-to{opacity:.01;-webkit-transform:translate3d(0,-20%,0);transform:translate3d(0,-20%,0)}.md-fade-down-enter-active{-webkit-transition:all .3s cubic-bezier(.215,.61,.355,1);transition:all .3s cubic-bezier(.215,.61,.355,1)}.md-fade-down-leave-active{-webkit-transition:all .25s linear;transition:all .25s linear}.md-fade-right-enter,.md-fade-right-leave-to{opacity:.01;-webkit-transform:translate3d(-20%,0,0);transform:translate3d(-20%,0,0)}.md-fade-right-enter-active{-webkit-transition:all .3s cubic-bezier(.215,.61,.355,1);transition:all .3s cubic-bezier(.215,.61,.355,1)}.md-fade-right-leave-active{-webkit-transition:all .25s linear;transition:all .25s linear}.md-fade-left-enter,.md-fade-left-leave-to{opacity:.01;-webkit-transform:translate3d(20%,0,0);transform:translate3d(20%,0,0)}.md-fade-left-enter-active{-webkit-transition:all .3s cubic-bezier(.215,.61,.355,1);transition:all .3s cubic-bezier(.215,.61,.355,1)}.md-fade-left-leave-active{-webkit-transition:all .25s linear;transition:all .25s linear}.md-fly-enter-active{-webkit-animation:fly-in .6s;animation:fly-in .6s;-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}.md-fly-leave-active{-webkit-animation:zoom-out .25s;animation:zoom-out .25s}@-webkit-keyframes fly-in{0%{opacity:.5;-webkit-transform:scale(.5) translate3d(0,50px,0);transform:scale(.5) translate3d(0,50px,0)}45%{opacity:1;-webkit-transform:scale(1.05) translate3d(0,-50px,0);transform:scale(1.05) translate3d(0,-50px,0)}to{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0)}}@keyframes fly-in{0%{opacity:.5;-webkit-transform:scale(.5) translate3d(0,50px,0);transform:scale(.5) translate3d(0,50px,0)}45%{opacity:1;-webkit-transform:scale(1.05) translate3d(0,-50px,0);transform:scale(1.05) translate3d(0,-50px,0)}to{-webkit-transform:scale(1) translateZ(0);transform:scale(1) translateZ(0)}}@-webkit-keyframes bounce-in{0%{-webkit-transform:scale(.5);transform:scale(.5)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounce-in{0%{-webkit-transform:scale(.5);transform:scale(.5)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes zoom-out{to{opacity:.01;-webkit-transform:scale(.75);transform:scale(.75)}}@keyframes zoom-out{to{opacity:.01;-webkit-transform:scale(.75);transform:scale(.75)}}.md-popup{top:0;right:0;bottom:0;left:0;position:fixed;display:-webkit-box;display:-webkit-flex;display:flex;pointer-events:none;z-index:1000}.md-popup.center{-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.md-popup.top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.md-popup.top .md-popup-box{width:100%}.md-popup.bottom{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.md-popup.bottom .md-popup-box{width:100%}.md-popup.left{-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.md-popup.left .md-popup-box{height:100%}.md-popup.right{-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.md-popup.right .md-popup-box{height:100%}.md-popup.inner-popup .md-popup-box{background-color:#fff;border-radius:8px 8px 0 0}.md-popup.large-radius.inner-popup .md-popup-box{border-radius:40px 40px 0 0}.md-popup-mask{top:0;right:0;bottom:0;left:0;position:absolute;pointer-events:auto;z-index:1;background-color:rgba(37,38,45,.7)}.md-popup-box{position:relative;pointer-events:auto;z-index:2;max-width:100%;max-height:100%;overflow:auto}.md-mask-fade-enter,.md-mask-fade-leave-to{opacity:.01}.md-mask-fade-enter-active,.md-mask-fade-leave-active{-webkit-transition:opacity .25s;transition:opacity .25s}.md-popup-title-bar[data-v-7774bb08]{position:relative;width:100%;height:120px;background-color:#fff;border-radius:40px 40px 0 0;overflow:hidden}.md-popup-title-bar[data-v-7774bb08]:after{content:"";display:table;clear:both}.md-popup-title-bar.large[data-v-7774bb08]{height:180px}.md-popup-title-bar.large-radius[data-v-7774bb08]{border-radius:40px 40px 0 0}.md-popup-title-bar.title-align-left .title-bar-title[data-v-7774bb08]{padding-left:40px;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.md-popup-title-bar.title-align-left .title-bar-left[data-v-7774bb08]{display:none}.md-popup-title-bar.title-align-right .title-bar-title[data-v-7774bb08]{padding-right:40px;-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end}.md-popup-title-bar.title-align-right .title-bar-right[data-v-7774bb08]{display:none}.md-popup-title-bar>div[data-v-7774bb08]{display:-webkit-box;display:-webkit-flex;display:flex;float:left;height:100%;padding-top:60px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;overflow:hidden;text-overflow:ellipsis;word-break:break-all;word-wrap:break-word;white-space:nowrap}.md-popup-title-bar .title-bar-left[data-v-7774bb08],.md-popup-title-bar .title-bar-right[data-v-7774bb08]{position:absolute;width:20%;max-height:120px;font-size:36px;font-weight:500;box-sizing:border-box;line-height:1}.md-popup-title-bar .title-bar-title[data-v-7774bb08]{width:100%;padding-left:20%;padding-right:20%;box-sizing:border-box;line-height:1}.md-popup-title-bar .title-bar-title p.title[data-v-7774bb08]{font-size:40px;color:#01080f}.md-popup-title-bar .title-bar-title p.describe[data-v-7774bb08]{margin-top:15px;font-size:28px;color:#858b9c}.md-popup-title-bar .title-bar-left[data-v-7774bb08]{left:0;padding-left:40px;-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.md-popup-title-bar .title-bar-right[data-v-7774bb08]{right:0;padding-right:40px;-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end}.md-popup-title-bar .md-popup-cancel[data-v-7774bb08]{color:#666f83}.md-popup-title-bar .md-popup-confirm[data-v-7774bb08]{color:#198cff}.md-popup-title-bar .md-popup-close[data-v-7774bb08]{padding-top:40px;color:#666f83;-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.md-action-bar{position:fixed;z-index:100;left:0;bottom:0;right:0;display:-webkit-box;display:-webkit-flex;display:flex;padding:20px 40px 36px;background:#fff}.md-action-bar:after{content:"";display:table;clear:both}.md-action-bar-container{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;padding-bottom:env(safe-area-inset-bottom)}.md-action-bar-text{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;height:100px;margin-right:22px;-webkit-box-align:center;-webkit-align-items:center;align-items:center;overflow:hidden}.md-action-bar-group{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;height:100%}.md-action-bar-button{display:-webkit-box;display:-webkit-flex;display:flex;float:right;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-flex:1;-webkit-flex:1;flex:1}.md-action-bar-button:nth-of-type(2){margin-left:22px}.md-action-sheet{color:#41485d;-webkit-font-smoothing:antialiased}.md-action-sheet .md-popup{z-index:1101}.md-action-sheet .md-popup-box{background-color:#f9fafb}.md-action-sheet-content{position:relative;width:100%;font-size:32px;background:#fff;text-align:center;overflow:auto}.md-action-sheet-header{position:relative;height:120px;line-height:120px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;overflow:visible}.md-action-sheet-header:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:2px solid #e2e4ea;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-action-sheet-header:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-action-sheet-item{position:relative;height:120px;line-height:120px;padding:0 40px;box-sizing:border-box;font-size:32px;-webkit-transition:background-color .3s;transition:background-color .3s;-webkit-user-select:none}.md-action-sheet-item.active{color:#198cff}.md-action-sheet-item.disabled .md-action-sheet-item-section{opacity:.3}.md-action-sheet-item:first-of-type .md-action-sheet-item-wrapper:after{display:none}.md-action-sheet-item:active{background-color:#f9fafb}.md-action-sheet-item:active.disabled{background-color:initial}.md-action-sheet-item-wrapper{position:relative}.md-action-sheet-item-wrapper:after{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(-100%);transform:scaleY(.5) translateY(-100%);top:0;left:0;right:auto;bottom:auto;width:100%;border-top:2px solid #e2e4ea;-webkit-transform-origin:50% 0;transform-origin:50% 0}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-action-sheet-item-wrapper:after{-webkit-transform:scaleY(.33) translateY(-100%);transform:scaleY(.33) translateY(-100%)}}.md-action-sheet-cancel{height:132px;line-height:120px;color:#666f83;font-weight:500}.md-action-sheet-cancel:before{display:block;content:"";height:12px;background:#f9fafb}.md-radio{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;line-height:1.5;margin-top:12px;margin-bottom:12px}.md-radio .md-radio-icon{color:#c5cad5}.md-radio .md-radio-icon .md-icon{display:-webkit-box;display:-webkit-flex;display:flex}.md-radio.is-checked .md-radio-icon{color:#198cff}.md-radio.is-disabled .md-radio-icon,.md-radio.is-disabled .md-radio-label{color:#d9e0e7}.md-radio.is-inline{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex}.md-radio.is-inline:not(:last-child){margin-right:40px}.md-radio-icon{position:relative;-webkit-flex-shrink:0;flex-shrink:0}.md-radio-label{margin-left:12px;font-size:inherit;font-weight:400}.md-field{padding:40px;border:none;background-color:#fff}.md-field.is-plain{padding:0;background-color:initial}.md-field-header{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;margin-bottom:32px}.md-field-heading{-webkit-box-flex:1;-webkit-flex:1 1 0%;flex:1 1 0%}.md-field-action{-webkit-flex-shrink:0;flex-shrink:0;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-align-self:flex-start;align-self:flex-start;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-left:12px;color:#858b9c;font-size:24px}.md-field-title{color:#01080f;font-size:36px;font-weight:500;line-height:1}.md-field-brief{margin-top:8px;color:#858b9c;font-size:24px;line-height:1.4}.md-field-footer{margin-top:20px}.md-field.is-disabled .md-field-action,.md-field.is-disabled .md-field-brief,.md-field.is-disabled .md-field-content,.md-field.is-disabled .md-field-footer,.md-field.is-disabled .md-field-title,.md-field:disabled .md-field-action,.md-field:disabled .md-field-brief,.md-field:disabled .md-field-content,.md-field:disabled .md-field-footer,.md-field:disabled .md-field-title{color:#d9e0e7}.md-cell-item{position:relative}.md-cell-item.no-border .md-cell-item-body:before{display:none}.md-cell-item-body{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;min-height:100px;padding-top:32px;padding-bottom:32px;box-sizing:border-box}.md-cell-item-body:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:2px solid #e2e4ea;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-cell-item-body:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-cell-item-body.multilines{padding-top:36px;padding-bottom:36px}.md-cell-item-left{-webkit-flex-shrink:0;flex-shrink:0;margin-right:32px}.md-cell-item-content{-webkit-box-flex:1;-webkit-flex:1 1 0%;flex:1 1 0%;color:#01080f;font-size:32px;line-height:1.2}.md-cell-item-right{-webkit-flex-shrink:0;flex-shrink:0;margin-left:12px;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;color:#858b9c;font-size:28px}.md-cell-item-right .md-icon-arrow{margin-left:6px;margin-right:-6px;color:#c5cad5}.md-cell-item-title{line-height:1.2}.md-cell-item-brief{color:#858b9c;font-size:24px;line-height:1.4;margin-top:8px}.md-cell-item-children{padding:32px 0}.md-cell-item.is-disabled,.md-cell-item.is-disabled .md-cell-item-brief,.md-cell-item.is-disabled .md-cell-item-children,.md-cell-item.is-disabled .md-cell-item-content,.md-cell-item.is-disabled .md-cell-item-left,.md-cell-item.is-disabled .md-cell-item-right,.md-cell-item.is-disabled .md-cell-item-title{color:#d9e0e7}.md-field-item{position:relative}.md-field-item-content{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;min-height:100px;padding-top:30px;padding-bottom:30px;box-sizing:border-box}.md-field-item-content:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:2px solid #e2e4ea;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-field-item-content:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-field-item-title{-webkit-flex-shrink:0;flex-shrink:0;margin-right:10px;font-size:32px}.md-field-item-left{-webkit-flex-shrink:0;flex-shrink:0;margin-right:12px;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start;color:#858b9c;font-size:28px}.md-field-item-control{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 0%;flex:1 1 0%;color:#01080f;font-size:32px;font-weight:500}.md-field-item-placeholder{color:#c5cad5;font-weight:400}.md-field-item-right{position:relative;-webkit-flex-shrink:0;flex-shrink:0;margin-left:12px;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;color:#858b9c;font-size:28px}.md-field-item-right .md-icon-arrow{margin-right:-6px;color:#c5cad5}.md-field-item-children{font-size:24px;margin-top:20px}.md-field-item.is-solid .md-field-item-title{width:160px;color:#01080f}.md-field-item.is-disabled .md-field-item-control,.md-field-item.is-disabled .md-field-item-left,.md-field-item.is-disabled .md-field-item-right{color:#d9e0e7}.md-field-item.is-align-right .md-field-item-control{text-align:right}.md-field-item.is-android .md-field-item-control{font-weight:700}.md-number-keyboard-container{position:relative;-webkit-user-select:none;-webkit-tap-highlight-color:transparent;display:-webkit-box;display:-webkit-flex;display:flex;width:100%;height:428px}.md-number-keyboard-container:after{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(-100%);transform:scaleY(.5) translateY(-100%);top:0;left:0;right:auto;bottom:auto;width:100%;border-top:2px solid #e2e4ea;-webkit-transform-origin:50% 0;transform-origin:50% 0}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-number-keyboard-container:after{-webkit-transform:scaleY(.33) translateY(-100%);transform:scaleY(.33) translateY(-100%)}}.md-number-keyboard-container .keyboard-number,.md-number-keyboard-container .keyboard-operate{display:-webkit-box;display:-webkit-flex;display:flex}.md-number-keyboard-container .keyboard-number{-webkit-box-flex:3;-webkit-flex:3;flex:3;background:#f9fafb}.md-number-keyboard-container .keyboard-number .keyboard-number-list{float:left;width:100%}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item{position:relative;float:left;width:33.3%;height:107px;padding-top:5px;text-align:center;line-height:107px;font-size:52px;font-weight:500;font-family:DINPro-Medium,DIN Alternate,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif;color:#01080f;-webkit-transition:background .3s;transition:background .3s;background:#fff;box-sizing:border-box}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item:before{content:"";position:absolute;z-index:2;-webkit-transform:scaleX(.5) translateX(100%);transform:scaleX(.5) translateX(100%);top:0;right:0;left:auto;bottom:auto;border-right:2px solid #e2e4ea;height:100%;-webkit-transform-origin:100% 50%;transform-origin:100% 50%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item:before{-webkit-transform:scaleX(.33) translateX(100%);transform:scaleX(.33) translateX(100%)}}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item:after{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(-100%);transform:scaleY(.5) translateY(-100%);top:0;left:0;right:auto;bottom:auto;width:100%;border-top:2px solid #e2e4ea;-webkit-transform-origin:50% 0;transform-origin:50% 0}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item:after{-webkit-transform:scaleY(.33) translateY(-100%);transform:scaleY(.33) translateY(-100%)}}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item.no-bg{background:0 0}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item:nth-of-type(-n+3):after{display:none}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item:nth-of-type(3n){width:33.4%}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item.delete{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABECAMAAABJe8AqAAAAdVBMVEUAAABBSF5GTWBBSF5CSmJBSF1BSF1hYXVCSV1CSF5SXGtBSV1BSF5DSV9ESl5FTWRBSV5BSF5BSV1BSF5BSV1CSl5BSV5CSV5CSV5DSl9DS2JOTmNBSF1CSV9CSl5ETGBJSWRCSV5CSV1ES19CSF1CSl5BSF2IZB1/AAAAJnRSTlMA1yffH5T1BfudCuvLWUQW8OTUtamjj4FzNy0QwIxNQBxoZkvCZK9RzSgAAAGQSURBVFjDzNW5jsJQDIXhQ8LNwpKwDfswA4Xf/xEpXLhwbo4AWcJVlEj/V6Q4yN9ePr8J8reUWOBcxQKXUmKBrcQCB4kFbqK3xNtXjAHFSvt7xACzjfavdRCw0/66Rwxw1H5zQgzw1yjwQAzwP9d+ixigXmh/MQsCWu3Pp4gBHtpvOsQAp0qBI2KAfq39HWKA+qr9zYs/uB4F/EauikzoJ2HoppNuDPAbecv1RdJQv5Sq44Bt5CHfV8H1xQQH+I3cZvq9fk9DfZFfAthGlhfYDaUSf+kB28jqDDCB9B3gN5ILvG+A30gukL4D3EZSgfQd4DeSC/bIAb+RXGB9A2wj77CjQmt9AmQ2kgrWJ0B+I7mQwIH8RnIh4SuAZ3VmbgMACMNAL0IF7L8iokposaLYEyDx5OyD3CKBQ6avqcBDKx8VMezW57DrH9fAJIHTj0wa+gKxhQxeCtERGN/hVyW+5wJiWqGAHSXQtMZmgpqqhIegpjonE9RVqZVLQWDWac0gqLlavgQ11/u1HxRBUH6BA3XHDDIvn0o0AAAAAElFTkSuQmCC) 50% no-repeat;background-size:46px}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item.slidedown{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABeAgMAAAC7uhn4AAAACVBMVEUAAAASHDYRGjQxUFCHAAAAAnRSTlMAgJsrThgAAAB/SURBVEjH7dUxDoAgEETRsbGgtvI0XkdP4xEoaOSUJgQzJMMmlpvAtL94YRuQ7flqEf2F2WazWsjtotvm6WbOWvgO5rx5utlsP5uzP84ehtlaX3xDt9R2oLOrpAe97aUlEySnIDkFySlITkFyCpJTkJyCyT4pOQXJ6U7Y29DuBThrzOxbC3kTAAAAAElFTkSuQmCC) 50% no-repeat;background-size:54px}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item.large-item{width:66.6%}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item.active,.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item:active{background-color:#f9fafb}.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item:after,.md-number-keyboard-container .keyboard-number .keyboard-number-list .keyboard-number-item:before{pointer-events:none}.md-number-keyboard-container .keyboard-operate{-webkit-box-flex:1;-webkit-flex:1;flex:1}.md-number-keyboard-container .keyboard-operate .keyboard-operate-list{position:relative;float:left;width:100%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.md-number-keyboard-container .keyboard-operate .keyboard-operate-list .keyboard-operate-item{position:relative;float:left;width:100%;background:#fff;-webkit-transition:background .3s;transition:background .3s}.md-number-keyboard-container .keyboard-operate .keyboard-operate-list .keyboard-operate-item.delete{height:107px;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABECAMAAABJe8AqAAAAdVBMVEUAAABBSF5GTWBBSF5CSmJBSF1BSF1hYXVCSV1CSF5SXGtBSV1BSF5DSV9ESl5FTWRBSV5BSF5BSV1BSF5BSV1CSl5BSV5CSV5CSV5DSl9DS2JOTmNBSF1CSV9CSl5ETGBJSWRCSV5CSV1ES19CSF1CSl5BSF2IZB1/AAAAJnRSTlMA1yffH5T1BfudCuvLWUQW8OTUtamjj4FzNy0QwIxNQBxoZkvCZK9RzSgAAAGQSURBVFjDzNW5jsJQDIXhQ8LNwpKwDfswA4Xf/xEpXLhwbo4AWcJVlEj/V6Q4yN9ePr8J8reUWOBcxQKXUmKBrcQCB4kFbqK3xNtXjAHFSvt7xACzjfavdRCw0/66Rwxw1H5zQgzw1yjwQAzwP9d+ixigXmh/MQsCWu3Pp4gBHtpvOsQAp0qBI2KAfq39HWKA+qr9zYs/uB4F/EauikzoJ2HoppNuDPAbecv1RdJQv5Sq44Bt5CHfV8H1xQQH+I3cZvq9fk9DfZFfAthGlhfYDaUSf+kB28jqDDCB9B3gN5ILvG+A30gukL4D3EZSgfQd4DeSC/bIAb+RXGB9A2wj77CjQmt9AmQ2kgrWJ0B+I7mQwIH8RnIh4SuAZ3VmbgMACMNAL0IF7L8iokposaLYEyDx5OyD3CKBQ6avqcBDKx8VMezW57DrH9fAJIHTj0wa+gKxhQxeCtERGN/hVyW+5wJiWqGAHSXQtMZmgpqqhIegpjonE9RVqZVLQWDWac0gqLlavgQ11/u1HxRBUH6BA3XHDDIvn0o0AAAAAElFTkSuQmCC) 50% no-repeat;background-size:42px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1}.md-number-keyboard-container .keyboard-operate .keyboard-operate-list .keyboard-operate-item.delete:active{background-color:#f9fafb}.md-number-keyboard-container .keyboard-operate .keyboard-operate-list .keyboard-operate-item.confirm{padding-top:5px;color:#fff;font-size:36px;background:#198cff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.md-number-keyboard-container .keyboard-operate .keyboard-operate-list .keyboard-operate-item.confirm:active{background-color:#167de5}.md-number-keyboard-container.disabled .keyboard-operate-item.confirm{background-color:#d9e0e7!important}.md-number-keyboard .md-popup{z-index:1302}.md-number-keyboard .md-popup-box{padding-top:1px;background-color:#f9fafb;padding-bottom:env(safe-area-inset-bottom)}.md-input-item .md-field-item-content{padding-top:0;padding-bottom:0}.md-input-item .md-field-item-control{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.md-input-item-clear{padding:10px 0;color:#c5cad5}.md-input-item-clear .md-icon{display:-webkit-box;display:-webkit-flex;display:flex;background:#f9fafb;border-radius:50%}.md-input-item-fake,.md-input-item-input{width:100%;height:100px;color:#01080f;font-size:32px;font-weight:500;font-family:Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif;line-height:1;border:none;background:0 0;outline:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent;-webkit-appearance:none;appearance:none}.md-input-item-input:disabled,.md-input-item-input[disabled]{opacity:1}.md-input-item-input::-webkit-input-placeholder{color:#c5cad5;font-weight:400}.md-input-item-input::-webkit-inner-spin-button,.md-input-item-input::-webkit-outer-spin-button{-webkit-appearance:none}.md-input-item-fake{line-height:100px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;cursor:text}.md-input-item-fake:after{position:relative;z-index:2;display:none;content:" ";height:80px;border-right:1.5px solid #01080f}.md-input-item-fake.is-focus:after{display:inline}.md-input-item-fake.is-waiting:after{-webkit-animation:keyboard-cursor 1s step-start infinite;animation:keyboard-cursor 1s step-start infinite}.md-input-item-fake-placeholder{position:absolute;top:0;left:0;width:100%;color:#c5cad5;font-weight:400}.md-input-item-brief,.md-input-item-msg{word-break:break-all;word-wrap:break-word}.md-input-item-brief:not(:last-child),.md-input-item-msg:not(:last-child){margin-bottom:10px}.md-input-item-brief{font-size:24px;color:#858b9c}.md-input-item-msg{font-size:24px;color:#ff4040}.md-input-item.left .md-input-item-fake,.md-input-item.left .md-input-item-input{text-align:left}.md-input-item.center .md-input-item-fake,.md-input-item.center .md-input-item-input{text-align:center}.md-input-item.right .md-input-item-fake,.md-input-item.right .md-input-item-input{text-align:right}.md-input-item.is-title-latent .md-field-item-title{position:absolute;top:50%;left:0;height:auto;font-size:26px;color:#666f83;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0);-webkit-transition:all .3s ease;transition:all .3s ease;opacity:0;will-change:auto}.md-input-item.is-title-latent .md-field-item-content{min-height:115px}.md-input-item.is-title-latent .md-field-item-content,.md-input-item.is-title-latent .md-field-item-left,.md-input-item.is-title-latent .md-field-item-right,.md-input-item.is-title-latent .md-input-item-fake,.md-input-item.is-title-latent .md-input-item-input{padding-top:20px}.md-input-item.is-title-latent.is-active .md-field-item-title{opacity:1;top:20px;-webkit-transform:translateZ(0);transform:translateZ(0)}.md-input-item.is-highlight.is-focus .md-field-item-content:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:4px solid #01080f;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-input-item.is-highlight.is-focus .md-field-item-content:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-input-item.is-disabled .md-input-item-fake,.md-input-item.is-disabled .md-input-item-fake-placeholder,.md-input-item.is-disabled .md-input-item-input{-webkit-text-fill-color:#858b9c;color:#858b9c}.md-input-item.is-amount .md-input-item-fake,.md-input-item.is-amount .md-input-item-input{font-family:DINPro-Medium,DIN Alternate,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif}.md-input-item.is-amount.large .md-input-item-fake,.md-input-item.is-amount.large .md-input-item-input{padding-top:8px}.md-input-item.large .md-input-item-fake,.md-input-item.large .md-input-item-input{padding-bottom:15px;font-size:80px}.md-input-item.large .md-input-item-input::-webkit-input-placeholder{font-size:60px;line-height:100px}.md-input-item.is-error .md-field-item-content:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:4px solid #ff4040;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-input-item.is-error .md-field-item-content:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-input-item.is-ios .md-input-item-input::-webkit-input-placeholder{position:relative;top:3px;overflow:visible}.md-input-item.is-ios .md-input-item-fake:after{border-right:6px solid #2c6cf5;border-radius:2px}.md-input-item.is-android .md-input-item-fake:after{border-right:4px solid #01080f}.md-input-item.is-android .md-input-item-fake,.md-input-item.is-android .md-input-item-input{font-weight:700}@-webkit-keyframes keyboard-cursor{0%{opacity:1}50%{opacity:0}to{opacity:1}}@keyframes keyboard-cursor{0%{opacity:1}50%{opacity:0}to{opacity:1}}.md-radio-item .md-radio{margin-top:0;margin-bottom:0}.md-radio-list .md-cell-item-body.multilines .md-cell-item-title{font-weight:500}.md-radio-list.is-align-center .md-cell-item-content{text-align:center}.md-radio-list.is-align-center .md-cell-left,.md-radio-list.is-align-center .md-cell-right{display:none}.md-drop-menu{position:fixed;z-index:1200;top:0;left:0;right:0;height:110px;box-sizing:border-box;color:#666f83;font-size:32px;font-weight:500}.md-drop-menu-bar{position:relative;z-index:1200;display:-webkit-box;display:-webkit-flex;display:flex;height:100%;background:#fff}.md-drop-menu-bar:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:2px solid #e2e4ea;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-drop-menu-bar:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-drop-menu-bar .bar-item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;margin:2% 0;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.md-drop-menu-bar .bar-item span{position:relative;padding-right:30px}.md-drop-menu-bar .bar-item span:after{content:"";position:absolute;right:0;top:50%;width:0;height:0;margin-top:-4px;border-left:8px solid transparent;border-right:8px solid transparent;border-top:9px solid #c5cad5;-webkit-transition:-webkit-transform .3s cubic-bezier(.86,0,.07,1);transition:-webkit-transform .3s cubic-bezier(.86,0,.07,1);transition:transform .3s cubic-bezier(.86,0,.07,1);transition:transform .3s cubic-bezier(.86,0,.07,1), -webkit-transform .3s cubic-bezier(.86,0,.07,1)}.md-drop-menu-bar .bar-item.active{color:#198cff}.md-drop-menu-bar .bar-item.active span:after{-webkit-transform:rotate(180deg);transform:rotate(180deg);border-top-color:#198cff}.md-drop-menu-bar .bar-item.selected{color:#198cff}.md-drop-menu-bar .bar-item.disabled{opacity:.3}.md-drop-menu-list{width:100%;padding-top:110px;background:#fff;box-sizing:border-box}.md-drop-menu-list .md-radio-item{font-weight:400}.md-drop-menu-list .md-radio-item.is-selected .md-cell-item-title{color:#198cff}.md-picker-column{position:relative;width:100%;padding:0 40px;background:#fff;box-sizing:border-box;-webkit-transform:translateZ(0);transform:translateZ(0)}.md-picker-column-container{height:100%}.md-picker-column-masker{position:absolute!important;z-index:2;left:40px;right:40px;-webkit-transform:translateZ(0);transform:translateZ(0)}.md-picker-column-masker.top{top:0}.md-picker-column-masker.top:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:3px solid #e2e4ea;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-picker-column-masker.top:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-picker-column-masker.bottom{bottom:0}.md-picker-column-masker.bottom:after{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(-100%);transform:scaleY(.5) translateY(-100%);top:0;left:0;right:auto;bottom:auto;width:100%;border-top:3px solid #e2e4ea;-webkit-transform-origin:50% 0;transform-origin:50% 0}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-picker-column-masker.bottom:after{-webkit-transform:scaleY(.33) translateY(-100%);transform:scaleY(.33) translateY(-100%)}}.md-picker-column-hooks{display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;z-index:3;top:0;right:0;bottom:0;left:0;padding:0 40px}.md-picker-column-hook{-webkit-box-flex:1;-webkit-flex:1;flex:1}.md-picker-column-hook,.md-picker-column-list{display:-webkit-box;display:-webkit-flex;display:flex;height:100%}.md-picker-column-item{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow:hidden}.md-picker-column-item:after{content:"";display:table;clear:both}.md-picker-column-item .column-list{position:absolute;top:0;left:0;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:translateZ(0);transform:translateZ(0)}.md-picker-column-item .column-list,.md-picker-column-item .column-list .column-item{width:100%;box-sizing:border-box}.md-picker-column-item .column-list .column-item{float:left;padding:0 20px;color:#d9e0e7;font-size:32px;text-align:center;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.md-picker-column-item .column-list .column-item.active{color:#198cff;font-weight:500}.md-picker-column-item .column-list .column-item.disabled{opacity:.2}.md-picker{width:100%}.md-picker .md-popup{z-index:1100}.md-scroll-view{position:relative;display:block;height:100%;overflow:hidden;-webkit-user-select:none;user-select:none}.md-scroll-view .scroll-view-footer,.md-scroll-view .scroll-view-header{position:absolute;left:0;right:0;z-index:2}.md-scroll-view .scroll-view-header{top:0}.md-scroll-view .scroll-view-footer{bottom:0}.md-scroll-view .scroll-view-container{position:relative;z-index:1}.md-scroll-view .scroll-view-container:after{content:"";display:table;clear:both}.md-scroll-view .scroll-view-container .scroll-view-refresh{position:absolute;left:0;right:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.md-scroll-view .scroll-view-container .scroll-view-refresh:after{content:"";display:table;clear:both}.md-scroll-view .scroll-view-container .scroll-view-more{visibility:hidden}.md-scroll-view .scroll-view-container .scroll-view-more.active{visibility:visible}.md-scroll-view .scroll-view-container.horizon{display:inline-block}.md-check{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-top:12px;margin-bottom:12px}.md-check.is-checked .md-check-icon{color:#198cff}.md-check.is-disabled .md-check-icon,.md-check.is-disabled .md-check-label{color:#d9e0e7}.md-check-icon{position:relative;color:#c5cad5}.md-check-icon .md-icon{display:-webkit-box;display:-webkit-flex;display:flex}.md-check-label{margin-left:12px;font-size:inherit}.md-check-item .md-check{margin-top:0;margin-bottom:0;pointer-events:none}.md-check-item .md-cell-item-body.multilines .md-cell-item-title{font-weight:500}.md-check-list.is-align-center .md-cell-item-content{text-align:center}.md-check-list.is-align-center .md-cell-left,.md-check-list.is-align-center .md-cell-right{display:none}.md-selector .md-popup{z-index:1102}.md-selector .md-radio-item{padding-left:40px;padding-right:40px;-webkit-transition:background-color .3s;transition:background-color .3s}.md-selector .md-radio-item .md-cell-item-body.multilines .md-cell-item-title{font-weight:400}.md-selector .md-radio-item.is-selected .md-cell-item-title{color:#198cff}.md-selector .md-radio-item:active{background-color:#f9fafb}.md-selector.is-check .md-radio-item.is-selected .md-cell-item-title{color:inherit}.md-selector .md-check-item{padding-left:40px;padding-right:40px}.md-selector-container{padding-bottom:constant(safe-area-inset-bottom);overflow:hidden}.md-selector.is-normal .md-radio-item{text-align:center}.md-selector.is-normal .md-radio-item .md-cell-item-left,.md-selector.is-normal .md-radio-item .md-cell-item-right{display:none}.md-swiper-box{overflow:hidden;will-change:tranform}.md-swiper,.md-swiper-box{width:100%;height:100%;position:relative}.md-swiper-box.disabled,.md-swiper.disabled{visibility:hidden}.md-swiper-box.md-swiper-fade .md-swiper-item,.md-swiper.md-swiper-fade .md-swiper-item{position:absolute;opacity:0;top:0;left:0}.md-swiper-box.md-swiper-vertical .md-swiper-container,.md-swiper.md-swiper-vertical .md-swiper-container{width:100%;height:auto;-webkit-box-orient:vertical;box-orient:vertical;-webkit-flex-direction:column;flex-direction:column}.md-swiper-box.md-swiper-vertical .md-swiper-indicators,.md-swiper.md-swiper-vertical .md-swiper-indicators{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;right:20px;left:auto;bottom:auto;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.md-swiper-box.md-swiper-vertical .md-swiper-indicators.disabled,.md-swiper.md-swiper-vertical .md-swiper-indicators.disabled{visibility:hidden}.md-swiper-box.md-swiper-vertical .md-swiper-indicators .md-swiper-indicator,.md-swiper.md-swiper-vertical .md-swiper-indicators .md-swiper-indicator{width:4px;height:16px;margin:2.5px 0}.md-swiper-container{height:100%;width:auto;position:relative;display:-webkit-box;display:-webkit-flex;display:flex;box-sizing:initial}.md-swiper-indicators{position:absolute;bottom:20px;left:50%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.md-swiper-indicator{width:16px;height:4px;display:inline-block;background:#ddd;margin:0 3px}.md-swiper-indicator.md-swiper-indicator-active{background:#198cff}.md-swiper-item{position:relative;width:100%;-webkit-flex-shrink:0;flex-shrink:0}.md-toast .md-popup{z-index:1700}.md-toast .md-icon{-webkit-flex-shrink:0;flex-shrink:0;color:#fff}.md-toast .md-icon+.md-toast-text{margin-left:12px}.md-toast .md-popup .md-popup-box{width:540px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.md-toast .md-popup .md-popup-mask{background:0 0}.md-toast.bottom .md-popup .md-popup-box{bottom:50px}.md-toast.bottom .md-popup .md-popup-box,.md-toast.top .md-popup .md-popup-box{position:absolute;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.md-toast.top .md-popup .md-popup-box{top:50px}.md-toast-content{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;max-width:100%;min-width:80px;padding:20px 32px;border-radius:16px;font-size:28px;text-align:left;line-height:1.42857142;color:#fff;background-color:#4b5265;box-sizing:border-box;overflow:hidden}.md-toast-content .md-toast-text{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.md-toast-content.square{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;width:240px;min-height:232px;padding:54px 36px 48px;border-radius:24px}.md-toast-content.square .md-toast-text{margin-left:0;line-height:40px;word-break:break-all;word-wrap:break-word;white-space:normal;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.md-toast-content.square .md-icon{margin-bottom:32px;width:58px;height:58px;font-size:58px}.md-tip{position:relative;display:inline-block;z-index:1303}.md-tip-content{position:relative;padding:15px 32px;color:#fff;font-size:24px;line-height:1.2;z-index:2}.md-tip-content:after{content:"";display:table;clear:both}.md-tip-content .content-icon{float:left;margin-right:14px}.md-tip-content .content-text{float:left;margin-top:2px}.md-tip-bg{position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1000px;background-color:#41485d;box-shadow:0 5px 20px rgba(0,0,0,.08);opacity:.8}.md-tip-bg:after{content:"";position:absolute;bottom:-10px;left:50%;margin-left:-11px;width:0;height:0;border-color:#41485d transparent transparent;border-style:solid;border-width:10px 11px 0}.md-tip.has-close .md-tip-content{padding-right:60px}.md-tip.is-bottom .md-tip-bg:after{bottom:auto;top:-10px;border-width:0 11px 10px;border-color:transparent transparent #41485d}.md-tip.is-left .md-tip-bg:after{top:50%;right:-6px;left:auto;margin-top:-11px;border-width:11px 0 11px 10px;border-color:transparent transparent transparent #41485d}.md-tip.is-right .md-tip-bg:after{top:50%;left:4px;margin-top:-11px;border-width:11px 10px 11px 0;border-color:transparent #41485d transparent transparent}.md-tip .md-icon.md-icon-close{position:absolute;right:16px;top:50%;width:32px;height:32px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.md-tab-bar{position:relative;padding-left:40px;padding-right:40px;background-color:#f9fafb}.md-tab-bar-inner{position:relative;width:100%}.md-tab-bar-list{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;min-width:100%}.md-tab-bar-item{-webkit-box-flex:1;-webkit-flex:auto;flex:auto;-webkit-flex-shrink:0;flex-shrink:0;position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#666f83;font-size:28px;font-weight:500;min-height:100px;padding:0 27px;margin:0 auto;box-sizing:border-box;-webkit-user-select:none;-webkit-tap-highlight-color:transparent}.md-tab-bar-item.is-active{color:#198cff}.md-tab-bar-item.is-disabled{color:#d9e0e7}.more-than-five{padding:0;margin-right:27px}.md-tab-bar-ink{position:absolute;bottom:10px;left:0;display:block;height:4px;background-color:#198cff;border-radius:2000px;-webkit-transition:all .3s;transition:all .3s}.md-tab-bar-ink.is-disabled{background-color:#d9e0e7}.md-tab-bar-end,.md-tab-bar-start{position:absolute;top:0;left:0;width:14px;height:100px;overflow:hidden}.md-tab-bar-end:after,.md-tab-bar-start:after{content:"";display:block;position:absolute;left:-14px;top:50%;width:14px;margin-top:-40px;height:80px;border-radius:50%;box-shadow:-1px 0 12px 0 rgba(0,0,0,.2)}.md-tab-bar-end{left:auto;right:0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.md-tab-bar .md-scroll-view{display:block}.md-tab-bar .scroll-view-container{min-width:100%}.md-tabs-content{position:relative;width:100%;overflow:hidden}.md-tab-pane{position:relative;width:100%;-webkit-transform:translateZ(0);transform:translateZ(0)}.md-tab-slide-left-enter,.md-tab-slide-right-enter{opacity:.01}.md-tab-slide-left-enter-active,.md-tab-slide-left-leave-active,.md-tab-slide-right-enter-active,.md-tab-slide-right-leave-active{-webkit-transition:all .3s;transition:all .3s}.md-tab-slide-left-leave-active,.md-tab-slide-right-leave-active{position:absolute;top:0}.md-tab-slide-left-leave-to,.md-tab-slide-right-leave-to{opacity:.01}.md-tab-slide-left-enter{-webkit-transform:translateX(100%);transform:translateX(100%)}.md-tab-slide-left-leave-to,.md-tab-slide-right-enter{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.md-tab-slide-right-leave-to{-webkit-transform:translateX(100%);transform:translateX(100%)}.md-tag{color:#01080f;font-size:28px;text-align:center;display:inline-block;-webkit-user-select:none}.md-tag .default{background:transparent;color:#198cff;border-color:#198cff}.md-tag .shape-square{border-radius:50%;padding:0 12px;border-radius:0}.md-tag .shape-fillet{padding:2px 8px;border-radius:4px}.md-tag .shape-quarter{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;width:56px;height:56px;background:0 0!important;overflow:hidden}.md-tag .shape-quarter .quarter-content{position:relative;left:10%;bottom:10%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;z-index:2;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.md-tag .shape-quarter .quarter-bg{position:absolute;top:-100%;left:0;width:200%;height:200%;border-radius:50%}.md-tag .shape-quarter .quarter-wrap,.md-tag .shape-quarter .quarter-wrap-hidden{display:inline-block;padding:16px 12px 10px 26px}.md-tag .shape-quarter .quarter-wrap-hidden{visibility:hidden}.md-tag .shape-quarter.size-small{width:40px;height:40px}.md-tag .shape-quarter.size-tiny{width:24px;height:24px}.md-tag .shape-coupon{position:relative;padding:0 10px;background:0 0!important}.md-tag .shape-coupon .coupon-container{padding:2px 0}.md-tag .shape-coupon .left-coupon,.md-tag .shape-coupon .right-coupon{position:absolute;top:0;width:10px;height:100%}.md-tag .shape-coupon .left-coupon{left:0}.md-tag .shape-coupon .right-coupon{right:0}.md-tag .shape-coupon.size-small{padding:0 8px}.md-tag .shape-coupon.size-small .left-coupon,.md-tag .shape-coupon.size-small .right-coupon{width:8px}.md-tag .shape-coupon.size-tiny{padding:0 5px}.md-tag .shape-coupon.size-tiny .left-coupon,.md-tag .shape-coupon.size-tiny .right-coupon{width:5px}.md-tag .shape-bubble{width:50px;padding:6px 0;border-radius:50%;border-bottom-left-radius:0;box-sizing:border-box}.md-tag .shape-bubble.size-small{width:38px;padding:3px 0}.md-tag .shape-bubble.size-tiny{width:24px;padding:2px 0}.md-tag .size-large{font-size:26px}.md-tag .size-small{font-size:20px}.md-tag .size-tiny{font-size:12px}.md-tag .type-fill{color:#fff;background:#198cff}.md-tag .type-ghost{border:1px solid #198cff;background:transparent}.md-tag .font-weight-normal{font-weight:400}.md-tag .font-weight-bold{font-weight:700}.md-tag .font-weight-bolder{font-weight:bolder}.md-tag .md-icon.icon-font{font-size:inherit;-webkit-transform:scale(1.2);transform:scale(1.2)}.md-stepper{color:#01080f;-webkit-font-smoothing:antialiased;font-size:28px;height:50px;display:-webkit-box;display:-webkit-flex;display:flex}.md-stepper.disabled .md-stepper-button:after,.md-stepper.disabled .md-stepper-button:before,.md-stepper.disabled input{opacity:.3}.md-stepper-button{position:relative;width:54px;height:50px;background-color:#f9fafb;border-radius:2px}.md-stepper-button:after{width:24px;height:2px}.md-stepper-button.md-stepper-button-add:before,.md-stepper-button:after{content:"";position:absolute;top:50%;left:50%;background:#01080f;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.md-stepper-button.md-stepper-button-add:before{width:2px;height:24px}.md-stepper-button.disabled:after,.md-stepper-button.disabled:before{opacity:.3}.md-stepper-number{margin:0 4px;width:68px;height:50px;padding:0 4px;text-align:center;border-radius:0;background-color:#f9fafb}.md-stepper-number input{width:100%;height:50px;border:none;outline:0;font-size:26px;line-height:50px;background-color:initial;box-sizing:border-box;text-align:center;color:#01080f}.md-steps{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:space-around;justify-content:space-around;font-size:28px}.md-steps.md-steps-horizontal{-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:40px 100px 100px}.md-steps.md-steps-horizontal .step-wrapper{margin:0 4px;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.md-steps.md-steps-horizontal .step-wrapper.reached .text-wrapper .name{color:#41485d}.md-steps.md-steps-horizontal .step-wrapper.current .text-wrapper .name{color:#198cff}.md-steps.md-steps-horizontal .text-wrapper{top:100%;padding-top:20px;text-align:center}.md-steps.md-steps-horizontal .text-wrapper .name{color:#858b9c}.md-steps.md-steps-horizontal .text-wrapper .desc{margin-top:10px;color:#858b9c}.md-steps.md-steps-horizontal.no-current .reached:last-of-type{display:none!important}.md-steps.md-steps-vertical{-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start;padding:40px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.md-steps.md-steps-vertical.vertical-adaptive{-webkit-box-pack:normal;-webkit-justify-content:normal;justify-content:normal;padding:40px 40px 8px}.md-steps.md-steps-vertical.vertical-adaptive .bar.vertical-bar{-webkit-box-flex:1;-webkit-flex:1;flex:1}.md-steps.md-steps-vertical .step-wrapper{width:100%;margin:4px 0;-webkit-box-align:stretch;-webkit-align-items:stretch;align-items:stretch}.md-steps.md-steps-vertical .step-wrapper .icon-wrapper{position:relative}.md-steps.md-steps-vertical .step-wrapper .icon-wrapper .step-node-default{min-width:32px;min-height:32px}.md-steps.md-steps-vertical .step-wrapper .text-wrapper{left:32px;padding-left:40px}.md-steps.md-steps-vertical .step-wrapper .text-wrapper .desc,.md-steps.md-steps-vertical .step-wrapper .text-wrapper .name{white-space:normal}.md-steps.md-steps-vertical .step-wrapper .text-wrapper .name{color:#41485d}.md-steps.md-steps-vertical .step-wrapper .text-wrapper .desc{margin-top:18px;color:#858b9c}.md-steps .icon-wrapper{color:#e2e4ea}.md-steps .icon-wrapper,.md-steps .icon-wrapper>div{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.md-steps .icon-wrapper:nth-child(2){display:none}.md-steps .icon-wrapper .step-node-default-icon{background:#e2e4ea}.md-steps .step-wrapper{display:-webkit-box;display:-webkit-flex;display:flex;position:relative}.md-steps .step-wrapper,.md-steps .step-wrapper .icon-wrapper{min-width:32px;min-height:32px}.md-steps .step-wrapper .icon-wrapper .md-icon{width:32px;height:32px;font-size:32px;line-height:32px}.md-steps .step-wrapper .text-wrapper{position:absolute}.md-steps .step-wrapper .text-wrapper .desc,.md-steps .step-wrapper .text-wrapper .name{white-space:nowrap}.md-steps .step-wrapper .text-wrapper .name{line-height:28px;font-size:28px}.md-steps .step-wrapper .text-wrapper .desc{line-height:28px;font-size:26px}.md-steps .step-wrapper.current .icon-wrapper,.md-steps .step-wrapper.reached .icon-wrapper{color:#198cff}.md-steps .step-wrapper.current .icon-wrapper .step-node-default-icon,.md-steps .step-wrapper.reached .icon-wrapper .step-node-default-icon{background:#198cff}.md-steps .bar{position:relative;background-color:#e2e4ea;overflow:hidden}.md-steps .bar .bar-inner{z-index:10;position:absolute;top:0;left:0;display:block;content:"";-webkit-transition:all 1s linear;transition:all 1s linear}.md-steps .bar.horizontal-bar{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:1px}.md-steps .bar.horizontal-bar .bar-inner{width:100%;height:1px;background-color:#198cff}.md-steps .bar.vertical-bar{left:16px;width:1px;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.md-steps .bar.vertical-bar .bar-inner{width:1px;height:100%;background-color:#198cff}.md-steps .bar:last-of-type.horizontal-bar{display:none}.md-steps .bar:last-of-type.vertical-bar{visibility:hidden}.md-notice-bar{display:-webkit-box;display:-webkit-flex;display:flex;z-index:999;font-size:26px;min-height:64px;background-color:rgba(89,158,248,.08);color:#198cff;position:relative;padding-left:32px;box-sizing:border-box}.md-notice-bar.md-notice-bar-round{border-radius:32px}.md-notice-bar.activity{background-color:#ffedde;color:#ff843d}.md-notice-bar.warning{background-color:#ffeeef;color:#ff5b60}.md-notice-bar-left,.md-notice-bar-right{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.md-notice-bar-left{padding-right:16px}.md-notice-bar-right{padding-right:32px}.md-notice-bar-empty{padding-right:0}.md-notice-bar-content{-webkit-box-flex:1;-webkit-flex:1;flex:1;width:auto;margin:auto 40px auto auto;line-height:64px;white-space:nowrap;overflow:hidden}.md-notice-bar-content.md-notice-bar-multi-content{padding:20px 0;line-height:36px;white-space:normal}.md-notice-bar-content .md-notice-bar-content-animate{padding-left:100%;display:inline-block;-webkit-animation:md-notice-bar-animation 16s linear infinite both;animation:md-notice-bar-animation 16s linear infinite both}@-webkit-keyframes md-notice-bar-animation{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes md-notice-bar-animation{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.md-image-reader{z-index:100}.md-image-reader,.md-image-reader-file{position:absolute;width:100%;height:100%;left:0;top:0;-webkit-tap-highlight-color:transparent}.md-image-reader-file{opacity:0}.md-image-viewer{position:fixed;top:0;left:0;bottom:0;right:0;z-index:1001;-webkit-transform:translateZ(0);transform:translateZ(0);overflow:hidden}.md-image-viewer .viewer-index{position:absolute;bottom:100px;left:0;width:100%;text-align:center;color:#fff;font-size:32px;text-shadow:0 1px 1px #333;z-index:101}.md-image-viewer .viewer-container{position:fixed;top:0;left:0;bottom:0;right:0;background-color:rgba(0,0,0,.85);z-index:100}.md-image-viewer .viewer-items{list-style:none;left:0}.md-image-viewer .viewer-items,.md-image-viewer .viewer-items .viewer-item-wrap{position:absolute;top:0;height:100%;width:100%}.md-image-viewer .viewer-item-wrap .item{width:100%;display:inline-block;position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.md-image-viewer .viewer-item-wrap .item>img{width:100%;display:block}.md-landscape.is-full .md-popup-box{position:absolute;top:0;right:0;bottom:0;left:0}.md-landscape.is-full .md-landscape-body{width:100%;height:100%;background:#fff}.md-landscape.is-full .md-landscape-content{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.md-landscape.is-full .md-icon.md-landscape-close{position:absolute;right:25px;top:25px;margin:auto}.md-landscape .md-popup,.md-landscape .md-popup-box{z-index:1600}.md-landscape .md-icon.md-landscape-close{position:relative;display:block;margin:50px auto 20px;font-size:50px;width:50px;height:50px;line-height:50px;text-align:center;color:#fff}.md-landscape .md-icon.md-landscape-close.dark{color:#01080f;opacity:.5}.md-landscape-content{width:540px;font-size:28px;overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box}.md-landscape-content img{max-width:100%;height:auto}.md-result{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;width:100%;height:100%;text-align:center}.md-result-image{width:260px}.md-result-image img{width:100%;margin-bottom:40px}.md-result-text{margin:20px 20px 0;color:#01080f;font-size:32px}.md-result-subtext{margin-top:16px;color:#858b9c;font-size:28px}.md-result-buttons{display:-webkit-box;display:-webkit-flex;display:flex}.md-result-buttons .md-button{margin:10px}.md-tab-picker .md-popup{z-index:1102}.md-tab-picker .md-tab-bar{position:relative;margin-left:40px;margin-right:40px;padding-left:0;padding-right:0;background-color:#fff}.md-tab-picker .md-tab-bar:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:2px solid #e2e4ea;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-tab-picker .md-tab-bar:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-tab-picker .md-tabs-content{height:500px;overflow:auto;-webkit-overflow-scrolling:touch}.md-tab-picker .md-tabs-content::-webkit-scrollbar{display:none}.md-tab-picker .md-tab-bar-list{-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.md-tab-picker .md-tab-bar-list .md-tab-bar-item{-webkit-box-flex:0;-webkit-flex:none;flex:none;margin:0;padding:0 30px;font-size:32px}.md-tab-picker .md-tab-pane{padding-left:40px;padding-right:40px;box-sizing:border-box}.md-tab-picker .md-popup-cancel{width:90px!important}.md-tab-picker-content{background-color:#fff}.md-tab-picker-content .md-radio-item.is-selected .md-cell-item-body .md-cell-item-title{color:#198cff}.md-dialog .md-popup{z-index:1500}.md-dialog-content{width:606px;border-radius:12px;background-color:#fff;overflow:hidden}.md-dialog-body{color:#666f83;font-size:28px;text-align:left;padding:52px}.md-dialog-icon{position:relative;display:block;width:100px;height:100px;margin:20px auto 28px}.md-dialog .md-dialog-icon .md-icon,.md-dialog .md-dialog-icon .md-icon.icon-font,.md-dialog .md-dialog-icon .md-icon.icon-svg{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;position:absolute;top:0;left:0;width:100px;height:100px;fill:#858b9c;color:#858b9c;font-size:100px;line-height:100px}.md-dialog-close{position:absolute;color:#858b9c;top:32px;right:32px;z-index:15}.md-dialog-title{color:#01080f;text-align:center;font-size:40px;font-weight:400;line-height:1.2;margin:0 0 28px}.md-dialog-text{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.md-dialog-actions{position:relative;display:-webkit-box;display:-webkit-flex;display:flex}.md-dialog-actions:after{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(-100%);transform:scaleY(.5) translateY(-100%);top:0;left:0;right:auto;bottom:auto;width:100%;border-top:2px solid #e2e4ea;-webkit-transform-origin:50% 0;transform-origin:50% 0}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-dialog-actions:after{-webkit-transform:scaleY(.33) translateY(-100%);transform:scaleY(.33) translateY(-100%)}}.md-dialog-actions.is-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.md-dialog-actions.is-column .md-dialog-btn{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto}.md-dialog-actions.is-column .md-dialog-btn:before{display:none}.md-dialog-actions.is-column .md-dialog-btn:not(:first-child):after{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(-100%);transform:scaleY(.5) translateY(-100%);top:0;left:0;right:auto;bottom:auto;width:100%;border-top:2px solid #e2e4ea;-webkit-transform-origin:50% 0;transform-origin:50% 0}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-dialog-actions.is-column .md-dialog-btn:not(:first-child):after{-webkit-transform:scaleY(.33) translateY(-100%);transform:scaleY(.33) translateY(-100%)}}.md-dialog-actions.is-column .md-dialog-btn:last-child{color:#666f83}.md-dialog-actions.is-column .md-dialog-btn:first-child{color:#198cff}.md-dialog-btn{position:relative;-webkit-box-flex:1;-webkit-flex:1 1 0%;flex:1 1 0%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:100px;font-size:36px;font-weight:500;color:#666f83;text-align:center;-webkit-transition:background-color .3s;transition:background-color .3s;-webkit-user-select:none;-webkit-tap-highlight-color:transparent}.md-dialog-btn:before{content:"";position:absolute;z-index:2;-webkit-transform:scaleX(.5) translateX(100%);transform:scaleX(.5) translateX(100%);top:0;right:0;left:auto;bottom:auto;border-right:2px solid #e2e4ea;height:100%;-webkit-transform-origin:100% 50%;transform-origin:100% 50%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-dialog-btn:before{-webkit-transform:scaleX(.33) translateX(100%);transform:scaleX(.33) translateX(100%)}}.md-dialog-btn.warning{color:#ff4040!important}.md-dialog-btn.warning .md-dialog-btn-loading .md-activity-indicator-svg .circle circle{stroke:#ff4040!important}.md-dialog-btn.disabled{color:#d9e0e7!important}.md-dialog-btn.disabled .md-dialog-btn-loading .md-activity-indicator-svg .circle circle{stroke:#d9e0e7!important}.md-dialog-btn:last-child{color:#198cff}.md-dialog-btn:last-child:before{display:none}.md-dialog-btn:last-child .md-dialog-btn-loading .md-activity-indicator-svg .circle circle{stroke:#198cff}.md-dialog-btn:not(.disabled):active{background-color:#f9fafb}.md-dialog-btn .md-dialog-btn-loading .md-activity-indicator-svg{width:32px!important;height:32px!important;margin-right:10px}.md-dialog-btn .md-dialog-btn-loading .md-activity-indicator-svg .circle circle{stroke:#666f83}.md-dialog-btn .md-dialog-btn-icon{margin-right:10px}.md-switch{box-sizing:border-box;position:relative;width:80px;height:48px;border-radius:48px;background-color:#e2e4ea}.md-switch.disabled{opacity:.3}.md-switch:after,.md-switch:before{content:"";position:absolute;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s}.md-switch:before{top:0;left:0;width:80px;height:48px;border-radius:24px;background-color:#e2e4ea}.md-switch:after{top:4px;left:4px;width:40px;height:40px;background-color:#fff;border-radius:50%}.md-switch.active{background-color:#198cff}.md-switch.active:before{-webkit-transform:scale(0);transform:scale(0)}.md-switch.active:after{-webkit-transform:translateX(32px);transform:translateX(32px)}.md-agree{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.md-agree.disabled{opacity:.3}.md-agree-icon{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-align-self:flex-start;align-self:flex-start;-webkit-flex-shrink:0;flex-shrink:0;margin-right:12px;color:#198cff;width:50px;height:50px}.md-agree-icon,.md-agree-icon .md-agree-icon-container{position:relative}.md-agree-icon .md-agree-icon-container .md-icon{display:-webkit-box;display:-webkit-flex;display:flex;will-change:auto}.md-agree-icon .md-agree-icon-container .md-icon.md-icon-checked,.md-agree-icon .md-agree-icon-container .md-icon.md-icon-square-checked{position:absolute;top:0;left:0;-webkit-transform:scale(.6);transform:scale(.6);color:transparent;-webkit-transition:all .3s cubic-bezier(.86,0,.07,1);transition:all .3s cubic-bezier(.86,0,.07,1)}.md-agree-icon .md-agree-icon-container .md-icon.md-icon-check,.md-agree-icon .md-agree-icon-container .md-icon.md-icon-square-check{color:#198cff}.md-agree-icon.checked .md-agree-icon-container .md-icon-checked,.md-agree-icon.checked .md-agree-icon-container .md-icon-square-checked{-webkit-transform:scale(1);transform:scale(1);color:#198cff}.md-agree-icon.checked .md-agree-icon-container .md-icon-check,.md-agree-icon.checked .md-agree-icon-container .md-icon-square-check{opacity:.8}.md-agree-content{-webkit-box-flex:1;-webkit-flex:1 1 0%;flex:1 1 0%;line-height:1.5}.md-check-base-box{position:relative;display:inline-block;text-align:center;color:#61686f;font-size:32px;padding:12px 20px;border:1px solid #c1c8cf;border-radius:16px;box-sizing:border-box;background-color:#fff;overflow:hidden}.md-check-base-box.is-checked{color:#198cff;border-color:#198cff;background-color:rgba(25,140,255,.06);font-weight:700}.md-check-base-box.is-checked.is-disabled{color:#198cff;border-color:#198cff;opacity:.6}.md-check-base-box.is-disabled{color:#c1c8cf;border-color:#c1c8cf;background-color:rgba(0,0,0,.04)}.md-check-base-box .md-tag{position:absolute;top:0;right:0}.md-check-base-box .md-tag .quarter-bg{background-color:#198cff}.md-check-base-box.lt .md-tag{left:0}.md-check-base-box.lt .md-tag .quarter-content{left:-10%}.md-check-base-box.lt .md-tag .quarter-bg{left:-100%}.md-date-picker .column-item{font-size:32px!important;overflow:visible!important}.md-codebox-wrapper .md-codebox-input{position:absolute;left:-9999px;opacity:0}.md-codebox{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.md-codebox.is-justify .md-codebox-box{-webkit-box-flex:1;-webkit-flex:1 1 0%;flex:1 1 0%}.md-codebox-box{position:relative;-webkit-box-flex:0;-webkit-flex:0 1 66px;flex:0 1 66px;width:66px;height:70px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#01080f;font-family:DINPro-Medium,DIN Alternate,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif;font-size:50px;font-weight:400;line-height:1.2;margin-left:9px;margin-right:9px}.md-codebox-box:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:2px solid #c5cad5;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-codebox-box:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-codebox-box:first-child{margin-left:0}.md-codebox-box:last-child{margin-right:0}.md-codebox-box.is-active,.md-codebox-box.is-filled{border-color:#01080f}.md-codebox-blink{height:56px;width:2px;-webkit-animation:md-codebox-flash 1s steps(2) infinite;animation:md-codebox-flash 1s steps(2) infinite}.md-codebox-blink,.md-codebox-dot{display:block;background-color:#01080f}.md-codebox-dot{height:10px;width:10px;border-radius:5px}.md-codebox-holder{pointer-events:none;height:70px;line-height:70px;padding:0 12px;width:100%;text-align:center;font-size:50px;outline:0;color:#01080f;letter-spacing:.1em;border-radius:0;border:solid #c5cad5;border-width:0 0 2px;background:0 0;box-shadow:none;box-sizing:border-box;-webkit-appearance:none;-webkit-text-fill-color:#01080f}.md-codebox-holder[disabled],.md-codebox-holder[readonly]{opacity:1;color:#01080f;border-color:#c5cad5}.md-codebox-holder.is-active{border-color:#01080f}.md-codebox.is-disabled .md-codebox-box{color:#d9e0e7;border-color:#d9e0e7}.md-codebox.is-disabled .md-codebox-blink{display:none}.md-codebox.is-disabled .md-codebox-dot{background-color:#d9e0e7}.md-codebox.is-disabled .md-codebox-holder{color:#d9e0e7;border-color:#d9e0e7}@-webkit-keyframes md-codebox-flash{0%{opacity:0}to{opacity:1}}@keyframes md-codebox-flash{0%{opacity:0}to{opacity:1}}.md-captcha .md-dialog .md-popup{z-index:1301}.md-captcha .md-dialog .md-dialog-body{padding:60px 60px 30px}.md-captcha .md-dialog .md-dialog-content{margin-bottom:428px}.md-captcha .md-codebox{margin-bottom:28px}.md-captcha-content{font-size:28px;color:#858b9c;text-align:center;line-height:1.2;margin-bottom:50px}.md-captcha-title{color:#01080f;font-size:44px;font-weight:400;line-height:1.15;margin:0 0 16px}.md-captcha-footer{margin:28px 0;display:-webkit-box;display:-webkit-flex;display:flex;font-size:24px;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-box-align:center;-webkit-align-items:center;align-items:center;overflow:hidden}.md-captcha-brief,.md-captcha-error{-webkit-box-flex:1;-webkit-flex:1 1 0%;flex:1 1 0%}.md-captcha-error{color:#ff4040}.md-captcha-brief{color:#858b9c}.md-captcha-btn{display:inline-block;color:#198cff;font-size:24px;padding:0;margin:0 0 0 12px;border:0;border-radius:0;background:0 0}.md-captcha-btn:disabled{color:#d9e0e7}.md-activity-indicator-rolling-success{position:relative}.md-activity-indicator-rolling-success .right{position:absolute;left:50%;top:50%}.md-activity-indicator-rolling-success .right line{will-change:auto}.md-activity-indicator-rolling-success .right line:first-child{-webkit-animation:md-activity-indicator-rolling-line0 .2s cubic-bezier(1,.5,.8,1) forwards;animation:md-activity-indicator-rolling-line0 .2s cubic-bezier(1,.5,.8,1) forwards}.md-activity-indicator-rolling-success .right line:last-child{opacity:0;-webkit-animation:md-activity-indicator-rolling-line1 .2s cubic-bezier(1,.5,.8,1) .2s forwards;animation:md-activity-indicator-rolling-line1 .2s cubic-bezier(1,.5,.8,1) .2s forwards}@-webkit-keyframes md-activity-indicator-rolling-line0{0%{stroke-dashoffset:20}to{stroke-dashoffset:0}}@keyframes md-activity-indicator-rolling-line0{0%{stroke-dashoffset:20}to{stroke-dashoffset:0}}@-webkit-keyframes md-activity-indicator-rolling-line1{0%{opacity:1;stroke-dashoffset:35}to{opacity:1;stroke-dashoffset:0}}@keyframes md-activity-indicator-rolling-line1{0%{opacity:1;stroke-dashoffset:35}to{opacity:1;stroke-dashoffset:0}}.md-cashier-channel-item{float:left;width:100%;position:relative;padding:20px 40px 20px 0;box-sizing:border-box}.md-cashier-channel-item .item-icon,.md-cashier-channel-item .item-image{position:relative;float:left;width:32px;height:32px;margin:6px 0}.md-cashier-channel-item .item-image img{float:left;width:100%}.md-cashier-channel-item .item-label{float:left;margin-left:12px}.md-cashier-channel-item .item-label .title{font-size:30px;color:#41485d}.md-cashier-channel-item .item-label .title .title-active{padding-left:12px;font-size:28px;color:#198cff}.md-cashier-channel-item .item-label .desc{margin-top:8px;font-size:24px;color:#858b9c}.md-cashier-channel-item .item-check-icon{position:absolute;top:50%;right:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.md-cashier-channel-item .item-check-icon .md-icon{display:-webkit-box;display:-webkit-flex;display:flex;color:#c5cad5}.md-cashier-channel-item .item-check-icon .md-icon.md-icon-checked{color:#198cff}.md-cashier-channel .choose-text{position:relative;padding:65px 0 25px}.md-cashier-channel .choose-text:after{content:"";display:table;clear:both}.md-cashier-channel .choose-text p{float:left;width:100%;text-align:center}.md-cashier-channel .choose-text p.choose-title{font-size:28px;color:#666f83}.md-cashier-channel .choose-text p.choose-number{margin-top:20px;font-size:80px;font-family:DINPro-Medium,DIN Alternate,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif;color:#01080f;letter-spacing:-2px}.md-cashier-channel .choose-text p.choose-describe{font-size:20px;color:#666f83}.md-cashier-channel .choose-channel{max-height:500px;padding:40px 60px;box-sizing:border-box;overflow:auto}.md-cashier-channel .choose-channel:after{content:"";display:table;clear:both}.md-cashier-channel .choose-channel .choose-channel-list{-webkit-transition:all .5s ease-in;transition:all .5s ease-in;overflow:hidden}.md-cashier-channel .choose-channel .choose-channel-list:after{content:"";display:table;clear:both}.md-cashier-channel .choose-channel .choose-channel-more{margin-top:10px;font-size:24px;color:#666f83;text-align:center}.md-cashier-channel .choose-channel .choose-channel-more:after{content:"";position:relative;top:20px;width:0;height:0;margin-left:10px;border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #858b9c}.md-cashier-channel .choose-channel .choose-channel-more.disabled{visibility:hidden}.md-cashier-channel .choose-channel.active .choose-channel-list .choose-channel-item{display:block}.md-cashier-channel .choose-channel.active .choose-channel-list{max-height:1000px!important}.md-cashier-block-btn{display:-webkit-box;display:-webkit-flex;display:flex}.md-cashier-block-btn .md-button{-webkit-box-flex:1;-webkit-flex:1;flex:1;margin-right:20px}.md-cashier-block-btn .md-button:last-of-type{margin:0}.md-cashier .md-popup-title-bar .md-popup-cancel .md-icon{-webkit-align-self:flex-start;align-self:flex-start;margin-left:32px}.md-cashier .md-popup-box{background-color:#fff;border-radius:8px 8px 0 0}.md-cashier .md-cashier-container{float:left;width:100%;position:relative;background:#fff;-webkit-touch-callout:none;-webkit-user-select:none;-webkit-transition:all .3s;transition:all .3s;overflow:hidden}.md-cashier .md-cashier-container .md-cashier-block:after{content:"";display:table;clear:both}.md-cashier .md-cashier-container .md-cashier-block .md-cashier-block-icon{position:relative;left:50%;float:left;width:100px;height:100px;margin-top:75px;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.md-cashier .md-cashier-container .md-cashier-block .md-cashier-block-icon .md-activity-indicator-svg{width:100px!important;height:100px!important}.md-cashier .md-cashier-container .md-cashier-block .md-cashier-block-text{float:left;width:100%;margin-top:20px;margin-bottom:180px;font-size:24px;color:#666f83;text-align:center}.md-cashier .md-cashier-container .md-cashier-block .md-cashier-block-btn{float:left;width:100%;padding:0 40px 40px;box-sizing:border-box}.md-cashier .md-cashier-container .md-cashier-block.md-cashier-captcha .md-captcha{float:left;width:100%}.md-cashier .md-cashier-container .md-cashier-block.md-cashier-captcha .md-captcha-content{margin-top:44px;margin-bottom:20px;color:#858b9c}.md-cashier .md-cashier-container .md-cashier-block.md-cashier-captcha .md-codebox{margin-bottom:26px}.md-cashier .md-cashier-container .md-cashier-block.md-cashier-captcha .md-captcha-content,.md-cashier .md-cashier-container .md-cashier-block.md-cashier-captcha .md-captcha-footer,.md-cashier .md-cashier-container .md-cashier-block.md-cashier-captcha .md-captcha-message,.md-cashier .md-cashier-container .md-cashier-block.md-cashier-captcha .md-codebox{margin-left:40px;margin-right:40px}.md-cashier .md-cashier-container .md-cashier-block.md-cashier-captcha .md-captcha-footer{margin-bottom:44px}.md-cashier .md-cashier-container .md-cashier-block.md-cashier-fail .md-cashier-block-icon{position:relative;text-align:center;line-height:100px}.md-cashier .md-cashier-container .md-cashier-block.md-cashier-fail .md-cashier-block-icon .md-icon-warn-color{position:relative;z-index:2;color:#fff6f1;width:100px;height:100px}.md-chart line{stroke:#ccc;stroke-width:.5;stroke-linecap:square}.md-chart path{stroke:#198cff;stroke-width:1;stroke-linecap:butt}.md-chart-axis-y text{fill:#666f83;font-size:20px;text-anchor:end}.md-chart-axis-x text{fill:#666f83;font-size:22px;text-anchor:middle}.md-amount.numerical{font-family:DINPro-Medium,DIN Alternate,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif}.md-activity-indicator-spinning:after{content:"";display:table;clear:both}.md-activity-indicator-spinning .md-icon{float:left}.md-activity-indicator-spinning.dark .md-icon{-webkit-filter:invert(1);filter:invert(1)}.md-activity-indicator-carousel:after{content:"";display:table;clear:both}.md-activity-indicator-carousel .carouseling{float:left;overflow:visible}.md-activity-indicator .indicator-container{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.md-activity-indicator .indicator-container .indicator-text{margin:0 0 0 15px;color:#666f83}.md-activity-indicator .indicator-container.vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.md-activity-indicator .indicator-container.vertical .indicator-text{margin:15px 0 0}.md-scroll-view-refresh{display:-webkit-box;display:-webkit-flex;display:flex;padding:50px 0;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-box-align:center;-webkit-align-items:center;align-items:center;overflow:hidden}.md-scroll-view-refresh .md-activity-indicator-rolling .md-activity-indicator-svg{width:32px!important;height:32px!important;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.md-scroll-view-refresh .refresh-tip{margin-left:15px;font-size:24px;color:#999}.md-scroll-view-more{padding:32px 0;font-size:24px;text-align:center;color:#858b9c}.md-water-mark{position:relative;overflow:hidden}.water-mark-container{position:relative;z-index:2}.water-mark-list{top:0;right:0;bottom:0;left:0;position:absolute;-webkit-filter:grayscale(100%);filter:grayscale(100%);display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;overflow:hidden}.water-mark-list:after{content:"";display:table;clear:both}.water-mark-list .water-mark-canvas{position:absolute;top:0;left:0;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.water-mark-line{position:relative;left:50%;float:left;width:10000%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.water-mark-item{float:left;font-size:28px;color:#858b9c}.md-bill{position:relative;background:#f9fafb}.md-bill-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:28px 32px 8px}.md-bill-title{color:#41485d;font-size:36px;font-weight:500;font-family:Songti SC}.md-bill-no{color:#c5cad5;font-size:24px}.md-bill-neck{position:relative;height:36px;padding:10px;margin:0 28px;box-sizing:border-box}.md-bill-neck span{position:absolute;display:block;top:50%;left:10px;right:10px;height:1px;border-top:1px dashed #c5cad5}.md-bill-content{padding:0 32px 20px}.md-bill-detail{padding-bottom:40px}.md-detail-item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;line-height:1.35;font-size:28px;padding-top:12px;padding-bottom:12px}.md-detail-title{-webkit-flex-shrink:0;flex-shrink:0;color:#858b9c}.md-detail-content{-webkit-box-flex:1;-webkit-flex:1 1 0%;flex:1 1 0%;color:#41485d;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;margin-left:12px}.md-detail-item.is-bold .md-detail-content,.md-detail-item.is-bold .md-detail-title{font-weight:700;color:#41485d}.md-slider{position:relative;width:100%;height:60px}.md-slider:before{content:"";position:absolute;top:28px;left:0;right:0;height:4px;border-radius:2px;background-color:#f9fafb}.md-slider.is-disabled .md-slider-bar{opacity:.35}.md-slider.is-disabled .md-slider-handle span{cursor:not-allowed}.md-slider-bar{position:absolute;left:0;top:28px;height:4px;background-color:#198cff;border-radius:2px;z-index:5}.md-slider-handle{position:absolute;top:10px;left:0;margin-left:-20px;z-index:15;overflow:visible}.md-slider-handle:after{content:attr(data-hint);color:#fff;position:absolute;pointer-events:none;opacity:0;visibility:hidden;z-index:15;font-size:20px;line-height:1.25;padding:8px 16px;border-radius:16px;background-color:#41485d;white-space:nowrap;left:50%;bottom:100%;margin-bottom:20px;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.md-slider-handle:active:after,.md-slider-handle:hover:after{opacity:1;visibility:visible}.md-slider-handle.is-higher{z-index:20}.md-slider-handle.is-active span{-webkit-transform:scale(1.3);transform:scale(1.3)}.md-slider-handle span{display:block;cursor:pointer;width:40px;height:40px;background-color:#fff;border-radius:50%;box-shadow:0 1px 2px rgba(0,0,0,.2);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s, -webkit-transform .2s}.md-ruler{position:relative;padding:36px 0 20px;width:100%;height:142px;box-sizing:border-box;font-family:DINPro-Medium,DIN Alternate,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif}.md-ruler .md-ruler-canvas{width:100%;height:60px}.md-ruler .md-ruler-cursor{z-index:10;position:absolute;top:26px;left:50%;width:2px;height:70px;-webkit-transform:translate(-50%);transform:translate(-50%);background-color:#2f86f6;box-shadow:0 2px 4px #2f86f6}.md-ruler .md-ruler-cursor-bottom{height:40px}.md-ruler .md-ruler-arrow{z-index:10;position:absolute;bottom:25px;left:50%;border-bottom:10px solid #2f86f6;border-left:10px solid transparent;border-right:10px solid transparent;-webkit-transform:translate(-50%);transform:translate(-50%)}.md-textarea-item-msg{color:#ff4040}.md-textarea-item .md-field-item-content{-webkit-box-align:normal;-webkit-align-items:normal;align-items:normal}.md-textarea-item.is-disabled .md-textarea-item__textarea{-webkit-text-fill-color:#858b9c;color:#858b9c}.md-textarea-item .md-field-item-right{-webkit-box-align:start;-webkit-align-items:start;align-items:start}.md-textarea-item__clear{padding:6px 0;color:#c5cad5}.md-textarea-item__clear .md-icon{display:-webkit-box;display:-webkit-flex;display:flex}.md-textarea-item__textarea{box-sizing:border-box;width:100%;font:500 32px Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,微软雅黑,Arial,sans-serif;line-height:1.4;color:#01080f;background:0 0;border:none;outline:0;resize:none;-webkit-appearance:none;appearance:none;-webkit-tap-highlight-color:transparent}.md-textarea-item__textarea::-webkit-input-placeholder{color:#c5cad5;font-weight:400}.md-textarea-item.is-error .md-field-item-content:before{content:"";position:absolute;z-index:2;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scaleY(.5) translateY(100%);transform:scaleY(.5) translateY(100%);bottom:0;left:0;right:auto;top:auto;width:100%;border-bottom:4px solid #ff4040;-webkit-transform-origin:50% 100%;transform-origin:50% 100%}@media (-webkit-min-device-pixel-ratio:3), (min-resolution:3dppx){.md-textarea-item.is-error .md-field-item-content:before{-webkit-transform:scaleY(.33) translateY(100%);transform:scaleY(.33) translateY(100%)}}.md-skeleton{box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex}.md-skeleton .md-skeleton-avatar{width:80px;height:80px;margin-right:32px;border-radius:50%;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:placeHolderShimmer;animation-name:placeHolderShimmer;-webkit-animation-timing-function:linear;animation-timing-function:linear;background:-webkit-linear-gradient(left,#f3f3f6 8%,#f8faff 18%,#f3f3f6 33%);background:linear-gradient(90deg,#f3f3f6 8%,#f8faff 18%,#f3f3f6 33%);background-size:1000px 104px}.md-skeleton .md-skeleton-avatar.md-skeleton-avatar-large{width:96px;height:96px}.md-skeleton .md-skeleton-avatar.md-skeleton-avatar-small{width:64px;height:64px}.md-skeleton .md-skeleton-content{-webkit-box-flex:1;-webkit-flex:1;flex:1}.md-skeleton .md-skeleton-row,.md-skeleton .md-skeleton-title{box-sizing:border-box;height:32px;margin-bottom:24px;border:0;border-radius:0;-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:placeHolderShimmer;animation-name:placeHolderShimmer;-webkit-animation-timing-function:linear;animation-timing-function:linear;background:-webkit-linear-gradient(left,#f3f3f6 8%,#f8faff 18%,#f3f3f6 33%);background:linear-gradient(90deg,#f3f3f6 8%,#f8faff 18%,#f3f3f6 33%);background-size:1000px 104px}.md-skeleton .md-skeleton-row:last-child,.md-skeleton .md-skeleton-title:last-child{margin-bottom:0}@-webkit-keyframes placeHolderShimmer{0%{background-position:-468px 0}to{background-position:468px 0}}@keyframes placeHolderShimmer{0%{background-position:-468px 0}to{background-position:468px 0}}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}button,input,textarea{color:inherit;font:inherit}[class*=van-]:focus,a:focus,button:focus,input:focus,textarea:focus{outline:0}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;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:3;-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;-webkit-transform:scale(.5);transform:scale(.5)}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.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}@-webkit-keyframes van-slide-up-enter{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes van-slide-up-enter{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-webkit-keyframes van-slide-up-leave{to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes van-slide-up-leave{to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-webkit-keyframes van-slide-down-enter{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes van-slide-down-enter{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@-webkit-keyframes van-slide-down-leave{to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes van-slide-down-leave{to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@-webkit-keyframes van-slide-left-enter{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes van-slide-left-enter{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@-webkit-keyframes van-slide-left-leave{to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes van-slide-left-leave{to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@-webkit-keyframes van-slide-right-enter{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes van-slide-right-enter{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@-webkit-keyframes van-slide-right-leave{to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes van-slide-right-leave{to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@-webkit-keyframes van-fade-in{from{opacity:0}to{opacity:1}}@keyframes van-fade-in{from{opacity:0}to{opacity:1}}@-webkit-keyframes van-fade-out{from{opacity:1}to{opacity:0}}@keyframes van-fade-out{from{opacity:1}to{opacity:0}}@-webkit-keyframes van-rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes van-rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.van-fade-enter-active{-webkit-animation:.3s van-fade-in both ease-out;animation:.3s van-fade-in both ease-out}.van-fade-leave-active{-webkit-animation:.3s van-fade-out both ease-in;animation:.3s van-fade-out both ease-in}.van-slide-up-enter-active{-webkit-animation:van-slide-up-enter .3s both ease-out;animation:van-slide-up-enter .3s both ease-out}.van-slide-up-leave-active{-webkit-animation:van-slide-up-leave .3s both ease-in;animation:van-slide-up-leave .3s both ease-in}.van-slide-down-enter-active{-webkit-animation:van-slide-down-enter .3s both ease-out;animation:van-slide-down-enter .3s both ease-out}.van-slide-down-leave-active{-webkit-animation:van-slide-down-leave .3s both ease-in;animation:van-slide-down-leave .3s both ease-in}.van-slide-left-enter-active{-webkit-animation:van-slide-left-enter .3s both ease-out;animation:van-slide-left-enter .3s both ease-out}.van-slide-left-leave-active{-webkit-animation:van-slide-left-leave .3s both ease-in;animation:van-slide-left-leave .3s both ease-in}.van-slide-right-enter-active{-webkit-animation:van-slide-right-enter .3s both ease-out;animation:van-slide-right-enter .3s both ease-out}.van-slide-right-leave-active{-webkit-animation:van-slide-right-leave .3s both ease-in;animation:van-slide-right-leave .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,.7)}.van-info{position:absolute;top:0;right:0;box-sizing:border-box;min-width:16px;padding:0 3px;color:#fff;font-weight:500;font-size:12px;font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;line-height:1.2;text-align:center;background-color:#ee0a24;border:1px solid #fff;border-radius:16px;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%}.van-info--dot{width:8px;min-width:0;height:8px;background-color:#ee0a24;border-radius:100%}.van-sidebar-item{position:relative;display:block;box-sizing:border-box;padding:20px 12px;overflow:hidden;color:#323233;font-size:14px;line-height:20px;background-color:#f7f8fa;cursor:pointer;-webkit-user-select:none;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:#fff}.van-sidebar-item--select::before{position:absolute;top:50%;left:0;width:4px;height:16px;background-color:#ee0a24;-webkit-transform:translateY(-50%);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 14px/1 vant-icon;font:normal normal normal 14px/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:400;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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#646566;font-size:12px;line-height:1;cursor:pointer}.van-tabbar-item__icon{position:relative;margin-bottom:4px;font-size:22px}.van-tabbar-item__icon .van-icon{display:block}.van-tabbar-item__icon img{display:block;height:20px}.van-tabbar-item--active{color:#1989fa;background-color:#fff}.van-tabbar-item .van-info{margin-top:4px}.van-step{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#969799;font-size:14px}.van-step__circle{display:block;width:5px;height:5px;background-color:#969799;border-radius:50%}.van-step__line{position:absolute;background-color:#ebedf0;-webkit-transition:background-color .3s;transition:background-color .3s}.van-step--horizontal{float:left}.van-step--horizontal:first-child .van-step__title{margin-left:0;-webkit-transform:none;transform:none}.van-step--horizontal:last-child{position:absolute;right:1px;width:auto}.van-step--horizontal:last-child .van-step__title{margin-left:0;-webkit-transform:none;transform:none}.van-step--horizontal:last-child .van-step__circle-container{right:-9px;left:auto}.van-step--horizontal .van-step__circle-container{position:absolute;top:30px;left:-8px;z-index:1;padding:0 8px;background-color:#fff;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.van-step--horizontal .van-step__title{display:inline-block;margin-left:3px;font-size:12px;-webkit-transform:translateX(-50%);transform:translateX(-50%)}@media (max-width:321px){.van-step--horizontal .van-step__title{font-size:11px}}.van-step--horizontal .van-step__line{top:30px;left:0;width:100%;height:1px}.van-step--horizontal .van-step__icon{display:block;font-size:12px}.van-step--horizontal .van-step--process{color:#323233}.van-step--vertical{display:block;float:none;padding:10px 10px 10px 0;line-height:18px}.van-step--vertical:not(:last-child)::after{border-bottom-width:1px}.van-step--vertical .van-step__circle-container{position:absolute;top:19px;left:-15px;z-index:1;font-size:12px;line-height:1;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.van-step--vertical .van-step__line{top:16px;left:-15px;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{-webkit-transition:color .3s;transition:color .3s}.van-step__icon--active,.van-step__icon--finish,.van-step__title--active,.van-step__title--finish{color:#07c160}.van-rate{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;cursor:pointer;-webkit-user-select:none;user-select:none}.van-rate__item{position:relative}.van-rate__item:not(:last-child){padding-right:4px}.van-rate__icon{display:block;width:1em;color:#c8c9cc;font-size:20px}.van-rate__icon--half{position:absolute;top:0;left:0;width:.5em;overflow:hidden}.van-rate__icon--full{color:#ee0a24}.van-rate__icon--disabled{color:#c8c9cc}.van-rate--disabled{cursor:not-allowed}.van-rate--readonly{cursor:default}.van-notice-bar{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:40px;padding:0 16px;color:#ed6a0c;font-size:14px;line-height:24px;background-color:#fffbe8}.van-notice-bar__left-icon,.van-notice-bar__right-icon{min-width:24px;font-size:16px}.van-notice-bar__right-icon{text-align:right;cursor:pointer}.van-notice-bar__wrap{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:100%;overflow:hidden}.van-notice-bar__content{position:absolute;white-space:nowrap;-webkit-transition-timing-function:linear;transition-timing-function:linear}.van-notice-bar__content.van-ellipsis{max-width:100%}.van-notice-bar--wrapable{height:auto;padding:8px 16px}.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:22px;text-align:center;background-color:#fff;-webkit-user-select:none;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:#1989fa}.van-nav-bar__content{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;height:46px}.van-nav-bar__arrow{margin-right:4px;font-size:16px}.van-nav-bar__title{max-width:60%;margin:0 auto;color:#323233;font-weight:500;font-size:16px}.van-nav-bar__left,.van-nav-bar__right{position:absolute;top:0;bottom:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 16px;font-size:14px;cursor:pointer}.van-nav-bar__left:active,.van-nav-bar__right:active{opacity:.7}.van-nav-bar__left{left:0}.van-nav-bar__right{right:0}.van-nav-bar__text{color:#1989fa}.van-grid-item{position:relative;box-sizing:border-box}.van-grid-item--square{height:0}.van-grid-item__icon{font-size:28px}.van-grid-item__icon-wrapper{position:relative}.van-grid-item__text{color:#646566;font-size:12px;line-height:1.5;word-break:break-all}.van-grid-item__icon+.van-grid-item__text{margin-top:8px}.van-grid-item__content{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;box-sizing:border-box;height:100%;padding:16px 8px;background-color:#fff}.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{-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.van-grid-item__content--horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;flex-direction:row}.van-grid-item__content--horizontal .van-grid-item__icon+.van-grid-item__text{margin-top:0;margin-left:8px}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;min-width:48px;height:100%;color:#646566;font-size:10px;line-height:1;text-align:center;background-color:#fff;cursor:pointer}.van-goods-action-icon:active{background-color:#f2f3f5}.van-goods-action-icon__icon{position:relative;width:1em;margin:0 auto 5px;color:#323233;font-size:18px}.van-checkbox{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;overflow:hidden;cursor:pointer;-webkit-user-select:none;user-select:none}.van-checkbox--disabled{cursor:not-allowed}.van-checkbox--label-disabled{cursor:default}.van-checkbox--horizontal{margin-right:12px}.van-checkbox__icon{-webkit-box-flex:0;-webkit-flex:none;flex:none;height:1em;font-size:20px;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:.8em;line-height:1.25;text-align:center;border:1px solid #c8c9cc;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:color,border-color,background-color;transition-property:color,border-color,background-color}.van-checkbox__icon--round .van-icon{border-radius:100%}.van-checkbox__icon--checked .van-icon{color:#fff;background-color:#1989fa;border-color:#1989fa}.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:8px;color:#323233;line-height:20px}.van-checkbox__label--left{margin:0 8px 0 0}.van-checkbox__label--disabled{color:#c8c9cc}.van-coupon{margin:0 12px 12px;overflow:hidden;background-color:#fff;border-radius:8px;box-shadow:0 0 4px rgba(0,0,0,.1)}.van-coupon:active{background-color:#f2f3f5}.van-coupon__content{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;box-sizing:border-box;min-height:84px;padding:14px 0;color:#323233}.van-coupon__head{position:relative;min-width:96px;padding:0 8px;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:6px;font-weight:500;font-size:30px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-coupon__amount span{font-weight:400;font-size:40%}.van-coupon__amount span:not(:empty){margin-left:2px}.van-coupon__condition{font-size:12px;line-height:16px;white-space:pre-wrap}.van-coupon__body{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;border-radius:0 8px 8px 0}.van-coupon__name{margin-bottom:10px;font-weight:700;font-size:14px;line-height:20px}.van-coupon__valid{font-size:12px}.van-coupon__corner{position:absolute;top:0;right:16px;bottom:0}.van-coupon__description{padding:8px 16px;font-size:12px;border-top:1px dashed #ebedf0}.van-coupon--disabled:active{background-color:#fff}.van-coupon--disabled .van-coupon-item__content{height:74px}.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__error,.van-image__img,.van-image__loading{display:block;width:100%;height:100%}.van-image__error,.van-image__loading{position:absolute;top:0;left:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#969799;font-size:14px;background-color:#f7f8fa}.van-image__loading-icon{color:#dcdee0;font-size:32px}.van-image__error-icon{color:#dcdee0;font-size:32px}.van-radio{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;overflow:hidden;cursor:pointer;-webkit-user-select:none;user-select:none}.van-radio--disabled{cursor:not-allowed}.van-radio--label-disabled{cursor:default}.van-radio--horizontal{margin-right:12px}.van-radio__icon{-webkit-box-flex:0;-webkit-flex:none;flex:none;height:1em;font-size:20px;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:.8em;line-height:1.25;text-align:center;border:1px solid #c8c9cc;-webkit-transition-duration:.2s;transition-duration:.2s;-webkit-transition-property:color,border-color,background-color;transition-property:color,border-color,background-color}.van-radio__icon--round .van-icon{border-radius:100%}.van-radio__icon--checked .van-icon{color:#fff;background-color:#1989fa;border-color:#1989fa}.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:8px;color:#323233;line-height:20px}.van-radio__label--left{margin:0 8px 0 0}.van-radio__label--disabled{color:#c8c9cc}.van-tag{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding:0 4px;color:#fff;font-size:12px;line-height:16px;border-radius:2px}.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:#1989fa}.van-tag--primary.van-tag--plain{color:#1989fa}.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:#fff;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:2px 6px}.van-tag--large{padding:4px 8px;font-size:14px;border-radius:4px}.van-tag--mark{border-radius:0 999px 999px 0}.van-tag--mark::after{display:block;width:2px;content:''}.van-tag--round{border-radius:999px}.van-tag__close{margin-left:2px;cursor:pointer}.van-card{position:relative;box-sizing:border-box;padding:8px 16px;color:#323233;font-size:12px;background-color:#fafafa}.van-card:not(:first-child){margin-top:8px}.van-card__header{display:-webkit-box;display:-webkit-flex;display:flex}.van-card__thumb{position:relative;-webkit-box-flex:0;-webkit-flex:none;flex:none;width:88px;height:88px;margin-right:8px}.van-card__thumb img{border-radius:8px}.van-card__content{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;min-width:0;min-height:88px}.van-card__content--centered{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.van-card__desc,.van-card__title{word-wrap:break-word}.van-card__title{max-height:32px;font-weight:500;line-height:16px}.van-card__desc{max-height:20px;color:#646566;line-height:20px}.van-card__bottom{line-height:20px}.van-card__price{display:inline-block;color:#323233;font-weight:500;font-size:12px}.van-card__price-integer{font-size:16px;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:5px;color:#969799;font-size:10px;text-decoration:line-through}.van-card__num{float:right;color:#969799}.van-card__tag{position:absolute;top:2px;left:0}.van-card__footer{-webkit-box-flex:0;-webkit-flex:none;flex:none;text-align:right}.van-card__footer .van-button{margin-left:5px}.van-cell{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;box-sizing:border-box;width:100%;padding:10px 16px;overflow:hidden;color:#323233;font-size:14px;line-height:24px;background-color:#fff}.van-cell::after{position:absolute;box-sizing:border-box;content:' ';pointer-events:none;right:16px;bottom:0;left:16px;border-bottom:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-cell--borderless::after,.van-cell:last-child::after{display:none}.van-cell__label{margin-top:4px;color:#969799;font-size:12px;line-height:18px}.van-cell__title,.van-cell__value{-webkit-box-flex:1;-webkit-flex:1;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:24px;font-size:16px;line-height:24px}.van-cell__left-icon{margin-right:4px}.van-cell__right-icon{margin-left:4px;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:8px;color:#ee0a24;font-size:14px;content:'*'}.van-cell--center{-webkit-box-align:center;-webkit-align-items:center;align-items:center}.van-cell--large{padding-top:12px;padding-bottom:12px}.van-cell--large .van-cell__title{font-size:16px}.van-cell--large .van-cell__label{font-size:14px}.van-coupon-cell__value--selected{color:#323233}.van-contact-card{padding:16px}.van-contact-card__value{margin-left:5px;line-height:20px}.van-contact-card--add .van-contact-card__value{line-height:40px}.van-contact-card--add .van-cell__left-icon{color:#1989fa;font-size:40px}.van-contact-card::before{position:absolute;right:0;bottom:0;left:0;height:2px;background:-webkit-repeating-linear-gradient(135deg,#ff6c6c 0,#ff6c6c 20%,transparent 0,transparent 25%,#1989fa 0,#1989fa 45%,transparent 0,transparent 50%);background:repeating-linear-gradient(-45deg,#ff6c6c 0,#ff6c6c 20%,transparent 0,transparent 25%,#1989fa 0,#1989fa 45%,transparent 0,transparent 50%);background-size:80px;content:''}.van-collapse-item{position:relative}.van-collapse-item--border::after{position:absolute;box-sizing:border-box;content:' ';pointer-events:none;top:0;right:16px;left:16px;border-top:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-collapse-item__title .van-cell__right-icon::before{-webkit-transform:rotate(90deg) translateZ(0);transform:rotate(90deg) translateZ(0);-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s;transition:transform .3s,-webkit-transform .3s}.van-collapse-item__title::after{right:16px;display:none}.van-collapse-item__title--expanded .van-cell__right-icon::before{-webkit-transform:rotate(-90deg);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:#fff}.van-collapse-item__wrapper{overflow:hidden;-webkit-transition:height .3s ease-in-out;transition:height .3s ease-in-out;will-change:height}.van-collapse-item__content{padding:12px 16px;color:#969799;font-size:14px;line-height:1.5;background-color:#fff}.van-field__label{-webkit-box-flex:0;-webkit-flex:none;flex:none;box-sizing:border-box;width:6.2em;margin-right:12px;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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;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::-webkit-input-placeholder{color:#c8c9cc}.van-field__control::placeholder{color:#c8c9cc}.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{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;text-align:center}.van-field__control--right{-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;text-align:right}.van-field__control--custom{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;min-height:24px}.van-field__control[type=date],.van-field__control[type=datetime-local],.van-field__control[type=time]{min-height:24px}.van-field__control[type=search]{-webkit-appearance:none}.van-field__button,.van-field__clear,.van-field__icon,.van-field__right-icon{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear,.van-field__right-icon{margin-right:-8px;padding:0 8px;line-height:inherit}.van-field__clear{color:#c8c9cc;font-size:16px;cursor:pointer}.van-field__left-icon .van-icon,.van-field__right-icon .van-icon{display:block;font-size:16px;line-height:inherit}.van-field__left-icon{margin-right:4px}.van-field__right-icon{color:#969799}.van-field__button{padding-left:8px}.van-field__error-message{color:#ee0a24;font-size:12px;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:4px;color:#646566;font-size:12px;line-height:16px;text-align:right}.van-field--error .van-field__control::-webkit-input-placeholder{color:#ee0a24;-webkit-text-fill-color:currentColor}.van-field--error .van-field__control,.van-field--error .van-field__control::-webkit-input-placeholder{color:#ee0a24;-webkit-text-fill-color:currentColor}.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:60px}.van-search{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;box-sizing:border-box;padding:10px 12px;background-color:#fff}.van-search__content{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;padding-left:12px;background-color:#f7f8fa;border-radius:2px}.van-search__content--round{border-radius:999px}.van-search__label{padding:0 5px;color:#323233;font-size:14px;line-height:34px}.van-search .van-cell{-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:5px 8px 5px 0;background-color:transparent}.van-search .van-cell .van-field__left-icon{color:#969799}.van-search--show-action{padding-right:0}.van-search input::-webkit-search-cancel-button,.van-search input::-webkit-search-decoration,.van-search input::-webkit-search-results-button,.van-search input::-webkit-search-results-decoration{display:none}.van-search__action{padding:0 8px;color:#323233;font-size:14px;line-height:34px;cursor:pointer;-webkit-user-select:none;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:#fff;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s, -webkit-transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-overflow-scrolling:touch}.van-popup--center{top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:16px}.van-popup--top{top:0;left:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 16px 16px}.van-popup--right{top:50%;right:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:16px 0 0 16px}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:16px 16px 0 0}.van-popup--left{top:50%;left:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 16px 16px 0}.van-popup--safe-area-inset-bottom{padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.van-popup-slide-bottom-enter-active,.van-popup-slide-left-enter-active,.van-popup-slide-right-enter-active,.van-popup-slide-top-enter-active{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.van-popup-slide-bottom-leave-active,.van-popup-slide-left-leave-active,.van-popup-slide-right-leave-active,.van-popup-slide-top-leave-active{-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}.van-popup-slide-top-enter,.van-popup-slide-top-leave-active{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.van-popup-slide-right-enter,.van-popup-slide-right-leave-active{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,0)}.van-popup-slide-bottom-enter,.van-popup-slide-bottom-leave-active{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.van-popup-slide-left-enter,.van-popup-slide-left-leave-active{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}.van-popup__close-icon{position:absolute;z-index:1;color:#c8c9cc;font-size:22px;cursor:pointer}.van-popup__close-icon:active{color:#969799}.van-popup__close-icon--top-left{top:16px;left:16px}.van-popup__close-icon--top-right{top:16px;right:16px}.van-popup__close-icon--bottom-left{bottom:16px;left:16px}.van-popup__close-icon--bottom-right{right:16px;bottom:16px}.van-share-sheet__header{padding:12px 16px 4px;text-align:center}.van-share-sheet__title{margin-top:8px;color:#323233;font-weight:400;font-size:14px;line-height:20px}.van-share-sheet__description{display:block;margin-top:8px;color:#969799;font-size:12px;line-height:16px}.van-share-sheet__options{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;padding:16px 0 16px 8px;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:16px;border-top:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-share-sheet__options::-webkit-scrollbar{height:0}.van-share-sheet__option{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;cursor:pointer;-webkit-user-select:none;user-select:none}.van-share-sheet__option:active{opacity:.7}.van-share-sheet__icon{width:48px;height:48px;margin:0 16px}.van-share-sheet__name{margin-top:8px;padding:0 4px;color:#646566;font-size:12px}.van-share-sheet__option-description{padding:0 4px;color:#c8c9cc;font-size:12px}.van-share-sheet__cancel{display:block;width:100%;padding:0;font-size:16px;line-height:48px;text-align:center;background:#fff;border:none;cursor:pointer}.van-share-sheet__cancel::before{display:block;height:8px;background-color:#f7f8fa;content:' '}.van-share-sheet__cancel:active{background-color:#f2f3f5}.van-popover{position:absolute;overflow:visible;background-color:transparent;-webkit-transition:opacity .15s,-webkit-transform .15s;transition:opacity .15s,-webkit-transform .15s;transition:opacity .15s,transform .15s;transition:opacity .15s,transform .15s,-webkit-transform .15s}.van-popover__wrapper{display:inline-block}.van-popover__arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;border-width:6px}.van-popover__content{overflow:hidden;border-radius:8px}.van-popover__action{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;box-sizing:border-box;width:128px;height:44px;padding:0 16px;font-size:14px;line-height:20px;cursor:pointer}.van-popover__action:last-child .van-popover__action-text::after{display:none}.van-popover__action-text{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:100%}.van-popover__action-icon{margin-right:8px;font-size:20px}.van-popover__action--with-icon .van-popover__action-text{-webkit-box-pack:start;-webkit-justify-content:flex-start;justify-content:flex-start}.van-popover[data-popper-placement^=top] .van-popover__arrow{bottom:0;border-top-color:currentColor;border-bottom-width:0;-webkit-transform:translate(-50%,100%);transform:translate(-50%,100%)}.van-popover[data-popper-placement=top]{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.van-popover[data-popper-placement=top] .van-popover__arrow{left:50%}.van-popover[data-popper-placement=top-start]{-webkit-transform-origin:0 100%;transform-origin:0 100%}.van-popover[data-popper-placement=top-start] .van-popover__arrow{left:16px}.van-popover[data-popper-placement=top-end]{-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.van-popover[data-popper-placement=top-end] .van-popover__arrow{right:16px}.van-popover[data-popper-placement^=left] .van-popover__arrow{right:0;border-right-width:0;border-left-color:currentColor;-webkit-transform:translate(100%,-50%);transform:translate(100%,-50%)}.van-popover[data-popper-placement=left]{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.van-popover[data-popper-placement=left] .van-popover__arrow{top:50%}.van-popover[data-popper-placement=left-start]{-webkit-transform-origin:100% 0;transform-origin:100% 0}.van-popover[data-popper-placement=left-start] .van-popover__arrow{top:16px}.van-popover[data-popper-placement=left-end]{-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.van-popover[data-popper-placement=left-end] .van-popover__arrow{bottom:16px}.van-popover[data-popper-placement^=right] .van-popover__arrow{left:0;border-right-color:currentColor;border-left-width:0;-webkit-transform:translate(-100%,-50%);transform:translate(-100%,-50%)}.van-popover[data-popper-placement=right]{-webkit-transform-origin:0 50%;transform-origin:0 50%}.van-popover[data-popper-placement=right] .van-popover__arrow{top:50%}.van-popover[data-popper-placement=right-start]{-webkit-transform-origin:0 0;transform-origin:0 0}.van-popover[data-popper-placement=right-start] .van-popover__arrow{top:16px}.van-popover[data-popper-placement=right-end]{-webkit-transform-origin:0 100%;transform-origin:0 100%}.van-popover[data-popper-placement=right-end] .van-popover__arrow{bottom:16px}.van-popover[data-popper-placement^=bottom] .van-popover__arrow{top:0;border-top-width:0;border-bottom-color:currentColor;-webkit-transform:translate(-50%,-100%);transform:translate(-50%,-100%)}.van-popover[data-popper-placement=bottom]{-webkit-transform-origin:50% 0;transform-origin:50% 0}.van-popover[data-popper-placement=bottom] .van-popover__arrow{left:50%}.van-popover[data-popper-placement=bottom-start]{-webkit-transform-origin:0 0;transform-origin:0 0}.van-popover[data-popper-placement=bottom-start] .van-popover__arrow{left:16px}.van-popover[data-popper-placement=bottom-end]{-webkit-transform-origin:100% 0;transform-origin:100% 0}.van-popover[data-popper-placement=bottom-end] .van-popover__arrow{right:16px}.van-popover--light{color:#323233}.van-popover--light .van-popover__content{background-color:#fff;box-shadow:0 2px 12px rgba(50,50,51,.12)}.van-popover--light .van-popover__arrow{color:#fff}.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:#fff}.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,.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{-webkit-transform:scale(.8);transform:scale(.8);opacity:0}.van-popover-zoom-enter-active{-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.van-popover-zoom-leave-active{-webkit-transition-timing-function:ease-in;transition-timing-function:ease-in}.van-notify{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:8px 16px;color:#fff;font-size:14px;line-height:20px;white-space:pre-wrap;text-align:center;word-wrap:break-word}.van-notify--primary{background-color:#1989fa}.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:#ee0a24}.van-dropdown-item__option--active .van-dropdown-item__icon{color:#ee0a24}.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:30px;max-width:100%;height:30px;max-height:100%;vertical-align:middle;-webkit-animation:van-rotate .8s linear infinite;animation:van-rotate .8s linear infinite}.van-loading__spinner--spinner{-webkit-animation-timing-function:steps(12);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:2px;height:25%;margin:0 auto;background-color:currentColor;border-radius:40%;content:' '}.van-loading__spinner--circular{-webkit-animation-duration:2s;animation-duration:2s}.van-loading__circular{display:block;width:100%;height:100%}.van-loading__circular circle{-webkit-animation:van-circular 1.5s ease-in-out infinite;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:8px;color:#969799;font-size:14px;vertical-align:middle}.van-loading--vertical{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.van-loading--vertical .van-loading__text{margin:8px 0 0}@-webkit-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}}@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){-webkit-transform:rotate(30deg);transform:rotate(30deg);opacity:1}.van-loading__spinner--spinner i:nth-of-type(2){-webkit-transform:rotate(60deg);transform:rotate(60deg);opacity:.9375}.van-loading__spinner--spinner i:nth-of-type(3){-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:.875}.van-loading__spinner--spinner i:nth-of-type(4){-webkit-transform:rotate(120deg);transform:rotate(120deg);opacity:.8125}.van-loading__spinner--spinner i:nth-of-type(5){-webkit-transform:rotate(150deg);transform:rotate(150deg);opacity:.75}.van-loading__spinner--spinner i:nth-of-type(6){-webkit-transform:rotate(180deg);transform:rotate(180deg);opacity:.6875}.van-loading__spinner--spinner i:nth-of-type(7){-webkit-transform:rotate(210deg);transform:rotate(210deg);opacity:.625}.van-loading__spinner--spinner i:nth-of-type(8){-webkit-transform:rotate(240deg);transform:rotate(240deg);opacity:.5625}.van-loading__spinner--spinner i:nth-of-type(9){-webkit-transform:rotate(270deg);transform:rotate(270deg);opacity:.5}.van-loading__spinner--spinner i:nth-of-type(10){-webkit-transform:rotate(300deg);transform:rotate(300deg);opacity:.4375}.van-loading__spinner--spinner i:nth-of-type(11){-webkit-transform:rotate(330deg);transform:rotate(330deg);opacity:.375}.van-loading__spinner--spinner i:nth-of-type(12){-webkit-transform:rotate(360deg);transform:rotate(360deg);opacity:.3125}.van-pull-refresh{overflow:hidden;-webkit-user-select:none;user-select:none}.van-pull-refresh__track{position:relative;height:100%;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;transition-property:transform,-webkit-transform}.van-pull-refresh__head{position:absolute;left:0;width:100%;height:50px;overflow:hidden;color:#969799;font-size:14px;line-height:50px;text-align:center;-webkit-transform:translateY(-100%);transform:translateY(-100%)}.van-number-keyboard{position:fixed;bottom:0;left:0;z-index:100;width:100%;padding-bottom:22px;background-color:#f2f3f5;-webkit-user-select:none;user-select:none}.van-number-keyboard--with-title{border-radius:20px 20px 0 0}.van-number-keyboard__header{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:content-box;height:34px;padding-top:6px;color:#646566;font-size:16px}.van-number-keyboard__title{display:inline-block;font-weight:400}.van-number-keyboard__title-left{position:absolute;left:0}.van-number-keyboard__body{display:-webkit-box;display:-webkit-flex;display:flex;padding:6px 0 0 6px}.van-number-keyboard__keys{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:3;-webkit-flex:3;flex:3;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-number-keyboard__close{position:absolute;right:0;height:100%;padding:0 16px;color:#576b95;font-size:14px;background-color:transparent;border:none;cursor:pointer}.van-number-keyboard__close:active{opacity:.7}.van-number-keyboard__sidebar{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.van-number-keyboard--unfit{padding-bottom:0}.van-key{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:48px;font-size:28px;line-height:1.5;background-color:#fff;border-radius:8px;cursor:pointer}.van-key--large{position:absolute;top:0;right:6px;bottom:6px;left:0;height:auto}.van-key--blue,.van-key--delete{font-size:16px}.van-key--active{background-color:#ebedf0}.van-key--blue{color:#fff;background-color:#1989fa}.van-key--blue.van-key--active{background-color:#0570db}.van-key__wrapper{position:relative;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-flex-basis:33%;flex-basis:33%;box-sizing:border-box;padding:0 6px 6px 0}.van-key__wrapper--wider{-webkit-flex-basis:66%;flex-basis:66%}.van-key__delete-icon{width:32px;height:22px}.van-key__collapse-icon{width:30px;height:24px}.van-key__loading-icon{color:#fff}.van-list__error-text,.van-list__finished-text,.van-list__loading{color:#969799;font-size:14px;line-height:50px;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:30px;background-color:#fff;border:1px solid rgba(0,0,0,.1);border-radius:1em;cursor:pointer;-webkit-transition:background-color .3s;transition:background-color .3s}.van-switch__node{position:absolute;top:0;left:0;width:1em;height:1em;font-size:inherit;background-color:#fff;border-radius:100%;box-shadow:0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05);-webkit-transition:-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05), -webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05),-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05)}.van-switch__loading{top:25%;left:25%;width:50%;height:50%;line-height:1}.van-switch--on{background-color:#1989fa}.van-switch--on .van-switch__node{-webkit-transform:translateX(1em);transform:translateX(1em)}.van-switch--on .van-switch__loading{color:#1989fa}.van-switch--disabled{cursor:not-allowed;opacity:.5}.van-switch--loading{cursor:default}.van-switch-cell{padding-top:9px;padding-bottom:9px}.van-switch-cell--large{padding-top:11px;padding-bottom:11px}.van-switch-cell .van-switch{float:right}.van-button{position:relative;display:inline-block;box-sizing:border-box;height:44px;margin:0;padding:0;font-size:16px;line-height:1.2;text-align:center;border-radius:2px;cursor:pointer;-webkit-transition:opacity .2s;transition:opacity .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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);opacity:0;content:' '}.van-button:active::before{opacity:.1}.van-button--disabled::before,.van-button--loading::before{display:none}.van-button--default{color:#323233;background-color:#fff;border:1px solid #ebedf0}.van-button--primary{color:#fff;background-color:#07c160;border:1px solid #07c160}.van-button--info{color:#fff;background-color:#1989fa;border:1px solid #1989fa}.van-button--danger{color:#fff;background-color:#ee0a24;border:1px solid #ee0a24}.van-button--warning{color:#fff;background-color:#ff976a;border:1px solid #ff976a}.van-button--plain{background-color:#fff}.van-button--plain.van-button--primary{color:#07c160}.van-button--plain.van-button--info{color:#1989fa}.van-button--plain.van-button--danger{color:#ee0a24}.van-button--plain.van-button--warning{color:#ff976a}.van-button--large{width:100%;height:50px}.van-button--normal{padding:0 15px;font-size:14px}.van-button--small{height:32px;padding:0 8px;font-size:12px}.van-button__loading{color:inherit;font-size:inherit}.van-button--mini{height:24px;padding:0 4px;font-size:10px}.van-button--mini+.van-button--mini{margin-left:4px}.van-button--block{display:block;width:100%}.van-button--disabled{cursor:not-allowed;opacity:.5}.van-button--loading{cursor:default}.van-button--round{border-radius:999px}.van-button--square{border-radius:0}.van-button__content{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content: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:4px}.van-button--hairline{border-width:0}.van-button--hairline::after{border-color:inherit;border-radius:4px}.van-button--hairline.van-button--round::after{border-radius:999px}.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:#fff;-webkit-user-select:none;user-select:none}.van-submit-bar__tip{padding:8px 12px;color:#f56723;font-size:12px;line-height:1.5;background-color:#fff7cc}.van-submit-bar__tip-icon{min-width:18px;font-size:12px;vertical-align:middle}.van-submit-bar__tip-text{vertical-align:middle}.van-submit-bar__bar{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;height:50px;padding:0 16px;font-size:14px}.van-submit-bar__text{-webkit-box-flex:1;-webkit-flex:1;flex:1;padding-right:12px;color:#323233;text-align:right}.van-submit-bar__text span{display:inline-block}.van-submit-bar__suffix-label{margin-left:5px;font-weight:500}.van-submit-bar__price{color:#ee0a24;font-weight:500;font-size:12px}.van-submit-bar__price--integer{font-size:20px;font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif}.van-submit-bar__button{width:110px;height:40px;font-weight:500;border:none}.van-submit-bar__button--danger{background:-webkit-linear-gradient(left,#ff6034,#ee0a24);background:linear-gradient(to right,#ff6034,#ee0a24)}.van-submit-bar--unfit{padding-bottom:0}.van-goods-action-button{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:40px;font-weight:500;font-size:14px;border:none;border-radius:0}.van-goods-action-button--first{margin-left:5px;border-top-left-radius:999px;border-bottom-left-radius:999px}.van-goods-action-button--last{margin-right:5px;border-top-right-radius:999px;border-bottom-right-radius:999px}.van-goods-action-button--warning{background:-webkit-linear-gradient(left,#ffd01e,#ff8917);background:linear-gradient(to right,#ffd01e,#ff8917)}.van-goods-action-button--danger{background:-webkit-linear-gradient(left,#ff6034,#ee0a24);background:linear-gradient(to right,#ff6034,#ee0a24)}@media (max-width:321px){.van-goods-action-button{font-size:13px}}.van-toast{position:fixed;top:50%;left:50%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:content-box;width:88px;max-width:70%;min-height:88px;padding:16px;color:#fff;font-size:14px;line-height:20px;white-space:pre-wrap;text-align:center;word-break:break-all;background-color:rgba(0,0,0,.7);border-radius:8px;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-toast--unclickable{overflow:hidden}.van-toast--unclickable *{pointer-events:none}.van-toast--html,.van-toast--text{width:-webkit-fit-content;width:fit-content;min-width:96px;min-height:0;padding:8px 12px}.van-toast--html .van-toast__text,.van-toast--text .van-toast__text{margin-top:0}.van-toast--top{top:20%}.van-toast--bottom{top:auto;bottom:20%}.van-toast__icon{font-size:36px}.van-toast__loading{padding:4px;color:#fff}.van-toast__text{margin-top:8px}.van-calendar{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;height:100%;background-color:#fff}.van-calendar__popup.van-popup--bottom,.van-calendar__popup.van-popup--top{height:80%}.van-calendar__popup.van-popup--left,.van-calendar__popup.van-popup--right{height:100%}.van-calendar__popup .van-popup__close-icon{top:11px}.van-calendar__header{-webkit-flex-shrink:0;flex-shrink:0;box-shadow:0 2px 10px rgba(125,126,128,.16)}.van-calendar__header-subtitle,.van-calendar__header-title,.van-calendar__month-title{height:44px;font-weight:500;line-height:44px;text-align:center}.van-calendar__header-title{font-size:16px}.van-calendar__header-subtitle{font-size:14px}.van-calendar__month-title{font-size:14px}.van-calendar__weekdays{display:-webkit-box;display:-webkit-flex;display:flex}.van-calendar__weekday{-webkit-box-flex:1;-webkit-flex:1;flex:1;font-size:12px;line-height:30px;text-align:center}.van-calendar__body{-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow:auto;-webkit-overflow-scrolling:touch}.van-calendar__days{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-user-select:none;user-select:none}.van-calendar__month-mark{position:absolute;top:50%;left:50%;z-index:0;color:rgba(242,243,245,.8);font-size:160px;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);pointer-events:none}.van-calendar__day,.van-calendar__selected-day{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;text-align:center}.van-calendar__day{position:relative;width:14.285%;height:64px;font-size:16px;cursor:pointer}.van-calendar__day--end,.van-calendar__day--multiple-middle,.van-calendar__day--multiple-selected,.van-calendar__day--start,.van-calendar__day--start-end{color:#fff;background-color:#ee0a24}.van-calendar__day--start{border-radius:4px 0 0 4px}.van-calendar__day--end{border-radius:0 4px 4px 0}.van-calendar__day--multiple-selected,.van-calendar__day--start-end{border-radius:4px}.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:.1;content:''}.van-calendar__day--disabled{color:#c8c9cc;cursor:default}.van-calendar__bottom-info,.van-calendar__top-info{position:absolute;right:0;left:0;font-size:10px;line-height:14px}@media (max-width:350px){.van-calendar__bottom-info,.van-calendar__top-info{font-size:9px}}.van-calendar__top-info{top:6px}.van-calendar__bottom-info{bottom:6px}.van-calendar__selected-day{width:54px;height:54px;color:#fff;background-color:#ee0a24;border-radius:4px}.van-calendar__footer{-webkit-flex-shrink:0;flex-shrink:0;padding:0 16px;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:36px;margin:7px 0}.van-picker{position:relative;background-color:#fff;-webkit-user-select:none;user-select:none}.van-picker__toolbar{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;height:44px}.van-picker__cancel,.van-picker__confirm{height:100%;padding:0 16px;font-size:14px;background-color:transparent;border:none;cursor:pointer}.van-picker__cancel:active,.van-picker__confirm:active{opacity:.7}.van-picker__confirm{color:#576b95}.van-picker__cancel{color:#969799}.van-picker__title{max-width:50%;font-weight:500;font-size:16px;line-height:20px;text-align:center}.van-picker__columns{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;cursor:grab}.van-picker__loading{position:absolute;top:0;right:0;bottom:0;left:0;z-index:3;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#1989fa;background-color:rgba(255,255,255,.9)}.van-picker__frame{position:absolute;top:50%;right:16px;left:16px;z-index:2;-webkit-transform:translateY(-50%);transform:translateY(-50%);pointer-events:none}.van-picker__mask{position:absolute;top:0;left:0;z-index:1;width:100%;height:100%;background-image:-webkit-linear-gradient(top,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4)),-webkit-linear-gradient(bottom,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4));background-image:linear-gradient(180deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4)),linear-gradient(0deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4));background-repeat:no-repeat;background-position:top,bottom;-webkit-transform:translateZ(0);transform:translateZ(0);pointer-events:none}.van-picker-column{-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow:hidden;font-size:16px}.van-picker-column__wrapper{-webkit-transition-timing-function:cubic-bezier(.23,1,.68,1);transition-timing-function:cubic-bezier(.23,1,.68,1)}.van-picker-column__item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding:0 4px;color:#000}.van-picker-column__item--disabled{cursor:not-allowed;opacity:.3}.van-action-sheet{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;max-height:80%;overflow:hidden;color:#323233}.van-action-sheet__content{-webkit-box-flex:1;-webkit-flex:1 auto;flex:1 auto;overflow-y:auto;-webkit-overflow-scrolling:touch}.van-action-sheet__cancel,.van-action-sheet__item{display:block;width:100%;padding:14px 16px;font-size:16px;background-color:#fff;border:none;cursor:pointer}.van-action-sheet__cancel:active,.van-action-sheet__item:active{background-color:#f2f3f5}.van-action-sheet__item{line-height:22px}.van-action-sheet__item--disabled,.van-action-sheet__item--loading{color:#c8c9cc}.van-action-sheet__item--disabled:active,.van-action-sheet__item--loading:active{background-color:#fff}.van-action-sheet__item--disabled{cursor:not-allowed}.van-action-sheet__item--loading{cursor:default}.van-action-sheet__cancel{-webkit-flex-shrink:0;flex-shrink:0;box-sizing:border-box;color:#646566}.van-action-sheet__subname{margin-top:8px;color:#969799;font-size:12px;line-height:18px}.van-action-sheet__gap{display:block;height:8px;background-color:#f7f8fa}.van-action-sheet__header{-webkit-flex-shrink:0;flex-shrink:0;font-weight:500;font-size:16px;line-height:48px;text-align:center}.van-action-sheet__description{position:relative;-webkit-flex-shrink:0;flex-shrink:0;padding:20px 16px;color:#969799;font-size:14px;line-height:20px;text-align:center}.van-action-sheet__description::after{position:absolute;box-sizing:border-box;content:' ';pointer-events:none;right:16px;bottom:0;left:16px;border-bottom:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-action-sheet__loading-icon .van-loading__spinner{width:22px;height:22px}.van-action-sheet__close{position:absolute;top:0;right:0;z-index:1;padding:0 16px;color:#c8c9cc;font-size:22px;line-height:inherit}.van-action-sheet__close:active{color:#969799}.van-goods-action{position:fixed;right:0;bottom:0;left:0;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;box-sizing:content-box;height:50px;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);background-color:#fff}.van-goods-action--unfit{padding-bottom:0}.van-dialog{position:fixed;top:45%;left:50%;width:320px;overflow:hidden;font-size:16px;background-color:#fff;border-radius:16px;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:.3s;transition:.3s;-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform}@media (max-width:321px){.van-dialog{width:90%}}.van-dialog__header{padding-top:26px;font-weight:500;line-height:24px;text-align:center}.van-dialog__header--isolated{padding:24px 0}.van-dialog__content--isolated{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;min-height:104px}.van-dialog__message{-webkit-box-flex:1;-webkit-flex:1;flex:1;max-height:60vh;padding:26px 24px;overflow-y:auto;font-size:14px;line-height:20px;white-space:pre-wrap;text-align:center;word-wrap:break-word;-webkit-overflow-scrolling:touch}.van-dialog__message--has-title{padding-top:8px;color:#646566}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:-webkit-box;display:-webkit-flex;display:flex;overflow:hidden;-webkit-user-select:none;user-select:none}.van-dialog__cancel,.van-dialog__confirm{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:48px;margin:0;border:0}.van-dialog__confirm,.van-dialog__confirm:active{color:#ee0a24}.van-dialog--round-button .van-dialog__footer{position:relative;height:auto;padding:8px 24px 16px}.van-dialog--round-button .van-dialog__message{padding-bottom:16px;color:#323233}.van-dialog--round-button .van-dialog__cancel,.van-dialog--round-button .van-dialog__confirm{height:36px}.van-dialog--round-button .van-dialog__confirm{color:#fff}.van-dialog-bounce-enter{-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7);opacity:0}.van-dialog-bounce-leave-active{-webkit-transform:translate3d(-50%,-50%,0) scale(.9);transform:translate3d(-50%,-50%,0) scale(.9);opacity:0}.van-contact-edit{padding:16px}.van-contact-edit__fields{overflow:hidden;border-radius:4px}.van-contact-edit__fields .van-field__label{width:4.1em}.van-contact-edit__switch-cell{margin-top:10px;padding-top:9px;padding-bottom:9px;border-radius:4px}.van-contact-edit__buttons{padding:32px 0}.van-contact-edit .van-button{margin-bottom:12px;font-size:16px}.van-address-edit{padding:12px}.van-address-edit__fields{overflow:hidden;border-radius:8px}.van-address-edit__fields .van-field__label{width:4.1em}.van-address-edit__default{margin-top:12px;overflow:hidden;border-radius:8px}.van-address-edit__buttons{padding:32px 4px}.van-address-edit__buttons .van-button{margin-bottom:12px}.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:#1989fa;font-size:12px}.van-radio-group--horizontal{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-contact-list{box-sizing:border-box;height:100%;padding-bottom:80px}.van-contact-list__item{padding:16px}.van-contact-list__item-value{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;padding-right:32px;padding-left:8px}.van-contact-list__item-tag{-webkit-box-flex:0;-webkit-flex:none;flex:none;margin-left:8px;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:16px}.van-contact-list__bottom{position:fixed;right:0;bottom:0;left:0;z-index:999;padding:0 16px;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);background-color:#fff}.van-contact-list__add{height:40px;margin:5px 0}.van-address-list{box-sizing:border-box;height:100%;padding:12px 12px 80px}.van-address-list__bottom{position:fixed;bottom:0;left:0;z-index:999;box-sizing:border-box;width:100%;padding:0 16px;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);background-color:#fff}.van-address-list__add{height:40px;margin:5px 0}.van-address-list__disabled-text{padding:20px 0 16px;color:#969799;font-size:14px;line-height:20px}.van-address-item{padding:12px;background-color:#fff;border-radius:8px}.van-address-item:not(:last-child){margin-bottom:12px}.van-address-item__value{padding-right:44px}.van-address-item__name{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin-bottom:8px;font-size:16px;line-height:22px}.van-address-item__tag{-webkit-box-flex:0;-webkit-flex:none;flex:none;margin-left:8px;padding-top:0;padding-bottom:0;line-height:1.4em}.van-address-item__address{color:#323233;font-size:13px;line-height:18px}.van-address-item--disabled .van-address-item__address,.van-address-item--disabled .van-address-item__name{color:#c8c9cc}.van-address-item__edit{position:absolute;top:50%;right:16px;color:#969799;font-size:20px;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}.van-address-item .van-cell{padding:0}.van-address-item .van-radio__label{margin-left:12px}.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:16px;padding:0 3px;color:#fff;font-weight:500;font-size:12px;font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;line-height:1.2;text-align:center;background-color:#ee0a24;border:1px solid #fff;border-radius:999px}.van-badge--fixed{position:absolute;top:0;right:0;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%}.van-badge--dot{width:8px;min-width:0;height:8px;background-color:#ee0a24;border-radius:100%}.van-badge__wrapper{position:relative;display:inline-block}.van-tab__pane,.van-tab__pane-wrapper{-webkit-flex-shrink:0;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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:0 4px;color:#646566;font-size:14px;line-height:20px;cursor:pointer}.van-tab--active{color:#323233;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{-webkit-box-flex:1;-webkit-flex:1 0 auto;flex:1 0 auto;padding:0 12px}.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:-webkit-box;display:-webkit-flex;display:flex;background-color:#fff;-webkit-user-select:none;user-select:none}.van-tabs__nav--line{box-sizing:content-box;height:100%;padding-bottom:15px}.van-tabs__nav--line.van-tabs__nav--complete{padding-right:8px;padding-left:8px}.van-tabs__nav--card{box-sizing:border-box;height:30px;margin:0 16px;border:1px solid #ee0a24;border-radius:2px}.van-tabs__nav--card .van-tab{color:#ee0a24;border-right:1px solid #ee0a24}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{color:#fff;background-color:#ee0a24}.van-tabs__nav--card .van-tab--disabled{color:#c8c9cc}.van-tabs__line{position:absolute;bottom:15px;left:0;z-index:1;width:40px;height:3px;background-color:#ee0a24;border-radius:3px}.van-tabs__track{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;width:100%;height:100%;will-change:left}.van-tabs__content--animated{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:44px}.van-tabs--card>.van-tabs__wrap{height:30px}.van-coupon-list{position:relative;height:100%;background-color:#f7f8fa}.van-coupon-list__field{padding:5px 0 5px 16px}.van-coupon-list__field .van-field__body{height:34px;padding-left:12px;line-height:34px;background:#f7f8fa;border-radius:17px}.van-coupon-list__field .van-field__body::-webkit-input-placeholder{color:#c8c9cc}.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;background-color:#fff}.van-coupon-list__exchange{-webkit-box-flex:0;-webkit-flex:none;flex:none;height:32px;font-size:16px;line-height:30px;border:0}.van-coupon-list .van-tabs__wrap{box-shadow:0 6px 12px -12px #969799}.van-coupon-list__list{box-sizing:border-box;padding:16px 0 24px;overflow-y:auto;-webkit-overflow-scrolling:touch}.van-coupon-list__list--with-bottom{padding-bottom:66px}.van-coupon-list__bottom{position:absolute;bottom:0;left:0;z-index:999;box-sizing:border-box;width:100%;padding:5px 16px;font-weight:500;background-color:#fff}.van-coupon-list__close{height:40px}.van-coupon-list__empty{padding-top:60px;text-align:center}.van-coupon-list__empty p{margin:16px 0;color:#969799;font-size:14px;line-height:20px}.van-coupon-list__empty img{width:200px;height:200px}.van-cascader__header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;height:48px;padding:0 16px}.van-cascader__title{font-weight:500;font-size:16px;line-height:20px}.van-cascader__close-icon{color:#c8c9cc;font-size:22px}.van-cascader__close-icon:active{color:#969799}.van-cascader__tabs .van-tab{-webkit-box-flex:0;-webkit-flex:none;flex:none;padding:0 10px}.van-cascader__tabs.van-tabs--line .van-tabs__wrap{height:48px}.van-cascader__tabs .van-tabs__nav--complete{padding-right:6px;padding-left:6px}.van-cascader__tab{color:#323233;font-weight:500}.van-cascader__tab--unselected{color:#969799;font-weight:400}.van-cascader__option{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;padding:10px 16px;font-size:14px;line-height:20px}.van-cascader__option:active{background-color:#f2f3f5}.van-cascader__option--selected{color:#ee0a24;font-weight:500}.van-cascader__selected-icon{font-size:18px}.van-cascader__options{box-sizing:border-box;height:384px;padding-top:6px;overflow-y:auto;-webkit-overflow-scrolling:touch}.van-cell-group{background-color:#fff}.van-cell-group--inset{margin:0 16px;overflow:hidden;border-radius:8px}.van-cell-group__title{padding:16px 16px 8px;color:#969799;font-size:14px;line-height:16px}.van-cell-group__title--inset{padding:16px 16px 8px 32px}.van-panel{background:#fff}.van-panel__header-value{color:#ee0a24}.van-panel__footer{padding:8px 16px}.van-checkbox-group--horizontal{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-circle{position:relative;display:inline-block;width:100px;height:100px;text-align:center}.van-circle svg{position:absolute;top:0;left:0;width:100%;height:100%}.van-circle__layer{stroke:#fff}.van-circle__hover{fill:none;stroke:#1989fa;stroke-linecap:round}.van-circle__text{position:absolute;top:50%;left:0;box-sizing:border-box;width:100%;padding:0 4px;color:#323233;font-weight:500;font-size:14px;line-height:20px;-webkit-transform:translateY(-50%);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:14px;line-height:20px}.van-divider{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;margin:16px 0;color:#969799;font-size:14px;line-height:24px;border-color:#ebedf0;border-style:solid;border-width:0}.van-divider::after,.van-divider::before{display:block;-webkit-box-flex:1;-webkit-flex:1;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::after,.van-divider--hairline::before{-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-divider--dashed{border-style:dashed}.van-divider--content-center::before,.van-divider--content-left::before,.van-divider--content-right::before{margin-right:16px}.van-divider--content-center::after,.van-divider--content-left::after,.van-divider--content-right::after{margin-left:16px;content:''}.van-divider--content-left::before{max-width:10%}.van-divider--content-right::after{max-width:10%}.van-dropdown-menu{-webkit-user-select:none;user-select:none}.van-dropdown-menu__bar{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;height:48px;background-color:#fff;box-shadow:0 2px 12px rgba(100,101,102,.12)}.van-dropdown-menu__bar--opened{z-index:11}.van-dropdown-menu__item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;min-width:0;cursor:pointer}.van-dropdown-menu__item:active{opacity:.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 8px;color:#323233;font-size:15px;line-height:22px}.van-dropdown-menu__title::after{position:absolute;top:50%;right:-4px;margin-top:-5px;border:3px solid;border-color:transparent transparent #dcdee0 #dcdee0;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:.8;content:''}.van-dropdown-menu__title--active{color:#ee0a24}.van-dropdown-menu__title--active::after{border-color:transparent transparent currentColor currentColor}.van-dropdown-menu__title--down::after{margin-top:-1px;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.van-empty{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:32px 0}.van-empty__image{width:160px;height:160px}.van-empty__image img{width:100%;height:100%}.van-empty__description{margin-top:16px;padding:0 60px;color:#969799;font-size:14px;line-height:20px}.van-empty__bottom{margin-top:24px}.van-grid{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-swipe{position:relative;overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0);cursor:grab;-webkit-user-select:none;user-select:none}.van-swipe__track{display:-webkit-box;display:-webkit-flex;display:flex;height:100%}.van-swipe__track--vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.van-swipe__indicators{position:absolute;bottom:12px;left:50%;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.van-swipe__indicators--vertical{top:50%;bottom:auto;left:12px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.van-swipe__indicators--vertical .van-swipe__indicator:not(:last-child){margin-bottom:6px}.van-swipe__indicator{width:6px;height:6px;background-color:#ebedf0;border-radius:100%;opacity:.3;-webkit-transition:opacity .2s,background-color .2s;transition:opacity .2s,background-color .2s}.van-swipe__indicator:not(:last-child){margin-right:6px}.van-swipe__indicator--active{background-color:#1989fa;opacity:1}.van-swipe-item{position:relative;-webkit-flex-shrink:0;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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;overflow:hidden}.van-image-preview__cover{position:absolute;top:0;left:0}.van-image-preview__image{width:100%;-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;transition-property:transform,-webkit-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:36px}.van-image-preview__image .van-image__loading{background-color:transparent}.van-image-preview__index{position:absolute;top:16px;left:50%;color:#fff;font-size:14px;line-height:20px;text-shadow:0 1px 1px #323233;-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}.van-image-preview__overlay{background-color:rgba(0,0,0,.9)}.van-image-preview__close-icon{position:absolute;z-index:1;color:#c8c9cc;font-size:22px;cursor:pointer}.van-image-preview__close-icon:active{color:#969799}.van-image-preview__close-icon--top-left{top:16px;left:16px}.van-image-preview__close-icon--top-right{top:16px;right:16px}.van-image-preview__close-icon--bottom-left{bottom:16px;left:16px}.van-image-preview__close-icon--bottom-right{right:16px;bottom:16px}.van-uploader{position:relative;display:inline-block}.van-uploader__wrapper{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-uploader__wrapper--disabled{opacity:.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;width:80px;height:80px;margin:0 8px 8px 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:24px}.van-uploader__upload-text{margin-top:8px;color:#969799;font-size:12px}.van-uploader__preview{position:relative;margin:0 8px 8px 0;cursor:pointer}.van-uploader__preview-image{display:block;width:80px;height:80px;overflow:hidden}.van-uploader__preview-delete{position:absolute;top:0;right:0;width:14px;height:14px;background-color:rgba(0,0,0,.7);border-radius:0 0 0 12px}.van-uploader__preview-delete-icon{position:absolute;top:-2px;right:-2px;color:#fff;font-size:16px;-webkit-transform:scale(.5);transform:scale(.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:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;color:#fff;background-color:rgba(50,50,51,.88)}.van-uploader__mask-icon{font-size:22px}.van-uploader__mask-message{margin-top:6px;padding:0 4px;font-size:12px;line-height:14px}.van-uploader__loading{width:22px;height:22px;color:#fff}.van-uploader__file{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;width:80px;height:80px;background-color:#f7f8fa}.van-uploader__file-icon{color:#646566;font-size:20px}.van-uploader__file-name{box-sizing:border-box;width:100%;margin-top:8px;padding:0 4px;color:#646566;font-size:12px;text-align:center}.van-index-anchor{z-index:1;box-sizing:border-box;padding:0 16px;color:#323233;font-weight:500;font-size:14px;line-height:32px;background-color:transparent}.van-index-anchor--sticky{position:fixed;top:0;right:0;left:0;color:#ee0a24;background-color:#fff}.van-index-bar__sidebar{position:fixed;top:50%;right:0;z-index:2;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;text-align:center;-webkit-transform:translateY(-50%);transform:translateY(-50%);cursor:pointer;-webkit-user-select:none;user-select:none}.van-index-bar__index{padding:0 8px 0 16px;font-weight:500;font-size:10px;line-height:14px}.van-index-bar__index--active{color:#ee0a24}.van-pagination{display:-webkit-box;display:-webkit-flex;display:flex;font-size:14px}.van-pagination__item,.van-pagination__page-desc{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.van-pagination__item{-webkit-box-flex:1;-webkit-flex:1;flex:1;box-sizing:border-box;min-width:36px;height:40px;color:#1989fa;background-color:#fff;cursor:pointer;-webkit-user-select:none;user-select:none}.van-pagination__item:active{color:#fff;background-color:#1989fa}.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:#fff;background-color:#1989fa}.van-pagination__next,.van-pagination__prev{padding:0 4px;cursor:pointer}.van-pagination__item--disabled,.van-pagination__item--disabled:active{color:#646566;background-color:#f7f8fa;cursor:not-allowed;opacity:.5}.van-pagination__page{-webkit-box-flex:0;-webkit-flex-grow:0;flex-grow:0}.van-pagination__page-desc{-webkit-box-flex:1;-webkit-flex:1;flex:1;height:40px;color:#646566}.van-pagination--simple .van-pagination__next::after,.van-pagination--simple .van-pagination__prev::after{border-width:1px}.van-password-input{position:relative;margin:0 16px;-webkit-user-select:none;user-select:none}.van-password-input__error-info,.van-password-input__info{margin-top:16px;font-size:14px;text-align:center}.van-password-input__info{color:#969799}.van-password-input__error-info{color:#ee0a24}.van-password-input__security{display:-webkit-box;display:-webkit-flex;display:flex;width:100%;height:50px;cursor:pointer}.van-password-input__security::after{border-radius:6px}.van-password-input__security li{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;height:100%;font-size:20px;line-height:1.2;background-color:#fff}.van-password-input__security i{position:absolute;top:50%;left:50%;width:10px;height:10px;background-color:#000;border-radius:100%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);visibility:hidden}.van-password-input__cursor{position:absolute;top:50%;left:50%;width:1px;height:40%;background-color:#323233;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-animation:1s van-cursor-flicker infinite;animation:1s van-cursor-flicker infinite}@-webkit-keyframes van-cursor-flicker{from{opacity:0}50%{opacity:1}100%{opacity:0}}@keyframes van-cursor-flicker{from{opacity:0}50%{opacity:1}100%{opacity:0}}.van-progress{position:relative;height:4px;background:#ebedf0;border-radius:4px}.van-progress__portion{position:absolute;left:0;height:100%;background:#1989fa;border-radius:inherit}.van-progress__pivot{position:absolute;top:50%;box-sizing:border-box;min-width:3.6em;padding:0 5px;color:#fff;font-size:10px;line-height:1.6;text-align:center;word-break:keep-all;background-color:#1989fa;border-radius:1em;-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}.van-row::after{display:table;clear:both;content:''}.van-row--flex{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-row--flex::after{display:none}.van-row--justify-center{-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.van-row--justify-end{-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end}.van-row--justify-space-between{-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between}.van-row--justify-space-around{-webkit-justify-content:space-around;justify-content:space-around}.van-row--align-center{-webkit-box-align:center;-webkit-align-items:center;align-items:center}.van-row--align-bottom{-webkit-box-align:end;-webkit-align-items:flex-end;align-items:flex-end}.van-sidebar{width:80px;overflow-y:auto;-webkit-overflow-scrolling:touch}.van-tree-select{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;font-size:14px;-webkit-user-select:none;user-select:none}.van-tree-select__nav{-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow-y:auto;background-color:#f7f8fa;-webkit-overflow-scrolling:touch}.van-tree-select__nav-item{padding:14px 12px}.van-tree-select__content{-webkit-box-flex:2;-webkit-flex:2;flex:2;overflow-y:auto;background-color:#fff;-webkit-overflow-scrolling:touch}.van-tree-select__item{position:relative;padding:0 32px 0 16px;font-weight:500;line-height:48px;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:16px;margin-top:-8px;font-size:16px}.van-skeleton{display:-webkit-box;display:-webkit-flex;display:flex;padding:0 16px}.van-skeleton__avatar{-webkit-flex-shrink:0;flex-shrink:0;width:32px;height:32px;margin-right:16px;background-color:#f2f3f5}.van-skeleton__avatar--round{border-radius:999px}.van-skeleton__content{width:100%}.van-skeleton__avatar+.van-skeleton__content{padding-top:8px}.van-skeleton__row,.van-skeleton__title{height:16px;background-color:#f2f3f5}.van-skeleton__title{width:40%;margin:0}.van-skeleton__row:not(:first-child){margin-top:12px}.van-skeleton__title+.van-skeleton__row{margin-top:20px}.van-skeleton--animate{-webkit-animation:van-skeleton-blink 1.2s ease-in-out infinite;animation:van-skeleton-blink 1.2s ease-in-out infinite}.van-skeleton--round .van-skeleton__row,.van-skeleton--round .van-skeleton__title{border-radius:999px}@-webkit-keyframes van-skeleton-blink{50%{opacity:.6}}@keyframes van-skeleton-blink{50%{opacity:.6}}.van-stepper{font-size:0;-webkit-user-select:none;user-select:none}.van-stepper__minus,.van-stepper__plus{position:relative;box-sizing:border-box;width:28px;height:28px;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::after,.van-stepper__minus::before,.van-stepper__plus::after,.van-stepper__plus::before{position:absolute;top:50%;left:50%;background-color:currentColor;-webkit-transform:translate(-50%,-50%);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:4px 0 0 4px}.van-stepper__minus::after{display:none}.van-stepper__plus{border-radius:0 4px 4px 0}.van-stepper__input{box-sizing:border-box;width:32px;height:28px;margin:0 2px;padding:0;color:#323233;font-size:14px;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__minus,.van-stepper--round .van-stepper__plus{border-radius:100%}.van-stepper--round .van-stepper__minus:active,.van-stepper--round .van-stepper__plus:active{opacity:.7}.van-stepper--round .van-stepper__minus--disabled,.van-stepper--round .van-stepper__minus--disabled:active,.van-stepper--round .van-stepper__plus--disabled,.van-stepper--round .van-stepper__plus--disabled:active{opacity:.3}.van-stepper--round .van-stepper__plus{color:#fff;background-color:#ee0a24}.van-stepper--round .van-stepper__minus{color:#ee0a24;background-color:#fff;border:1px solid #ee0a24}.van-sku-container{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-webkit-align-items:stretch;align-items:stretch;min-height:50%;max-height:80%;overflow-y:visible;font-size:14px;background:#fff}.van-sku-body{-webkit-box-flex:1;-webkit-flex:1 1 auto;flex:1 1 auto;min-height:44px;overflow-y:scroll;-webkit-overflow-scrolling:touch}.van-sku-body::-webkit-scrollbar{display:none}.van-sku-header{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:0;flex-shrink:0;margin:0 16px}.van-sku-header__img-wrap{-webkit-flex-shrink:0;flex-shrink:0;width:96px;height:96px;margin:12px 12px 12px 0;overflow:hidden;border-radius:4px}.van-sku-header__goods-info{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;padding:12px 20px 12px 0}.van-sku-header-item{margin-top:8px;color:#969799;font-size:12px;line-height:16px}.van-sku__price-symbol{font-size:16px;vertical-align:bottom}.van-sku__price-num{font-weight:500;font-size:22px;vertical-align:bottom;word-wrap:break-word}.van-sku__goods-price{margin-left:-2px;color:#ee0a24}.van-sku__price-tag{position:relative;display:inline-block;margin-left:8px;padding:0 5px;overflow:hidden;color:#ee0a24;font-size:12px;line-height:16px;border-radius:8px}.van-sku__price-tag::before{position:absolute;top:0;left:0;width:100%;height:100%;background:currentColor;opacity:.1;content:''}.van-sku-group-container{padding-top:12px}.van-sku-group-container--hide-soldout .van-sku-row__item--disabled{display:none}.van-sku-row{margin:0 16px 12px}.van-sku-row:last-child{margin-bottom:0}.van-sku-row__image-item,.van-sku-row__item{position:relative;overflow:hidden;color:#323233;border-radius:4px;cursor:pointer}.van-sku-row__image-item::before,.van-sku-row__item::before{position:absolute;top:0;left:0;width:100%;height:100%;background:#f7f8fa;content:''}.van-sku-row__image-item--active,.van-sku-row__item--active{color:#ee0a24}.van-sku-row__image-item--active::before,.van-sku-row__item--active::before{background:currentColor;opacity:.1}.van-sku-row__item{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;min-width:40px;margin:0 12px 12px 0;font-size:13px;line-height:16px;vertical-align:middle}.van-sku-row__item-img{z-index:1;width:24px;height:24px;margin:4px 0 4px 4px;object-fit:cover;border-radius:2px}.van-sku-row__item-name{z-index:1;padding:8px}.van-sku-row__item--disabled{color:#c8c9cc;background:#f2f3f5;cursor:not-allowed}.van-sku-row__item--disabled .van-sku-row__item-img{opacity:.3}.van-sku-row__image{margin-right:0}.van-sku-row__image-item{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;width:110px;margin:0 4px 4px 0;border:1px solid transparent}.van-sku-row__image-item:last-child{margin-right:0}.van-sku-row__image-item-img{width:100%;height:110px}.van-sku-row__image-item-img-icon{position:absolute;top:0;right:0;z-index:3;width:18px;height:18px;color:#fff;line-height:18px;text-align:center;background-color:rgba(0,0,0,.4);border-bottom-left-radius:4px}.van-sku-row__image-item-name{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;height:40px;padding:4px;font-size:12px;line-height:16px}.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:.4}.van-sku-row__title{padding-bottom:12px}.van-sku-row__title-multiple{color:#969799}.van-sku-row__scroller{margin:0 -16px;overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch}.van-sku-row__scroller::-webkit-scrollbar{display:none}.van-sku-row__row{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;margin-bottom:4px;padding:0 16px}.van-sku-row__indicator{width:40px;height:4px;background:#ebedf0;border-radius:2px}.van-sku-row__indicator-wrapper{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center;padding-bottom:16px}.van-sku-row__indicator-slider{width:50%;height:100%;background-color:#ee0a24;border-radius:2px}.van-sku-stepper-stock{padding:12px 16px;overflow:hidden;line-height:30px}.van-sku__stepper{float:right;padding-left:4px}.van-sku__stepper-title{float:left}.van-sku__stepper-quota{float:right;color:#ee0a24;font-size:12px}.van-sku__stock{display:inline-block;margin-right:8px;color:#969799;font-size:12px}.van-sku__stock-num--highlight{color:#ee0a24}.van-sku-messages{padding-bottom:32px}.van-sku-messages__image-cell .van-cell__title{max-width:6.2em;margin-right:12px;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:12px;line-height:18px}.van-sku-messages__cell-block{position:relative}.van-sku-messages__cell-block::after{position:absolute;box-sizing:border-box;content:' ';pointer-events:none;right:16px;bottom:0;left:16px;border-bottom:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-sku-messages__cell-block:last-child::after{display:none}.van-sku-messages__extra-message{margin-top:-2px;padding:0 16px 12px;color:#969799;font-size:12px;line-height:18px}.van-sku-actions{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:0;flex-shrink:0;padding:8px 16px}.van-sku-actions .van-button{height:40px;font-weight:500;font-size:14px;border:none;border-radius:0}.van-sku-actions .van-button:first-of-type{border-top-left-radius:20px;border-bottom-left-radius:20px}.van-sku-actions .van-button:last-of-type{border-top-right-radius:20px;border-bottom-right-radius:20px}.van-sku-actions .van-button--warning{background:-webkit-linear-gradient(left,#ffd01e,#ff8917);background:linear-gradient(to right,#ffd01e,#ff8917)}.van-sku-actions .van-button--danger{background:-webkit-linear-gradient(left,#ff6034,#ee0a24);background:linear-gradient(to right,#ff6034,#ee0a24)}.van-slider{position:relative;width:100%;height:2px;background-color:#ebedf0;border-radius:999px;cursor:pointer}.van-slider::before{position:absolute;top:-8px;right:0;bottom:-8px;left:0;content:''}.van-slider__bar{position:relative;width:100%;height:100%;background-color:#1989fa;border-radius:inherit;-webkit-transition:all .2s;transition:all .2s}.van-slider__button{width:24px;height:24px;background-color:#fff;border-radius:50%;box-shadow:0 1px 2px rgba(0,0,0,.5)}.van-slider__button-wrapper,.van-slider__button-wrapper-right{position:absolute;top:50%;right:0;-webkit-transform:translate3d(50%,-50%,0);transform:translate3d(50%,-50%,0);cursor:grab}.van-slider__button-wrapper-left{position:absolute;top:50%;left:0;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);cursor:grab}.van-slider--disabled{cursor:not-allowed;opacity:.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:2px;height:100%}.van-slider--vertical .van-slider__button-wrapper,.van-slider--vertical .van-slider__button-wrapper-right{top:auto;right:50%;bottom:0;-webkit-transform:translate3d(50%,50%,0);transform:translate3d(50%,50%,0)}.van-slider--vertical .van-slider__button-wrapper-left{top:0;right:50%;left:auto;-webkit-transform:translate3d(50%,-50%,0);transform:translate3d(50%,-50%,0)}.van-slider--vertical::before{top:0;right:-8px;bottom:0;left:-8px}.van-steps{overflow:hidden;background-color:#fff}.van-steps--horizontal{padding:10px 10px 0}.van-steps--horizontal .van-steps__items{position:relative;display:-webkit-box;display:-webkit-flex;display:flex;margin:0 0 10px;padding-bottom:22px}.van-steps--vertical{padding:0 0 0 32px}.van-swipe-cell{position:relative;overflow:hidden;cursor:grab}.van-swipe-cell__wrapper{-webkit-transition-timing-function:cubic-bezier(.18,.89,.32,1);transition-timing-function:cubic-bezier(.18,.89,.32,1);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform, -webkit-transform;transition-property:transform,-webkit-transform}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.van-tabbar{z-index:1;display:-webkit-box;display:-webkit-flex;display:flex;box-sizing:content-box;width:100%;height:50px;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);background-color:#fff}.van-tabbar--fixed{position:fixed;bottom:0;left:0}.van-tabbar--unfit{padding-bottom:0}