@charset "UTF-8";
/*
 * 层级规范
toast 50
loading 40
dialog 30
 *
*/
/**
* 1px细线
* border-width-1px(top,right,bottom,left, border-color, border-radius);
* top,right,bottom,left 值为 1 或者 0;
* @include border-width-1px(0, 0, 2, 0, #f57c38);
*/
/*css reset*/
blockquote, body, button, code, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, pre, td, textarea, th, ul {
  padding: 0;
  margin: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

li, ol, ul {
  list-style: none; }

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

table {
  border-collapse: collapse;
  border-spacing: 0; }

body {
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent; }

[hidden] {
  display: none; }

input {
  -webkit-appearance: none;
  border: none;
  outline: none; }

:focus {
  outline: 0; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none; }

input[type="number"] {
  -moz-appearance: textfield; }

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }

body, html {
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  font-family: PingFang-SC-Regular,Helvetica Neue,Helvetica,microsoft yahei,sans-serif; }

html {
  -webkit-text-size-adjust: none;
  font-size: 0.625rem; }

video {
  -o-object-fit: cover;
  object-fit: cover; }

.f-left {
  float: left; }

.f-right {
  float: right; }

.f-clearfix {
  zoom: 1;
  clear: both; }

.f-clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0; }

.f-hide {
  display: none; }

.f-show {
  display: block; }

img {
  width: 100%;
  border: none; }

.u-hardline {
  position: relative; }

.u-hardline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  border: 0.0125rem solid transparent;
  pointer-events: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

/**
* 1px细线
* border-width-1px(top,right,bottom,left, border-color, border-radius);
* top,right,bottom,left 值为 1 或者 0;
* @include border-width-1px(0, 0, 2, 0, #f57c38);
*/
/**
* 1px细线
* border-width-1px(top,right,bottom,left, border-color, border-radius);
* top,right,bottom,left 值为 1 或者 0;
* @include border-width-1px(0, 0, 2, 0, #f57c38);
*/
/* button */
.u-btn {
  display: inline-block;
  vertical-align: middle;
  line-height: 1rem;
  font-size: 0.4rem;
  text-align: center;
  font-weight: 400;
  color: white;
  background: -webkit-gradient(linear, left top, right top, from(#04BBFA), to(#5479F3));
  background: -webkit-linear-gradient(left, #04BBFA, #5479F3);
  background: linear-gradient(to right, #04BBFA, #5479F3);
  -webkit-box-shadow: 0 0 0.125rem 0 rgba(89, 149, 239, 0.1);
          box-shadow: 0 0 0.125rem 0 rgba(89, 149, 239, 0.1);
  border-radius: 0.1rem; }
  .u-btn.e-full {
    width: 100%; }
  .u-btn.e-border {
    color: #5995ef;
    background: white;
    border: 0.025rem solid #5995ef;
    border-radius: 0.1rem; }
  .u-btn.e-disable {
    background: #ccc;
    border: none;
    pointer-events: none; }

.u-pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 30;
  text-align: center; }
  .u-pop .pop-content {
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
    width: 8.375rem;
    background: white;
    border-radius: 0.125rem; }
  .u-pop .pop-message {
    font-size: 0.35rem;
    font-weight: 400;
    color: #929292;
    line-height: 0.55rem; }
  .u-pop .pop-header {
    height: 1.1rem;
    font-size: 0.4rem;
    font-weight: 400;
    line-height: 1.1rem;
    text-align: center;
    color: #383838;
    position: relative;
    border-color: #eee;
    border-width: 0Px 0Px 1Px 0Px;
    border-style: solid; }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      .u-pop .pop-header {
        border: none; }
        .u-pop .pop-header::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          border-color: #eee;
          border-width: 0Px 0Px 1Px 0Px;
          border-style: solid;
          width: 200%;
          height: 200%;
          -webkit-transform: scale(0.5);
          -webkit-transform-origin: 0 0;
          pointer-events: none; } }
  .u-pop .content {
    padding: 0.375rem 0.375rem 0;
    min-height: 1.25rem;
    max-height: 6.05rem;
    overflow-y: scroll;
    position: relative;
    border-color: #eee;
    border-width: 1Px 0Px 0Px 0Px;
    border-style: solid; }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      .u-pop .content {
        border: none; }
        .u-pop .content::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          border-color: #eee;
          border-width: 1Px 0Px 0Px 0Px;
          border-style: solid;
          width: 200%;
          height: 200%;
          -webkit-transform: scale(0.5);
          -webkit-transform-origin: 0 0;
          pointer-events: none; } }
  .u-pop .pop-footer {
    padding: 0.375rem 0.375rem 0.375rem;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .u-pop .pop-footer > a {
      width: 3.7rem;
      height: 1rem;
      line-height: 1rem;
      border-radius: 0.1rem;
      font-size: 0.4rem;
      font-weight: 400;
      color: #5995ef;
      background-color: white;
      position: relative;
      border-color: #5995ef;
      border-width: 1Px 1Px 1Px 1Px;
      border-style: solid;
      border-radius: 0.2rem; }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        .u-pop .pop-footer > a {
          border: none; }
          .u-pop .pop-footer > a::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-color: #5995ef;
            border-width: 1Px 1Px 1Px 1Px;
            border-style: solid;
            width: 200%;
            height: 200%;
            -webkit-transform: scale(0.5);
            -webkit-transform-origin: 0 0;
            pointer-events: none;
            border-radius: 0.2rem; } }
      .u-pop .pop-footer > a:last-child {
        color: #fff;
        background-image: -webkit-gradient(linear, left top, right top, from(#04BBFA), to(#547AF4));
        background-image: -webkit-linear-gradient(left, #04BBFA 0%, #547AF4 100%);
        background-image: linear-gradient(to right, #04BBFA 0%, #547AF4 100%);
        position: relative;
        border-color: transparent;
        border-width: 1Px 1Px 1Px 1Px;
        border-style: solid;
        border-radius: 0.2rem; }
        @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
          .u-pop .pop-footer > a:last-child {
            border: none; }
            .u-pop .pop-footer > a:last-child::before {
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 0;
              border-color: transparent;
              border-width: 1Px 1Px 1Px 1Px;
              border-style: solid;
              width: 200%;
              height: 200%;
              -webkit-transform: scale(0.5);
              -webkit-transform-origin: 0 0;
              pointer-events: none;
              border-radius: 0.2rem; } }
  .u-pop.e-rule .content {
    text-align: left; }
  .u-pop.e-rule .pop-footer > a {
    width: 100%; }

.u-toast {
  position: fixed;
  left: 50%;
  top: 45%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 1rem;
  font-size: 0;
  text-align: center;
  border-radius: 0.625rem;
  z-index: 9999; }
  .u-toast > .message {
    display: inline-block;
    max-width: 92%;
    padding: 0 0.4rem;
    font-size: 0.3rem;
    line-height: 1rem;
    color: #fff;
    word-wrap: break-word;
    -webkit-box-shadow: 0 0.025rem 0.075rem #4f4f4f;
            box-shadow: 0 0.025rem 0.075rem #4f4f4f;
    border-radius: 0.625rem;
    background: #4f4f4f; }

.u-loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 999; }
  .u-loading .loading-inner {
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    color: #FFFFFF;
    font-size: 0.3rem;
    background: rgba(0, 0, 0, 0.5);
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0.075rem; }
    .u-loading .loading-inner .icon-loading {
      margin: 0.25rem auto 0.125rem;
      width: 0.75rem;
      height: 0.75rem;
      -webkit-animation: loading 1s steps(12, end) infinite;
              animation: loading 1s steps(12, end) infinite;
      background: transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat;
      background-size: 100%; }

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg); } }

