/*reset.less*/
/* CSS Document */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 312.5%;
}
ul,
li,
div,
p,
body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
input {
  -webkit-appearance: button;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  outline: none;
}
input {
  -webkit-appearance: none;
  outline: none;
}
* {
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-focus-ring-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.hide {
  display: none;
}
body,
html {
  width: 100%;
  font-family: 'PingFangSC', "Microsoft YaHei", "Helvetica Neue", Arial, HelveticaNeue, Helvetica, "BBAlpha Sans", sans-serif;
  font-weight: normal;
  font-size: 0.24rem;
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
body {
  opacity: 1;
  -webkit-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
}
button {
  border: none;
  background: none;
  display: block;
  outline: none;
}
table {
  border-collapse: collapse;
}
/* mobile media-query */
html {
  font-size: 312.5%;
}
@media screen and (min-width: 360px) and (max-width: 374px) and (orientation: portrait) {
  html {
    font-size: 351.5%;
  }
}
@media screen and (min-width: 384px) and (max-width: 399px) and (orientation: portrait) {
  html {
    font-size: 375%;
  }
}
@media screen and (min-width: 400px) and (max-width: 413px) and (orientation: portrait) {
  html {
    font-size: 390.625%;
  }
}
@media screen and (min-width: 414px) and (max-width: 431px) and (orientation: portrait) {
  html {
    font-size: 404.3%;
  }
}
@media screen and (min-width: 432px) and (max-width: 479px) and (orientation: portrait) {
  html {
    font-size: 421.875%;
  }
}
@media screen and (min-width: 480px) and (max-width: 639px) and (orientation: portrait) {
  html {
    font-size: 468.75%;
  }
}
@media screen and (min-width: 640px) and (orientation: portrait) {
  html {
    font-size: 625%;
  }
}
html,
body {
  width: 100%;
  height: 100%;
}
.noSize {
  font-size: 0;
  text-indent: -9999em;
}
.flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
@-webkit-keyframes fadeInOut {
  0%,
  25%,
  100% {
    opacity: 0;
  }
  50%,
  75% {
    opacity: 1;
  }
}
@-moz-keyframes fadeInOut {
  0%,
  25%,
  100% {
    opacity: 0;
  }
  50%,
  75% {
    opacity: 1;
  }
}
@-o-keyframes fadeInOut {
  0%,
  25%,
  100% {
    opacity: 0;
  }
  50%,
  75% {
    opacity: 1;
  }
}
@keyframes fadeInOut {
  0%,
  25%,
  100% {
    opacity: 0;
  }
  50%,
  75% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes zoomInAndOut {
  0% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(0.9);
  }
  50% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(0.9);
    opacity: 1;
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(0.9);
  }
  50% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(0.9);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 1;
  }
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@-moz-keyframes hinge {
  0% {
    -moz-transform: rotate(0);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -moz-transform: rotate(80deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  40% {
    -moz-transform: rotate(60deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  80% {
    -moz-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  100% {
    -moz-transform: translateY(700px);
    opacity: 0;
  }
}
@-o-keyframes hinge {
  0% {
    -o-transform: rotate(0);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -o-transform: rotate(80deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  40% {
    -o-transform: rotate(60deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  80% {
    -o-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  100% {
    -o-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
            transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    opacity: 1;
  }
}
@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -moz-transform: translateX(0%);
    opacity: 1;
  }
}
@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -o-transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
            transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
            transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
            transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
            transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
            transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}
@-webkit-keyframes shake {
  50% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
  }
  0%,
  100% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
  }
}
@keyframes shake {
  50% {
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
  }
  0%,
  100% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
  }
}
@-webkit-keyframes flip1 {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
  }
  25% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  50% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
  }
}
@keyframes flip1 {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
            transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
  }
}
@-webkit-keyframes flip2 {
  0% {
    -webkit-transform: perspective(400px) rotateY(-90deg);
  }
  25% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  50% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
  }
}
@keyframes flip2 {
  0% {
    -webkit-transform: perspective(400px) rotateY(-90deg);
            transform: perspective(400px) rotateY(-90deg);
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
            transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
  }
}
@-webkit-keyframes shine {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: .1;
  }
}
@-webkit-keyframes gif {
  0% {
    background-position: 0%;
    opacity: 1;
  }
  100% {
    background-position: 200%;
    opacity: 1;
  }
}
@keyframes gif {
  0% {
    background-position: 0%;
    opacity: 1;
  }
  100% {
    background-position: 200%;
    opacity: 1;
  }
}
@-webkit-keyframes zoom2 {
  0% {
    -webkit-transform: scale3d(0.98, 1, 1);
    transform: scale3d(0.98, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(0.98, 1, 1);
    transform: scale3d(0.98, 1, 1);
  }
}
@keyframes zoom2 {
  0% {
    -webkit-transform: scale3d(0.98, 1, 1);
    transform: scale3d(0.98, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(0.98, 1, 1);
    transform: scale3d(0.98, 1, 1);
  }
}
@-webkit-keyframes matrix {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.0015, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.0015, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: center center 0px;
    -webkit-transform-origin: center center 0px;
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: center center 0px;
    -webkit-transform-origin: center center 0px;
  }
}
@keyframes matrix {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.0015, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, -0.0015, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: center center 0px;
    -webkit-transform-origin: center center 0px;
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform-origin: center center 0px;
    -webkit-transform-origin: center center 0px;
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes zoomIn2 {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes zoomIn2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes translateDown {
  0%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
  }
}
@keyframes translateDown {
  0%,
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
  }
}
@-webkit-keyframes translateLeft {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
  }
}
@keyframes translateLeft {
  0%,
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
  }
}
@keyframes arrow {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 0.15rem);
    -moz-transform: translate(0, 0.15rem);
    -ms-transform: translate(0, 0.15rem);
    -o-transform: translate(0, 0.15rem);
  }
}
@-webkit-keyframes arrow {
  0%,
  100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 0.15rem);
    -moz-transform: translate(0, 0.15rem);
    -ms-transform: translate(0, 0.15rem);
    -o-transform: translate(0, 0.15rem);
  }
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes show {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fylLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-6rem);
            transform: translateX(-6rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-moz-keyframes fylLeft {
  0% {
    opacity: 1;
    transform: translateX(-6rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-ms-keyframes fylLeft {
  0% {
    opacity: 1;
    transform: translateX(-6rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-o-keyframes fylLeft {
  0% {
    opacity: 1;
    transform: translateX(-6rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fylLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-6rem);
            transform: translateX(-6rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes scaleSkill {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@-moz-keyframes scaleSkill {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@-ms-keyframes scaleSkill {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@-o-keyframes scaleSkill {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes scaleSkill {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) scale(1.2);
            transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@-webkit-keyframes btnShake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-moz-keyframes btnShake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
@-ms-keyframes btnShake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
@-o-keyframes btnShake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes btnShake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  75% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes innerIn {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-moz-keyframes innerIn {
  0% {
    transform: translateX(1000px);
  }
  100% {
    transform: translateX(0);
  }
}
@-ms-keyframes innerIn {
  0% {
    transform: translateX(1000px);
  }
  100% {
    transform: translateX(0);
  }
}
@-o-keyframes innerIn {
  0% {
    transform: translateX(1000px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes innerIn {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.contain-index {
  width: 100%;
  height: 100%;
  background: #fff url(https://qnm.res.netease.com/pc/zt/20200512170220/img/bg_39aacfdd.jpg) no-repeat top;
  background-size: 100% auto;
}
.contain-index .title {
  position: relative;
  width: 2.38rem;
  height: 0.55rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/title_31a41579.png) no-repeat center;
  background-size: contain;
  top: 1.4rem;
  margin-left: 0.3rem;
}
.contain-index .sub-title {
  font-size: 0.28rem;
  color: #ebebeb;
  margin-left: 0.3rem;
  margin-top: 1.8rem;
}
.contain-index .sub-title p {
  line-height: 0.45rem;
}
.contain-index .sub-title span {
  color: #ffe400;
}
.contain-index #loginContent {
  position: relative;
  margin: 0 auto;
  width: 300px;
  height: 250px;
  margin-top: 1.8rem;
}
.contain-index .role {
  position: relative;
  margin: 0 auto;
  width: 6.23rem;
  margin-top: 2.3rem;
}
.contain-index .role .confirm {
  width: 6.23rem;
  height: 1.08rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/confirm_aaac7c17.png) no-repeat center;
  background-size: contain;
  margin-top: 1.8rem;
}
.contain-index .yidun {
  width: 6.16rem;
  height: 0.44rem;
  margin: 0 auto;
  margin-top: 3rem;
}
.contain-index .el-select {
  width: 6.05rem;
  margin-left: 0.09rem;
}
.contain-index .el-select .el-input__inner {
  background-color: #e8f2ff;
  border-radius: 0.5rem;
  border: none;
  width: 6.05rem;
  height: 0.9rem;
}
.contain-index .el-select .el-input__icon {
  line-height: 0.71rem;
}
.contain-index .el-select ::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #606266;
}
.contain-index .el-select :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #606266;
}
.contain-index .el-select ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #606266;
}
.contain-index .el-select :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #606266;
}
.contain-index .el-select .el-input .el-input__suffix {
  margin-top: 0.095rem;
}
.contain-index .el-select .el-input .el-select__caret {
  width: 0.71rem;
  height: 0.71rem;
  background-color: #5e8cf2;
  border-radius: 100%;
  color: #fff;
}
.contain-index .el-select .el-input.is-focus .el-input__inner {
  border: none;
}
.contain-index .el-select-dropdown__wrap {
  max-height: 2.3rem;
}
.contain-index .el-select-dropdown__wrap {
  max-height: 2.2rem;
}
.el-scrollbar .el-scrollbar__bar {
  opacity: 1;
}
.el-select-dropdown__wrap {
  max-height: 2.6rem;
}
.el-scrollbar__thumb {
  background-color: rgba(255, 255, 255, 0);
}
.isPC .el-select-dropdown {
  left: 45px !important;
}
.isPC .contain-home .privilege {
  padding: 0.6rem 0.3rem 0 0.3rem;
}
.contain {
  width: 100%;
  height: 100%;
}
.contain-home {
  position: relative;
  width: 100%;
  min-height: 100%;
  background: #fff url(https://qnm.res.netease.com/pc/zt/20200512170220/img/home-bg_4bdd8867.png) no-repeat top;
  background-size: 100% auto;
  padding-bottom: 0.6rem;
  overflow: hidden;
}
.contain-home .search {
  position: absolute;
  width: 0.8rem;
  height: 0.47rem;
  right: 0;
  top: 0.4rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/search_0ba3fbe4.png) no-repeat center;
  background-size: contain;
}
.contain-home .user {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/user-bg_01d8367e.png) no-repeat center;
  background-size: contain;
  margin: 0 auto;
  position: relative;
  margin-top: 1.1rem;
  width: 6.94rem;
  height: 3.29rem;
}
.contain-home .user .logout {
  position: absolute;
  color: #f3dab0;
  font-size: 0.24rem;
  width: 2.9rem;
  height: 0.55rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/login-change_7d50b11f.png) no-repeat center;
  background-size: 100% 100%;
  top: 0.04rem;
  right: 0.08rem;
  line-height: 0.55rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contain-home .user .logout .login-out {
  margin-left: 0.8rem;
}
.contain-home .user .logout span {
  margin-right: .1rem;
}
.contain-home .user-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  padding-top: 0.5rem;
}
.contain-home .user-info .avatar-border {
  width: 1.1rem;
  height: 1.1rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/avatar-border_01e7fca1.png) no-repeat center;
  background-size: contain;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contain-home .user-info .avatar {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}
.contain-home .user-info .user-name {
  font-size: .26rem;
  margin-bottom: .1rem;
  margin-left: .2rem;
  color: #333333;
  font-weight: 600;
}
.contain-home .user-info .user-desc {
  font-size: .24rem;
  margin-left: .2rem;
  color: #6482a8;
}
.contain-home .user-info .level {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}
.contain-home .user-info .level-icon {
  display: inline-block;
  position: relative;
  width: .28rem;
  height: .28rem;
  left: 0.07rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/level_5ce077ce.png) no-repeat center;
  background-size: contain;
  vertical-align: middle;
}
.contain-home .user-info .level-txt {
  font-size: .24rem;
  vertical-align: middle;
  color: #69a6f0;
}
.contain-home .user-info .year-level-10 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_10_f874ad55.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-11 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_11_816ef974.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-12 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_12_b849d4d4.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-13 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_13_b50630ed.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-14 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_14_ec36222f.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-15 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_15_196a26db.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-16 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_16_e0d73ff3.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-17 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_17_7a9b1bdf.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-18 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_18_7c0a3bbe.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-19 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_19_3b7c8f6f.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-info .year-level-20 {
  display: inline-block;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/year_level_20_09246375.png) no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.42rem;
  vertical-align: middle;
}
.contain-home .user-integral {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.2rem .4rem 0 .1rem;
}
.contain-home .user-integral .item {
  padding: 0 0.2rem;
  width: 1.8rem;
}
.contain-home .user-integral .item p {
  text-align: center;
}
.contain-home .user-integral .item .num {
  text-align: center;
  color: #ff6b25;
  font-size: .32rem;
}
.contain-home .user-integral .item .num-tip::after {
  position: absolute;
  display: inline-block;
  content: '';
  width: 0.09rem;
  height: 0.09rem;
  background-color: #f01e1e;
  border-radius: 100%;
  vertical-align: top;
}
.contain-home .user-integral .item .text {
  font-size: 0.24rem;
  color: #6382a8;
}
.contain-home .user-integral .item-icon {
  position: relative;
  top: -0.67rem;
  left: 0.28rem;
  width: 1.5rem;
  height: 1.47rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/jfgz_45c99681.png) no-repeat center;
  background-size: contain;
}
.contain-home .particulars-text {
  position: absolute;
  font-size: 0.22rem;
  color: #3f689a;
  bottom: .2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.contain-home .particulars-text .red {
  color: #ff6b25;
}
.contain-home .privilege {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0.5rem .6rem 0 .6rem;
}
.contain-home .privilege .privilege-item:nth-child(odd) {
  margin-right: .24rem;
}
.contain-home .privilege .privilege-item {
  margin-bottom: .2rem;
  position: relative;
  height: 1.47rem;
  width: 3.02rem;
  border: 1px solid #ebebeb;
  border-radius: .2rem;
  padding: .1rem .2rem;
}
.contain-home .privilege .privilege-item .title {
  color: #333;
  font-size: .28rem;
  font-weight: 600;
  margin-bottom: .05rem;
}
.contain-home .privilege .privilege-item .desc {
  font-size: .24rem;
  color: #808080;
  font-weight: 200;
}
.contain-home .privilege .privilege-item .arrow {
  position: absolute;
  left: 0.2rem;
  bottom: 0.1rem;
  height: 0.3rem;
  width: 0.3rem;
}
.contain-home .privilege .privilege-item .icon-14 {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.96rem;
  height: 0.86rem;
}
.contain-home .privilege .privilege-item .icon-10 {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.88rem;
  height: 0.87rem;
}
.contain-home .privilege .privilege-item .icon-11 {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.85rem;
  height: 0.85rem;
}
.contain-home .privilege .privilege-item .icon-12 {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.02rem;
  height: 0.85rem;
}
.contain-home .privilege .privilege-item .icon-18 {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.85rem;
  height: 0.89rem;
}
.contain-home .privilege .privilege-item .icon-17 {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0.85rem;
  height: 0.89rem;
}
.contain-home .privilege .privilege-item .receive {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.05rem 0.1rem;
  color: #fff;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/receive_8242fd64.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-home .privilege .privilege-item .received {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.05rem 0.1rem;
  color: #fff;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/received_b505c1b0.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-home .privilege .privilege-item .times {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.05rem;
  color: #fff;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/last-bg_731bc21f.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-home .more-privilege {
  border: 1px solid #ebebeb;
  margin: .4rem .6rem 0 .6rem;
  border-radius: .2rem;
  padding: .2rem .3rem;
}
.contain-home .more-privilege .more-privilege-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0.6rem;
}
.contain-home .more-privilege .more-privilege-item:nth-child(1) {
  margin-left: 0;
}
.contain-home .more-privilege .more-privilege-item p {
  color: #808080;
}
.contain-home .more-privilege .more-title {
  font-size: .28rem;
  font-weight: 600;
  margin-bottom: .2rem;
  color: #333333;
}
.contain-home .more-privilege .more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contain-home .more-privilege .more p {
  color: #808080;
}
.contain-home .more-privilege .more-icon {
  height: .8rem;
  width: .8rem;
  margin: 0 auto;
  margin-bottom: .1rem;
}
.contain-home .banner {
  width: 6.8rem;
  height: 1rem;
  margin: 0 auto;
  margin-top: 0.4rem;
}
.contain-home .bar {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/bar_3a3ee4da.png) no-repeat center;
  background-size: contain;
}
.other-tip {
  width: 5rem;
  line-height: 0.35rem;
  position: relative;
  margin: 0 auto;
  top: 38%;
}
.isPC .more-privilege {
  margin: 0.4rem 0.6rem 0 0.3rem;
  padding: 0.2rem 0.1rem 0.2rem 0.2rem;
}
.contain-inner {
  padding-top: 0.06rem;
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff url(https://qnm.res.netease.com/pc/zt/20200512170220/img/bg_d368e969.jpg) no-repeat top;
  background-size: 100% auto;
  overflow: hidden;
}
.contain-inner .logo {
  width: 1.71rem;
  height: 0.59rem;
  margin: 0 auto;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/logo_35d18b7a.png) no-repeat;
  background-size: contain;
}
.contain-inner h3 {
  padding-top: 0;
  margin-top: 0.02rem;
  font-size: 0.42rem;
  letter-spacing: -0.07em;
  text-align: center;
  font-weight: 300;
  color: #ffffff;
  height: 0.57rem;
  line-height: 0.57rem;
}
.contain-inner .nav {
  position: relative;
  width: 4.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.2rem;
}
.contain-inner .nav .nav-item {
  font-size: 0.28rem;
  color: #666666;
  padding-bottom: 0.03rem;
  border-bottom: 1px solid #888888;
}
.contain-inner .nav .nav-active {
  color: #4c6fd9;
  border-bottom: 1px solid #4c6fd9;
}
.contain-inner .sub-title {
  margin-bottom: 0.2rem;
}
.contain-inner .sub-title::before {
  display: inline-block;
  content: ' ';
  top: .12rem;
  position: relative;
  width: .2rem;
  height: .4rem;
  background-size: contain;
  background-image: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/inner-befor_a5797079.png);
}
.contain-inner .error-content {
  margin-top: 2.13rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contain-inner .error-content .error-content__img {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/maintenance_c623af4f.png) no-repeat;
  width: 3.27rem;
  height: 2.96rem;
  background-size: contain;
}
.contain-inner .error-content .error-content__msg {
  font-size: 0.26rem;
}
.contain-inner2 {
  overflow: unset;
}
.contain-rule .container-content {
  position: absolute;
  top: 3.69rem;
  bottom: .2rem;
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.contain-rule .container-content .rule-list {
  padding: 0.1rem 0.3rem;
}
.contain-rule .container-content .rule-list .per {
  margin-bottom: .2rem;
}
.contain-rule .container-content .rule-list .per .title {
  position: relative;
  font-size: 0.26rem;
  color: #333333;
  font-weight: 600;
  margin-bottom: .1rem;
}
.contain-rule .container-content .rule-list .per .title::before {
  display: inline-block;
  content: ' ';
  top: .12rem;
  position: relative;
  width: .2rem;
  height: .4rem;
  background-size: contain;
  background-image: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/inner-befor_a5797079.png);
}
.contain-rule .container-content .rule-list .red {
  color: #ff4c4c;
}
.contain-rule .container-content .rule-list .vip-table {
  width: 100%;
  border-color: #4668E3;
}
.contain-rule .container-content .rule-list .vip-table th {
  border-color: #99B2FF;
}
.contain-rule .container-content .rule-list .vip-table tr:has(th) {
  background: -webkit-gradient(linear, left top, right top, from(#4467DF), to(#8EAAFE));
  background: linear-gradient(90deg, #4467DF 0%, #8EAAFE 100%);
  height: 0.61rem;
  font-size: 0.22rem;
  color: #fff;
}
.contain-rule .container-content .rule-list .vip-table tr:has(td) {
  height: 0.36rem;
}
.contain-rule .container-content .rule-list .vip-table td {
  text-align: center;
}
.contain-rule .container-content .rule-income {
  width: 6.68rem;
  margin: 0 auto;
}
.contain-rule .container-content .rule-income .per {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: .1rem;
  border: 1px solid #ebebeb;
  margin-bottom: .3rem;
  padding: .2rem;
}
.contain-rule .container-content .rule-income .per p {
  text-align: center;
}
.contain-rule .container-content .rule-income .per .title {
  width: 60%;
  color: #333;
}
.contain-rule .container-content .rule-income .per .num {
  width: 40%;
  color: #ff4c4c;
}
.contain-progress .container-content {
  position: absolute;
  top: 2rem;
  bottom: .2rem;
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.contain-progress .container-content .progress-list {
  width: 6.78rem;
  margin: 0 auto;
}
.contain-progress .container-content .progress-list .pre {
  width: 6.78rem;
  height: 1.41rem;
  margin-bottom: .2rem;
  padding: 0.25rem 0.4rem;
}
.contain-progress .container-content .progress-list .pre.pre1 {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/progress1_7dbbee1a.png) no-repeat center;
  background-size: contain;
}
.contain-progress .container-content .progress-list .pre.pre2 {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/progress2_8c68bd73.png) no-repeat center;
  background-size: contain;
}
.contain-progress .container-content .progress-list .pre.pre3 {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/progress3_5be63597.png) no-repeat center;
  background-size: contain;
}
.contain-progress .container-content .progress-list .pre .line1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contain-progress .container-content .progress-list .pre .line1 .title {
  font-size: 0.28rem;
  font-weight: 600;
}
.contain-progress .container-content .progress-list .pre .line2 {
  color: #808080;
  margin-top: 0.18rem;
}
.contain-progress .container-content .progress-list .pre .line2 .icon {
  position: relative;
  display: inline-block;
  width: 0.23rem;
  height: 0.23rem;
  top: 0.02rem;
}
.contain-progress .container-content .progress-list .pre .line2 .icon.icon1 {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/icon1_ce2fba1e.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-progress .container-content .progress-list .pre .line2 .icon.icon2 {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/icon2_70e846f1.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-progress .container-content .progress-list .pre .line2 .icon.icon3 {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/icon3_d9434925.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-detail {
  color: #333333;
}
.contain-detail .sub {
  position: relative;
  width: 6.8rem;
  height: 0.6rem;
  margin: 0 auto;
  margin-top: 1.2rem;
  border-bottom: 1px solid #dcdcdc;
  font-weight: 600;
}
.contain-detail .sub .sub1 {
  float: left;
}
.contain-detail .sub .sub1::before {
  display: inline-block;
  content: ' ';
  top: .12rem;
  position: relative;
  width: .2rem;
  height: .4rem;
  background-size: contain;
  background-image: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/inner-befor_a5797079.png);
}
.contain-detail .sub .sub2 {
  float: right;
}
.contain-detail .sub .sub2::before {
  display: inline-block;
  content: ' ';
  top: .12rem;
  position: relative;
  width: .2rem;
  height: .4rem;
  background-size: contain;
  background-image: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/inner-befor_a5797079.png);
}
.contain-detail .sub3 {
  margin-top: 1.2rem;
}
.contain-detail .message {
  position: relative;
  width: 6.8rem;
  margin: 0 auto;
  margin-top: 0.2rem;
}
.contain-detail .message .name {
  font-weight: 600;
  line-height: 0.5rem;
}
.contain-detail .message .desc {
  line-height: 0.5rem;
}
.contain-detail .message .desc::before {
  display: inline-block;
  content: ' ';
  position: relative;
  width: 0.06rem;
  height: 0.06rem;
  margin-right: 0.06rem;
  top: -0.05rem;
  background-image: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/li-circle_27afad23.png);
  background-size: contain;
}
.contain-detail .message .desc2 {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
.contain-detail .message .icon-girl {
  width: 1.56rem;
  height: 1.84rem;
  margin: 0 auto;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/lit-girl_9d70dd76.png) no-repeat center;
  background-size: contain;
}
.contain-detail .message .icon-boy {
  width: 1.63rem;
  height: 1.65rem;
  margin: 0 auto;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/lit-boy_cd6339bc.png) no-repeat center;
  background-size: contain;
}
.contain-detail .message .error-txt {
  text-align: center;
  padding: 0 0.05rem;
  margin-top: 0.2rem;
}
.contain-detail .message .error-txt span {
  font-weight: 600;
}
.contain-detail .message .use-bt {
  position: relative;
  margin-top: 0.2rem;
  padding-top: 0.2rem;
  border-top: 1px solid #dcdcdc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contain-detail .message .use-bt .select {
  display: inline-block;
  position: relative;
  width: 0.3rem;
  height: 0.3rem;
  top: 0.05rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/circle_3a0c2ebe.png) no-repeat center;
  background-size: contain;
  margin-right: 0.1rem;
}
.contain-detail .message .use-bt .txt-content {
  line-height: 0.4rem;
}
.contain-detail .message .use-bt .jfbz {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  width: 1.6rem;
  height: 0.5rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/jfbz_492ea9c0.png) no-repeat center;
  background-size: contain;
}
.contain-detail .message .use-bt-active .selected {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/circle-active_a0469109.png) no-repeat center;
  background-size: contain;
}
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  .contain-detail .message {
    width: 7rem;
  }
}
.contain-detail .dh-content {
  position: relative;
  width: 6.8rem;
  margin: 0 auto;
  margin-top: 0.2rem;
}
.contain-detail .dh-content .dh-pre {
  position: relative;
  margin-bottom: .4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 6.8rem;
  min-height: 1.58rem;
  background-color: #fff9f2;
  border: 1px solid #dcdcdc;
  border-radius: 0.25rem;
}
.contain-detail .dh-content .dh-pre .dh-1 {
  padding: 0.1rem 0.2rem;
}
.contain-detail .dh-content .dh-pre .dh-info {
  padding: 0.1rem 0.2rem;
  border-bottom: 1px dotted #dcdcdc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contain-detail .dh-content .dh-pre .dh-info .selsect {
  position: relative;
  width: 0.52rem;
  height: 0.52rem;
  background-color: #ffedd9;
  border: 1px solid #ffd7bc;
  border-radius: 100%;
}
.contain-detail .dh-content .dh-pre .dh-info .info1 .info-ch,
.contain-detail .dh-content .dh-pre .dh-info .info1 .info-ch-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contain-detail .dh-content .dh-pre .dh-info .info1 .glory_name {
  width: 1.68rem;
  word-break: break-all;
}
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  .contain-detail .dh-content .dh-pre .dh-info .info1 .glory_name {
    width: 1.7rem;
  }
}
.contain-detail .dh-content .dh-pre .dh-info .info1 .dh-icon1 {
  position: relative;
  display: inline-block;
  width: 0.23rem;
  height: 0.23rem;
  top: 0.03rem;
  margin-right: 0.05rem;
}
.contain-detail .dh-content .dh-pre .dh-info .info1 .dh-icon2 {
  position: relative;
  display: inline-block;
  width: 0.26rem;
  height: 0.21rem;
  top: 0.02rem;
  margin-right: 0.05rem;
}
.contain-detail .dh-content .dh-pre .dh-info .info1 .dh-icon3 {
  position: relative;
  display: inline-block;
  width: 0.21rem;
  height: 0.21rem;
  top: 0.03rem;
  margin-right: 0.08rem;
}
.contain-detail .dh-content .dh-pre .dh-info .info2 {
  float: right;
}
.contain-detail .dh-content .dh-pre .dh-info .info2 .dh-icon4 {
  position: relative;
  display: inline-block;
  width: 0.21rem;
  height: 0.23rem;
  top: 0.04rem;
  margin-right: 0.06rem;
}
.contain-detail .dh-content .dh-pre .dh-info2 {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-bottom: none;
}
.contain-detail .dh-content .dh-pre .dh-2 {
  padding: 0.1rem 0.2rem;
  background-color: #ffedd9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 0 0.25rem 0.25rem;
}
.contain-detail .dh-content .dh-pre .dh-2 .dh-2-title {
  width: 0.8rem;
}
.contain-detail .dh-content .dh-pre .dh-2 .dh-2-txt {
  width: 5.5rem;
}
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  .contain-detail .dh-content .dh-pre .dh-1 {
    padding: 0.1rem 0.1rem;
  }
  .contain-detail .dh-content .dh-pre .dh-info {
    padding: 0.1rem 0.1rem;
  }
  .contain-detail .dh-content .dh-pre .dh-2 {
    padding: 0.1rem 0.1rem;
  }
  .contain-detail .dh-content .dh-pre .dh-2 .dh-2-title {
    width: 1.1rem;
  }
}
.contain-detail .dh-content .dh-pre-disabled {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.contain-detail .dh-content .dh-pre-disabled .exchanged-icon {
  position: absolute;
  left: 0;
  top: -0.02rem;
  width: 0.85rem;
  height: 0.85rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/icon-exchanged_ef305e63.png) no-repeat center;
  background-size: contain;
}
.contain-detail .dh-content .dh-pre-active {
  border: 1px solid #ff9d69;
}
.contain-detail .dh-content .dh-pre-active .selsect .duihao {
  position: absolute;
  width: 0.26rem;
  height: 0.2rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/check_f35db8a6.png) no-repeat center;
  background-size: contain;
}
.contain-detail .dh-content .dh-tip {
  text-align: center;
}
.contain-detail .dh-content .top-dh-tip {
  margin-top: 2rem;
}
.contain-detail .jrlb .gift-card {
  position: relative;
  width: 6.8rem;
  margin: 0 auto;
  margin-bottom: 0.4rem;
  border-radius: 0.25rem;
  border: 1px solid #dcdcdc;
  color: #333333;
}
.contain-detail .jrlb .gift-card.gift-card-disabled {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.contain-detail .jrlb .gift-card.gift-card-disabled .exchanged-icon {
  position: absolute;
  left: 0;
  top: -0.02rem;
  width: 0.85rem;
  height: 0.85rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/icon-exchanged_ef305e63.png) no-repeat center;
  background-size: contain;
}
.contain-detail .jrlb .gift-card .gift-intro .line1 {
  padding: 0.15rem 0.6rem 0.15rem 0.8rem;
  background-color: #fff9f2;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.contain-detail .jrlb .gift-card .gift-intro .line1 .dh-icon1 {
  position: relative;
  display: inline-block;
  width: 0.23rem;
  height: 0.23rem;
  top: 0.03rem;
  margin-right: 0.05rem;
}
.contain-detail .jrlb .gift-card .gift-intro .line2 {
  padding: 0 0.6rem 0.15rem 0.8rem;
  background-color: #fff9f2;
}
.contain-detail .jrlb .gift-card .gift-intro .line2 .dh-icon2 {
  position: relative;
  display: inline-block;
  width: 0.23rem;
  height: 0.23rem;
  top: 0.02rem;
  margin-right: 0.05rem;
}
.contain-detail .jrlb .gift-card .gift-intro .divider {
  height: 1px;
  width: 100%;
  background-color: #dcdcdc;
}
.contain-detail .jrlb .gift-card .gift-intro .line3 {
  padding: 0.15rem 0.6rem 0 0.8rem;
  text-align: right;
  background-color: #fff9f2;
}
.contain-detail .jrlb .gift-card .gift-intro .line3 .dh-icon4 {
  position: relative;
  display: inline-block;
  width: 0.21rem;
  height: 0.23rem;
  top: 0.04rem;
  margin-right: 0.06rem;
}
.contain-detail .jrlb .gift-card .gift-intro .line4 {
  background-color: #ffedd9;
  padding: 0.1rem 0.3rem 0.1rem;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.contain-detail .jrlb .gift-card .gift-intro .line4 .title {
  margin-bottom: 0.1rem;
}
.contain-detail .jrlb .gift-card .selsect {
  position: absolute;
  left: 0.1rem;
  top: 0.28rem;
  width: 0.52rem;
  height: 0.52rem;
  background-color: #ffedd9;
  border: 1px solid #ffd7bc;
  border-radius: 100%;
}
.contain-detail .jrlb .jrlb-tip {
  margin-top: 0.6rem;
  text-align: center;
}
.contain-detail .jrlb .top-jrlb-tip {
  margin-top: 3rem;
}
.contain-detail .jrlb .gift-card-active {
  border: 1px solid #ff9d69;
}
.contain-detail .jrlb .gift-card-active .selsect .duihao {
  position: absolute;
  width: 0.26rem;
  height: 0.2rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/check_f35db8a6.png) no-repeat center;
  background-size: contain;
}
.contain-detail .bsj .bsj-list {
  position: relative;
  width: 6.8rem;
  margin: 0 auto;
  margin-right: -0.25rem;
}
.contain-detail .bsj .bsj-list .bsj-list-pre {
  height: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.25rem;
  margin-top: 0.2rem;
}
.contain-detail .bsj .bsj-list .bsj-list-pre.bsj-pre-active .circle {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/circle-active_a0469109.png) no-repeat center;
  background-size: contain;
}
.contain-detail .bsj .bsj-list .bsj-list-pre .border {
  display: inline-block;
  position: relative;
  width: 0.3rem;
  height: 0.3rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/circle_3a0c2ebe.png) no-repeat center;
  background-size: contain;
  margin-right: 0.1rem;
}
.contain-detail .bsj .warn {
  color: #999;
  margin-top: 0.4rem;
}
.contain-detail .button-exchange {
  position: relative;
  width: 6.23rem;
  height: 1.08rem;
  margin: 0 auto;
  margin-top: 0.4rem;
  text-align: center;
  line-height: 1.08rem;
  font-size: 0.3rem;
  letter-spacing: 0.02rem;
  color: #ffffff;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/button-bg_74f7844c.png) no-repeat center;
  background-size: contain;
}
.contain-detail .button-operate {
  position: relative;
  width: 6.23rem;
  height: 1.08rem;
  margin: 0 auto;
  margin-top: 0.4rem;
  text-align: center;
  line-height: 1.08rem;
  font-size: 0.3rem;
  letter-spacing: 0.02rem;
  color: #ffffff;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/button-bg_74f7844c.png) no-repeat center;
  background-size: contain;
}
.contain-detail .button-rule {
  position: relative;
  width: 2rem;
  height: 0.5rem;
  margin: 0 auto;
  margin-top: 0.4rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/btn-rule_d51e4b98.png) no-repeat center;
  background-size: contain;
}
.contain-detail .send1 .radio {
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contain-detail .send1 .radio .border {
  position: relative;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: 1px solid #979797;
  margin-right: 0.1rem;
}
.contain-detail .send1 .radio .cicle {
  display: inline-block;
  position: absolute;
  width: 0.16rem;
  height: 0.16rem;
  left: 50%;
  top: 50%;
  margin-left: -0.08rem;
  margin-top: -0.08rem;
  border-radius: 50%;
  background-color: #4c6fd9;
}
.contain-detail .send2 .pw-wrapper {
  position: relative;
  margin: 0 auto;
  margin-top: 0.5rem;
  width: 6rem;
  min-height: 1.2rem;
}
.contain-detail .send2 .pw-wrapper .reset {
  display: inline-block;
  height: 0.34rem;
  color: #898989;
  border-bottom: 1px solid #898989;
}
.contain-detail .send2 .pw-wrapper .password-error {
  width: 6rem;
  position: relative;
  padding-top: 0.15rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contain-detail .send2 .pw-wrapper .error {
  position: relative;
  max-width: 3.5rem;
}
.contain-detail .send2 .pw-wrapper .error::before {
  content: ' ';
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  left: -0.35rem;
  top: 0.05rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/error_f200cd99.png) no-repeat center;
  background-size: contain;
}
.contain-detail .send2 .pw {
  position: relative;
  display: inline-block;
  width: 6rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  letter-spacing: 0.1rem;
  background: none;
  outline: none;
  border: none;
  border-radius: 0;
  border-bottom: 0.01rem solid #898989;
}
.contain-detail .send3 .firendId-wrapper {
  position: relative;
  margin: 0 auto;
  margin-top: 0.5rem;
  width: 6.1rem;
  height: 1.2rem;
}
.contain-detail .send3 .firendId-wrapper .error {
  position: absolute;
  right: 0.1rem;
  top: 0.9rem;
  bottom: 0;
}
.contain-detail .send3 .firendId-wrapper .error::before {
  content: ' ';
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  left: -0.35rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/warning_675f2f28.png) no-repeat center;
  background-size: contain;
}
.contain-detail .send3 .firendId {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 6.1rem;
  height: 0.8rem;
  margin: 0 auto;
  border: #888888 1px solid;
  border-radius: 0.4rem;
  padding: 0.06rem 0.2rem;
}
.contain-detail .send3 .button-operate {
  margin-top: 0.6rem;
}
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  .contain-detail .send3 .button-operate {
    margin-top: 1.1rem;
  }
}
.contain-detail .send4 .name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contain-detail .send4 .name::before {
  display: inline-block;
  content: ' ';
  top: .12rem;
  position: relative;
  width: .2rem;
  height: .4rem;
  background-size: contain;
  background-image: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/inner-befor_a5797079.png);
}
.contain-detail .send4 .desc2 {
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #dcdcdc;
}
.contain-detail .send4 .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.3rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.contain-detail .send4 .list .item {
  width: 1.5rem;
  height: 0.5rem;
  border: 1px solid #dcdcdc;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
  text-align: center;
  line-height: 0.5rem;
}
.contain-detail .send4 .list .item:nth-child(4n+4) {
  margin-right: 0;
}
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  .contain-detail .send4 .list .item {
    width: 1.65rem;
    margin-right: 0.1rem;
  }
}
.contain-detail .send4 .list .active {
  background-color: #fff9f2;
  border: 1px solid #ff9d69;
}
.contain-detail .send4 .select-num {
  margin-top: 0.2rem;
  margin-right: 0.2rem;
  float: right;
}
.contain-detail .send4 .action {
  display: inline-block;
  text-align: center;
  line-height: 0.36rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background-color: #557cf2;
  color: #fff;
}
.contain-detail .send4 .disable {
  background-color: #99b3ff;
}
.contain-detail .send4 .operate2 {
  margin-top: 1rem;
}
.contain-detail .operate {
  width: 5.4rem;
  height: 0.94rem;
  margin: 0.5rem auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contain-detail .operate .pre,
.contain-detail .operate .confirm {
  width: 2.63rem;
  height: 0.94rem;
  line-height: 0.94rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/button-bg2_14ce3f2c.png) no-repeat center;
  background-size: contain;
  text-align: center;
  color: #fff;
}
.contain-bar .container-content {
  top: 1.8rem;
}
.back {
  position: absolute;
  width: 0.8rem;
  height: 0.61rem;
  left: 0;
  top: 0.3rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/back_cdd35144.png) no-repeat center;
  background-size: contain;
}
.global-pop {
  width: 100%;
  height: 100%;
}
.global-pop .mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
}
.global-pop .pop-main {
  width: 6.4rem;
  height: 3.3rem;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -3.2rem;
  margin-top: -1.65rem;
  z-index: 10000;
}
.global-pop .pop-close {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/close_3b8f4ee4.png) no-repeat;
  background-size: contain;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  right: -0.16rem;
  top: -0.18rem;
  z-index: 10001;
}
.global-pop .pop-wrap {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/bg_b2de419f.png) no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 6.4rem;
  height: 3.3rem;
}
.global-pop .pop-wrap .pop-content {
  position: relative;
  width: 5.5rem;
  height: 3rem;
  margin: 0 auto;
  margin-top: 0.15rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.global-pop .pop-wrap .pop-content .pic {
  position: relative;
  width: 1.56rem;
  height: 1.85rem;
  margin: 0 auto;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/people_d5f2129a.png) no-repeat center;
  background-size: contain;
}
.global-pop .pop-wrap .pop-content .text {
  position: relative;
  width: 3rem;
  margin: 0 auto;
  color: #9e6d46;
  text-align: center;
  margin-top: 0.2rem;
}
.contain-xybt {
  position: relative;
  width: 100%;
  min-height: 100%;
  background: #fff url(https://qnm.res.netease.com/pc/zt/20200512170220/img/xybt-bg_ec5b31c3.png) no-repeat top;
  background-size: 100% auto;
  padding-bottom: 0.6rem;
  overflow: hidden;
}
.contain-xybt .xybt-info {
  position: relative;
  width: 6.8rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  margin-top: 1.3rem;
}
.contain-xybt .xybt-info .info-list {
  width: 4.8rem;
  height: 0.74rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contain-xybt .xybt-info .info-list .line {
  width: 0.01rem;
  height: 0.31rem;
  background-color: #fff;
}
.contain-xybt .xybt-info .info-list .info-list-item {
  width: 1.2rem;
  text-align: center;
}
.contain-xybt .xybt-info .info-list .info-list-item .num {
  color: #ffe400;
  font-size: 0.32rem;
}
.contain-xybt .xybt-info .info-list .info-list-item .text {
  font-size: 0.24rem;
  color: #fff;
}
.contain-xybt .xybt-info .xybt-rule {
  position: relative;
  top: -0.5rem;
  width: 1.5rem;
  height: 1.47rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/rule_cda045b6.png) no-repeat center;
  background-size: contain;
}
.contain-xybt .nav {
  position: relative;
  width: 4.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.5rem;
}
.contain-xybt .nav .nav-item {
  font-size: 0.28rem;
  color: #666666;
  padding-bottom: 0.03rem;
  border-bottom: 1px solid #888888;
}
.contain-xybt .nav .nav-active {
  color: #4c6fd9;
  border-bottom: 1px solid #4c6fd9;
}
.contain-xybt .container-content {
  position: absolute;
  top: 4.2rem;
  bottom: .2rem;
  left: 0;
  right: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.contain-xybt .points-list {
  position: relative;
  width: 6.5rem;
  margin: 0 auto;
}
.contain-xybt .points-list .points-list-item {
  position: relative;
  margin-bottom: 0.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 6.5rem;
  min-height: 1.13rem;
  padding: 0.1rem 0.3rem;
  background-color: #fff9f2;
  border: 1px solid #dcdcdc;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contain-xybt .points-list .points-item-active {
  border: 1px solid #ff9d69;
}
.contain-xybt .points-list .points-item-active .selsect .duihao {
  position: absolute;
  width: 0.26rem;
  height: 0.2rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/check_f35db8a6.png) no-repeat center;
  background-size: contain;
}
.contain-xybt .points-list .points-list-disabled {
  background-color: #ffd9d9;
  min-height: 1.5rem;
}
.contain-xybt .num-overdue {
  font-size: 0.26rem;
  font-weight: 500;
}
.contain-xybt .item-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contain-xybt .selsect {
  position: relative;
  width: 0.52rem;
  height: 0.52rem;
  background-color: #ffedd9;
  border: 1px solid #ffd7bc;
  border-radius: 100%;
}
.contain-xybt .desc {
  margin-left: 0.2rem;
}
.contain-xybt .desc .num {
  font-weight: 600;
  font-size: 0.28rem;
  color: #333;
}
.contain-xybt .desc .txt {
  color: #808080;
}
.contain-xybt .item-right {
  text-align: right;
}
.contain-xybt .error-type1::before {
  display: inline-block;
  content: '';
  width: 0.23rem;
  height: 0.23rem;
  margin-right: 0.1rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/icon1_ce2fba1e.png) no-repeat center;
  background-size: contain;
}
.contain-xybt .error-type2::before {
  display: inline-block;
  content: '';
  width: 0.23rem;
  height: 0.23rem;
  margin-right: 0.1rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/icon2_70e846f1.png) no-repeat center;
  background-size: contain;
}
.contain-xybt .error-type3::before {
  display: inline-block;
  content: '';
  width: 0.23rem;
  height: 0.23rem;
  margin-right: 0.1rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/icon3_d9434925.png) no-repeat center;
  background-size: contain;
}
.contain-xybt .over-tip {
  position: absolute;
  font-weight: 600;
  bottom: 0.04rem;
  right: 0.2rem;
}
.contain-xybt .last-tip {
  position: relative;
  width: 6.6rem;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}
