@charset "utf-8";
/****变量*******/
/**浏览器重置样式***/
html {
  color: #000;
  background: #fff;
  overflow-y: scroll;
  font-size: 37.5px;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html * {
  outline: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html,
body {
  font-family: 'PingFang', Helvetica, '黑体';
  line-height: 1.5;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  border: none;
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:link,
a:visited,
a:hover,
a:active {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  text-decoration: none;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
input,
select,
textarea {
  font-size: 100%;
}
/* 去掉各 Table  cell 的边距并让其边重合 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 去除默认边框 */
fieldset,
img {
  border: 0;
}
/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
  border: 0;
  font-variant: normal;
}
/* 一致的 del 样式 */
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
/* 去掉列表前的标识, li 会继承 */
ol,
ul {
  list-style: none;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption,
th {
  text-align: left;
}
/* 来自 yahoo, 让标题都自定义, 适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}
q:before,
q:after {
  content: '';
}
/* 统一上标和下标 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* 正常链接 未访问 */
/* 鼠标悬停 */
a:hover {
  text-decoration: underline;
}
/* 默认不显示下划线，保持页面简洁 */
ins,
a {
  text-decoration: none;
}
/*quick function*/
.none {
  display: none;
}
.hidden {
  visibility: hidden;
}
a:focus {
  outline: 0;
  text-decoration: none;
}
a.focus {
  outline: 0;
  text-decoration: none;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
[v-cloak] {
  display: none;
}
/***基础函数****/
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.tac {
  text-align: center;
}
.modal-open-no-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@font-face {
  font-family: "DIN-Bold";
  src: url("../images/font/DINProMedium.otf") format("truetype");
  src: url('../images/font/DINProMedium.eot');
  src: url('../images/font/DINProMedium.eot') format('embedded-opentype'), url('../images/font/DINProMedium.woff2') format('woff2'), url('../images/font/DINProMedium.woff') format('woff'), url('../images/font/DINProMedium.ttf') format('truetype'), url('../images/font/DINProMedium.svg#DINProMedium') format('svg');
  /* chrome、firefox、opera、Safari, Android, iOS 4.2+ */
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "DINPro-Medium";
  font-style: normal;
  src: url('../images/font/DINPro-Medium.eot');
  src: url('../images/font/DINPro-Medium.eot?#iefix') format('embedded-opentype'), url('../images/font/DINPro-Medium.woff') format('woff'), url('../images/font/DINPro-Medium.ttf') format('truetype'), url('../images/font/DINPro-Medium.svg') format('svg');
}
@font-face {
  font-family: "DINPro-Bold";
  src: url("../images/font/DINProBold.otf") format("truetype");
  src: url('../images/font/DINProBold.eot');
  src: url('../images/font/DINProBold.eot') format('embedded-opentype'), url('../images/font/DINProBold.woff2') format('woff2'), url('../images/font/DINProBold.woff') format('woff'), url('../images/font/DINProBold.ttf') format('truetype'), url('../images/font/DINProBold.svg#DINProBold.woff') format('svg');
  /* chrome、firefox、opera、Safari, Android, iOS 4.2+ */
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "DINPro-Regular";
  src: url("../images/font/DINProRegular.otf") format("truetype");
  src: url('../images/font/DINProRegular.eot');
  src: url('../images/font/DINProRegular.eot') format('embedded-opentype'), url('../images/font/DINProRegular.woff2') format('woff2'), url('../images/font/DINProRegular.woff') format('woff'), url('../images/font/DINProRegular.ttf') format('truetype'), url('../images/font/DINProRegular.svg#DINProRegular.woff') format('svg');
  /* chrome、firefox、opera、Safari, Android, iOS 4.2+ */
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'bahnschrift';
  src: url('../images/font/bahnschriftlight.eot');
  src: url('../images/font/bahnschriftlight.eot') format('embedded-opentype'), url('../images/font/bahnschriftlight.woff2') format('woff2'), url('../images/font/bahnschriftlight.woff') format('woff'), url('../images/font/bahnschriftlight.ttf') format('truetype'), url('../images/font/bahnschriftlight.svg#bahnschriftlight') format('svg');
}
@font-face {
  font-family: 'gilroy-regular';
  src: url('../images/font/gilroyregular3.eot');
  src: url('../images/font/gilroyregular3.eot') format('embedded-opentype'), url('../images/font/gilroyregular3.woff2') format('woff2'), url('../images/font/gilroyregular3.woff') format('woff'), url('../images/font/gilroyregular3.ttf') format('truetype'), url('../images/font/gilroyregular3.svg#gilroyregular3') format('svg');
}
@font-face {
  font-family: 'gilroy-bold';
  src: url('../images/font/gilroybold4.eot');
  src: url('../images/font/gilroybold4.eot') format('embedded-opentype'), url('../images/font/gilroybold4.woff2') format('woff2'), url('../images/font/gilroybold4.woff') format('woff'), url('../images/font/gilroybold4.ttf') format('truetype'), url('../images/font/gilroybold4.svg#gilroybold4') format('svg');
}
@font-face {
  font-family: 'gilroy-medium';
  src: url('../images/font/gilroy-medium-2-webfont.eot');
  src: url('../images/font/gilroy-medium-2-webfont.eot?#iefix') format('embedded-opentype'), url('../images/font/gilroy-medium-2-webfont.woff2') format('woff2'), url('../images/font/gilroy-medium-2-webfont.woff') format('woff'), url('../images/font/gilroy-medium-2-webfont.ttf') format('truetype'), url('../images/font/gilroy-medium-2-webfont.svg#gilroymedium') format('svg');
}
.number {
  font-family: "DINPro-Medium";
}
.numberDINProBold {
  font-family: "DINPro-Bold";
}
#c-mask {
  position: fixed;
  top: 0px ;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 100;
  height: 100%;
  background: rgba(0, 0, 0, 0.5) center center no-repeat;
  display: none;
}
.page-loading-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
}
.page-loading-wrap .page-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.66666667rem;
  height: 1.06666667rem;
  background: rgba(0, 0, 0, 0.8) center center no-repeat;
  border-top-left-radius: 0.05333333rem;
  border-top-right-radius: 0.05333333rem;
  border-bottom-right-radius: 0.05333333rem;
  border-bottom-left-radius: 0.05333333rem;
  border-radius: 0.05333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: flex-center;
  /* Safari */
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  align-items: center;
}
.page-loading-wrap .page-loading .loading-img {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
}
.page-loading-wrap .page-loading span {
  margin-left: 0.13333333rem;
  color: #fff;
  font-size: 14px;
  font-family: "DINPro-Medium";
}
[data-dpr="2"] .page-loading-wrap .page-loading span {
  font-size: 28px;
}
[data-dpr="2.5"] .page-loading-wrap .page-loading span {
  font-size: 35px;
}
[data-dpr="2.75"] .page-loading-wrap .page-loading span {
  font-size: 39px;
}
[data-dpr="3"] .page-loading-wrap .page-loading span {
  font-size: 42px;
}
[data-dpr="4"] .page-loading-wrap .page-loading span {
  font-size: 56px;
}
.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}
.fade-enter,
.fade-leave-to {
  opacity: 0;
}
/***pxtorem*****/
/***rem转换方法****/
.x-msgbox {
  width: 6rem;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em;
          box-shadow: rgba(0, 0, 0, 0.8) 0 0.2em 0.6em;
  border-radius: 8px;
  background-image: none;
  background-color: rgba(0, 0, 0, 0.8);
}
.x-msgbox .x-title {
  max-width: 100%;
  min-height: 55px !important;
  font-weight: bold;
  line-height: 0.53333333rem;
  margin-right: 0.06666667rem;
  padding-top: 0.2rem;
  padding-right: 0.06666667rem;
  font-size: 0.37333333rem;
  color: white;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
.x-msgbox .x-title .x-innerhtml {
  width: 100%;
  font-weight: bold;
  padding-top: 0.4rem;
  font-size: 0.4rem;
  text-align: center;
}
.x-msgbox .x-msgbox-text {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.06666667rem;
  color: rgba(190, 224, 247, 0.9);
  text-shadow: rgba(0, 0, 0, 0.5) 0 -0.08em 0;
}
.x-msgbox .x-msgbox-text .x-innerhtml {
  width: 100%;
  font-weight: bold;
  padding-top: 0.2rem;
  font-size: 0.4rem;
  text-align: center;
}
.x-msgbox .button {
  width: 1.2rem;
  height: 0.4rem;
  margin: 0 auto;
  margin-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.x-msgbox .button .button-text {
  width: 1.2rem;
  height: 0.53333333rem;
  margin-top: -0.2rem;
  font-size: 0.34666667rem;
  border: 0;
}
.x-mask {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 10;
  display: -webkit-flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.4) center center no-repeat;
}
#alert-mask {
  top: 0px !important;
  left: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  z-index: 9999998 !important;
  display: none;
}
.common-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 11000;
  max-width: 400px;
  padding: 8px 8px;
  line-height: 1.2;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.common-toast-middle {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.common-toast-show {
  -webkit-animation: commonToastShow ease-in-out 300ms;
          animation: commonToastShow ease-in-out 300ms;
}
.common-toast-hide {
  -webkit-animation: commonToastHide ease-in-out 500ms;
          animation: commonToastHide ease-in-out 500ms;
}
@-webkit-keyframes commonToastShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes commonToastShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes commonToastHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes commonToastHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.common-toast-top {
  top: -10%;
  opacity: 0;
  position: fixed;
  left: 50%;
  z-index: 11000;
  max-width: 400px;
  padding: 8px 8px;
  line-height: 1.2;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all ease-in-out 300ms;
  transition: all ease-in-out 300ms;
}
.common-transform-top {
  top: 15%;
  opacity: 1;
}
/*****/
/*弹出样式*/
.modal-open {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.show_window {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transition: all 0.6s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  z-index: 1000;
}
.show_window .dialog_loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.66666667rem;
  height: 1.06666667rem;
  background: rgba(0, 0, 0, 0.8) center center no-repeat;
  border-top-left-radius: 0.05333333rem;
  border-top-right-radius: 0.05333333rem;
  border-bottom-right-radius: 0.05333333rem;
  border-bottom-left-radius: 0.05333333rem;
  border-radius: 0.05333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: flex-center;
  /* Safari */
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  align-items: center;
}
.show_window .dialog_loading .loading-img {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
}
.show_window .dialog_loading span {
  margin-left: 0.13333333rem;
  color: #fff;
  font-size: 14px;
  font-family: "DINPro-Medium";
  white-space: nowrap;
}
[data-dpr="2"] .show_window .dialog_loading span {
  font-size: 28px;
}
[data-dpr="2.5"] .show_window .dialog_loading span {
  font-size: 35px;
}
[data-dpr="2.75"] .show_window .dialog_loading span {
  font-size: 39px;
}
[data-dpr="3"] .show_window .dialog_loading span {
  font-size: 42px;
}
[data-dpr="4"] .show_window .dialog_loading span {
  font-size: 56px;
}
.windowMask {
  min-width: 8.5em;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 90;
  background: rgba(0, 0, 0, 0.8) center center no-repeat;
}
.template-wrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  min-height: 100vh;
  z-index: 100;
}
.template-wrap.visibility {
  visibility: hidden;
}
.template-wrap .template-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6) center center no-repeat;
  z-index: 102;
}
.template-wrap .template-body {
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
}
.template-wrap .template-body .close {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('../images//common/close1.png');
  top: 0.26666667rem;
  right: 0.26666667rem;
  z-index: 100;
  -webkit-background-size: 50% 50%;
          background-size: 50% 50%;
  background-position: center center;
}
.template-wrap .template-body .iconfont-close {
  position: absolute;
  color: #fff;
  font-size: 12px;
  top: 0.26666667rem;
  right: 0.26666667rem;
  z-index: 100;
}
[data-dpr="2"] .template-wrap .template-body .iconfont-close {
  font-size: 24px;
}
[data-dpr="2.5"] .template-wrap .template-body .iconfont-close {
  font-size: 30px;
}
[data-dpr="2.75"] .template-wrap .template-body .iconfont-close {
  font-size: 33px;
}
[data-dpr="3"] .template-wrap .template-body .iconfont-close {
  font-size: 36px;
}
[data-dpr="4"] .template-wrap .template-body .iconfont-close {
  font-size: 48px;
}
.template-wrap .common-container {
  padding-top: 0.66666667rem;
  padding-right: 0.53333333rem;
  padding-bottom: 0.34666667rem;
  padding-left: 0.53333333rem;
  width: 50%;
  text-align: center;
}
.template-wrap .common-container .text {
  margin-top: 0.33333333rem;
  margin-bottom: 0.33333333rem;
  color: #333333;
  font-size: 16px;
  line-height: 0.64rem;
  word-break: break-all;
}
[data-dpr="2"] .template-wrap .common-container .text {
  font-size: 32px;
}
[data-dpr="2.5"] .template-wrap .common-container .text {
  font-size: 40px;
}
[data-dpr="2.75"] .template-wrap .common-container .text {
  font-size: 44px;
}
[data-dpr="3"] .template-wrap .common-container .text {
  font-size: 48px;
}
[data-dpr="4"] .template-wrap .common-container .text {
  font-size: 64px;
}
.template-wrap .common-container .primay-btn {
  display: inline-block;
  background: #5684f4;
  width: 100%;
  border-top-left-radius: 0.10666667rem;
  border-top-right-radius: 0.10666667rem;
  border-bottom-right-radius: 0.10666667rem;
  border-bottom-left-radius: 0.10666667rem;
  border-radius: 0.10666667rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  height: 1.06666667rem;
  line-height: 1.06666667rem;
  text-align: center;
  color: #fff;
  font-size: 16px;
}
[data-dpr="2"] .template-wrap .common-container .primay-btn {
  font-size: 32px;
}
[data-dpr="2.5"] .template-wrap .common-container .primay-btn {
  font-size: 40px;
}
[data-dpr="2.75"] .template-wrap .common-container .primay-btn {
  font-size: 44px;
}
[data-dpr="3"] .template-wrap .common-container .primay-btn {
  font-size: 48px;
}
[data-dpr="4"] .template-wrap .common-container .primay-btn {
  font-size: 64px;
}
.template-wrap.dark .template-body .close {
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('../images//common/close.png');
  -webkit-background-size: 50% 50%;
          background-size: 50% 50%;
  background-position: center center;
}
.dialog-loading-wrap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 100;
}
.dialog-loading-wrap .dialog_loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 2.66666667rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  min-height: 1.06666667rem;
  background: rgba(44, 53, 68, 0.9) center center no-repeat;
  border-top-left-radius: 0.05333333rem;
  border-top-right-radius: 0.05333333rem;
  border-bottom-right-radius: 0.05333333rem;
  border-bottom-left-radius: 0.05333333rem;
  border-radius: 0.05333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: flex-center;
  /* Safari */
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  align-items: center;
}
.dialog-loading-wrap .dialog_loading .loading-img {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
}
.dialog-loading-wrap .dialog_loading .icon-success-img {
  display: block;
  width: 0.53333333rem;
  height: 0.53333333rem;
}
.dialog-loading-wrap .dialog_loading span {
  margin-left: 0.13333333rem;
  color: #fff;
  font-size: 14px;
  font-family: "DINPro-Medium";
}
[data-dpr="2"] .dialog-loading-wrap .dialog_loading span {
  font-size: 28px;
}
[data-dpr="2.5"] .dialog-loading-wrap .dialog_loading span {
  font-size: 35px;
}
[data-dpr="2.75"] .dialog-loading-wrap .dialog_loading span {
  font-size: 39px;
}
[data-dpr="3"] .dialog-loading-wrap .dialog_loading span {
  font-size: 42px;
}
[data-dpr="4"] .dialog-loading-wrap .dialog_loading span {
  font-size: 56px;
}
/*! https://github.com/lzxb/flex.css */
[flex] {
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
[flex] > * {
  display: block;
}
[flex] > [flex] {
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
[flex~="dir:left"] {
  -webkit-box-orient: horizontal;
  -ms-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
[flex~="dir:right"] {
  -webkit-box-orient: horizontal;
  -ms-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -o-flex-directiion: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
}
[flex~="dir:top"] {
  -webkit-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -moz-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
[flex~="dir:bottom"] {
  -webkit-box-orient: vertical;
  -ms-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: end;
}
[flex~="main:left"] {
  -webkit-box-pack: start;
  -ms-box-pack: start;
  -webkit-flex-pack: start;
  -moz-flex-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}
[flex~="main:right"] {
  -webkit-box-pack: end;
  -ms-box-pack: end;
  -webkit-flex-pack: end;
  -moz-flex-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}
[flex~="main:justify"] {
  -webkit-box-pack: justify;
  -ms-box-pack: justify;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
[flex~="main:center"] {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
[flex~="cross:top"] {
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}
[flex~="cross:bottom"] {
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}
[flex~="cross:center"] {
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: flex-center;
  /* Safari */
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  align-items: center;
}
[flex~="cross:baseline"] {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  -ms-grid-row-align: baseline;
  align-items: baseline;
}
[flex~="cross:stretch"] {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  align-items: stretch;
}
[flex~="box:mean"] > *,
[flex~="box:first"] > *,
[flex~="box:last"] > *,
[flex~="box:justify"] > * {
  width: 0;
  height: auto;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
[flex~="box:first"] > :first-child,
[flex~="box:last"] > :last-child,
[flex~="box:justify"] > :first-child,
[flex~="box:justify"] > :last-child {
  width: auto;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
[flex~="dir:top"][flex~="box:mean"] > *,
[flex~="dir:top"][flex~="box:first"] > *,
[flex~="dir:top"][flex~="box:last"] > *,
[flex~="dir:top"][flex~="box:justify"] > *,
[flex~="dir:bottom"][flex~="box:mean"] > *,
[flex~="dir:bottom"][flex~="box:first"] > *,
[flex~="dir:bottom"][flex~="box:last"] > *,
[flex~="dir:bottom"][flex~="box:justify"] > * {
  width: auto;
  height: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
[flex~="dir:top"][flex~="box:first"] > :first-child,
[flex~="dir:top"][flex~="box:last"] > :last-child,
[flex~="dir:top"][flex~="box:justify"] > :first-child,
[flex~="dir:top"][flex~="box:justify"] > :last-child,
[flex~="dir:bottom"][flex~="box:first"] > :first-child,
[flex~="dir:bottom"][flex~="box:last"] > :last-child,
[flex~="dir:bottom"][flex~="box:justify"] > :first-child [flex~="dir:bottom"][flex~="box:justify"] > :last-child {
  height: auto;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
[flex-box="0"] {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
[flex-box="1"] {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
[flex-box="2"] {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  -webkit-flex-shrink: 2;
  -ms-flex-negative: 2;
  flex-shrink: 2;
}
[flex-box="3"] {
  -webkit-box-flex: 3;
  -webkit-flex-grow: 3;
  -ms-flex-positive: 3;
  flex-grow: 3;
  -webkit-flex-shrink: 3;
  -ms-flex-negative: 3;
  flex-shrink: 3;
}
[flex-box="4"] {
  -webkit-box-flex: 4;
  -webkit-flex-grow: 4;
  -ms-flex-positive: 4;
  flex-grow: 4;
  -webkit-flex-shrink: 4;
  -ms-flex-negative: 4;
  flex-shrink: 4;
}
[flex-box="5"] {
  -webkit-box-flex: 5;
  -webkit-flex-grow: 5;
  -ms-flex-positive: 5;
  flex-grow: 5;
  -webkit-flex-shrink: 5;
  -ms-flex-negative: 5;
  flex-shrink: 5;
}
[flex-box="6"] {
  -webkit-box-flex: 6;
  -webkit-flex-grow: 6;
  -ms-flex-positive: 6;
  flex-grow: 6;
  -webkit-flex-shrink: 6;
  -ms-flex-negative: 6;
  flex-shrink: 6;
}
[flex-box="7"] {
  -webkit-box-flex: 7;
  -webkit-flex-grow: 7;
  -ms-flex-positive: 7;
  flex-grow: 7;
  -webkit-flex-shrink: 7;
  -ms-flex-negative: 7;
  flex-shrink: 7;
}
[flex-box="8"] {
  -webkit-box-flex: 8;
  -webkit-flex-grow: 8;
  -ms-flex-positive: 8;
  flex-grow: 8;
  -webkit-flex-shrink: 8;
  -ms-flex-negative: 8;
  flex-shrink: 8;
}
[flex-box="9"] {
  -webkit-box-flex: 9;
  -webkit-flex-grow: 9;
  -ms-flex-positive: 9;
  flex-grow: 9;
  -webkit-flex-shrink: 9;
  -ms-flex-negative: 9;
  flex-shrink: 9;
}
[flex-box="10"] {
  -webkit-box-flex: 10;
  -webkit-flex-grow: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
  -webkit-flex-shrink: 10;
  -ms-flex-negative: 10;
  flex-shrink: 10;
}
/***无痕验证样式文件***/
#captcha {
  margin-top: 35px;
}
/***页面样式*****/
.main-html {
  min-height: 100%;
  height: 100%;
  /***关于我们****/
  /***版本声明****/
  /***用户协议****/
  /***费率说明****/
  /***返佣规则****/
  /***公告详情****/
  /***常见问题****/
  /***帮助中心****/
  /***注册页面****/
  /*手机前缀样式*/
  /*红包活动*/
  /*....*/
  /*下载页面*/
}
.main-html body {
  min-height: 100%;
  height: 100%;
  width: 100%;
}
.main-html .about {
  width: 100%;
  padding-left: 0.53333333rem;
  padding-right: 0.53333333rem;
  padding-top: 0.44rem;
  padding-bottom: 0.44rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.main-html .about .head {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-html .about .head .login-left {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.24rem;
  height: 0.42666667rem;
  background-image: url('../images/page/fanhui.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .about .head .us {
  color: #000000;
  font-size: 18px;
}
[data-dpr="2"] .main-html .about .head .us {
  font-size: 36px;
}
[data-dpr="2.5"] .main-html .about .head .us {
  font-size: 45px;
}
[data-dpr="2.75"] .main-html .about .head .us {
  font-size: 50px;
}
[data-dpr="3"] .main-html .about .head .us {
  font-size: 54px;
}
[data-dpr="4"] .main-html .about .head .us {
  font-size: 72px;
}
.main-html .about .bg {
  width: 100%;
  margin-top: 1.70666667rem;
  text-align: center;
}
.main-html .about .bg span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 2.4rem;
  height: 3.2rem;
  background-image: url('../images/page/1logoshangxia@3x.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .about .text {
  width: 100%;
  margin-top: 1.68rem;
}
.main-html .about .text p {
  font-size: 14px;
  line-height: 0.64rem;
  color: #333333;
}
[data-dpr="2"] .main-html .about .text p {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .about .text p {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .about .text p {
  font-size: 39px;
}
[data-dpr="3"] .main-html .about .text p {
  font-size: 42px;
}
[data-dpr="4"] .main-html .about .text p {
  font-size: 56px;
}
.main-html .kong {
  width: 100%;
  height: 0.26666667rem;
  background: #f2f2f2;
}
.main-html .about-tiao {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.53333333rem;
  padding-right: 0.54666667rem;
}
.main-html .about-tiao > ul {
  width: 100%;
}
.main-html .about-tiao > ul li {
  width: 100%;
  height: 1.33333333rem;
  line-height: 1.33333333rem;
  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;
  font-size: 14px;
  border-bottom: 1px solid #e4e6e9;
}
[data-dpr="2"] .main-html .about-tiao > ul li {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .about-tiao > ul li {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .about-tiao > ul li {
  font-size: 39px;
}
[data-dpr="3"] .main-html .about-tiao > ul li {
  font-size: 42px;
}
[data-dpr="4"] .main-html .about-tiao > ul li {
  font-size: 56px;
}
.main-html .about-tiao > ul li > a {
  width: 100%;
  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;
  color: #333333;
}
.main-html .about-tiao > ul li > a .login-right {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.192rem;
  height: 0.34666667rem;
  margin-right: 0.15733333rem;
  background-image: url('../images/page/xiayiye.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .about-tiao > ul li > a:active,
.main-html .about-tiao > ul li a:focus {
  color: #333333;
  text-decoration: none;
}
.main-html .version {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.53333333rem;
  padding-right: 0.53333333rem;
  padding-top: 0.44rem;
  padding-bottom: 0.44rem;
}
.main-html .version .head {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-html .version .head .login-left {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.24rem;
  height: 0.42666667rem;
  background-image: url('../images/page/fanhui.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .version .head .us {
  color: #000000;
  font-size: 18px;
}
[data-dpr="2"] .main-html .version .head .us {
  font-size: 36px;
}
[data-dpr="2.5"] .main-html .version .head .us {
  font-size: 45px;
}
[data-dpr="2.75"] .main-html .version .head .us {
  font-size: 50px;
}
[data-dpr="3"] .main-html .version .head .us {
  font-size: 54px;
}
[data-dpr="4"] .main-html .version .head .us {
  font-size: 72px;
}
.main-html .version .First-article,
.main-html .version .Second-article,
.main-html .version .Third-article,
.main-html .version .Fourth-article {
  width: 100%;
  font-size: 14px;
  color: #333333;
  line-height: 0.64rem;
  margin-top: 0.93333333rem;
}
[data-dpr="2"] .main-html .version .First-article,
[data-dpr="2"] .main-html .version .Second-article,
[data-dpr="2"] .main-html .version .Third-article,
[data-dpr="2"] .main-html .version .Fourth-article {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .version .First-article,
[data-dpr="2.5"] .main-html .version .Second-article,
[data-dpr="2.5"] .main-html .version .Third-article,
[data-dpr="2.5"] .main-html .version .Fourth-article {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .version .First-article,
[data-dpr="2.75"] .main-html .version .Second-article,
[data-dpr="2.75"] .main-html .version .Third-article,
[data-dpr="2.75"] .main-html .version .Fourth-article {
  font-size: 39px;
}
[data-dpr="3"] .main-html .version .First-article,
[data-dpr="3"] .main-html .version .Second-article,
[data-dpr="3"] .main-html .version .Third-article,
[data-dpr="3"] .main-html .version .Fourth-article {
  font-size: 42px;
}
[data-dpr="4"] .main-html .version .First-article,
[data-dpr="4"] .main-html .version .Second-article,
[data-dpr="4"] .main-html .version .Third-article,
[data-dpr="4"] .main-html .version .Fourth-article {
  font-size: 56px;
}
.main-html .user {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.53333333rem;
  padding-right: 0.53333333rem;
  padding-top: 0.44rem;
  padding-bottom: 0.44rem;
}
.main-html .user .head {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-html .user .head .login-left {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.24rem;
  height: 0.42666667rem;
  background-image: url('../images/page/fanhui.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .user .head .us {
  color: #000000;
  font-size: 18px;
}
[data-dpr="2"] .main-html .user .head .us {
  font-size: 36px;
}
[data-dpr="2.5"] .main-html .user .head .us {
  font-size: 45px;
}
[data-dpr="2.75"] .main-html .user .head .us {
  font-size: 50px;
}
[data-dpr="3"] .main-html .user .head .us {
  font-size: 54px;
}
[data-dpr="4"] .main-html .user .head .us {
  font-size: 72px;
}
.main-html .user .content {
  font-size: 14px;
  margin-top: 0.93333333rem;
}
[data-dpr="2"] .main-html .user .content {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .user .content {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .user .content {
  font-size: 39px;
}
[data-dpr="3"] .main-html .user .content {
  font-size: 42px;
}
[data-dpr="4"] .main-html .user .content {
  font-size: 56px;
}
.main-html .user .content p {
  text-indent: 11px;
  overflow: hidden;
  line-height: 0.64rem;
  color: #151515;
}
.main-html .user .Prompt {
  font-size: 14px;
  margin-top: 0.53333333rem;
  color: #151515;
}
[data-dpr="2"] .main-html .user .Prompt {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .user .Prompt {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .user .Prompt {
  font-size: 39px;
}
[data-dpr="3"] .main-html .user .Prompt {
  font-size: 42px;
}
[data-dpr="4"] .main-html .user .Prompt {
  font-size: 56px;
}
.main-html .user .Prompt .zhong {
  color: #333333;
}
.main-html .user .Prompt .zhong-te {
  margin-top: 0.53333333rem;
  margin-bottom: 0.26666667rem;
}
.main-html .user .Prompt .zhong-tiao {
  line-height: 0.64rem;
}
.main-html .rate {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.main-html .rate .rate-desc {
  padding-left: 0.53333333rem;
  padding-top: 0.26666667rem;
  padding-right: 0.53333333rem;
  padding-bottom: 0.26666667rem;
  background-color: #eef2fb;
  font-size: 0.37333333rem;
  color: #4772d9;
}
.main-html .rate .rate-desc img {
  float: left;
  *display: inline;
  width: 0.4rem;
  height: 0.4rem;
  margin-top: 0.05333333rem;
  margin-right: 0.2rem;
}
.main-html .rate .list {
  padding-left: 0.53333333rem;
  padding-right: 0.53333333rem;
  padding-bottom: 0.44rem;
  margin-top: 0.66666667rem;
}
.main-html .rate .list .list-head {
  display: table;
  table-layout: fixed;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
}
[data-dpr="2"] .main-html .rate .list .list-head {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .rate .list .list-head {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .rate .list .list-head {
  font-size: 44px;
}
[data-dpr="3"] .main-html .rate .list .list-head {
  font-size: 48px;
}
[data-dpr="4"] .main-html .rate .list .list-head {
  font-size: 64px;
}
.main-html .rate .list .list-head > span {
  display: table-cell;
}
.main-html .rate .list .list-head span:nth-of-type(2) {
  padding-left: 1.22666667rem;
}
.main-html .rate .list .list-text {
  width: 100%;
  margin-top: 0.53333333rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.main-html .rate .list .list-text .list-shu {
  height: 1.33333333rem;
  line-height: 1.33333333rem;
  display: table;
  table-layout: fixed;
  width: 100%;
  font-size: 14px;
  color: #333333;
  border-bottom-style: solid;
  border-bottom-color: #E4E6E9;
  border-bottom-width: 1px;
}
[data-dpr="2"] .main-html .rate .list .list-text .list-shu {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .rate .list .list-text .list-shu {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .rate .list .list-text .list-shu {
  font-size: 39px;
}
[data-dpr="3"] .main-html .rate .list .list-text .list-shu {
  font-size: 42px;
}
[data-dpr="4"] .main-html .rate .list .list-text .list-shu {
  font-size: 56px;
}
[data-dpr="2"] .main-html .rate .list .list-text .list-shu {
  border-bottom-width: 1px;
}
[data-dpr="2.5"] .main-html .rate .list .list-text .list-shu {
  border-bottom-width: 1px;
}
[data-dpr="2.75"] .main-html .rate .list .list-text .list-shu {
  border-bottom-width: 1px;
}
[data-dpr="3"] .main-html .rate .list .list-text .list-shu {
  border-bottom-width: 2px;
}
[data-dpr="4"] .main-html .rate .list .list-text .list-shu {
  border-bottom-width: 2px;
}
.main-html .rate .list .list-text .list-shu > span {
  display: table-cell;
}
.main-html .rate .list .list-text .list-shu span:nth-of-type(2) {
  padding-left: 1.22666667rem;
}
.main-html .rate .rate-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 5;
}
.main-html .rate .rate-box {
  position: fixed;
  top: 6.66666667rem;
  left: 50%;
  width: 7rem;
  margin-left: -3.5rem;
  background-color: #fff;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  z-index: 6;
}
.main-html .rate .rate-box p {
  padding-left: 0.4rem;
  padding-top: 0.61333333rem;
  padding-right: 0.4rem;
  padding-bottom: 0.61333333rem;
  font-size: 0.42666667rem;
  color: #121821;
}
.main-html .rate .rate-box .rate-know {
  position: relative;
  bottom: 0.06666667rem;
  width: 100%;
  padding-top: 0.26666667rem;
  padding-bottom: 0.26666667rem;
  font-size: 0.48rem;
  color: #4772d9;
  text-align: center;
  border-top: 1px solid #eff0f3;
}
.main-html .maid-rule {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.53333333rem;
  padding-right: 0.53333333rem;
  padding-top: 0.44rem;
  padding-bottom: 0.44rem;
}
.main-html .maid-rule .head {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-html .maid-rule .head .login-left {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.24rem;
  height: 0.42666667rem;
  background-image: url('../images/page/fanhui.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .maid-rule .head .us {
  color: #000000;
  font-size: 18px;
}
[data-dpr="2"] .main-html .maid-rule .head .us {
  font-size: 36px;
}
[data-dpr="2.5"] .main-html .maid-rule .head .us {
  font-size: 45px;
}
[data-dpr="2.75"] .main-html .maid-rule .head .us {
  font-size: 50px;
}
[data-dpr="3"] .main-html .maid-rule .head .us {
  font-size: 54px;
}
[data-dpr="4"] .main-html .maid-rule .head .us {
  font-size: 72px;
}
.main-html .maid-rule .user-maid {
  width: 100%;
  font-size: 14px;
  margin-top: 0.93333333rem;
  color: #151515;
}
[data-dpr="2"] .main-html .maid-rule .user-maid {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .maid-rule .user-maid {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .maid-rule .user-maid {
  font-size: 39px;
}
[data-dpr="3"] .main-html .maid-rule .user-maid {
  font-size: 42px;
}
[data-dpr="4"] .main-html .maid-rule .user-maid {
  font-size: 56px;
}
.main-html .maid-rule .user-maid .user-maid-one p {
  font-weight: 600;
  color: #333333;
}
.main-html .maid-rule .user-maid .user-maid-two {
  margin-top: 0.86666667rem;
  margin-bottom: 1.2rem;
}
.main-html .maid-rule .user-maid .user-maid-three p {
  line-height: 0.77333333rem;
}
.main-html .maid-rule .user-maid .user-maid-four {
  margin-top: 1.22666667rem;
  text-align: right;
}
.main-html .notice {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.53333333rem;
  padding-right: 0.53333333rem;
  padding-top: 0.44rem;
  padding-bottom: 0.44rem;
}
.main-html .notice .head {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-html .notice .head .login-left {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.24rem;
  height: 0.42666667rem;
  background-image: url('../images/page/fanhui.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .notice .head .us {
  color: #000000;
  font-size: 18px;
}
[data-dpr="2"] .main-html .notice .head .us {
  font-size: 36px;
}
[data-dpr="2.5"] .main-html .notice .head .us {
  font-size: 45px;
}
[data-dpr="2.75"] .main-html .notice .head .us {
  font-size: 50px;
}
[data-dpr="3"] .main-html .notice .head .us {
  font-size: 54px;
}
[data-dpr="4"] .main-html .notice .head .us {
  font-size: 72px;
}
.main-html .notice .respect-user {
  width: 100%;
  margin-top: 0.93333333rem;
  font-size: 14px;
}
[data-dpr="2"] .main-html .notice .respect-user {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .notice .respect-user {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .notice .respect-user {
  font-size: 39px;
}
[data-dpr="3"] .main-html .notice .respect-user {
  font-size: 42px;
}
[data-dpr="4"] .main-html .notice .respect-user {
  font-size: 56px;
}
.main-html .notice .respect-user .respect-de {
  margin-bottom: 0.93333333rem;
  color: #333333;
}
.main-html .notice .respect-user .respect-eng {
  color: #151515;
}
.main-html .notice .respect-user .respect-eng p {
  line-height: 0.64rem;
}
.main-html .notice .respect-user .respect-eng p:nth-of-type(2) {
  margin-top: 0.6rem;
}
.main-html .notice .respect-user .respect-eng p:nth-of-type(3) {
  margin-top: 1rem;
  text-align: right;
}
.main-html .problem {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.53333333rem;
  padding-right: 0.53333333rem;
  padding-top: 0.44rem;
  padding-bottom: 0.44rem;
}
.main-html .problem .head {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-html .problem .head .login-left {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.24rem;
  height: 0.42666667rem;
  background-image: url('../images/page/fanhui.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .problem .head .us {
  color: #000000;
  font-size: 18px;
}
[data-dpr="2"] .main-html .problem .head .us {
  font-size: 36px;
}
[data-dpr="2.5"] .main-html .problem .head .us {
  font-size: 45px;
}
[data-dpr="2.75"] .main-html .problem .head .us {
  font-size: 50px;
}
[data-dpr="3"] .main-html .problem .head .us {
  font-size: 54px;
}
[data-dpr="4"] .main-html .problem .head .us {
  font-size: 72px;
}
.main-html .problem .zhuce {
  width: 100%;
  margin-top: 0.93333333rem;
}
.main-html .problem .zhuce .zhuce-china {
  font-size: 16px;
  color: #333333;
}
[data-dpr="2"] .main-html .problem .zhuce .zhuce-china {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .problem .zhuce .zhuce-china {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .problem .zhuce .zhuce-china {
  font-size: 44px;
}
[data-dpr="3"] .main-html .problem .zhuce .zhuce-china {
  font-size: 48px;
}
[data-dpr="4"] .main-html .problem .zhuce .zhuce-china {
  font-size: 64px;
}
.main-html .problem .zhuce .zhuce-eng {
  font-size: 14px;
  color: #666666;
}
[data-dpr="2"] .main-html .problem .zhuce .zhuce-eng {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .problem .zhuce .zhuce-eng {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .problem .zhuce .zhuce-eng {
  font-size: 39px;
}
[data-dpr="3"] .main-html .problem .zhuce .zhuce-eng {
  font-size: 42px;
}
[data-dpr="4"] .main-html .problem .zhuce .zhuce-eng {
  font-size: 56px;
}
.main-html .problem .zhuce .zhuce-eng p {
  line-height: 0.64rem;
}
.main-html .problem .zhuce .zhuce-eng p:nth-of-type(1) {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.main-html .help-center {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.53333333rem;
  padding-right: 0.53333333rem;
  padding-top: 0.44rem;
  padding-bottom: 0.44rem;
}
.main-html .help-center .head {
  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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-html .help-center .head .login-left {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.24rem;
  height: 0.42666667rem;
  background-image: url('../images/page/fanhui.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .help-center .head .us {
  color: #000000;
  font-size: 18px;
}
[data-dpr="2"] .main-html .help-center .head .us {
  font-size: 36px;
}
[data-dpr="2.5"] .main-html .help-center .head .us {
  font-size: 45px;
}
[data-dpr="2.75"] .main-html .help-center .head .us {
  font-size: 50px;
}
[data-dpr="3"] .main-html .help-center .head .us {
  font-size: 54px;
}
[data-dpr="4"] .main-html .help-center .head .us {
  font-size: 72px;
}
.main-html .help-center .help-list {
  width: 100%;
  margin-top: 0.66666667rem;
}
.main-html .help-center .help-list .help-list-one,
.main-html .help-center .help-list .help-list-two,
.main-html .help-center .help-list .help-list-three,
.main-html .help-center .help-list .help-list-four {
  height: 1.33333333rem;
  font-size: 14px;
  color: #333333;
  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;
  border-bottom-style: solid;
  border-bottom-color: #E4E6E9;
  border-bottom-width: 1px;
}
[data-dpr="2"] .main-html .help-center .help-list .help-list-one,
[data-dpr="2"] .main-html .help-center .help-list .help-list-two,
[data-dpr="2"] .main-html .help-center .help-list .help-list-three,
[data-dpr="2"] .main-html .help-center .help-list .help-list-four {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .help-center .help-list .help-list-one,
[data-dpr="2.5"] .main-html .help-center .help-list .help-list-two,
[data-dpr="2.5"] .main-html .help-center .help-list .help-list-three,
[data-dpr="2.5"] .main-html .help-center .help-list .help-list-four {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .help-center .help-list .help-list-one,
[data-dpr="2.75"] .main-html .help-center .help-list .help-list-two,
[data-dpr="2.75"] .main-html .help-center .help-list .help-list-three,
[data-dpr="2.75"] .main-html .help-center .help-list .help-list-four {
  font-size: 39px;
}
[data-dpr="3"] .main-html .help-center .help-list .help-list-one,
[data-dpr="3"] .main-html .help-center .help-list .help-list-two,
[data-dpr="3"] .main-html .help-center .help-list .help-list-three,
[data-dpr="3"] .main-html .help-center .help-list .help-list-four {
  font-size: 42px;
}
[data-dpr="4"] .main-html .help-center .help-list .help-list-one,
[data-dpr="4"] .main-html .help-center .help-list .help-list-two,
[data-dpr="4"] .main-html .help-center .help-list .help-list-three,
[data-dpr="4"] .main-html .help-center .help-list .help-list-four {
  font-size: 56px;
}
[data-dpr="2"] .main-html .help-center .help-list .help-list-one,
[data-dpr="2"] .main-html .help-center .help-list .help-list-two,
[data-dpr="2"] .main-html .help-center .help-list .help-list-three,
[data-dpr="2"] .main-html .help-center .help-list .help-list-four {
  border-bottom-width: 1px;
}
[data-dpr="2.5"] .main-html .help-center .help-list .help-list-one,
[data-dpr="2.5"] .main-html .help-center .help-list .help-list-two,
[data-dpr="2.5"] .main-html .help-center .help-list .help-list-three,
[data-dpr="2.5"] .main-html .help-center .help-list .help-list-four {
  border-bottom-width: 1px;
}
[data-dpr="2.75"] .main-html .help-center .help-list .help-list-one,
[data-dpr="2.75"] .main-html .help-center .help-list .help-list-two,
[data-dpr="2.75"] .main-html .help-center .help-list .help-list-three,
[data-dpr="2.75"] .main-html .help-center .help-list .help-list-four {
  border-bottom-width: 1px;
}
[data-dpr="3"] .main-html .help-center .help-list .help-list-one,
[data-dpr="3"] .main-html .help-center .help-list .help-list-two,
[data-dpr="3"] .main-html .help-center .help-list .help-list-three,
[data-dpr="3"] .main-html .help-center .help-list .help-list-four {
  border-bottom-width: 2px;
}
[data-dpr="4"] .main-html .help-center .help-list .help-list-one,
[data-dpr="4"] .main-html .help-center .help-list .help-list-two,
[data-dpr="4"] .main-html .help-center .help-list .help-list-three,
[data-dpr="4"] .main-html .help-center .help-list .help-list-four {
  border-bottom-width: 2px;
}
.main-html .help-center .help-list .help-list-one .login-right,
.main-html .help-center .help-list .help-list-two .login-right,
.main-html .help-center .help-list .help-list-three .login-right,
.main-html .help-center .help-list .help-list-four .login-right {
  display: block;
  width: 0.192rem;
  height: 0.34666667rem;
  background-image: url('../images/page/xiayiye.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.main-html .help-center .help-list .help-list-one .tran,
.main-html .help-center .help-list .help-list-two .tran,
.main-html .help-center .help-list .help-list-three .tran,
.main-html .help-center .help-list .help-list-four .tran {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.main-html .help-center .help-list div:first-child {
  border-top-style: solid;
  border-top-color: #E4E6E9;
  border-top-width: 1px;
}
[data-dpr="2"] .main-html .help-center .help-list div:first-child {
  border-top-width: 1px;
}
[data-dpr="2.5"] .main-html .help-center .help-list div:first-child {
  border-top-width: 1px;
}
[data-dpr="2.75"] .main-html .help-center .help-list div:first-child {
  border-top-width: 1px;
}
[data-dpr="3"] .main-html .help-center .help-list div:first-child {
  border-top-width: 2px;
}
[data-dpr="4"] .main-html .help-center .help-list div:first-child {
  border-top-width: 2px;
}
.main-html .help-center .help-list .xian {
  padding-left: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom-style: solid;
  border-bottom-color: #E4E6E9;
  border-bottom-width: 1px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
[data-dpr="2"] .main-html .help-center .help-list .xian {
  border-bottom-width: 1px;
}
[data-dpr="2.5"] .main-html .help-center .help-list .xian {
  border-bottom-width: 1px;
}
[data-dpr="2.75"] .main-html .help-center .help-list .xian {
  border-bottom-width: 1px;
}
[data-dpr="3"] .main-html .help-center .help-list .xian {
  border-bottom-width: 2px;
}
[data-dpr="4"] .main-html .help-center .help-list .xian {
  border-bottom-width: 2px;
}
.main-html .help-center .help-list .xian > span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 1.33333333rem;
  line-height: 1.33333333rem;
  font-size: 12px;
  color: #333333;
}
[data-dpr="2"] .main-html .help-center .help-list .xian > span {
  font-size: 24px;
}
[data-dpr="2.5"] .main-html .help-center .help-list .xian > span {
  font-size: 30px;
}
[data-dpr="2.75"] .main-html .help-center .help-list .xian > span {
  font-size: 33px;
}
[data-dpr="3"] .main-html .help-center .help-list .xian > span {
  font-size: 36px;
}
[data-dpr="4"] .main-html .help-center .help-list .xian > span {
  font-size: 48px;
}
.main-html .help-center .help-list .xiann {
  border-bottom: none;
}
.main-html .div-null {
  height: 1.33333333rem;
  width: 100%;
}
.main-html .register {
  background: #4772d9;
  width: 100%;
  height: 100%;
}
.main-html .register .succes {
  width: 100%;
  height: 100%;
  background: white;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.main-html .register .succes .logo-left {
  width: 0.24rem;
  height: 0.42666667rem;
  background-image: url('../images/page/fanhui.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  margin-top: 0.44rem;
}
.main-html .register .succes .zcsuccimg {
  width: 100%;
  margin-top: 2.13333333rem;
  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-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-img {
  width: 4.26666667rem;
  height: 4.93333333rem;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-img > img {
  width: 100%;
  height: 100%;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-imgtwo {
  width: 5.33333333rem;
  height: 3.73333333rem;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-imgtwo > img {
  width: 100%;
  height: 100%;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-texttwo {
  width: 100%;
  text-align: center;
  margin-top: 0.8rem;
  margin-bottom: 1.06666667rem;
  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;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-texttwo span:nth-of-type(1) {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.94933333rem;
  height: 0.94933333rem;
  background-image: url('../images/page/Group 2@3x.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-texttwo span:nth-of-type(2) {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 27px;
  color: #1a1a1a;
  margin-left: 0.17866667rem;
}
[data-dpr="2"] .main-html .register .succes .zcsuccimg .zcsuccimg-texttwo span:nth-of-type(2) {
  font-size: 54px;
}
[data-dpr="2.5"] .main-html .register .succes .zcsuccimg .zcsuccimg-texttwo span:nth-of-type(2) {
  font-size: 68px;
}
[data-dpr="2.75"] .main-html .register .succes .zcsuccimg .zcsuccimg-texttwo span:nth-of-type(2) {
  font-size: 74px;
}
[data-dpr="3"] .main-html .register .succes .zcsuccimg .zcsuccimg-texttwo span:nth-of-type(2) {
  font-size: 81px;
}
[data-dpr="4"] .main-html .register .succes .zcsuccimg .zcsuccimg-texttwo span:nth-of-type(2) {
  font-size: 108px;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-text {
  width: 100%;
  text-align: center;
  margin-top: 0.8rem;
  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;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-text span:nth-of-type(1) {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.94933333rem;
  height: 0.94933333rem;
  background-image: url('../images/page/Group 2@3x.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-text span:nth-of-type(2) {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 27px;
  color: #1a1a1a;
  margin-left: 0.17866667rem;
}
[data-dpr="2"] .main-html .register .succes .zcsuccimg .zcsuccimg-text span:nth-of-type(2) {
  font-size: 54px;
}
[data-dpr="2.5"] .main-html .register .succes .zcsuccimg .zcsuccimg-text span:nth-of-type(2) {
  font-size: 68px;
}
[data-dpr="2.75"] .main-html .register .succes .zcsuccimg .zcsuccimg-text span:nth-of-type(2) {
  font-size: 74px;
}
[data-dpr="3"] .main-html .register .succes .zcsuccimg .zcsuccimg-text span:nth-of-type(2) {
  font-size: 81px;
}
[data-dpr="4"] .main-html .register .succes .zcsuccimg .zcsuccimg-text span:nth-of-type(2) {
  font-size: 108px;
}
.main-html .register .succes .zcsuccimg .zusuccimg-yi {
  color: #6b8094;
  font-size: 14px;
  text-align: center;
  margin-top: 0.8rem;
}
[data-dpr="2"] .main-html .register .succes .zcsuccimg .zusuccimg-yi {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .register .succes .zcsuccimg .zusuccimg-yi {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .register .succes .zcsuccimg .zusuccimg-yi {
  font-size: 39px;
}
[data-dpr="3"] .main-html .register .succes .zcsuccimg .zusuccimg-yi {
  font-size: 42px;
}
[data-dpr="4"] .main-html .register .succes .zcsuccimg .zusuccimg-yi {
  font-size: 56px;
}
.main-html .register .succes .zcsuccimg .zcsuccimg-btn {
  width: 4.4rem;
  height: 1.06666667rem;
  line-height: 1.06666667rem;
  margin-top: 0.56rem;
  border-radius: 100px;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #dddddd;
  color: #84858e;
  font-size: 14px;
  text-align: center;
}
[data-dpr="2"] .main-html .register .succes .zcsuccimg .zcsuccimg-btn {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .register .succes .zcsuccimg .zcsuccimg-btn {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .register .succes .zcsuccimg .zcsuccimg-btn {
  font-size: 39px;
}
[data-dpr="3"] .main-html .register .succes .zcsuccimg .zcsuccimg-btn {
  font-size: 42px;
}
[data-dpr="4"] .main-html .register .succes .zcsuccimg .zcsuccimg-btn {
  font-size: 56px;
}
.main-html .register .zhuce {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background: #4772d9;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  padding-top: 0.53333333rem;
  padding-bottom: 0.8rem;
}
.main-html .register .zhuce .logo {
  width: 100%;
  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;
}
.main-html .register .zhuce .logo > span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.main-html .register .zhuce .logo .logo-tu {
  width: 2.58666667rem;
  height: 0.74666667rem;
  background-image: url('../images/area/logo.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .register .zhuce .logo .logo-text {
  font-size: 14px;
  color: #ffffff;
}
[data-dpr="2"] .main-html .register .zhuce .logo .logo-text {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .register .zhuce .logo .logo-text {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .register .zhuce .logo .logo-text {
  font-size: 39px;
}
[data-dpr="3"] .main-html .register .zhuce .logo .logo-text {
  font-size: 42px;
}
[data-dpr="4"] .main-html .register .zhuce .logo .logo-text {
  font-size: 56px;
}
.main-html .register .zhuce .tab_nav {
  width: 100%;
  margin-top: 0.8rem;
}
.main-html .register .zhuce .tab_nav .nav_li {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 500;
  display: inline-block;
}
[data-dpr="2"] .main-html .register .zhuce .tab_nav .nav_li {
  font-size: 40px;
}
[data-dpr="2.5"] .main-html .register .zhuce .tab_nav .nav_li {
  font-size: 50px;
}
[data-dpr="2.75"] .main-html .register .zhuce .tab_nav .nav_li {
  font-size: 55px;
}
[data-dpr="3"] .main-html .register .zhuce .tab_nav .nav_li {
  font-size: 60px;
}
[data-dpr="4"] .main-html .register .zhuce .tab_nav .nav_li {
  font-size: 80px;
}
.main-html .register .zhuce .tab_nav .nav_li:first-child {
  margin-right: 0.66666667rem;
}
.main-html .register .zhuce .tab_nav .nav_li.select {
  border-bottom: 1px solid #fff;
}
.main-html .register .zhuce .email-tip {
  font-size: 14px;
  margin-bottom: 0.8rem;
  margin-top: -0.26666667rem;
  color: #fff;
  /* older safari/Chrome browsers */
  -webkit-opacity: 0.8;
  /* Netscape and Older than Firefox 0.9 */
  -moz-opacity: 0.8;
  /* Safari 1.x (pre WebKit!) 老式khtml内核的Safari浏览器*/
  -khtml-opacity: 0.8;
  /* IE9 + etc...modern browsers */
  opacity: 0.8;
  /* IE 4-9 */
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  filter: alpha(opacity = 80);
}
[data-dpr="2"] .main-html .register .zhuce .email-tip {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .register .zhuce .email-tip {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .register .zhuce .email-tip {
  font-size: 39px;
}
[data-dpr="3"] .main-html .register .zhuce .email-tip {
  font-size: 42px;
}
[data-dpr="4"] .main-html .register .zhuce .email-tip {
  font-size: 56px;
}
.main-html .register .zhuce .form_bx {
  width: 100%;
  margin-top: 0.53333333rem;
}
.main-html .register .zhuce .form_bx input::-webkit-input-placeholder {
  color: #90aae8;
}
.main-html .register .zhuce .form_bx input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #90aae8;
}
.main-html .register .zhuce .form_bx input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #90aae8;
}
.main-html .register .zhuce .form_bx input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #90aae8;
}
.main-html .register .zhuce .form_bx .logo_form {
  width: 100%;
}
.main-html .register .zhuce .form_bx .logo_form .form_group {
  width: 100%;
  position: relative;
  *zoom: 1;
  height: 1.6rem;
  border-bottom-style: solid;
  border-bottom-color: #8fa9e8;
  border-bottom-width: 1px;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .logo_form .form_group {
  border-bottom-width: 1px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .logo_form .form_group {
  border-bottom-width: 1px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .logo_form .form_group {
  border-bottom-width: 1px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .logo_form .form_group {
  border-bottom-width: 2px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .logo_form .form_group {
  border-bottom-width: 2px;
}
.main-html .register .zhuce .form_bx .logo_form .form_group .input-group {
  width: 100%;
  height: 1.6rem;
  font-size: 14px;
  position: relative;
  *zoom: 1;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .logo_form .form_group .input-group {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .logo_form .form_group .input-group {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .logo_form .form_group .input-group {
  font-size: 39px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .logo_form .form_group .input-group {
  font-size: 42px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .logo_form .form_group .input-group {
  font-size: 56px;
}
.main-html .register .zhuce .form_bx .logo_form .form_group .input-group .form-control {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  outline: none;
  height: 1.6rem;
  padding-top: 0.8rem;
  padding-bottom: 0.26666667rem;
  background: none;
  border: none;
  color: #fff;
}
.main-html .register .zhuce .form_bx .logo_form .form_group .input-group .form-controll {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  outline: none;
  height: 1.14666667rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: none;
  border: none;
  color: #F8FCFE;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main-html .register .zhuce .form_bx .logo_form .form_group .input-group .form-input {
  height: 1.14666667rem;
  padding-left: 0.93333333rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-top: 0px;
  padding-bottom: 0px;
}
.main-html .register .zhuce .form_bx .logo_form .form_group .input-groupt {
  height: 1.14666667rem;
}
.main-html .register .zhuce .form_bx .logo_form .phone-group {
  padding-bottom: 0.26666667rem;
  border-bottom: 1px solid #8fa9e8;
}
.main-html .register .zhuce .form_bx .logo_form .phone-group .flag-container {
  float: left;
  color: #FFFFFF;
  height: 0.56rem;
  font-size: 18px;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .logo_form .phone-group .flag-container {
  font-size: 36px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .logo_form .phone-group .flag-container {
  font-size: 45px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .logo_form .phone-group .flag-container {
  font-size: 50px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .logo_form .phone-group .flag-container {
  font-size: 54px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .logo_form .phone-group .flag-container {
  font-size: 72px;
}
.main-html .register .zhuce .form_bx .logo_form .phone-group .flag-container i {
  display: inline-block;
  width: 0.29333333rem;
  margin-left: 0.13333333rem;
  margin-right: 0.26666667rem;
  vertical-align: middle;
  height: 0.16rem;
  background: url('../images/area/select.png') center top / auto 100% no-repeat;
  -webkit-background-size: 100% 100%;
          background-size: 100%;
}
.main-html .register .zhuce .form_bx .logo_form .phone-group .phone-right {
  padding-top: 0.06666667rem;
  float: left;
  border-bottom: 1px solid #8fa9e8;
  color: #fff;
  font-size: 14px;
  width: 72%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  background: none;
  border: none;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .logo_form .phone-group .phone-right {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .logo_form .phone-group .phone-right {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .logo_form .phone-group .phone-right {
  font-size: 39px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .logo_form .phone-group .phone-right {
  font-size: 42px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .logo_form .phone-group .phone-right {
  font-size: 56px;
}
.main-html .register .zhuce .form_bx .logo_form .form_fonem {
  height: 1.14666667rem;
}
.main-html .register .zhuce .form_bx .logo_form .form-group {
  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;
}
.main-html .register .zhuce .form_bx .logo_form .form-group .form-btn-fix-right {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 29%;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}
.main-html .register .zhuce .form_bx .logo_form .form-group .form-btn-fix-right .btn-dx {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  color: #4772d9;
  font-size: 14px;
  text-align: center;
  padding-top: 0.13333333rem;
  padding-bottom: 0.13333333rem;
  line-height: 0.53333333rem;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .logo_form .form-group .form-btn-fix-right .btn-dx {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .logo_form .form-group .form-btn-fix-right .btn-dx {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .logo_form .form-group .form-btn-fix-right .btn-dx {
  font-size: 39px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .logo_form .form-group .form-btn-fix-right .btn-dx {
  font-size: 42px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .logo_form .form-group .form-btn-fix-right .btn-dx {
  font-size: 56px;
}
.main-html .register .zhuce .form_bx .text-left {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.62666667rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-html .register .zhuce .form_bx .text-left .checkbox {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.42666667rem;
  height: 0.42666667rem;
  background-image: url('../images/area/no-checked.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .register .zhuce .form_bx .text-left .checkboxed {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.42666667rem;
  height: 0.42666667rem;
  background-image: url('../images/area/checked.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .register .zhuce .form_bx .text-left .check-text {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 12px;
  color: #FFFFFF;
  margin-left: 0.13333333rem;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .text-left .check-text {
  font-size: 24px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .text-left .check-text {
  font-size: 30px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .text-left .check-text {
  font-size: 33px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .text-left .check-text {
  font-size: 36px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .text-left .check-text {
  font-size: 48px;
}
.main-html .register .zhuce .form_bx .text-left .check-text .hoverzi {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  color: #FFFFFF;
}
.main-html .register .zhuce .form_bx .register-btn {
  width: 100%;
  font-weight: 600;
  text-align: center;
  background: #fff;
  color: #4772d9;
  font-size: 16px;
  padding-top: 11px;
  padding-bottom: 11px;
  margin-top: 10px;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .register-btn {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .register-btn {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .register-btn {
  font-size: 44px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .register-btn {
  font-size: 48px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .register-btn {
  font-size: 64px;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .register-btn {
  padding-top: 22px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .register-btn {
  padding-top: 28px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .register-btn {
  padding-top: 30px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .register-btn {
  padding-top: 33px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .register-btn {
  padding-top: 44px;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .register-btn {
  padding-bottom: 22px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .register-btn {
  padding-bottom: 28px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .register-btn {
  padding-bottom: 30px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .register-btn {
  padding-bottom: 33px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .register-btn {
  padding-bottom: 44px;
}
[data-dpr="2"] .main-html .register .zhuce .form_bx .register-btn {
  margin-top: 20px;
}
[data-dpr="2.5"] .main-html .register .zhuce .form_bx .register-btn {
  margin-top: 25px;
}
[data-dpr="2.75"] .main-html .register .zhuce .form_bx .register-btn {
  margin-top: 28px;
}
[data-dpr="3"] .main-html .register .zhuce .form_bx .register-btn {
  margin-top: 30px;
}
[data-dpr="4"] .main-html .register .zhuce .form_bx .register-btn {
  margin-top: 40px;
}
.main-html .register .zhuce .form_bx .btn_bx {
  width: 100%;
  height: 1.06666667rem;
  margin-top: 49px;
}
.main-html .register .zhuce .form_bx .btn_bx .btn-primary {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 100%;
  height: 1.06666667rem;
  background: #5667fd;
  text-align: center;
  line-height: 1.06666667rem;
  border-radius: 41px;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
}
.main-html .register .zhuce .form_bx #group-two {
  width: 67% !important;
}
.main-html #area #area-div {
  display: none;
}
.main-html #area .search-total {
  position: fixed;
  top: 0;
  width: 100%;
  height: 40px;
  margin-top: 8px;
  margin-bottom: 8px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  color: #121821;
  font-size: 14px;
  padding-left: 0.53333333rem;
  padding-right: 0.53333333rem;
  border-radius: 4px;
}
[data-dpr="2"] .main-html #area .search-total {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html #area .search-total {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html #area .search-total {
  font-size: 39px;
}
[data-dpr="3"] .main-html #area .search-total {
  font-size: 42px;
}
[data-dpr="4"] .main-html #area .search-total {
  font-size: 56px;
}
.main-html #area .search-total:before {
  content: '';
  height: 0.37333333rem;
  width: 0.37333333rem;
  display: inline-block;
  background: url('../images/area/search.png') center top / auto 100% no-repeat;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  position: absolute;
  left: 0.8rem;
  top: 31%;
}
.main-html #area .search-total .search-input {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  height: 40px;
  line-height: 40px;
  padding-left: 0.82666667rem;
  border: none;
  width: 100%;
  background: #eff0f3;
}
.main-html #area .global-total {
  margin-left: 0.53333333rem;
  overflow: auto;
}
.main-html #area .global-total .global-item {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 0.32rem;
  padding-right: 0.53333333rem;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #eff0f3;
}
.main-html #area .global-total .global-item .item-left {
  float: left;
  color: #121821;
  font-size: 16px;
  line-height: 0.69333333rem;
}
[data-dpr="2"] .main-html #area .global-total .global-item .item-left {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html #area .global-total .global-item .item-left {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html #area .global-total .global-item .item-left {
  font-size: 44px;
}
[data-dpr="3"] .main-html #area .global-total .global-item .item-left {
  font-size: 48px;
}
[data-dpr="4"] .main-html #area .global-total .global-item .item-left {
  font-size: 64px;
}
.main-html #area .global-total .global-item .item-right {
  float: right;
  color: #3e4551;
  font-size: 14px;
  line-height: 0.69333333rem;
}
[data-dpr="2"] .main-html #area .global-total .global-item .item-right {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html #area .global-total .global-item .item-right {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html #area .global-total .global-item .item-right {
  font-size: 39px;
}
[data-dpr="3"] .main-html #area .global-total .global-item .item-right {
  font-size: 42px;
}
[data-dpr="4"] .main-html #area .global-total .global-item .item-right {
  font-size: 56px;
}
.main-html #area .area-none {
  text-align: center;
  margin-top: 4rem;
  width: 2.37333333rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.main-html #area .area-none img {
  width: 2.37333333rem;
  height: 2.53333333rem;
}
.main-html #area .area-none span {
  display: block;
  color: #A6AEBB;
  padding-top: 1.2rem;
  font-size: 13px;
}
[data-dpr="2"] .main-html #area .area-none span {
  font-size: 26px;
}
[data-dpr="2.5"] .main-html #area .area-none span {
  font-size: 33px;
}
[data-dpr="2.75"] .main-html #area .area-none span {
  font-size: 36px;
}
[data-dpr="3"] .main-html #area .area-none span {
  font-size: 39px;
}
[data-dpr="4"] .main-html #area .area-none span {
  font-size: 52px;
}
.main-html .red-avtivity {
  width: 100%;
  /*height: 100%;*/
}
.main-html .red-avtivity .tou {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  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;
  position: relative;
  *zoom: 1;
}
.main-html .red-avtivity .tou span:nth-of-type(1) {
  width: 3.68rem;
  height: 2.49333333rem;
  background-image: url('../images/page/zuoyun.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  margin-top: 0.77333333rem;
}
.main-html .red-avtivity .tou span:nth-of-type(2) {
  width: 7.58666667rem;
  height: 1.12rem;
  background-image: url('../images/page/biao.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.main-html .red-avtivity .tou span:nth-of-type(3) {
  width: 3.68rem;
  height: 2.49333333rem;
  background-image: url('../images/page/youyun.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .red-avtivity .red {
  text-align: center;
  position: relative;
  *zoom: 1;
}
.main-html .red-avtivity .red .red-shu {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  margin-top: 1.6rem;
  text-align: center;
  color: #FFFFFF;
}
.main-html .red-avtivity .red .red-shu p:nth-of-type(1) {
  font-size: 20px;
  margin-bottom: 0.26666667rem;
}
[data-dpr="2"] .main-html .red-avtivity .red .red-shu p:nth-of-type(1) {
  font-size: 40px;
}
[data-dpr="2.5"] .main-html .red-avtivity .red .red-shu p:nth-of-type(1) {
  font-size: 50px;
}
[data-dpr="2.75"] .main-html .red-avtivity .red .red-shu p:nth-of-type(1) {
  font-size: 55px;
}
[data-dpr="3"] .main-html .red-avtivity .red .red-shu p:nth-of-type(1) {
  font-size: 60px;
}
[data-dpr="4"] .main-html .red-avtivity .red .red-shu p:nth-of-type(1) {
  font-size: 80px;
}
.main-html .red-avtivity .red .red-shu p:nth-of-type(2) {
  font-size: 12px;
}
[data-dpr="2"] .main-html .red-avtivity .red .red-shu p:nth-of-type(2) {
  font-size: 24px;
}
[data-dpr="2.5"] .main-html .red-avtivity .red .red-shu p:nth-of-type(2) {
  font-size: 30px;
}
[data-dpr="2.75"] .main-html .red-avtivity .red .red-shu p:nth-of-type(2) {
  font-size: 33px;
}
[data-dpr="3"] .main-html .red-avtivity .red .red-shu p:nth-of-type(2) {
  font-size: 36px;
}
[data-dpr="4"] .main-html .red-avtivity .red .red-shu p:nth-of-type(2) {
  font-size: 48px;
}
.main-html .red-avtivity .red > img {
  width: 8rem;
  height: 10.93333333rem;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .red-avtivity .redchai {
  text-align: center;
  position: relative;
  *zoom: 1;
}
.main-html .red-avtivity .redchai .red-shu {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  margin-top: 1.06666667rem;
  text-align: center;
  color: #FF002A;
}
.main-html .red-avtivity .redchai .red-shu p:nth-of-type(1) {
  font-size: 20px;
  margin-bottom: 0.26666667rem;
}
[data-dpr="2"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(1) {
  font-size: 40px;
}
[data-dpr="2.5"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(1) {
  font-size: 50px;
}
[data-dpr="2.75"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(1) {
  font-size: 55px;
}
[data-dpr="3"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(1) {
  font-size: 60px;
}
[data-dpr="4"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(1) {
  font-size: 80px;
}
.main-html .red-avtivity .redchai .red-shu p:nth-of-type(2) {
  font-size: 30px;
  font-weight: bold;
}
[data-dpr="2"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(2) {
  font-size: 60px;
}
[data-dpr="2.5"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(2) {
  font-size: 75px;
}
[data-dpr="2.75"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(2) {
  font-size: 83px;
}
[data-dpr="3"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(2) {
  font-size: 90px;
}
[data-dpr="4"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(2) {
  font-size: 120px;
}
.main-html .red-avtivity .redchai .red-shu p:nth-of-type(3) {
  color: #666666;
  font-size: 16px;
}
[data-dpr="2"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(3) {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(3) {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(3) {
  font-size: 44px;
}
[data-dpr="3"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(3) {
  font-size: 48px;
}
[data-dpr="4"] .main-html .red-avtivity .redchai .red-shu p:nth-of-type(3) {
  font-size: 64px;
}
.main-html .red-avtivity .redchai > img {
  width: 8rem;
  height: 10.93333333rem;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .red-avtivity .redchai .red-btn {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  margin-top: 7.24rem;
  text-align: center;
}
.main-html .red-avtivity .redchai .red-btn .btn {
  width: 6rem;
  height: 1.33333333rem;
  font-size: 20px;
  color: #FF002A;
  border-radius: 100px;
  background: #ffeed1;
  margin-bottom: 0.32rem;
  line-height: 1.33333333rem;
  margin-right: auto;
  margin-left: auto;
}
[data-dpr="2"] .main-html .red-avtivity .redchai .red-btn .btn {
  font-size: 40px;
}
[data-dpr="2.5"] .main-html .red-avtivity .redchai .red-btn .btn {
  font-size: 50px;
}
[data-dpr="2.75"] .main-html .red-avtivity .redchai .red-btn .btn {
  font-size: 55px;
}
[data-dpr="3"] .main-html .red-avtivity .redchai .red-btn .btn {
  font-size: 60px;
}
[data-dpr="4"] .main-html .red-avtivity .redchai .red-btn .btn {
  font-size: 80px;
}
.main-html .red-avtivity .redchai .red-btn .tishi {
  font-size: 14px;
  color: #ffffff;
}
[data-dpr="2"] .main-html .red-avtivity .redchai .red-btn .tishi {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .red-avtivity .redchai .red-btn .tishi {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .red-avtivity .redchai .red-btn .tishi {
  font-size: 39px;
}
[data-dpr="3"] .main-html .red-avtivity .redchai .red-btn .tishi {
  font-size: 42px;
}
[data-dpr="4"] .main-html .red-avtivity .redchai .red-btn .tishi {
  font-size: 56px;
}
.main-html .red-avtivity .foot {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #D4ADE1;
}
[data-dpr="2"] .main-html .red-avtivity .foot {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .red-avtivity .foot {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .red-avtivity .foot {
  font-size: 39px;
}
[data-dpr="3"] .main-html .red-avtivity .foot {
  font-size: 42px;
}
[data-dpr="4"] .main-html .red-avtivity .foot {
  font-size: 56px;
}
.main-html .red-avtivity .foot .tu {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 0.37333333rem;
  height: 0.37333333rem;
  vertical-align: middle;
  background-image: url('../images/page/activeru.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .red-avtivity .foot-kong {
  height: 1.33333333rem;
}
.main-html .red-avtivity .fot {
  padding-bottom: 0.89333333rem;
}
.main-html .red-avtivity .tan {
  min-width: 8.5em;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 90;
  background: rgba(0, 0, 0, 0.8) center center no-repeat;
}
.main-html .red-avtivity .tan .dialog-wrappp {
  position: relative;
  *zoom: 1;
}
.main-html .red-avtivity .tan .dialog-wrappp .text-biaoo {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  color: #FFFFFF;
  font-size: 20px;
  text-align: center;
  margin-top: 1.46666667rem;
}
[data-dpr="2"] .main-html .red-avtivity .tan .dialog-wrappp .text-biaoo {
  font-size: 40px;
}
[data-dpr="2.5"] .main-html .red-avtivity .tan .dialog-wrappp .text-biaoo {
  font-size: 50px;
}
[data-dpr="2.75"] .main-html .red-avtivity .tan .dialog-wrappp .text-biaoo {
  font-size: 55px;
}
[data-dpr="3"] .main-html .red-avtivity .tan .dialog-wrappp .text-biaoo {
  font-size: 60px;
}
[data-dpr="4"] .main-html .red-avtivity .tan .dialog-wrappp .text-biaoo {
  font-size: 80px;
}
.main-html .red-avtivity .tan .dialog-wrappp .text-biaoo .text-fir {
  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;
}
.main-html .red-avtivity .tan .dialog-wrappp .text-biaoo .text-fir .yuan {
  margin-left: 0.34666667rem;
}
.main-html .red-avtivity .tan .dialog-wrappp .text-biaoo .text-fir .yuan > span {
  display: inline-block;
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.13333333rem;
  background: #ffffff;
  border-radius: 50%;
}
.main-html .red-avtivity .tan .dialog-wrappp .text-biaoo .check {
  margin-top: 0.22666667rem;
}
.main-html .red-avtivity .tan .dialog-wrappp .jiantou {
  position: absolute;
  width: 2.12rem;
  height: 2.48rem;
  background-image: url('../images/page/Fill 19 Copy@2x.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  right: 0.34666667rem;
}
.main-html .download-total {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}
.main-html .download-total .tan {
  min-width: 8.5em;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  z-index: 90;
  background: rgba(0, 0, 0, 0.8) center center no-repeat;
}
.main-html .download-total .tan .dialog-wrappp {
  position: relative;
  *zoom: 1;
}
.main-html .download-total .tan .dialog-wrappp .text-biaoo {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  color: #FFFFFF;
  font-size: 20px;
  text-align: center;
  margin-top: 1.46666667rem;
}
[data-dpr="2"] .main-html .download-total .tan .dialog-wrappp .text-biaoo {
  font-size: 40px;
}
[data-dpr="2.5"] .main-html .download-total .tan .dialog-wrappp .text-biaoo {
  font-size: 50px;
}
[data-dpr="2.75"] .main-html .download-total .tan .dialog-wrappp .text-biaoo {
  font-size: 55px;
}
[data-dpr="3"] .main-html .download-total .tan .dialog-wrappp .text-biaoo {
  font-size: 60px;
}
[data-dpr="4"] .main-html .download-total .tan .dialog-wrappp .text-biaoo {
  font-size: 80px;
}
.main-html .download-total .tan .dialog-wrappp .text-biaoo .text-fir {
  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;
}
.main-html .download-total .tan .dialog-wrappp .text-biaoo .text-fir .yuan {
  margin-left: 0.34666667rem;
}
.main-html .download-total .tan .dialog-wrappp .text-biaoo .text-fir .yuan > span {
  display: inline-block;
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.13333333rem;
  background: #ffffff;
  border-radius: 50%;
}
.main-html .download-total .tan .dialog-wrappp .text-biaoo .check {
  margin-top: 0.22666667rem;
}
.main-html .download-total .tan .dialog-wrappp .jiantou {
  position: absolute;
  width: 2.12rem;
  height: 2.48rem;
  background-image: url('../images/page/Fill 19 Copy@2x.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  right: 0.34666667rem;
}
.main-html .download-total .download-top {
  text-align: center;
}
.main-html .download-total .download-top .top-logo {
  margin-top: 1.06666667rem;
  width: 1.86666667rem;
  height: 1.86666667rem;
}
.main-html .download-total .download-top .top-title {
  font-size: 25px;
  color: #121821;
  margin-top: 0.4rem;
}
[data-dpr="2"] .main-html .download-total .download-top .top-title {
  font-size: 50px;
}
[data-dpr="2.5"] .main-html .download-total .download-top .top-title {
  font-size: 63px;
}
[data-dpr="2.75"] .main-html .download-total .download-top .top-title {
  font-size: 69px;
}
[data-dpr="3"] .main-html .download-total .download-top .top-title {
  font-size: 75px;
}
[data-dpr="4"] .main-html .download-total .download-top .top-title {
  font-size: 100px;
}
.main-html .download-total .download-top .top-title_weight {
  margin-top: 0.4rem;
  font-size: 25px;
  font-weight: 500;
}
[data-dpr="2"] .main-html .download-total .download-top .top-title_weight {
  font-size: 50px;
}
[data-dpr="2.5"] .main-html .download-total .download-top .top-title_weight {
  font-size: 63px;
}
[data-dpr="2.75"] .main-html .download-total .download-top .top-title_weight {
  font-size: 69px;
}
[data-dpr="3"] .main-html .download-total .download-top .top-title_weight {
  font-size: 75px;
}
[data-dpr="4"] .main-html .download-total .download-top .top-title_weight {
  font-size: 100px;
}
.main-html .download-total .download-top .top-text {
  margin-top: 0.06666667rem;
  margin-bottom: 0.24rem;
  font-size: 16px;
  color: #a6aebb;
}
[data-dpr="2"] .main-html .download-total .download-top .top-text {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .download-total .download-top .top-text {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .download-total .download-top .top-text {
  font-size: 44px;
}
[data-dpr="3"] .main-html .download-total .download-top .top-text {
  font-size: 48px;
}
[data-dpr="4"] .main-html .download-total .download-top .top-text {
  font-size: 64px;
}
.main-html .download-total .download-top .top-tip {
  font-size: 12px;
  color: #3e4551;
  line-height: 2;
  margin-bottom: 0.26666667rem;
  text-align: left;
}
[data-dpr="2"] .main-html .download-total .download-top .top-tip {
  font-size: 24px;
}
[data-dpr="2.5"] .main-html .download-total .download-top .top-tip {
  font-size: 30px;
}
[data-dpr="2.75"] .main-html .download-total .download-top .top-tip {
  font-size: 33px;
}
[data-dpr="3"] .main-html .download-total .download-top .top-tip {
  font-size: 36px;
}
[data-dpr="4"] .main-html .download-total .download-top .top-tip {
  font-size: 48px;
}
.main-html .download-total .download-top .install-a {
  margin: auto;
  display: block;
  height: 1.2rem;
  width: 100%;
  background: #4772d9;
  line-height: 1.2rem;
  font-size: 16px;
  color: #FFFFFF;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border-top-left-radius: 0.05333333rem;
  border-top-right-radius: 0.05333333rem;
  border-bottom-right-radius: 0.05333333rem;
  border-bottom-left-radius: 0.05333333rem;
  border-radius: 0.05333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 12px 0 #397aff;
          box-shadow: 0 2px 12px 0 #397aff;
}
[data-dpr="2"] .main-html .download-total .download-top .install-a {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .download-total .download-top .install-a {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .download-total .download-top .install-a {
  font-size: 44px;
}
[data-dpr="3"] .main-html .download-total .download-top .install-a {
  font-size: 48px;
}
[data-dpr="4"] .main-html .download-total .download-top .install-a {
  font-size: 64px;
}
.main-html .download-total .download-title {
  margin-top: 1.13333333rem;
  margin-bottom: 0.44rem;
  height: 0.66666667rem;
  font-weight: bold;
  line-height: 0.66666667rem;
  font-size: 16px;
  color: #454545;
  text-align: left;
}
[data-dpr="2"] .main-html .download-total .download-title {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .download-total .download-title {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .download-total .download-title {
  font-size: 44px;
}
[data-dpr="3"] .main-html .download-total .download-title {
  font-size: 48px;
}
[data-dpr="4"] .main-html .download-total .download-title {
  font-size: 64px;
}
.main-html .download-total .download-title i {
  display: inline-block;
  margin-bottom: 0.13333333rem;
  height: 1px;
  width: 1.73333333rem;
}
.main-html .download-total .download-title i:nth-child(1) {
  background-image: -webkit-gradient(linear, right top, left top, from(#939393), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(right, #939393 0%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(-90deg, #939393 0%, rgba(255, 255, 255, 0) 100%);
  margin-right: 0.26666667rem;
}
.main-html .download-total .download-title i:nth-child(2) {
  margin-left: 0.26666667rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#939393), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, #939393 0%, rgba(255, 255, 255, 0) 100%);
  background-image: linear-gradient(90deg, #939393 0%, rgba(255, 255, 255, 0) 100%);
}
.main-html .download-total .download-tips {
  width: 100%;
  font-size: 14px;
  color: #888888;
  line-height: 0.53333333rem;
  margin-bottom: 0.26666667rem;
}
[data-dpr="2"] .main-html .download-total .download-tips {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .download-total .download-tips {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .download-total .download-tips {
  font-size: 39px;
}
[data-dpr="3"] .main-html .download-total .download-tips {
  font-size: 42px;
}
[data-dpr="4"] .main-html .download-total .download-tips {
  font-size: 56px;
}
.main-html .download-total .android-img {
  display: block;
  width: 5.62666667rem;
  text-align: center;
  margin: auto;
  margin-bottom: 0.64rem;
}
.main-html .download-total .ios-content .block1 {
  margin-top: 0.66666667rem;
}
.main-html .download-total .ios-content .block1.mt18 {
  margin-top: 0.24rem;
}
.main-html .download-total .ios-content .block1 p {
  font-size: 12px;
  color: #3e4551;
  line-height: 2;
}
[data-dpr="2"] .main-html .download-total .ios-content .block1 p {
  font-size: 24px;
}
[data-dpr="2.5"] .main-html .download-total .ios-content .block1 p {
  font-size: 30px;
}
[data-dpr="2.75"] .main-html .download-total .ios-content .block1 p {
  font-size: 33px;
}
[data-dpr="3"] .main-html .download-total .ios-content .block1 p {
  font-size: 36px;
}
[data-dpr="4"] .main-html .download-total .ios-content .block1 p {
  font-size: 48px;
}
.main-html .download-total .ios-content .block1 p.btm {
  margin-bottom: 0.26666667rem;
}
.main-html .download-total .ios-content .block1 .tutorial_info {
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-box-pack: justify;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.main-html .download-total .ios-content .block1 .tutorial_info a {
  color: #4772d9;
  font-size: 12px;
}
[data-dpr="2"] .main-html .download-total .ios-content .block1 .tutorial_info a {
  font-size: 24px;
}
[data-dpr="2.5"] .main-html .download-total .ios-content .block1 .tutorial_info a {
  font-size: 30px;
}
[data-dpr="2.75"] .main-html .download-total .ios-content .block1 .tutorial_info a {
  font-size: 33px;
}
[data-dpr="3"] .main-html .download-total .ios-content .block1 .tutorial_info a {
  font-size: 36px;
}
[data-dpr="4"] .main-html .download-total .ios-content .block1 .tutorial_info a {
  font-size: 48px;
}
.main-html .download-total .ios-content .block1 .download-link {
  color: #4772d9;
  -webkit-text-decoration-color: #4772d9;
     -moz-text-decoration-color: #4772d9;
          text-decoration-color: #4772d9;
  -webkit-text-decoration-line: underline;
     -moz-text-decoration-line: underline;
          text-decoration-line: underline;
  font-weight: bold;
}
.main-html .download-total .ios-content .block1 .download-link_btn {
  display: block;
  width: 9.2rem;
  height: 1.2rem;
  line-height: 1.2rem;
  margin: 0 auto;
  margin-top: 0.13333333rem;
  margin-bottom: 0.26666667rem;
  text-align: center;
  font-size: 16px;
  color: #4772d9;
  border: 1px solid #4772d9;
  text-decoration: none;
  border-top-left-radius: 0.05333333rem;
  border-top-right-radius: 0.05333333rem;
  border-bottom-right-radius: 0.05333333rem;
  border-bottom-left-radius: 0.05333333rem;
  border-radius: 0.05333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
}
[data-dpr="2"] .main-html .download-total .ios-content .block1 .download-link_btn {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .download-total .ios-content .block1 .download-link_btn {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .download-total .ios-content .block1 .download-link_btn {
  font-size: 44px;
}
[data-dpr="3"] .main-html .download-total .ios-content .block1 .download-link_btn {
  font-size: 48px;
}
[data-dpr="4"] .main-html .download-total .ios-content .block1 .download-link_btn {
  font-size: 64px;
}
.main-html .download-total .ios-content .block2 {
  margin-top: 0.66666667rem;
}
.main-html .download-total .ios-content .block2 .icon-ask {
  display: inline-block;
  width: 0.45333333rem;
  height: 0.45333333rem;
  background: url('../images/common/icon-ask.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  position: relative;
  *zoom: 1;
  top: 2px;
}
.main-html .download-total .ios-content .block2 .title {
  margin-bottom: 0.26666667rem;
}
.main-html .download-total .ios-content .block2 .title span {
  color: #121821;
  font-size: 16px;
  margin-left: 0.13333333rem;
  font-weight: bold;
}
[data-dpr="2"] .main-html .download-total .ios-content .block2 .title span {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .download-total .ios-content .block2 .title span {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .download-total .ios-content .block2 .title span {
  font-size: 44px;
}
[data-dpr="3"] .main-html .download-total .ios-content .block2 .title span {
  font-size: 48px;
}
[data-dpr="4"] .main-html .download-total .ios-content .block2 .title span {
  font-size: 64px;
}
.main-html .download-total .ios-content .block2 p {
  font-size: 14px;
  color: #3e4551;
  line-height: 2;
}
[data-dpr="2"] .main-html .download-total .ios-content .block2 p {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .download-total .ios-content .block2 p {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .download-total .ios-content .block2 p {
  font-size: 39px;
}
[data-dpr="3"] .main-html .download-total .ios-content .block2 p {
  font-size: 42px;
}
[data-dpr="4"] .main-html .download-total .ios-content .block2 p {
  font-size: 56px;
}
.main-html .download-total .ios-content .block2 .link {
  width: 100%;
  margin-top: 0.13333333rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background: #7694dd;
  color: #4772d9;
  padding-left: 0.26666667rem;
  padding-right: 0.26666667rem;
  padding-top: 0.06666667rem;
  padding-bottom: 0.06666667rem;
  font-size: 14px;
  line-height: 1.6;
  word-break: break-word;
}
[data-dpr="2"] .main-html .download-total .ios-content .block2 .link {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .download-total .ios-content .block2 .link {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .download-total .ios-content .block2 .link {
  font-size: 39px;
}
[data-dpr="3"] .main-html .download-total .ios-content .block2 .link {
  font-size: 42px;
}
[data-dpr="4"] .main-html .download-total .ios-content .block2 .link {
  font-size: 56px;
}
.main-html .download-total .ios-content .block2 .link a {
  display: block;
  *zoom: 1;
  font-family: PingFang SC;
  color: #4772d9;
}
.main-html .download-total .ios-content .block2 .link a:before,
.main-html .download-total .ios-content .block2 .link a:after {
  content: "";
  display: table;
}
.main-html .download-total .ios-content .block2 .link a:after {
  clear: both;
}
.main-html .download-total .ios-content .block2 .link a:before,
.main-html .download-total .ios-content .block2 .link a:after {
  content: "";
  display: table;
}
.main-html .download-total .ios-content .block2 .link a:after {
  clear: both;
}
.main-html .download-total .ios-content .block2 .link a span {
  float: left;
}
.main-html .download-total .ios-content .block2 .link a:visited {
  color: #4772d9;
}
.main-html .download-total .backup-content {
  margin-top: 0.4rem;
}
.main-html .download-total .backup-content .backup-btn {
  display: block;
  width: 9.2rem;
  height: 1.2rem;
  line-height: 1.2rem;
  margin: 0 auto;
  margin-top: 0.13333333rem;
  margin-bottom: 0.26666667rem;
  text-align: center;
  font-size: 16px;
  color: #4772d9;
  border: 1px solid #4772d9;
  text-decoration: none;
  border-top-left-radius: 0.05333333rem;
  border-top-right-radius: 0.05333333rem;
  border-bottom-right-radius: 0.05333333rem;
  border-bottom-left-radius: 0.05333333rem;
  border-radius: 0.05333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
}
[data-dpr="2"] .main-html .download-total .backup-content .backup-btn {
  font-size: 32px;
}
[data-dpr="2.5"] .main-html .download-total .backup-content .backup-btn {
  font-size: 40px;
}
[data-dpr="2.75"] .main-html .download-total .backup-content .backup-btn {
  font-size: 44px;
}
[data-dpr="3"] .main-html .download-total .backup-content .backup-btn {
  font-size: 48px;
}
[data-dpr="4"] .main-html .download-total .backup-content .backup-btn {
  font-size: 64px;
}
.main-html .download-total.up-android {
  padding-left: 0;
  padding-right: 0;
  background-color: #101115;
}
.main-html .download-total.up-android .download-top,
.main-html .download-total.up-android .backup-content {
  padding-left: 0.74666667rem;
  padding-right: 0.72rem;
}
.main-html .download-total.up-android .top-logo {
  width: 10rem;
  height: 2.82666667rem;
  margin-top: 1.06666667rem;
}
.main-html .download-total.up-android .version-icon {
  margin-top: 0.61333333rem;
  text-align: center;
  font-size: 15px;
  color: #ffffff;
}
[data-dpr="2"] .main-html .download-total.up-android .version-icon {
  font-size: 30px;
}
[data-dpr="2.5"] .main-html .download-total.up-android .version-icon {
  font-size: 38px;
}
[data-dpr="2.75"] .main-html .download-total.up-android .version-icon {
  font-size: 41px;
}
[data-dpr="3"] .main-html .download-total.up-android .version-icon {
  font-size: 45px;
}
[data-dpr="4"] .main-html .download-total.up-android .version-icon {
  font-size: 60px;
}
.main-html .download-total.up-android .version-icon img {
  float: left;
  width: 0.37333333rem;
  height: 0.37333333rem;
  margin-right: 0.06666667rem;
  margin-top: 0.08rem;
}
.main-html .download-total.up-android .version-icon span {
  display: inline-block;
}
.main-html .download-total.up-android .version-icon span:first-child {
  margin-right: 0.66666667rem;
}
.main-html .download-total.up-android .top-text {
  margin-top: 0.33333333rem;
  color: #fff;
  font-size: 14px;
}
[data-dpr="2"] .main-html .download-total.up-android .top-text {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .download-total.up-android .top-text {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .download-total.up-android .top-text {
  font-size: 39px;
}
[data-dpr="3"] .main-html .download-total.up-android .top-text {
  font-size: 42px;
}
[data-dpr="4"] .main-html .download-total.up-android .top-text {
  font-size: 56px;
}
.main-html .download-total.up-android .install-a {
  width: auto;
  margin-top: 0.66666667rem;
  margin-bottom: 0;
  height: 1.17333333rem;
  line-height: 1.17333333rem;
  font-size: 0.32rem;
  color: #fff;
  font-weight: 500;
  background: #1ea2b4;
  border-style: solid;
  border-color: transparent;
  border-width: 0.02666667rem;
  border-top-left-radius: 0.13333333rem;
  border-top-right-radius: 0.13333333rem;
  border-bottom-right-radius: 0.13333333rem;
  border-bottom-left-radius: 0.13333333rem;
  border-radius: 0.13333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.main-html .download-total.up-android .install-a.plain {
  margin-top: 0.4rem;
  color: #1ea2b4;
  border-color: #1ea2b4;
  background: transparent;
}
.main-html .download-total.up-android .backup-content .backup-btn {
  width: auto;
  margin-top: 0.4rem;
  margin-bottom: 0;
  color: #fff;
  border: 2px solid #fff;
  border-top-left-radius: 0.13333333rem;
  border-top-right-radius: 0.13333333rem;
  border-bottom-right-radius: 0.13333333rem;
  border-bottom-left-radius: 0.13333333rem;
  border-radius: 0.13333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
}
.main-html .download-total.up-android .download-title {
  margin-left: 0.74666667rem;
  margin-right: 0.72rem;
  margin-top: 0.8rem;
  color: #fff;
}
.main-html .download-total.up-android .download-tips {
  width: auto;
  margin-top: 0.21333333rem;
  padding-left: 0.74666667rem;
  padding-right: 0.72rem;
  color: #fff;
}
.main-html .download-total.up-android .android-img-box {
  margin-left: 0.74666667rem;
  margin-right: 0.72rem;
  margin-top: 0.46666667rem;
  padding-top: 0.29333333rem;
  padding-bottom: 0.28rem;
  background: #4c4c4c;
  border-top-left-radius: 0.13333333rem;
  border-top-right-radius: 0.13333333rem;
  border-bottom-right-radius: 0.13333333rem;
  border-bottom-left-radius: 0.13333333rem;
  border-radius: 0.13333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
}
.main-html .download-total.up-android .android-img-box .android-img {
  margin-bottom: 0;
}
.main-html .download-total.up-android .android-content-bg {
  height: 9.52rem;
  background-image: url('../images/page/download/download-bg33.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .download-total.up-android .content-append {
  margin-left: 0.74666667rem;
  margin-right: 0.72rem;
  margin-top: 0.84rem;
  font-size: 12px;
  color: #fff;
}
[data-dpr="2"] .main-html .download-total.up-android .content-append {
  font-size: 24px;
}
[data-dpr="2.5"] .main-html .download-total.up-android .content-append {
  font-size: 30px;
}
[data-dpr="2.75"] .main-html .download-total.up-android .content-append {
  font-size: 33px;
}
[data-dpr="3"] .main-html .download-total.up-android .content-append {
  font-size: 36px;
}
[data-dpr="4"] .main-html .download-total.up-android .content-append {
  font-size: 48px;
}
.main-html .download-total.up-android .content-append dt {
  margin-bottom: 0.21333333rem;
  font-size: 15px;
}
[data-dpr="2"] .main-html .download-total.up-android .content-append dt {
  font-size: 30px;
}
[data-dpr="2.5"] .main-html .download-total.up-android .content-append dt {
  font-size: 38px;
}
[data-dpr="2.75"] .main-html .download-total.up-android .content-append dt {
  font-size: 41px;
}
[data-dpr="3"] .main-html .download-total.up-android .content-append dt {
  font-size: 45px;
}
[data-dpr="4"] .main-html .download-total.up-android .content-append dt {
  font-size: 60px;
}
.main-html .download-total.up-ios {
  padding-left: 0;
  padding-right: 0;
  background-color: #101115;
  color: #fff;
}
.main-html .download-total.up-ios .download-top {
  padding-bottom: 0.53333333rem;
}
.main-html .download-total.up-ios .download-top,
.main-html .download-total.up-ios .ios-content-wrap {
  padding-left: 0.74666667rem;
  padding-right: 0.72rem;
}
.main-html .download-total.up-ios .top-logo {
  width: 10rem;
  height: 2.82666667rem;
  margin-top: 1.06666667rem;
}
.main-html .download-total.up-ios .version-icon {
  margin-top: 0.61333333rem;
  text-align: center;
  font-size: 15px;
  color: #ffffff;
}
[data-dpr="2"] .main-html .download-total.up-ios .version-icon {
  font-size: 30px;
}
[data-dpr="2.5"] .main-html .download-total.up-ios .version-icon {
  font-size: 38px;
}
[data-dpr="2.75"] .main-html .download-total.up-ios .version-icon {
  font-size: 41px;
}
[data-dpr="3"] .main-html .download-total.up-ios .version-icon {
  font-size: 45px;
}
[data-dpr="4"] .main-html .download-total.up-ios .version-icon {
  font-size: 60px;
}
.main-html .download-total.up-ios .version-icon img {
  float: left;
  width: 0.37333333rem;
  height: 0.37333333rem;
  margin-right: 0.06666667rem;
  margin-top: 0.08rem;
}
.main-html .download-total.up-ios .version-icon span {
  display: inline-block;
}
.main-html .download-total.up-ios .version-icon span:first-child {
  margin-right: 0.66666667rem;
}
.main-html .download-total.up-ios .top-text {
  margin-top: 0.33333333rem;
  color: #fff;
  font-size: 14px;
}
[data-dpr="2"] .main-html .download-total.up-ios .top-text {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .download-total.up-ios .top-text {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .download-total.up-ios .top-text {
  font-size: 39px;
}
[data-dpr="3"] .main-html .download-total.up-ios .top-text {
  font-size: 42px;
}
[data-dpr="4"] .main-html .download-total.up-ios .top-text {
  font-size: 56px;
}
.main-html .download-total.up-ios .install-a {
  position: relative;
  width: auto;
  height: 1.38666667rem;
  margin-top: 0.66666667rem;
  margin-bottom: 0;
  color: #4772da;
  background: #fff;
  border: 2px solid #fff;
  border-top-left-radius: 0.13333333rem;
  border-top-right-radius: 0.13333333rem;
  border-bottom-right-radius: 0.13333333rem;
  border-bottom-left-radius: 0.13333333rem;
  border-radius: 0.13333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
}
.main-html .download-total.up-ios .install-a img {
  display: inline-block;
  position: relative;
  top: 0.04rem;
  width: 0.50666667rem;
  height: 0.50666667rem;
  margin-right: 0.2rem;
}
.main-html .download-total.up-ios .install-a .alternate-tip {
  position: absolute;
  right: -6px;
  bottom: 0.04rem;
  z-index: 2;
  display: inline-block;
  padding-left: 0.24rem;
  padding-right: 0.18666667rem;
  padding-top: 0.08rem;
  padding-bottom: 0.08rem;
  color: #fff;
  font-size: 10px;
  line-height: 10px;
  background-color: #ff7200;
  border-radius: 100px 0 0 100px;
}
[data-dpr="2"] .main-html .download-total.up-ios .install-a .alternate-tip {
  font-size: 20px;
}
[data-dpr="2.5"] .main-html .download-total.up-ios .install-a .alternate-tip {
  font-size: 25px;
}
[data-dpr="2.75"] .main-html .download-total.up-ios .install-a .alternate-tip {
  font-size: 28px;
}
[data-dpr="3"] .main-html .download-total.up-ios .install-a .alternate-tip {
  font-size: 30px;
}
[data-dpr="4"] .main-html .download-total.up-ios .install-a .alternate-tip {
  font-size: 40px;
}
[data-dpr="2"] .main-html .download-total.up-ios .install-a .alternate-tip {
  line-height: 20px;
}
[data-dpr="2.5"] .main-html .download-total.up-ios .install-a .alternate-tip {
  line-height: 25px;
}
[data-dpr="2.75"] .main-html .download-total.up-ios .install-a .alternate-tip {
  line-height: 28px;
}
[data-dpr="3"] .main-html .download-total.up-ios .install-a .alternate-tip {
  line-height: 30px;
}
[data-dpr="4"] .main-html .download-total.up-ios .install-a .alternate-tip {
  line-height: 40px;
}
.main-html .download-total.up-ios .ios-content {
  height: 9.52rem;
  padding-bottom: 0.93333333rem;
  background-image: url('../images/page/download/download-bg33.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}
.main-html .download-total.up-ios .block1 .download-link_btn {
  width: auto;
  margin-top: 0.4rem;
  margin-bottom: 0;
  color: #fff;
  border: 2px solid #fff;
  border-top-left-radius: 0.13333333rem;
  border-top-right-radius: 0.13333333rem;
  border-bottom-right-radius: 0.13333333rem;
  border-bottom-left-radius: 0.13333333rem;
  border-radius: 0.13333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
}
.main-html .download-total.up-ios .block1 p.btm {
  color: #fff;
}
.main-html .download-total.up-ios .block2 p {
  color: #fff;
}
.main-html .download-total.up-ios .block2 .title span {
  color: #fff;
}
.main-html .download-total.up-ios .block2 .link {
  background: #4c4c4c;
  border-top-left-radius: 0.13333333rem;
  border-top-right-radius: 0.13333333rem;
  border-bottom-right-radius: 0.13333333rem;
  border-bottom-left-radius: 0.13333333rem;
  border-radius: 0.13333333rem;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
}
.main-html .download-total.up-ios .block2 .link a {
  display: block;
  width: 100%;
  color: #fff;
}
.main-html .download-total.up-ios .block2 .link a:visited {
  color: #fff;
}
.main-html .download-total .logo-bg {
  width: 10rem;
  height: 8.76rem;
  background-image: url('../images/page/download/big-logo-bg44.png');
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
  background-position: 0 1rem;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #101115;
}
.main-html .download-total .margin-logo {
  margin-top: -5.06666667rem;
}
.main-html .protocol-total {
  padding: 0.26666667rem;
}
.main-html .protocol-total p {
  font-size: 14px;
  line-height: 0.58666667rem;
}
[data-dpr="2"] .main-html .protocol-total p {
  font-size: 28px;
}
[data-dpr="2.5"] .main-html .protocol-total p {
  font-size: 35px;
}
[data-dpr="2.75"] .main-html .protocol-total p {
  font-size: 39px;
}
[data-dpr="3"] .main-html .protocol-total p {
  font-size: 42px;
}
[data-dpr="4"] .main-html .protocol-total p {
  font-size: 56px;
}
.main-html .protocol-total .subtitle {
  margin: 10px 0;
  font-weight: bold;
}
.main-html .protocol-total.dark {
  color: #7b8796;
  background: #1e262f;
}
.main-html .risk-protocol {
  padding-top: 0.62666667rem;
  padding-bottom: 0.4rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}
.main-html .risk-protocol .text {
  padding-bottom: 0.42666667rem;
  line-height: 0.4rem;
  font-size: 0.34666667rem;
  font-weight: 500;
  color: #1e1e1e;
}
.main-html .risk-protocol .sec p {
  position: relative;
  margin-bottom: 0.32rem;
  padding-left: 0.37333333rem;
  line-height: 0.37333333rem;
  font-size: 0.32rem;
  color: #929899;
}
.main-html .risk-protocol .sec p::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.06666667rem;
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 100px;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  background-color: #1da2b4;
}
/*新手红包冲顶*/
.propaganda {
  padding-bottom: 2rem;
}
.propaganda a {
  text-decoration: none;
}
.propaganda .ban-top {
  position: relative;
}
.propaganda .ban-top .blueonload {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 1.33333333rem;
  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;
  width: 5.17333333rem;
  height: 1.33333333rem;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  background: #3e67d4;
  color: #ffffff;
  font-size: 19px;
}
[data-dpr="2"] .propaganda .ban-top .blueonload {
  font-size: 38px;
}
[data-dpr="2.5"] .propaganda .ban-top .blueonload {
  font-size: 48px;
}
[data-dpr="2.75"] .propaganda .ban-top .blueonload {
  font-size: 52px;
}
[data-dpr="3"] .propaganda .ban-top .blueonload {
  font-size: 57px;
}
[data-dpr="4"] .propaganda .ban-top .blueonload {
  font-size: 76px;
}
.propaganda .ban-top .blueonload .loadbtn {
  color: #ffffff;
}
.propaganda .ban-top .blueonload .icons {
  margin-right: 0.26666667rem;
  width: 0.6rem;
  height: 0.6rem;
  display: block;
}
.propaganda .ban-top .blueonload .icons img {
  width: 100%;
  height: 100%;
}
.propaganda .ban-top img {
  width: 100%;
  display: block;
}
.propaganda .propa-bot {
  position: relative;
}
.propaganda .propa-bot img {
  width: 100%;
  display: block;
}
.propaganda .propa-bot .bottbtn {
  width: 100%;
  position: absolute;
  bottom: 1.97333333rem;
  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;
}
.propaganda .propa-bot .bottbtn li {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 3.06666667rem;
  height: 0.96rem;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
}
[data-dpr="2"] .propaganda .propa-bot .bottbtn li {
  font-size: 30px;
}
[data-dpr="2.5"] .propaganda .propa-bot .bottbtn li {
  font-size: 38px;
}
[data-dpr="2.75"] .propaganda .propa-bot .bottbtn li {
  font-size: 41px;
}
[data-dpr="3"] .propaganda .propa-bot .bottbtn li {
  font-size: 45px;
}
[data-dpr="4"] .propaganda .propa-bot .bottbtn li {
  font-size: 60px;
}
.propaganda .propa-bot .bottbtn li .iconload {
  display: block;
  width: 0.53333333rem;
  height: 0.53333333rem;
  margin-right: 0.13333333rem;
}
.propaganda .propa-bot .bottbtn li .iconload img {
  width: 100%;
  height: 100%;
}
.propaganda .propa-bot .bottbtn li .iconprops {
  display: block;
  width: 0.53333333rem;
  height: 0.53333333rem;
  margin-right: 0.13333333rem;
}
.propaganda .propa-bot .bottbtn li .iconprops img {
  width: 100%;
  height: 100%;
}
.propaganda .propa-bot .bottbtn .btnonlo {
  background: #ffffff;
  margin-right: 0.56rem;
}
.propaganda .propa-bot .bottbtn .btnonlo a {
  color: #4772d9;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}
.propaganda .propa-bot .bottbtn .btnpropa {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.8px solid #ffffff;
}
.propaganda .propa-bot .bottbtn .btnpropa a {
  color: #ffffff;
}
.propaganda .app-to-phone {
  position: fixed;
  bottom: 0.13333333rem;
  width: 100%;
  z-index: 9;
}
.propaganda .app-to-phone .app-to-phone-wrap {
  position: relative;
  margin: 0 auto;
  width: 4.02666667rem;
  height: 0.85333333rem;
}
.propaganda .app-to-phone .app-to-phone-wrap.en {
  width: 5.52rem;
}
.propaganda .app-to-phone img {
  display: block;
  width: 100%;
  height: 100%;
}
.propaganda .app-to-phone .app-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.33333333rem;
  height: 0.74666667rem;
}
.propaganda .download-info {
  width: 100%;
}
.propaganda .download-info img {
  display: block;
  width: 100%;
}
.propaganda .download-footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #fff;
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-box-pack: justify;
  -webkit-flex-pack: justify;
  -moz-flex-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: flex-center;
  /* Safari */
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  align-items: center;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  padding-top: 0.34666667rem;
  padding-bottom: 0.34666667rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.propaganda .download-footer img {
  display: block;
  width: 100%;
  width: 4.46666667rem;
}
.bftinfo-container {
  position: relative;
  width: 100%;
  background: #041739;
}
.bftinfo-container .btn {
  width: 2.76rem;
  height: 0.76rem;
  position: absolute;
  top: 8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.bftinfo-container .btn.en {
  top: 9.33333333rem;
}
.bftinfo-container .btn img {
  display: block;
  width: 100%;
  height: 100%;
}
#community-wrap {
  background: #f6f7f9;
}
#community-wrap.dark {
  background: #101419;
}
#community-wrap .community-wrap {
  background: #fff;
}
#community-wrap .community-wrap ul {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}
#community-wrap .community-wrap li {
  height: 1.6rem;
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: flex-center;
  /* Safari */
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  align-items: center;
}
#community-wrap .community-wrap li > img {
  width: 0.93333333rem;
  height: 0.93333333rem;
  margin-right: 0.26666667rem;
}
#community-wrap .community-wrap li > img.right-img {
  width: 0.45333333rem;
  height: 0.45333333rem;
}
#community-wrap .community-wrap li .right-img {
  margin-right: 0.26666667rem;
  font-size: 24px;
  color: #9099a7;
}
[data-dpr="2"] #community-wrap .community-wrap li .right-img {
  font-size: 48px;
}
[data-dpr="2.5"] #community-wrap .community-wrap li .right-img {
  font-size: 60px;
}
[data-dpr="2.75"] #community-wrap .community-wrap li .right-img {
  font-size: 66px;
}
[data-dpr="3"] #community-wrap .community-wrap li .right-img {
  font-size: 72px;
}
[data-dpr="4"] #community-wrap .community-wrap li .right-img {
  font-size: 96px;
}
#community-wrap .community-wrap li a {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #121821;
  font-size: 16px;
  font-family: "DINPro-Medium";
  -webkit-text-decoration-line: none;
     -moz-text-decoration-line: none;
          text-decoration-line: none;
}
[data-dpr="2"] #community-wrap .community-wrap li a {
  font-size: 32px;
}
[data-dpr="2.5"] #community-wrap .community-wrap li a {
  font-size: 40px;
}
[data-dpr="2.75"] #community-wrap .community-wrap li a {
  font-size: 44px;
}
[data-dpr="3"] #community-wrap .community-wrap li a {
  font-size: 48px;
}
[data-dpr="4"] #community-wrap .community-wrap li a {
  font-size: 64px;
}
#community-wrap .community-wrap li a.text {
  font-family: inherit;
}
#community-wrap .community-wrap li:not(:last-child) {
  border-bottom: 1px solid #eff0f3;
}
#community-wrap .community-wrap li .wechat-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #121821;
  font-size: 16px;
}
[data-dpr="2"] #community-wrap .community-wrap li .wechat-info {
  font-size: 32px;
}
[data-dpr="2.5"] #community-wrap .community-wrap li .wechat-info {
  font-size: 40px;
}
[data-dpr="2.75"] #community-wrap .community-wrap li .wechat-info {
  font-size: 44px;
}
[data-dpr="3"] #community-wrap .community-wrap li .wechat-info {
  font-size: 48px;
}
[data-dpr="4"] #community-wrap .community-wrap li .wechat-info {
  font-size: 64px;
}
#community-wrap .community-wrap li .wechat-info .wechat-number {
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: flex-center;
  /* Safari */
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  align-items: center;
  color: #9099a7;
  font-size: 12px;
}
[data-dpr="2"] #community-wrap .community-wrap li .wechat-info .wechat-number {
  font-size: 24px;
}
[data-dpr="2.5"] #community-wrap .community-wrap li .wechat-info .wechat-number {
  font-size: 30px;
}
[data-dpr="2.75"] #community-wrap .community-wrap li .wechat-info .wechat-number {
  font-size: 33px;
}
[data-dpr="3"] #community-wrap .community-wrap li .wechat-info .wechat-number {
  font-size: 36px;
}
[data-dpr="4"] #community-wrap .community-wrap li .wechat-info .wechat-number {
  font-size: 48px;
}
#community-wrap .community-wrap li .wechat-info .wechat-number .icon-copy {
  margin-left: 0.10666667rem;
  font-size: 14px;
}
[data-dpr="2"] #community-wrap .community-wrap li .wechat-info .wechat-number .icon-copy {
  font-size: 28px;
}
[data-dpr="2.5"] #community-wrap .community-wrap li .wechat-info .wechat-number .icon-copy {
  font-size: 35px;
}
[data-dpr="2.75"] #community-wrap .community-wrap li .wechat-info .wechat-number .icon-copy {
  font-size: 39px;
}
[data-dpr="3"] #community-wrap .community-wrap li .wechat-info .wechat-number .icon-copy {
  font-size: 42px;
}
[data-dpr="4"] #community-wrap .community-wrap li .wechat-info .wechat-number .icon-copy {
  font-size: 56px;
}
#community-wrap .community-wrap .qr-content {
  width: 7.33333333rem;
  background: #fff;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
}
#community-wrap .community-wrap .qr-content .title {
  color: #121821;
  font-size: 16px;
  font-weight: bold;
}
[data-dpr="2"] #community-wrap .community-wrap .qr-content .title {
  font-size: 32px;
}
[data-dpr="2.5"] #community-wrap .community-wrap .qr-content .title {
  font-size: 40px;
}
[data-dpr="2.75"] #community-wrap .community-wrap .qr-content .title {
  font-size: 44px;
}
[data-dpr="3"] #community-wrap .community-wrap .qr-content .title {
  font-size: 48px;
}
[data-dpr="4"] #community-wrap .community-wrap .qr-content .title {
  font-size: 64px;
}
#community-wrap .community-wrap .qr-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 5.33333333rem;
  height: 5.33333333rem;
  margin-top: 0.13333333rem;
}
#community-wrap .community-wrap .qr-content p {
  color: #9099a7;
  font-size: 14px;
  margin-top: 0.13333333rem;
  width: 5.33333333rem;
  margin-left: auto;
  margin-right: auto;
}
[data-dpr="2"] #community-wrap .community-wrap .qr-content p {
  font-size: 28px;
}
[data-dpr="2.5"] #community-wrap .community-wrap .qr-content p {
  font-size: 35px;
}
[data-dpr="2.75"] #community-wrap .community-wrap .qr-content p {
  font-size: 39px;
}
[data-dpr="3"] #community-wrap .community-wrap .qr-content p {
  font-size: 42px;
}
[data-dpr="4"] #community-wrap .community-wrap .qr-content p {
  font-size: 56px;
}
#community-wrap .community-wrap.dark {
  background: #101419;
}
#community-wrap .community-wrap.dark li a {
  color: #e4e7ec;
}
#community-wrap .community-wrap.dark li .wechat-info {
  color: #e4e7ec;
}
#community-wrap .community-wrap.dark li .wechat-info .wechat-number {
  color: #677485;
}
#community-wrap .community-wrap.dark li:not(:last-child) {
  border-bottom: 1px solid #253138;
}
#community-wrap .community-wrap.dark li .right-img {
  color: #677485;
}
#community-wrap .community-wrap.dark .qr-content {
  background: #101419;
}
#community-wrap .community-wrap.dark .qr-content .title {
  color: #e4e7ec;
}
#community-wrap .community-wrap.dark .qr-content p {
  color: #677485;
}
#community-wrap .customer-info {
  margin-top: 0.26666667rem;
  font-size: 14px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  color: #3e4551;
  background: #fff;
}
[data-dpr="2"] #community-wrap .customer-info {
  font-size: 28px;
}
[data-dpr="2.5"] #community-wrap .customer-info {
  font-size: 35px;
}
[data-dpr="2.75"] #community-wrap .customer-info {
  font-size: 39px;
}
[data-dpr="3"] #community-wrap .customer-info {
  font-size: 42px;
}
[data-dpr="4"] #community-wrap .customer-info {
  font-size: 56px;
}
#community-wrap .customer-info li {
  height: 1.6rem;
  display: box;
  display: -o-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: flex-center;
  /* Safari */
  -webkit-box-align: flex-center;
      -ms-flex-align: flex-center;
          align-items: flex-center;
  align-items: center;
}
#community-wrap .customer-info li > img {
  width: 0.93333333rem;
  height: 0.93333333rem;
  margin-right: 0.26666667rem;
}
#community-wrap .customer-info li > img.right-img {
  width: 0.45333333rem;
  height: 0.45333333rem;
}
#community-wrap .customer-info li .right-img {
  margin-right: 0.26666667rem;
  font-size: 34px;
  color: #9099a7;
}
[data-dpr="2"] #community-wrap .customer-info li .right-img {
  font-size: 68px;
}
[data-dpr="2.5"] #community-wrap .customer-info li .right-img {
  font-size: 85px;
}
[data-dpr="2.75"] #community-wrap .customer-info li .right-img {
  font-size: 94px;
}
[data-dpr="3"] #community-wrap .customer-info li .right-img {
  font-size: 102px;
}
[data-dpr="4"] #community-wrap .customer-info li .right-img {
  font-size: 136px;
}
#community-wrap .customer-info li p {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #121821;
  font-size: 16px;
}
[data-dpr="2"] #community-wrap .customer-info li p {
  font-size: 32px;
}
[data-dpr="2.5"] #community-wrap .customer-info li p {
  font-size: 40px;
}
[data-dpr="2.75"] #community-wrap .customer-info li p {
  font-size: 44px;
}
[data-dpr="3"] #community-wrap .customer-info li p {
  font-size: 48px;
}
[data-dpr="4"] #community-wrap .customer-info li p {
  font-size: 64px;
}
#community-wrap .customer-info li .icon-copy {
  margin-left: 0.10666667rem;
  font-size: 14px;
  color: #9099a7;
}
[data-dpr="2"] #community-wrap .customer-info li .icon-copy {
  font-size: 28px;
}
[data-dpr="2.5"] #community-wrap .customer-info li .icon-copy {
  font-size: 35px;
}
[data-dpr="2.75"] #community-wrap .customer-info li .icon-copy {
  font-size: 39px;
}
[data-dpr="3"] #community-wrap .customer-info li .icon-copy {
  font-size: 42px;
}
[data-dpr="4"] #community-wrap .customer-info li .icon-copy {
  font-size: 56px;
}
#community-wrap .customer-info li .text {
  font-family: "DINPro-Medium";
  color: #9099a7;
  font-size: 12px;
}
[data-dpr="2"] #community-wrap .customer-info li .text {
  font-size: 24px;
}
[data-dpr="2.5"] #community-wrap .customer-info li .text {
  font-size: 30px;
}
[data-dpr="2.75"] #community-wrap .customer-info li .text {
  font-size: 33px;
}
[data-dpr="3"] #community-wrap .customer-info li .text {
  font-size: 36px;
}
[data-dpr="4"] #community-wrap .customer-info li .text {
  font-size: 48px;
}
#community-wrap .customer-info li:not(:last-child) {
  border-bottom: 1px solid #eff0f3;
}
#community-wrap .customer-info.dark {
  background: #101419;
  color: #677485;
}
#community-wrap .customer-info.dark li p {
  color: #e4e7ec;
}
#community-wrap .customer-info.dark li .text {
  color: #9099a7;
}
#community-wrap .customer-info.dark li:not(:last-child) {
  border-bottom: 1px solid #253138;
}
#community-wrap .customer-info.dark li .right-img {
  color: #677485;
}
#community-wrap .customer-info.dark li .icon-copy {
  color: #677485;
}