@keyframes loading {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg); }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg); } }

.u-input-box {
  text-align: left; }
  .u-input-box .u-input-header {
    margin-bottom: 0.25rem;
    font-size: 0.4rem;
    line-height: 1;
    font-weight: 400;
    color: #383838; }
  .u-input-box .u-input-inner {
    position: relative;
    padding: 0.25rem 0.425rem 0.25rem 2.5rem;
    border-radius: 0.1rem;
    font-size: 0;
    position: relative;
    border-color: #E1E1E1;
    border-width: 1Px 1Px 1Px 1Px;
    border-style: solid;
    border-radius: 0.2rem; }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      .u-input-box .u-input-inner {
        border: none; }
        .u-input-box .u-input-inner::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          border-color: #E1E1E1;
          border-width: 1Px 1Px 1Px 1Px;
          border-style: solid;
          width: 200%;
          height: 200%;
          -webkit-transform: scale(0.5);
          -webkit-transform-origin: 0 0;
          pointer-events: none;
          border-radius: 0.2rem; } }
    .u-input-box .u-input-inner .u-label {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 0.4rem;
      font-size: 0.4rem;
      font-weight: 400;
      color: #929292; }
    .u-input-box .u-input-inner .u-input {
      width: 100%;
      font-size: 0.4rem;
      font-weight: 400;
      color: #383838;
      line-height: 0.625rem; }
    .u-input-box .u-input-inner .u-textarea {
      width: 100%;
      font-size: 0.4rem;
      font-weight: 400;
      color: #383838;
      line-height: 0.625rem;
      resize: none;
      word-break: break-all;
      border: none; }
    .u-input-box .u-input-inner input::-webkit-input-placeholder {
      color: #999; }
    .u-input-box .u-input-inner textarea::-webkit-input-placeholder {
      color: #999; }
  .u-input-box.e-select .u-input-inner::after {
    position: absolute;
    content: '';
    top: 0.525rem;
    left: 1.6875rem;
    height: 0;
    width: 0;
    border-width: 0.175rem;
    border-style: solid;
    border-color: #E1E1E1 transparent transparent transparent; }
  .u-input-box.e-input-list .u-input-inner {
    padding-left: 3.3125rem;
    border-radius: 0;
    border-width: 1Px 1Px 0Px 1Px; }
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
      .u-input-box.e-input-list .u-input-inner {
        border: none; }
        .u-input-box.e-input-list .u-input-inner::before {
          border-width: 1Px 1Px 0Px 1Px;
          border-radius: 0; } }
    .u-input-box.e-input-list .u-input-inner:first-child {
      border-radius: 0.1rem; }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        .u-input-box.e-input-list .u-input-inner:first-child::before {
          border-radius: 0.2rem 0.2rem 0 0; } }
    .u-input-box.e-input-list .u-input-inner:last-child {
      border-width: 1Px 1Px 1Px 1Px; }
      @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
        .u-input-box.e-input-list .u-input-inner:last-child::before {
          border-width: 1Px 1Px 1Px 1Px; } }

html, body {
  background-color: #FAFAFA; }

.wrapper {
  margin: 0 auto; }

.u-progress-box {
  padding: 0.375rem 0.375rem 0.325rem; }
  .u-progress-box .progress-outer {
    width: 100%;
    height: 0.175rem;
    border-radius: 0.1rem;
    overflow: hidden;
    background: white;
    -webkit-box-shadow: 0 0 0.125rem 0 rgba(89, 149, 239, 0.2);
            box-shadow: 0 0 0.125rem 0 rgba(89, 149, 239, 0.2); }
    .u-progress-box .progress-outer .progress-inner {
      width: 0;
      height: 100%;
      background: -webkit-gradient(linear, right top, left top, from(#54b8f4), to(#5c78eb));
      background: -webkit-linear-gradient(right, #54b8f4, #5c78eb);
      background: linear-gradient(270deg, #54b8f4, #5c78eb);
      border-radius: 0.1rem; }
  .u-progress-box .progress-tips {
    padding: 0.2rem 0.175rem 0;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .u-progress-box .progress-tips .progress-tips-item {
      font-size: 0.3rem;
      font-weight: 400;
      color: #929292; }
  .u-progress-box.e-1 .progress-outer .progress-inner {
    width: 25%; }
  .u-progress-box.e-1 .progress-tips-item:nth-child(1) {
    color: #5995EF; }
  .u-progress-box.e-2 .progress-outer .progress-inner {
    width: 50%; }
  .u-progress-box.e-2 .progress-tips-item:nth-child(1) {
    color: #5995EF; }
  .u-progress-box.e-2 .progress-tips-item:nth-child(2) {
    color: #5995EF; }
  .u-progress-box.e-3 .progress-outer .progress-inner {
    width: 75%; }
  .u-progress-box.e-3 .progress-tips-item:nth-child(1) {
    color: #5995EF; }
  .u-progress-box.e-3 .progress-tips-item:nth-child(2) {
    color: #5995EF; }
  .u-progress-box.e-3 .progress-tips-item:nth-child(3) {
    color: #5995EF; }
  .u-progress-box.e-4 .progress-outer .progress-inner {
    width: 100%; }
  .u-progress-box.e-4 .progress-tips-item:nth-child(1) {
    color: #5995EF; }
  .u-progress-box.e-4 .progress-tips-item:nth-child(2) {
    color: #5995EF; }
  .u-progress-box.e-4 .progress-tips-item:nth-child(3) {
    color: #5995EF; }
  .u-progress-box.e-4 .progress-tips-item:nth-child(4) {
    color: #5995EF; }

.main-title-box {
  text-align: center; }
  .main-title-box .title {
    color: #383838;
    font-size: 0.4rem;
    font-weight: 400;
    position: relative;
    display: inline-block; }
    .main-title-box .title::before, .main-title-box .title::after {
      content: '';
      position: absolute;
      display: block;
      width: 0.375rem;
      height: 0.025rem;
      top: 50%;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      background: #E1E1E1; }
    .main-title-box .title::before {
      left: -0.5rem; }
    .main-title-box .title::after {
      right: -0.5rem; }
  .main-title-box .desc {
    color: #929292;
    font-size: 0.3rem; }