.contain-xybt .last-tip .error {
  position: relative;
  max-width: 3.2rem;
  float: right;
  margin-left: 0.8rem;
}
.contain-xybt .last-tip .error::before {
  content: ' ';
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  left: -0.35rem;
  top: 0.02rem;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/error_f200cd99.png) no-repeat center;
  background-size: contain;
}
.contain-xybt .last-tip .tip-txt {
  float: right;
}
.contain-xybt .record-list {
  width: 6.78rem;
  margin: 0 auto;
}
.contain-xybt .record-list .pre {
  width: 6.78rem;
  height: 1.5rem;
  margin-bottom: 0.2rem;
  padding: 0 0.4rem;
}
.contain-xybt .record-list .pre.pre1 {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/progress1_7dbbee1a.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-xybt .record-list .pre.pre2 {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/progress2_8c68bd73.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-xybt .record-list .pre.pre3 {
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/progress3_5be63597.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-xybt .record-list .part1 {
  padding: 0.25rem 0 0.01rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contain-xybt .record-list .part2 {
  text-align: right;
}
.contain-xybt .record-list .button {
  margin-top: 0.05rem;
  width: 1.2rem;
  height: 0.39rem;
  line-height: 0.39rem;
  text-align: center;
  color: #fff;
  background: url(https://qnm.res.netease.com/pc/zt/20200512170220/img/receive_8242fd64.png) no-repeat center;
  background-size: 100% 100%;
}
.contain-xybt .message {
  margin-top: 0.4rem;
}
.contain-xybt .message .success-txt {
  font-size: 0.28rem;
  text-align: center;
  color: #00cc66;
  margin-top: 0.2rem;
}
.maintain-notice {
  position: relative;
  width: 100%;
  min-height: 100%;
  background: #fff url(https://qnm.res.netease.com/pc/zt/20200512170220/img/bg_d368e969.jpg) no-repeat top;
  background-size: 100% auto;
}
.maintain-notice h3 {
  text-align: center;
  font-size: 0.36rem;
  font-weight: 300;
  color: #ffffff;
  padding-top: 0.3rem;
  height: 0.4rem;
  line-height: 0.4rem;
}
.maintain-notice .maintain {
  position: absolute;
  top: 2.52rem;
  left: 1.43rem;
  width: 4.09rem;
  height: 2.22rem;
  background: #fff url(https://qnm.res.netease.com/pc/zt/20200512170220/img/maintain_bf94be54.png) no-repeat top;
  background-size: contain;
}
.maintain-notice .text div {
  position: absolute;
}
.maintain-notice .text .notice-title {
  top: 5.15rem;
  left: 0.51rem;
  font-size: 0.24rem;
  line-height: 0.72rem;
  color: #1e1e1e;
}
.maintain-notice .text .notice-time {
  top: 5.99rem;
  left: 0.52rem;
  font-size: 0.24rem;
  opacity: .78;
  line-height: 0.72rem;
  color: #333333;
}
.maintain-notice .text .notice-text {
  width: 100%;
  height: 1.48rem;
  background-color: #e8edfc;
  opacity: 0.48;
  top: 6.83rem;
  padding: 0.61rem 0 0 .52rem;
}
.maintain-notice .text .text {
  position: absolute;
  top: 7.44rem;
  left: 0.52rem;
  color: #de0505;
  font-weight: bold;
}
.maintain-notice .text .notice-point {
  top: 8.92rem;
  left: 0.51rem;
  color: #1e1e1e;
  line-height: 0.48rem;
}
.maintain-notice .text .notice-tip {
  top: 9.91rem;
  left: 0.51rem;
  color: #333333;
  opacity: .78;
}
body {
  position: relative;
  overflow: hidden;
  color: #333333;
  margin: 0 auto;
}
#app {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.red {
  color: #ff4c4c;
}
#forhorview {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000;
  -webkit-opacity: 0.85;
  -moz-opacity: 0.85;
  opacity: 0.85;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
}
#forhorview p {
  color: #fff;
  position: relative;
  top: 35%;
  text-align: center;
  font-size: .3rem;
}
.el-message-box {
  width: 6rem;
}
.tip {
  color: #ff6b24;
}
.tip2 {
  font-weight: 600;
  color: #718ce2;
}
.tip3 {
  color: #718ce2;
}
#copyright {
  display: none;
  width: 100%;
  margin: 0.7rem auto;
  padding: 0.2rem 0;
  text-align: center;
}
#copyright .NIE-copyRight_m a {
  color: #535353;
  text-decoration: underline;
}
.vis-hidden {
  visibility: hidden;
}
.txt-center {
  text-align: center;
}
.txt-bold {
  font-weight: 600;
}
.warn-color {
  color: #999;
}
.no-more {
  margin-top: 0.2rem;
  text-align: center;
  margin-bottom: 0.3rem;
  color: #898989;
}

