@charset "utf-8";
/**
 * 下拉动画
 */
@-webkit-keyframes mw-kfr-slidedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3em);
  }
  15% {
    opacity: 1;
    -webkit-transform: translateY(-0.5em);
  }
  70% {
    -webkit-transform: translateY(0.5em);
  }
  85% {
    opacity: 1;
    -webkit-transform: translateY(1.5em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(1.5em);
  }
}
@keyframes mw-kfr-slidedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3em);
  }
  15% {
    opacity: 1;
    -webkit-transform: translateY(-0.5em);
  }
  70% {
    transform: translateY(0.5em);
  }
  85% {
    opacity: 1;
    transform: translateY(1.5em);
  }
  100% {
    opacity: 1;
    transform: translateY(1.5em);
  }
}
/**
 * Loading
 */
@-webkit-keyframes mw-kfr-loading {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-200px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(50em);
  }
}
/**
 * 淡入淡出
 */
@-webkit-keyframes mw-kfr-fadeIn {
  0% {
    display: block;
    opacity: 0;
    -webkit-transform: translateY(6em);
  }
  100% {
    display: block;
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-webkit-keyframes mw-kfr-fadeOut {
  0% {
    display: block;
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    display: none;
    opacity: 0;
    -webkit-transform: translateY(6em);
  }
}
@-moz-keyframes mw-kfr-fadeIn {
  0% {
    display: block;
    opacity: 0;
    -moz-transform: translateY(6em);
  }
  100% {
    display: block;
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-moz-keyframes mw-kfr-fadeOut {
  0% {
    display: block;
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    display: none;
    opacity: 0;
    -moz-transform: translateY(6em);
  }
}
@-o-keyframes mw-kfr-fadeIn {
  0% {
    display: block;
    opacity: 0;
    -o-transform: translateY(6em);
  }
  100% {
    display: block;
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@-o-keyframes mw-kfr-fadeOut {
  0% {
    display: block;
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    display: none;
    opacity: 0;
    -o-transform: translateY(6em);
  }
}
@-ms-keyframes mw-kfr-fadeIn {
  0% {
    display: block;
    opacity: 0;
    -ms-transform: translateY(6em);
  }
  100% {
    display: block;
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@-ms-keyframes mw-kfr-fadeOut {
  0% {
    display: block;
    opacity: 1;
    -ms-transform: translateY(0);
  }
  100% {
    display: none;
    opacity: 0;
    -ms-transform: translateY(6em);
  }
}
@keyframes mw-kfr-fadeIn {
  0% {
    display: block;
    opacity: 0;
    transform: translateY(6em);
  }
  100% {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mw-kfr-fadeOut {
  0% {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    display: none;
    opacity: 0;
    transform: translateY(6em);
  }
}
body {
  font-family: Arial, Helvetica, Hiragino Sans GB, Microsoft YaHei, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.official-page {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.official-page a,
body.official-page a:active,
body.official-page a:visited {
  text-decoration: none;
}
body.official-page * {
  box-sizing: border-box;
}
body.official-page h1,
body.official-page h2,
body.official-page h3 {
  color: #444;
}
body.official-page .mw-page {
  display: none;
  box-sizing: border-box;
  padding: 2em;
  font-family: "PingFang SC", "Helvetica Neue", "Hragino Sans GB", "Helvetica", "Microsoft YaHei", "Arial";
  text-align: center;
  position: fixed;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
body.official-page .mw-page h4 {
  font-size: .8em;
  color: #333;
}
body.official-page .mw-page.hide {
  display: none;
}
body.official-page .mw-page.hidding {
  -webkit-animation-name: mw-kfr-fadeOut;
  -webkit-animation-duration: .3s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-name: mw-kfr-fadeOut;
  -moz-animation-duration: .3s;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: forwards;
  -o-animation-name: mw-kfr-fadeOut;
  -o-animation-duration: .3s;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: ease-in-out;
  -o-animation-fill-mode: forwards;
  -ms-animation-name: mw-kfr-fadeOut;
  -ms-animation-duration: .3s;
  -ms-animation-iteration-count: 1;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-fill-mode: forwards;
  animation-name: mw-kfr-fadeOut;
  animation-duration: .3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
body.official-page .mw-page.show {
  display: block;
  opacity: 0;
  -webkit-animation-name: mw-kfr-fadeIn;
  -webkit-animation-duration: .3s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-name: mw-kfr-fadeIn;
  -moz-animation-duration: .3s;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-fill-mode: forwards;
  -o-animation-name: mw-kfr-fadeIn;
  -o-animation-duration: .3s;
  -o-animation-iteration-count: 1;
  -o-animation-timing-function: ease-in-out;
  -o-animation-fill-mode: forwards;
  -ms-animation-name: mw-kfr-fadeIn;
  -ms-animation-duration: .3s;
  -ms-animation-iteration-count: 1;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-fill-mode: forwards;
  animation-name: mw-kfr-fadeIn;
  animation-duration: .3s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
body.official-page .mw-page.loading {
  background-image: url('../img/bg.png');
}
body.official-page .mw-page.loading h3 {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  text-align: center;
}
body.official-page .mw-page.loading.show .rain-progress > span {
  animation-name: mw-kfr-loading;
  animation-iteration-count: infinite;
}
body.official-page .mw-page.loading .rain-progress {
  transform: rotate(135deg) translate(-200px, 200px);
  opacity: 0.5;
}
body.official-page .mw-page.loading .rain-progress > span {
  display: block;
  height: 10px;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 5em;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(1) {
  animation-duration: 2s;
  background-color: #0000cc;
  width: 50px;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(2) {
  animation-duration: 0.8s;
  background-color: red;
  width: 20px;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(3) {
  animation-duration: 1.6s;
  background-color: yellowgreen;
  width: 60px;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(4) {
  animation-duration: 0.6s;
  background-color: orange;
  width: 100px;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(5) {
  animation-duration: 1.2s;
  background-color: orangered;
  width: 40px;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(6) {
  animation-duration: 2.4s;
  background-color: plum;
  width: 120px;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(7) {
  animation-duration: 1.6s;
  background-color: yellowgreen;
  width: 60px;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(8) {
  animation-duration: 0.6s;
  background-color: orange;
  width: 100px;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(9) {
  animation-duration: 1.2s;
  background-color: orangered;
  width: 40px;
}
body.official-page .mw-page.loading .rain-progress > span:nth-child(10) {
  animation-duration: 2.8s;
  background-color: plum;
  width: 120px;
}
body.official-page .mw-page.server-error,
body.official-page .mw-page.scheme-notsupported {
  background-image: url('../img/not-supported-scheme.png');
}
body.official-page .mw-page.scheme-redirecting {
  background-image: url('../img/bg.png');
}
body.official-page .mw-page.scheme-redirecting .app-name {
  margin-bottom: 10px;
}
body.official-page .mw-page.scheme-redirecting .mw-button,
body.official-page .mw-page.scheme-redirecting .mw-button2 {
  display: block;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  margin-bottom: 20px;
}
body.official-page .mw-page.redirect-with-button {
  background-image: url('../img/bg.png');
}
body.official-page .mw-page.redirect-with-button.default .app-icon:after {
  display: block;
}
body.official-page .mw-page.redirect-with-button .app-icon {
  overflow: visible;
  position: relative;
  margin-top: 0;
  background-color: transparent !important;
  width: 7em;
  height: 7em;
}
body.official-page .mw-page.redirect-with-button .app-icon img {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
body.official-page .mw-page.redirect-with-button .app-icon:after {
  content: " ";
  display: none;
  position: absolute;
  left: -3em;
  top: -3em;
  right: -3em;
  bottom: -3em;
  background-image: url("../img/icon-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
body.official-page .mw-page.setting-error {
  background-image: url('../img/setting-error.png');
}
body.official-page .mw-page.setting-error .mw-page-cont {
  position: absolute;
  bottom: 4em;
  left: 0;
  right: 0;
}
body.official-page .mw-page.custom-content {
  padding: 0 !important;
  z-index: 10002;
}
body.official-page .mw-page.custom-content .mw-page-cont {
  padding-top: 80px;
  height: 100%;
  overflow: auto;
}
body.official-page .mw-page.custom-content .mw-page-cont h1 {
  text-align: center;
  font-size: 1.25em;
  line-height: 1.1em;
  margin: 0em;
  font-weight: 400;
  border-bottom: 0px solid #eeeeee;
  padding: 1em .7em;
  color: #333;
}
body.official-page .mw-page.custom-content .mw-page-cont .mw-cc-banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-height: 50%;
  margin: 0;
  padding: 0;
  position: relative;
}
body.official-page .mw-page.custom-content .mw-page-cont .mw-cc-banner img {
  width: 100%;
  opacity: 0.001;
}
body.official-page .mw-page.custom-content .mw-page-cont .mw-cc-banner a:after {
  content: "去看看";
  display: block;
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  background-color: rgba(113, 149, 251, 0.7);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 24px;
}
body.official-page .mw-page.custom-content .mw-page-cont .content {
  margin: 0;
  padding: 32px 1em 1em;
  text-align: left;
  line-height: 1.5em;
  color: #666;
}
body.official-page .mw-page.custom-content .mw-page-footer {
  position: fixed;
  z-index: 10002;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  top: 0;
  bottom: auto;
  text-align: left;
  padding: 20px 24px;
}
body.official-page .mw-page.custom-content .mw-page-footer > * {
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}
body.official-page .mw-page.custom-content .mw-page-footer .app-info {
  text-align: left;
  overflow: auto;
  padding: 0;
  margin-top: 0px;
  width: 60%;
  white-space: nowrap;
  word-break: keep-all;
}
body.official-page .mw-page.custom-content .mw-page-footer .app-info,
body.official-page .mw-page.custom-content .mw-page-footer .app-info * {
  vertical-align: middle;
}
body.official-page .mw-page.custom-content .mw-page-footer .app-info .app-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 .5em 0 0;
}
body.official-page .mw-page.custom-content .mw-page-footer .app-info .app-name {
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.official-page .mw-page.custom-content .mw-page-footer .btns {
  float: right;
  text-align: right;
  padding: 0;
}
body.official-page .mw-page.custom-content .mw-page-footer .btns .mw-button {
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 0;
  margin: 0 !important;
}
body.official-page .mw-page.universal-link-download {
  background-image: url('../img/bg2.jpg');
}
body.official-page .mw-page.universal-link-download .mw-ul-slidedown {
  text-align: center;
}
body.official-page .mw-page.universal-link-download .mw-ul-slidedown > .text {
  color: #333;
  line-height: 1.5;
}
body.official-page .mw-page.universal-link-download .mw-ul-slidedown > .text .arrow {
  position: relative;
  top: -1em;
  margin: 0em auto 1.5em;
  -webkit-animation: mw-kfr-slidedown linear 1.5s infinite;
  animation: mw-kfr-slidedown linear 1.5s infinite;
  width: 1.2em;
  height: 1.2em;
}
body.official-page .mw-page.universal-link-download .mw-ul-slidedown > .text .arrow:before {
  content: '';
  display: block;
  width: 1.2em;
  height: 1.2em;
  border-style: solid;
  border-color: #ccc;
  border-width: 2px 2px 0 0 ;
  -webkit-transform: -webkit-rotate(135deg);
  transform: rotate(135deg);
}
body.official-page .mw-page.universal-link-download p {
  text-align: center;
  color: #888;
  font-size: 1em;
}
body.official-page .mw-page.universal-link-download .app-reason-text {
  font-size: 1em;
  display: flex;
  color: #999;
}
body.official-page .mw-page.universal-link-download .app-reason-text .left,
body.official-page .mw-page.universal-link-download .app-reason-text .right {
  flex: 1;
  height: 1px;
  background: #999;
  margin-top: 10px;
}
body.official-page .mw-page.universal-link-download .app-reason-text .mid {
  padding: 0 10px;
}
body.official-page .mw-page.mw-alert {
  background-image: url('../img/bg.png');
}
body.official-page .mw-page.openinbrowser {
  background-image: none;
}
body.official-page .mw-page.openinbrowser.default .logo {
  display: block;
}
body.official-page .mw-page.openinbrowser.default .tips {
  bottom: 3.2em;
  background-size: contain;
}
body.official-page .mw-page.openinbrowser .tips {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
body.official-page .mw-page.openinbrowser .logo {
  width: 4em;
  height: 4em;
  position: absolute;
  bottom: 12em;
  left: 50%;
  margin-left: -1em;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}
body.official-page .mw-page.openinbrowser.ios .tips {
  background-image: url('../img/browser-ios.png');
}
body.official-page .mw-page.openinbrowser-ios9-wechat .tips {
  background-image: url('../img/open-in-safari/bg.png');
}
body.official-page .mw-page.openinbrowser.android .tips {
  background-image: url('../img/browser-android.png');
}
body.official-page .mw-page .mw-page-footer {
  position: absolute;
  bottom: 4em;
  left: 0;
  right: 0;
  text-align: center;
}
body.official-page .mw-page .blue {
  color: #a5c5f6;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}
body.official-page .mw-page h3,
body.official-page .mw-page .mw-title {
  color: #656565;
}
body.official-page .mw-page p {
  line-height: 1.4em;
  padding: 0;
  margin: 0;
}
body.official-page .mw-page .tips {
  font-size: .8em;
  line-height: 1.5em;
}
body.official-page .mw-page .mw-page-cont.table {
  display: table;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  padding-top: 4em;
}
body.official-page .mw-page .mw-page-cont.table .middle {
  display: table-cell !important;
  vertical-align: middle;
}
body.official-page .mw-page .mw-ul-slidedown {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  padding: 1.5em 2em;
  font-size: 1.2em;
  line-height: 1.2em;
  color: #6bacec;
  z-index: 1;
}
body.official-page .mw-page .mw-ul-slidedown .icon-dropdown {
  position: absolute;
  width: 1.6em;
  right: 2em;
  top: 0;
  height: 4.5em;
  background-color: #6699ff;
  -webkit-mask-image: url(../img/pull.png);
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  background-size: 100%;
  background-repeat: no-repeat;
}
body.official-page .mw-page .app-icon {
  margin: auto auto 1em;
  width: 5em;
  height: 5em;
  overflow: hidden;
  background-image: url('../img/noicon.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin: 3em auto 0;
}
body.official-page .mw-page .app-icon img {
  width: 100%;
}
body.official-page footer {
  display: block !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  z-index: 10001;
  color: #999;
}
body.official-page footer a {
  color: #666 !important;
}
body.official-page #mw-navigator-modal {
  background-color: rgba(0, 0, 0, 0) !important;
}
body .mw-button,
body .mw-button2 {
  display: inline-block;
  background-color: #6699ff;
  border-radius: 2px;
  padding: .6em 1.2em;
  font-size: 1.1em;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}
body .mw-button.outline,
body .mw-button2.outline {
  border: 2px solid #7195fb !important;
  background-color: transparent !important;
  color: #7195fb !important;
}
body .mw-button.no-margin,
body .mw-button2.no-margin {
  margin: .5em;
}
body .mw-button.min,
body .mw-button2.min {
  padding: .4em .8em;
}
body .mw-dialog {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  z-index: 99999999999;
  display: -ms-flex;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
body .mw-dialog > div {
  display: block;
  width: 100%;
}
body .mw-dialog .mw-close {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: block;
  margin: 2em auto 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 1.1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #ffffff;
}
body .mw-dialog .mw-close:before,
body .mw-dialog .mw-close:after {
  display: block;
  content: " ";
  height: 0;
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  position: relative;
  top: 50%;
}
body .mw-dialog .mw-close:after {
  transform: rotate(-45deg);
}
body .mw-dialog .mw-dialog-container {
  max-width: 640px;
  overflow: auto;
  max-height: 100%;
  width: 80%;
  padding: 2em 1em;
  box-sizing: border-box;
  font-size: 14px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 1em !important;
  background-color: #fff;
  color: #666;
  margin: auto;
  box-shadow: 2px 2px 3em rgba(0, 0, 0, 0.2);
}
body .mw-dialog .mw-dialog-container .mw-app-icon {
  width: 6em;
  height: 6em;
}
body .mw-dialog .mw-dialog-container .mw-app-name {
  font-size: 1em;
  margin-bottom: 2em;
  color: #000;
}
body .mw-dialog .mw-dialog-container .mw-button {
  font-size: 1.5em;
  padding: 1em 2em;
}
@media screen and (max-width: 320px) {
  body.official-page {
    font-size: 12px;
    /* start: styles of ulink.html */
  }
  body.official-page.ulink-page header {
    padding: .7em 1.2em;
    font-size: .8em;
  }
  body .mw-dialog .mw-dialog-container {
    font-size: 1em;
  }
}
.mw-qrcode {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  background-size: 90% auto;
  background-repeat: no-repeat;
  background-position: top right;
}
.mw-qrcode {
  overflow: auto;
  text-align: center;
}
.mw-qrcode h1 {
  font-size: 18px;
  text-align: center;
  margin: 100px auto 24px;
  color: #666;
}
.mw-qrcode img {
  max-width: 160px;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 10px;
}
body.official-page .mw-page p.app-reason-title {
  color: #999 !important;
  margin-bottom: 3em;
}
.Rotator .mw-page-cont.table {
  padding-top: 0!important;
}
.Rotator .mw-page.show,
.Rotator .mw-ul-slidedown {
  padding: 0!important;
  font-size: 0.9em!important;
}
.Rotator .mw-page.show .text,
.Rotator .mw-ul-slidedown .text {
  padding-top: 15px!important;
}
.Rotator .mw-page.show p,
.Rotator .mw-ul-slidedown p {
  font-size: 0.8em!important;
}
.Rotator .app-icon {
  margin: 0.5em auto!important;
  width: 4em !important;
  height: 4em !important;
}
.Rotator footer {
  padding: 5px !important;
  text-align: right!important;
}
.Rotator h1,
.Rotator h4 {
  margin: 0;
}
.Rotator .arrow {
  display: none!important;
}
.Rotator br {
  display: none!important;
}
.Rotator .app-reason-title {
  margin-bottom: 0em !important;
}
.Rotator .mw-page-footer {
  bottom: 0.5em !important;
  position: fixed !important;
}
.Rotator .mid {
  font-size: 0.8em!important;
}
.Rotator .mw-button {
  padding: 0.3em 1em !important;
}
