.age-tip ::-webkit-scrollbar {
  width: 4px; }

.age-tip ::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 1px; }

.age-tip ::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 1px; }

.age-tip ::-webkit-scrollbar-thumb:hover {
  background: #555; }

.age-tip .age-cadpa {
  cursor: pointer; }

.age-tip-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  display: none; }
  .age-tip-modal.active {
    display: block; }

.age-tip-modal .age-tip-mask {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%; }

.age-tip-modal .age-tip-content {
  border-radius: 6px;
  position: fixed;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.age-tip-modal .age-tip-content .close {
  width: 25px;
  height: 25px;
  position: absolute;
  background-size: cover;
  cursor: pointer; }

.age-tip-modal .age-tip-content .title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0; }

.age-tip-modal .age-tip-content .content {
  position: absolute;
  border: 0;
  outline: 0;
  resize: none;
  overflow-y: scroll;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.age-tip-modal .age-tip-content .content img {
  width: 100%; }

.pc-dynamic-dynamic-dialog {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  display: none; }

.pc-dynamic-dialog-mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(22, 22, 22, 0.7); }

.pc-dynamic-dialog-content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  background: #fff;
  border-radius: 10px;
  transform-origin: 0 0;
  display: none;
  animation: bounceIn 0.3s ease-in-out both; }

.pc-dynamic-dialog-content.slide-down {
  animation: bounceOut 0.3s ease-in-out both; }

.pc-dynamic-dialog-content .pc-dynamic-dialog-close {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  top: 15px;
  right: 11px;
  cursor: pointer; }

.pc-dynamic-dialog-content .pc-dynamic-dialog-close::before, .pc-dynamic-dialog-content .pc-dynamic-dialog-close::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #aaa;
  position: absolute;
  left: 0px;
  top: 8px;
  transition: background-color 0.3s ease-in-out; }

.pc-dynamic-dialog-content .pc-dynamic-dialog-close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.pc-dynamic-dialog-content .pc-dynamic-dialog-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.pc-dynamic-dialog-content .pc-dynamic-dialog-close:hover::before, .pc-dynamic-dialog-content .pc-dynamic-dialog-close:hover::after {
  background: #02a0d8; }

.pc-dynamic-post-dialog {
  width: 570px;
  height: 300px;
  padding-top: 10px; }

.pc-dynamic-post-dialog .title {
  font-size: 20px;
  color: #212121;
  padding: 8px 12px;
  margin: -6px 2px 0; }

.pc-dynamic-post-dialog textarea {
  width: 520px;
  height: 80px;
  font-size: 14px;
  line-height: 20px;
  color: #222;
  background: #fbfbfb;
  border: 1px solid #e5e9ef;
  border-radius: 6px;
  resize: none;
  padding: 10px;
  display: block;
  margin: 0 auto;
  outline: 0; }

.pc-dynamic-post-dialog textarea:focus {
  border-color: #00a1d6; }

.pc-dynamic-post-dialog .image-wrapper {
  padding-left: 15px;
  padding-top: 10px; }

.pc-dynamic-post-dialog .desc-counter {
  font-size: 12px;
  color: #99a2aa;
  position: absolute;
  right: 92px;
  line-height: 32px;
  bottom: 10px; }

.pc-dynamic-post-dialog .desc-counter p {
  margin: 0; }

.pc-dynamic-post-dialog img {
  max-width: 100px;
  max-height: 100px;
  border: 1px solid #efefef;
  padding: 4px; }

.pc-dynamic-post-dialog .submit {
  width: 64px;
  height: 32px;
  position: absolute;
  right: 12px;
  bottom: 10px;
  background: #00a1d6;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer; }

@keyframes bounceIn {
  from, 50%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    transform: scale(0.8) translate(-50%, -50%); }
  50% {
    transform: scale(1.02) translate(-50%, -50%); }
  to {
    transform: scale(1) translate(-50%, -50%); } }
@keyframes bounceOut {
  from {
    transform: scale(1, 1) translate(-50%, -50%); }
  to {
    transform: scale(0, 0) translate(-50%, -50%); } }
body, div, h4, html, li, span, ul {
  padding: 0;
  margin: 0; }

.bili-share-pc {
  border: 1px solid #e8e9eb;
  padding: 18px 0 18px 24px;
  border-radius: 5px;
  position: relative;
  width: 980px;
  height: 40px;
  margin: 20px auto;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background-color: #fff; }

.bili-share-pc li {
  list-style: none; }

.bili-share-pc.bili-clearfix:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.bili-share-pc .bili-clearfix:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.bili-share-pc .fl {
  float: left; }

.bili-share-pc .share {
  display: inline-block; }

.bili-share-pc .share .icon {
  background: url(../images/12xn9z34xj.png) no-repeat;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer; }

.bili-share-pc .share .icon_bili {
  background: url(../images/l6oq2p5wy7.png) no-repeat;
  background-position: -370px 0; }

.bili-share-pc .share .icon_bili:hover {
  background-position: -370px -71px; }

.bili-share-pc .share .icon_weibo {
  background-position: 0 0; }

.bili-share-pc .share .icon_weibo:hover {
  background-position: 0 -71px; }

.bili-share-pc .share .icon_wechat {
  background-position: -74px 0;
  position: relative; }

.bili-share-pc .share .icon_wechat:hover {
  background-position: -74px -71px; }

.bili-share-pc .share .icon_qzone {
  background-position: -148px 0; }

.bili-share-pc .share .icon_qzone:hover {
  background-position: -148px -71px; }

.bili-share-pc .share .icon_qq {
  background-position: -222px 0; }

.bili-share-pc .share .icon_qq:hover {
  background-position: -222px -71px; }

.bili-share-pc .share .icon_baidu {
  background-position: -296px 0; }

.bili-share-pc .share .icon_baidu:hover {
  background-position: -296px -71px; }

.bili-share-pc .favourite {
  display: inline-block; }

.bili-share-pc .title {
  font-size: 18px;
  color: #222;
  display: inline-block;
  padding-right: 20px;
  font-weight: 700;
  line-height: 40px; }

.bili-share-pc .vertical-line {
  margin: 5px 24px 5px 14px;
  height: 30px;
  display: inline-block;
  border-left: 2px solid #e8e9eb; }

.bili-share-pc .favourite .icon-fav {
  background: url(../images/79lx82m4lq.jpg);
  width: 65px;
  height: 50px;
  display: inline-block;
  position: absolute;
  top: 5px;
  cursor: pointer; }

.bili-share-pc .favourite .icon-like {
  background-position: 0 5px; }

.bili-share-pc .favourite .fav {
  padding-right: 0;
  width: 54px; }

.bili-share-pc .favourite .icon-like:hover {
  -webkit-animation: likePlay 1s steps(14) infinite;
  animation: likePlay 1s steps(14) infinite; }

.bili-share-pc .favourite .icon-liked {
  background-position: 0 -59px; }

@-webkit-keyframes likePlay {
  0% {
    background-position: 0 0; }
  100% {
    background-position: -896px 5px; } }
@keyframes likePlay {
  0% {
    background-position: 0 0; }
  100% {
    background-position: -896px 5px; } }
.bili-share-pc .popTips {
  position: absolute;
  top: -15px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  -webkit-animation: popTips 1.5s;
  animation: popTips 1.5s; }

@-webkit-keyframes popTips {
  0% {
    opacity: 0;
    top: 0; }
  15% {
    opacity: 1;
    top: -15px;
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1); }
  30% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  50% {
    opacity: 1;
    top: -15px; }
  90% {
    opacity: 1;
    top: -15px; }
  100% {
    opacity: 0;
    top: 0; } }
@keyframes popTips {
  0% {
    opacity: 0;
    top: 0; }
  15% {
    opacity: 1;
    top: -15px;
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1); }
  30% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  50% {
    opacity: 1;
    top: -15px; }
  90% {
    opacity: 1;
    top: -15px; }
  100% {
    opacity: 0;
    top: 0; } }
.bili-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  background-color: transparent;
  left: 0;
  top: 0;
  display: block;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.5); }

.bili-share-pc .share .icon_wechat:hover .weixin-hover {
  display: block; }

.bili-share-pc .weixin-hover {
  position: absolute;
  z-index: 1;
  display: none;
  width: 50px;
  height: 76px;
  top: -18px;
  left: -6px;
  margin-left: 0;
  border-bottom: 4px solid #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 2px 4px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 2px 4px; }

.bili-share-pc .share-weixin-qr {
  position: absolute;
  top: 80px;
  padding: 15px 13px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3); }

.bili-share-pc .share-weixin-qr h4 {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin-bottom: 15px; }

.bili-share-pc .share-weixin-qr .qr-code {
  width: 120px;
  text-align: center; }

.bili-share-pc .share-weixin-qr .qr-code img {
  display: block;
  width: 100%; }

.messageTip {
  margin: 0;
  position: absolute; }

#biliSharePc li {
  list-style: none; }

#biliSharePc .share {
  font-size: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(.5em * 5 - .1em); }

#biliSharePc .share .icon {
  background: url(../images/l6oq2p5wy7.png) no-repeat;
  width: .4em;
  height: .4em;
  line-height: .4em;
  cursor: pointer;
  background-size: 4.09em; }

#biliSharePc .share .icon_bili {
  background-position: -3.7em 0; }

#biliSharePc .share .icon_bili:hover {
  background-position: -3.7em -0.71em; }

#biliSharePc .share .icon_weibo {
  background-position: 0 0; }

#biliSharePc .share .icon_weibo:hover {
  background-position: 0 -0.71em; }

#biliSharePc .share .icon_wechat {
  background-position: -.74em 0;
  position: relative; }

#biliSharePc .share .icon_wechat:hover {
  background-position: -0.74em -0.71em; }

#biliSharePc .share .icon_qzone {
  background-position: -1.48em 0; }

#biliSharePc .share .icon_qzone:hover {
  background-position: -1.48em -0.71em; }

#biliSharePc .share .icon_qq {
  background-position: -2.22em 0; }

#biliSharePc .share .icon_qq:hover {
  background-position: -2.22em -0.71em; }

#biliSharePc .share .icon_baidu_tieba {
  background-position: -2.96em 0; }

#biliSharePc .share .icon_baidu_tieba:hover {
  background-position: -2.96em -0.71em; }

#biliSharePc .share .icon_wechat:hover .weixin-hover {
  display: block; }

#biliSharePc .weixin-hover {
  position: absolute;
  z-index: -1;
  display: none; }

#biliSharePc .weixin-hover .qr-before {
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 2px 4px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 2px 4px;
  width: 50px;
  height: 81px;
  top: -18px;
  position: absolute;
  left: -6px; }

#biliSharePc .share-weixin-qr {
  position: absolute;
  top: 62px;
  left: -6px;
  padding: 15px 13px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.3); }

#biliSharePc .icon-hover .share-weixin-qr {
  position: absolute;
  top: 50px;
  left: -50px;
  padding: 15px 13px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

#biliSharePc .share-weixin-qr h4 {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin-bottom: 15px; }

#biliSharePc .share-weixin-qr .qr-code {
  width: 120px;
  text-align: center; }

#biliSharePc .share-weixin-qr .qr-code img {
  display: block;
  width: 100%; }

.BiliVideo-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.75); }

.BiliVideo-mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.BiliVideo-box {
  width: 840px !important;
  display: block;
  background-color: #000;
  z-index: 10010;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.BiliVideo-box iframe {
  position: static;
  z-index: 2;
  width: 840px !important;
  height: 475px !important;
  border: 0 none; }

.BiliVideo-box .BiliVideo-close {
  background-image: url(../images/close.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin: 5px;
  padding: 5px;
  float: right;
  cursor: pointer; }

.one-row {
  white-space: nowrap; }

.one-row > * {
  display: inline-block;
  white-space: normal; }

.captcha-modal {
  font-size: 14px;
  text-align: center;
  padding: 2em; }

.captcha-modal .message {
  font-size: larger; }

.captcha-modal .captcha-pic {
  margin-top: 1.5em; }

.captcha-modal .captcha-pic img {
  width: 100px;
  height: 50px; }

.captcha-modal .captcha-input {
  margin-top: 1.5em; }

.captcha-modal .captcha-input input {
  border: 1px solid #ccc;
  border-radius: .3em;
  outline: 0 none;
  padding: .5em;
  width: 10em; }

.captcha-modal .captcha-input input:focus {
  border: 1px solid #23ade5; }

.captcha-modal .error-msg {
  font-size: smaller;
  color: #fb7299;
  margin-top: 1.5em;
  display: none; }

.captcha-modal .error-msg.has-error {
  display: block; }

.bui-modal-blocker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1000; }

.bui-modal-blocker .bui-modal-body {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.bui-modal-blocker.theme-gc .bui-modal-body {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1); }

.bui-modal-blocker.theme-gc .btns {
  margin-top: 2.5em; }

.bui-modal-blocker.theme-gc .btns a {
  display: inline-block;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 10em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: .3em;
  margin-right: 1.5em; }

.bui-modal-blocker.theme-gc .btns a:last-child {
  margin-right: 0; }

.bui-modal-blocker.theme-gc .btns .btn-ok {
  color: #fff;
  background-color: #23ade5; }

.bui-modal-blocker.theme-gc .btns .btn-cancel {
  color: #666;
  border: 1px solid #ccc; }

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

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

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

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

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

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

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

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: .2s top, .2s -webkit-transform;
  -o-transition: .2s top, .2s -webkit-transform;
  transition: .2s top, .2s -webkit-transform;
  -o-transition: .2s transform, .2s top;
  -webkit-transition: .2s transform, .2s top;
  transition: .2s transform, .2s top;
  -webkit-transition: .2s transform, .2s top, .2s -webkit-transform;
  -o-transition: .2s transform, .2s top, .2s -webkit-transform;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform; }

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

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

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s left, .2s -webkit-transform;
  -o-transition: .2s left, .2s -webkit-transform;
  transition: .2s left, .2s -webkit-transform;
  -o-transition: .2s transform, .2s left;
  -webkit-transition: .2s transform, .2s left;
  transition: .2s transform, .2s left;
  -webkit-transition: .2s transform, .2s left, .2s -webkit-transform;
  -o-transition: .2s transform, .2s left, .2s -webkit-transform;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: .2s right, .2s -webkit-transform;
  -o-transition: .2s right, .2s -webkit-transform;
  transition: .2s right, .2s -webkit-transform;
  -o-transition: .2s transform, .2s right;
  -webkit-transition: .2s transform, .2s right;
  transition: .2s transform, .2s right;
  -webkit-transition: .2s transform, .2s right, .2s -webkit-transform;
  -o-transition: .2s transform, .2s right, .2s -webkit-transform;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform; }

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

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top; }

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

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

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

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

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

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000; }

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

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

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

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

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

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

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -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;
  text-align: center; }

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

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

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

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

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

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

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

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

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

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

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

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

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

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

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

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

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

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

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

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

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px; }

.page4 {
  position: relative;
  background: url(../images/bg4.png) bottom no-repeat;
  background-size: cover;
  overflow: hidden; }

.page4 .title {
  background: url(../images/p4-title.png) center no-repeat;
  background-size: contain;
  width: 2.29rem;
  height: .58rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1.14rem;
  margin-top: -4rem; }

.page4 .role-head-wrap {
  width: 1.78rem;
  height: 6rem;
  text-align: center;
  position: absolute;
  right: 5%;
  top: 50%;
  margin-top: -3.3rem;
  z-index: 999; }

.page4 .role-head-wrap #role-head {
  width: 100%;
  height: 100%; }

.page4 .role-head-wrap .swiper-slide {
  cursor: pointer;
  margin: 0 auto;
  width: 1.78rem;
  height: 1.78rem;
  position: relative;
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5); }

.page4 .role-head-wrap .swiper-slide.swiper-slide-active {
  -webkit-filter: brightness(1);
  filter: brightness(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.page4 .role-head-wrap .p1-head {
  background: url(../images/p1-head.png) center no-repeat;
  background-size: contain; }

.page4 .role-head-wrap .p2-head {
  background: url(../images/p2-head.png) center no-repeat;
  background-size: contain; }

.page4 .role-head-wrap .p3-head {
  background: url(../images/p3-head.png) center no-repeat;
  background-size: contain; }

.page4 .role-head-wrap .p4-head {
  background: url(../images/p4-head.png) center no-repeat;
  background-size: contain; }

.page4 .role-head-wrap .p5-head {
  background: url(../images/p5-head.png) center no-repeat;
  background-size: contain; }

.page4 .role-head-wrap .p6-head {
  background: url(../images/p6-head.png) center no-repeat;
  background-size: contain; }

.page4 .role-head-wrap .p7-head {
  background: url(../images/p7-head.png) center no-repeat;
  background-size: contain; }

.page4 .role-head-wrap .p8-head {
  background: url(../images/p8-head.png) center no-repeat;
  background-size: contain; }

.page4 .role-head-wrap .p9-head {
  background: url(../images/p9-head.png) center no-repeat;
  background-size: contain; }

.page4 .role-head-wrap .next1, .page4 .role-head-wrap .prev1 {
  cursor: pointer;
  width: .39rem;
  height: .3rem;
  position: absolute;
  left: 38%; }

.page4 .role-head-wrap .prev1 {
  top: -.5rem;
  background: url(../images/arrow-up1.png) center/contain no-repeat; }

.page4 .role-head-wrap .next1 {
  bottom: -.5rem;
  background: url(../images/arrow-down1.png) center/contain no-repeat; }

.page4 .zysy-characterModal {
  position: absolute;
  width: 19.2rem;
  height: 10.8rem;
  bottom: 0;
  left: 0; }

.page4 .zysy-characterModal .btn-all {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 1.91rem;
  height: .38rem;
  z-index: 99;
  cursor: pointer;
  background: url(../images/look.png) center/contain no-repeat; }

.page4 .zysy-characterModal .btn-all.return {
  background: url(../images/return.png) center/contain no-repeat; }

.page4 .zysy-characterModal #roleModal-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 19.2rem;
  height: 10.8rem; }

.page4 .zysy-characterModal #roleModal-swiper .cv-jp, .page4 .zysy-characterModal #roleModal-swiper .cv-zh {
  position: absolute;
  width: .36rem;
  height: .36rem;
  cursor: pointer;
  top: 5.5rem; }

.page4 .zysy-characterModal #roleModal-swiper .t1 {
  background: url(../images/t1.png) center no-repeat;
  width: 4.68rem;
  height: 4.51rem;
  background-size: 100% auto; }

.page4 .zysy-characterModal #roleModal-swiper .t2 {
  background: url(../images/t2.png) center no-repeat;
  width: 4.68rem;
  height: 4.51rem;
  background-size: 100% auto; }

.page4 .zysy-characterModal #roleModal-swiper .t3 {
  background: url(../images/t3.png) center no-repeat;
  width: 4.68rem;
  height: 4.51rem;
  background-size: 100% auto; }

.page4 .zysy-characterModal #roleModal-swiper .t4 {
  background: url(../images/t4.png) center no-repeat;
  width: 4.68rem;
  height: 4.51rem;
  background-size: 100% auto; }

.page4 .zysy-characterModal #roleModal-swiper .t5 {
  background: url(../images/t5.png) center no-repeat;
  width: 4.68rem;
  height: 4.51rem;
  background-size: 100% auto; }

.page4 .zysy-characterModal #roleModal-swiper .t6 {
  background: url(../images/t6.png) center no-repeat;
  width: 4.68rem;
  height: 4.51rem;
  background-size: 100% auto; }

.page4 .zysy-characterModal #roleModal-swiper .t7 {
  background: url(../images/t7.png) center no-repeat;
  width: 4.68rem;
  height: 4.51rem;
  background-size: 100% auto; }

.page4 .zysy-characterModal #roleModal-swiper .t8 {
  background: url(../images/t8.png) center no-repeat;
  width: 4.68rem;
  height: 4.51rem;
  background-size: 100% auto; }

.page4 .zysy-characterModal #roleModal-swiper .t9 {
  background: url(../images/t9.png) center no-repeat;
  width: 4.68rem;
  height: 4.51rem;
  background-size: 100% auto; }

.page4 .zysy-characterModal #roleModal-swiper .t8 {
  width: 5.16rem; }

.page4 .zysy-characterModal #roleModal-swiper .introduce {
  position: absolute;
  top: 2rem;
  left: 10.9rem; }

.page4 .zysy-characterModal #roleModal-swiper .role1 {
  background: url(../images/p1.png) center no-repeat;
  background-size: contain;
  height: 100%; }

.page4 .zysy-characterModal #roleModal-swiper .role1 .skill-area {
  position: absolute;
  width: 3.2rem;
  height: 1.7rem;
  top: 6.58rem;
  right: 5.11rem;
  background-size: cover; }

.page4 .zysy-characterModal #roleModal-swiper .all1 {
  background-image: url(../images/q1.png); }

.page4 .zysy-characterModal #roleModal-swiper .role2 {
  background: url(../images/p2.png) center no-repeat;
  background-size: contain;
  height: 100%; }

.page4 .zysy-characterModal #roleModal-swiper .role2 .skill-area {
  position: absolute;
  width: 3.2rem;
  height: 1.7rem;
  top: 6.58rem;
  right: 5.11rem;
  background-size: cover; }

.page4 .zysy-characterModal #roleModal-swiper .all2 {
  background-image: url(../images/q2.png); }

.page4 .zysy-characterModal #roleModal-swiper .role3 {
  background: url(../images/p3.png) center no-repeat;
  background-size: contain;
  height: 100%; }

.page4 .zysy-characterModal #roleModal-swiper .role3 .skill-area {
  position: absolute;
  width: 3.2rem;
  height: 1.7rem;
  top: 6.58rem;
  right: 5.11rem;
  background-size: cover; }

.page4 .zysy-characterModal #roleModal-swiper .all3 {
  background-image: url(../images/q3.png); }

.page4 .zysy-characterModal #roleModal-swiper .role4 {
  background: url(../images/p4.png) center no-repeat;
  background-size: contain;
  height: 100%; }

.page4 .zysy-characterModal #roleModal-swiper .role4 .skill-area {
  position: absolute;
  width: 3.2rem;
  height: 1.7rem;
  top: 6.58rem;
  right: 5.11rem;
  background-size: cover; }

.page4 .zysy-characterModal #roleModal-swiper .all4 {
  background-image: url(../images/q4.png); }

.page4 .zysy-characterModal #roleModal-swiper .role5 {
  background: url(../images/p5.png) center no-repeat;
  background-size: contain;
  height: 100%; }

.page4 .zysy-characterModal #roleModal-swiper .role5 .skill-area {
  position: absolute;
  width: 3.2rem;
  height: 1.7rem;
  top: 6.58rem;
  right: 5.11rem;
  background-size: cover; }

.page4 .zysy-characterModal #roleModal-swiper .all5 {
  background-image: url(../images/q5.png); }

.page4 .zysy-characterModal #roleModal-swiper .role6 {
  background: url(../images/p6.png) center no-repeat;
  background-size: contain;
  height: 100%; }

.page4 .zysy-characterModal #roleModal-swiper .role6 .skill-area {
  position: absolute;
  width: 3.2rem;
  height: 1.7rem;
  top: 6.58rem;
  right: 5.11rem;
  background-size: cover; }

.page4 .zysy-characterModal #roleModal-swiper .all6 {
  background-image: url(../images/q6.png); }

.page4 .zysy-characterModal #roleModal-swiper .role7 {
  background: url(../images/p7.png) center no-repeat;
  background-size: contain;
  height: 100%; }

.page4 .zysy-characterModal #roleModal-swiper .role7 .skill-area {
  position: absolute;
  width: 3.2rem;
  height: 1.7rem;
  top: 6.58rem;
  right: 5.11rem;
  background-size: cover; }

.page4 .zysy-characterModal #roleModal-swiper .all7 {
  background-image: url(../images/q7.png); }

.page4 .zysy-characterModal #roleModal-swiper .role8 {
  background: url(../images/p8.png) center no-repeat;
  background-size: contain;
  height: 100%; }

.page4 .zysy-characterModal #roleModal-swiper .role8 .skill-area {
  position: absolute;
  width: 3.2rem;
  height: 1.7rem;
  top: 6.58rem;
  right: 5.11rem;
  background-size: cover; }

.page4 .zysy-characterModal #roleModal-swiper .all8 {
  background-image: url(../images/q8.png); }

.page4 .zysy-characterModal #roleModal-swiper .role9 {
  background: url(../images/p9.png) center no-repeat;
  background-size: contain;
  height: 100%; }

.page4 .zysy-characterModal #roleModal-swiper .role9 .skill-area {
  position: absolute;
  width: 3.2rem;
  height: 1.7rem;
  top: 6.58rem;
  right: 5.11rem;
  background-size: cover; }

.page4 .zysy-characterModal #roleModal-swiper .all9 {
  background-image: url(../images/q9.png); }

.page4 .zysy-characterModal #roleModal-swiper .prev {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  outline: 0;
  position: absolute;
  left: 1.2rem;
  bottom: 4.2rem;
  z-index: 10; }

.page4 .zysy-characterModal #roleModal-swiper .next {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  outline: 0;
  position: absolute;
  right: 1.2rem;
  bottom: 4.2rem;
  z-index: 10; }

.fade-enter-active, .fade-leave-active {
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all 0.4s ease; }

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.page5 {
  position: relative;
  height: 100%;
  background: url(../images/bg.jpg) bottom no-repeat;
  background-size: cover; }

.page5 .p5-title {
  background: url(../images/p5-title.png) center no-repeat;
  background-size: contain;
  width: 1.32rem;
  height: .58rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.66rem;
  margin-top: -2.8rem; }

.page5 .news-wrap {
  position: absolute;
  top: 50%;
  margin-top: -1.5rem;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  height: 3.03rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12.97rem; }

.page5 .news-wrap #banner-swiper {
  width: 6.04rem;
  height: 3.03rem; }

.page5 .news-wrap #banner-swiper .swiper-slide {
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain; }

.page5 .news-wrap #banner-swiper .banners-pagination {
  position: absolute;
  z-index: 3;
  bottom: .1rem;
  font-size: 0;
  text-align: center; }

.page5 .news-wrap #banner-swiper .banners-pagination .dot {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMAgMAAAArG7R0AAAADFBMVEUAAACYdEiYdEiYdEh4yU0vAAAABHRSTlMA/oFVNVA0MQAAACtJREFUCNdjYNBgYGCYxsDAFNrAwFmbwKB6OIJhOsM1EAaxQWIgOZAakFoA9SIKUaRaISIAAAAASUVORK5CYII=) center no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right: 5px;
  display: inline-block;
  cursor: pointer;
  outline: 0; }

.page5 .news-wrap #banner-swiper .banners-pagination .dot-active {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAMAAABhq6zVAAAAP1BMVEUAAADIom++mWrguYDas3u3kmXTrXfPqXTKpHHUrXfYsXrFn27PqXTPqHTBm2vctXy9l2jfuH7GoG65k2XBm2oRpZrUAAAACHRSTlMAgoKBgYGBgXqlP94AAABNSURBVAjXPccJDoAgDETRoWwqtIp4/7NaK+lLJpkPEyNcHMMrnSqtfxirsi8FqMzcO3ddRdhcAEJr7f4WoEhEHhGCoUsRljxnhsv/fwHxUQMsD74K5AAAAABJRU5ErkJggg==) center no-repeat;
  background-size: contain; }

.page5 .news-wrap .news-list {
  width: 6.9rem;
  height: 3.03rem;
  background: rgba(0, 0, 0, 0.762);
  border: 2px solid #8e866e;
  padding: .14rem .45rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative; }

.page5 .news-wrap .news-list .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: .39rem;
  border-bottom: 1px dashed #535351; }

.page5 .news-wrap .news-list .nav .item {
  font-size: .16rem;
  color: #fff;
  line-height: .3rem;
  margin-right: .35rem;
  letter-spacing: 2px;
  font-weight: 600;
  position: relative;
  cursor: pointer; }

.page5 .news-wrap .news-list .nav .item:nth-of-type(1) {
  margin-left: 0.23rem; }

.page5 .news-wrap .news-list .nav .item.active::after {
  content: '';
  width: .2rem;
  height: 1px;
  background: #decc95;
  position: absolute;
  left: 50%;
  top: .3rem;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%); }

.page5 .news-wrap .news-list .more {
  color: #decc95;
  font-size: .14rem;
  position: absolute;
  right: .35rem;
  top: .26rem;
  display: block;
  text-decoration: none; }

.page5 .news-wrap .news-list .news-link {
  font-size: .14rem;
  color: #fff;
  line-height: .48rem;
  height: .48rem;
  border-bottom: 1px dashed #535351;
  display: block;
  text-decoration: none; }

.page5 .news-wrap .news-list .news-link .title {
  width: 80%;
  float: left;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap; }

.page5 .news-wrap .news-list .news-link .time {
  float: right; }

.page5 .news-wrap .news-list .noMore {
  font-size: .2rem;
  color: #fff;
  text-align: center;
  line-height: 0.48rem; }

.page5 .news-wrap .news-list .bottom-sns {
  position: absolute;
  bottom: .14rem;
  height: .55rem;
  left: .46rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.page5 .news-wrap .news-list .bottom-sns .info {
  font-size: .14rem;
  line-height: .2rem;
  color: #decc95;
  letter-spacing: 2px;
  opacity: 0.5; }

.page5 .news-wrap .news-list .bottom-sns .icon1 {
  margin-left: .68rem;
  background: url(../images/icon.png) center no-repeat;
  background-size: contain;
  width: .55rem;
  height: 0.55rem; }

.page5 .news-wrap .news-list .bottom-sns .sina-link {
  background: url(../images/sina-link.png) center no-repeat;
  background-size: contain;
  width: .74rem;
  height: .24rem;
  margin-left: 0.24rem; }

.page5 .news-wrap .news-list .bottom-sns .icon2 {
  margin-left: .44rem;
  background: url(../images/icon.png) center no-repeat;
  background-size: contain;
  width: .55rem;
  height: 0.55rem; }

.page5 .news-wrap .news-list .bottom-sns .follow-btn {
  background: url(../images/follow-btn.png) center no-repeat;
  background-size: contain;
  width: .74rem;
  height: .24rem;
  margin-left: .24rem;
  cursor: pointer; }

.page5 .news-wrap .news-list .bottom-sns .follow-btn.follow {
  background: url(../images/followed.png) center no-repeat;
  background-size: contain; }

.zysy-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: opacity ease .4s;
  z-index: -99;
  visibility: hidden;
  opacity: 0; }
  .zysy-modal.active {
    z-index: 100;
    visibility: visible;
    opacity: 1; }

.zysy-modal.active .mask {
  visibility: visible;
  opacity: .8; }

.zysy-modal .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  transition: opacity ease .4s;
  visibility: hidden;
  opacity: 0; }

.zysy-modal .modal-item {
  background: url(../images/common-modal.png) center no-repeat;
  background-size: contain;
  position: absolute;
  width: 4.77rem;
  height: 3.73rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  transition: opacity ease .4s; }
  .zysy-modal .modal-item.active {
    visibility: visible;
    opacity: 1; }

.zysy-modal .modal-item .close {
  background: url(../images/close.png) center no-repeat;
  background-size: contain;
  width: .55rem;
  height: .55rem;
  position: absolute;
  top: -.15rem;
  right: -.25rem;
  cursor: pointer; }

.zysy-modal .modal-item .success-tips {
  background: url(../images/success-tips.png) center no-repeat;
  background-size: contain;
  width: 3.58rem;
  height: .56rem;
  margin: 0 auto;
  margin-top: 0.52rem; }

.zysy-modal .modal-item .repeat-tips {
  background: url(../images/repeat-tips.png) center no-repeat;
  background-size: contain;
  width: 3.58rem;
  height: .56rem;
  margin: 0 auto;
  margin-top: 0.52rem; }

.zysy-modal .modal-item .select-tips {
  background: url(../images/select-device.png) center no-repeat;
  background-size: contain;
  width: 3.24rem;
  height: .28rem;
  margin: 0 auto;
  margin-top: 0.52rem; }

.zysy-modal .modal-item .device-wrap {
  width: 4.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  margin-top: .44rem;
  /**todo**/
  justify-content: space-around; }

.zysy-modal .modal-item .device-wrap .ios {
  background: url(../images/ios.png) center no-repeat;
  background-size: contain;
  width: 1.95rem;
  height: .59rem;
  cursor: pointer; }

.zysy-modal .modal-item .device-wrap .ios.active {
  background: url(../images/ios-active.png) center no-repeat;
  background-size: contain; }

.zysy-modal .modal-item .device-wrap .android {
  background: url(../images/android.png) center no-repeat;
  background-size: contain;
  width: 1.95rem;
  height: .59rem;
  cursor: pointer; }

.zysy-modal .modal-item .device-wrap .android.active {
  background: url(../images/android-active.png) center no-repeat;
  background-size: contain; }

.zysy-modal .modal-item .comfirm {
  background: url(../images/comfirm.png) center no-repeat;
  background-size: contain;
  width: 2.42rem;
  height: .63rem;
  margin: 0 auto;
  margin-top: .4rem;
  cursor: pointer; }

.zysy-modal .modal-item .qq {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.zysy-modal .modal-item .qq p {
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 30px; }

.zysy-modal .modal-item .qrc-wrap {
  width: 4.21rem;
  height: 1.56rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 0.36rem; }

.zysy-modal .modal-item .qrc-wrap .dynamic {
  width: 1.28rem;
  height: 100%;
  background: url(../images/qrc-dynamic.png) center no-repeat;
  background-size: contain; }

.zysy-modal .modal-item .qrc-wrap .sina {
  width: 1.28rem;
  height: 100%;
  background: url(../images/qrc-sina.png) center no-repeat;
  background-size: contain; }

.zysy-modal .modal-item .qrc-wrap .wx {
  width: 1.28rem;
  height: 100%;
  background: url(../images/qrc-wx.png) center no-repeat;
  background-size: contain; }

.zysy-modal .modal-item .comming {
  font-size: .28rem;
  color: #fbefc9;
  line-height: 3.73rem;
  text-align: center;
  font-family: "HYQihei 40S,HYQihei 50S,HYQihei 60S,Microsoft Yahei, Tahoma, Helvetica, Arial, sans-serif"; }

.zysy-modal .p2-modal1 {
  background: url(../images/p2-modal1.png) center no-repeat;
  background-size: contain;
  width: 5.52rem;
  height: 5.58rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.zysy-modal .p2-modal2 {
  background: url(../images/p2-modal2.png) center no-repeat;
  background-size: contain;
  width: 5.52rem;
  height: 6.69rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.zysy-modal .p2-close {
  background: url(../images/p2-close.png) center no-repeat;
  background-size: contain;
  width: .38rem;
  height: .37rem;
  position: absolute;
  top: -.56rem;
  right: 0;
  cursor: pointer; }

.zysy-modal .p2-modal2 .p2-close {
  top: 0;
  right: -0.1rem; }

.zysy-modal .p2-modal1 .p2-close {
  top: 0;
  right: -0.5rem; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

main {
  display: block; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

a {
  background-color: transparent; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; }

b, strong {
  font-weight: bolder; }

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button, input {
  overflow: visible; }

button, select {
  text-transform: none; }

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button; }

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0; }

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  padding: 0.35em 0.75em 0.625em; }

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto; }

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details {
  display: block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none; }

body, html {
  min-width: 1200px;
  margin: 0 auto;
  position: relative;
  font-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  overflow: hidden; }

body {
  font-family: Microsoft YaHei, tahoma, arial, Hiragino Sans GB, \\5b8b\4f53, sans-serif;
  font-size: 100%; }

li, ul {
  list-style: none;
  margin: 0;
  padding: 0; }

a {
  text-decoration: none; }

h1, h2, h3, p {
  margin: 0; }

.main {
  height: 100%;
  position: relative; }

.main .international-header {
  position: fixed;
  width: 100%;
  left: 50%;
  font-size: 14px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.main .bgv {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.main .mask-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: .5;
  z-index: 2; }

.main .slideDown {
  background: url(../images/slidedown.png) center no-repeat;
  background-size: contain;
  width: .34rem;
  height: .24rem;
  left: 50%;
  position: absolute;
  margin-left: -.17rem;
  top: 50%;
  margin-top: 4.2rem;
  -webkit-animation: slideDown 2s infinite;
  animation: slideDown 2s infinite;
  z-index: 20; }
  .main .slideDown.up {
    background: url(../images/slidedown-up.png) center no-repeat;
    background-size: contain; }

.main .nav-top {
  background: url(../images/menu-background.png) bottom no-repeat;
  background-size: cover;
  width: 100%;
  height: 55px;
  position: fixed;
  top: 45px;
  left: 0;
  z-index: 20; }

.main .nav-top .nav-wrap {
  width: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative; }

.main .nav-top .nav-wrap .menu-slider {
  background: url(../images/menu-slider.png) center no-repeat;
  background-size: contain;
  width: 1.65rem;
  height: .11rem;
  position: absolute;
  margin-top: -.05rem;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s; }

.main .nav-top .nav-wrap .home {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACkAAAAdCAMAAAAAVbV/AAABBVBMVEUAAADw8PDy8vLw8PDx8fHX19fw8PD+/v7g4ODX19f29vbq6urw8PDw8PD5+fnz8/Pw8PD29vbw8PDw8PDw8PDw8PDj4+Pb29v5+fnw8PD6+vrt7e39/f39/f39/f309PTr6+vo6Ojl5eXU1NT39/f19fX29vbf39/6+vr////k5OTd3d35+fnZ2dnd3d3X19f8/Pz09PTV1dX////8/PzY2Nj4+Pjc3Nzw8PDe3t7W1tbd3d3V1dX39/fc3NzV1dXV1dXf39/////////o6OjX19fV1dX8/Pzi4uLc3Nzb29vX19f////x8fHu7u7r6+vo6Ojl5eXi4uLf39/4+Pj8/Pz09PSGB1OIAAAASnRSTlMAMxEpIkQbu7t3RHclB3d3MBIfGLsKRBC7LJlEMyLu7ru7uyLuzLuqiHd3d2Yz7u7d3d3MzMyqqpmIiGZmVVUi7sy7qpmZmVVVIiFol74AAAIUSURBVDjLjZCHcuIwFEWfZKGAY4MLDjahpECATUjvdXtxoRn4/09ZtUVkhp3JmbHm6upItgzrNJqwGddUoZ5eDfg8Tb9udq/Sb65MW2nKxkGaDhoNUTS3JK00bcl0Is1fi2s2nrca7vWiD2ucL1omKJq3ZU49DOthvdwPw1DtbvD3zecvTGGy5nbexfCOo06/XJ932Cmd+ZFaO7momO1lxTTN9oWpzWXXNCuVF9PsLttEdrtZdl8RZFl7ZVazKkCWZUQkZY5GuzKNRtvaHFV5cS+TMsdjZY7H2twb74lCJsnOZPJ9WzCZaHN/sg/ACpmUOZ3uyDSdflqZB9MDUcikzNlMmbOZNouzIl/5LZMy8/xLUZDnx9rMe/CQ56e9417xSXWFOC7IFMfafH2tDU/jhz93cXxX2GCWQDM8i29qAKU4jp+UmSQ/SoIk0WaNzR5rPLFwJrvnJHkuCLT59vPz5eMbSG6SS7W7MFRV4RAUhzIqQU802Ib/YRPk+OAj5AEElkctKwAgyABGhDy+bDCEiigbDcRExwVmOQFghDCAG7ESxCYCnJVpRcAIkAWYsAEsD2Fl2tK0KKUREh3HQYApQUHgUWFGlBIsTYIxNrTJIisQIYEvz8TYw+tv548tziTgY7D4RyD33/73N8L8/uA7NlAMPrMwosr0sfhLkc+WuVWziEs9G7BBbDD4vQws/5KD4eP8BUdoQMbp2GG0AAAAAElFTkSuQmCC) center no-repeat;
  background-size: contain;
  width: .41rem;
  height: .29rem;
  position: relative; }

.main .nav-top .nav-wrap .home.active::after {
  content: '';
  position: absolute;
  background: url(../images/menu-slider.png) center no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: .1rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.main .nav-top .nav-wrap .reward {
  background: url(../images/reward.png) center no-repeat;
  background-size: 100% 100%;
  width: .74rem;
  height: .32rem;
  position: relative; }

.main .nav-top .nav-wrap .reward.active::after {
  content: '';
  position: absolute;
  background: url(../images/menu-slider.png) center no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: .1rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.main .nav-top .nav-wrap .story {
  background: url(../images/stroy.png) center no-repeat;
  background-size: contain;
  width: .62rem;
  height: .29rem;
  position: relative; }

.main .nav-top .nav-wrap .story.active::after {
  content: '';
  position: absolute;
  background: url(../images/menu-slider.png) center no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: .1rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.main .nav-top .nav-wrap .character {
  background: url(../images/character.png) center no-repeat;
  background-size: contain;
  width: .84rem;
  height: .29rem;
  position: relative; }

.main .nav-top .nav-wrap .character.active::after {
  content: '';
  position: absolute;
  background: url(../images/menu-slider.png) center no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: .1rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.main .nav-top .nav-wrap .news {
  background: url(../images/nav-news.png) center no-repeat;
  background-size: contain;
  width: .75rem;
  height: .32rem;
  position: relative; }

.main .nav-top .nav-wrap .news.active::after {
  content: '';
  position: absolute;
  background: url(../images/menu-slider.png) center no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: .1rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.main .nav-top .nav-wrap .feature {
  background: url(../images/feature.png) center no-repeat;
  background-size: contain;
  width: .84rem;
  height: .29rem;
  position: relative; }

.main .nav-top .nav-wrap .feature.active::after {
  content: '';
  position: absolute;
  background: url(../images/menu-slider.png) center no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: .1rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.main .nav-top .nav-wrap .appreciation {
  background: url(../images/appreciation.png) center no-repeat;
  background-size: contain;
  width: .96rem;
  height: .29rem;
  position: relative; }

.main .nav-top .nav-wrap .appreciation.active::after {
  content: '';
  position: absolute;
  background: url(../images/menu-slider.png) center no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: .1rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.main .nav-top .sns-wrap {
  height: 100%;
  width: 1.1rem;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  top: 0;
  right: 0;
  margin-right: .47rem;
  cursor: pointer; }

.main .nav-top .sns-wrap .zysy-share {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAXCAMAAADTAfSvAAAAkFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+WABnwAAAAL3RSTlMA/fXr3Qew8ODEo15FLSAaDfjUvrWrqZ2Mhm5nSzYmHRMRBOTQu5B+dVlXUE89OIUYHp8AAAC7SURBVBjTZZDZEoIwDEVTCiIIiLLvgvua//87awoO0fOSmdPMTVLg7AonXsEPaxMVLnBcJGpuDW0zHoCaxcxZFzna4uuGao+4JGkEAG0il6fwpqZvH5ALROkBBDY9qz7aM1jdQ1VSJGRpwQx7GsvYaHvk1tHW9Jj1BGqiRl/SU7lKtdPzbKNY+FCbKOKObvLbzx/mhvKC0sJZVpdNYSXM8UebMDuMzSkwIm0rbhu66WAB5+UIw+3hD+p7AyyqHLiXo+J5AAAAAElFTkSuQmCC) center no-repeat;
  background-size: contain;
  width: .21rem;
  height: .23rem;
  position: relative; }

.main .nav-top .sns-wrap .zysy-share .share-box {
  position: absolute;
  bottom: -58px;
  right: 0;
  border-radius: 5px;
  background: #fff; }

.main .nav-top .sns-wrap .wiki {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAXCAMAAAAiCq8iAAAAkFBMVEUAAADu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPu8PPxkidLAAAAL3RSTlMA6u6OnAr42pc8DfRWRzQV39TLtq2FXVEk8r2iiHJnEQblxKaSY0E/LcmCekwa5+EWnRgAAAEUSURBVCjPfZLpdoMgEEYnCCruu8a97tnK+79dcTyJtU17fyAzVw4fHOAFm+OiUO4N/IYPPiEavRtwJKsLTyCfUbXsfcNSAvENXx9dFDzOifiB2Sl2C7kn3vIRgPiT/1Sqk7eCxDLfMobnY1uNKo3wLb1zC8xXXys5a3J1RtUyMGxdO6uq6dHUhRbcQJ1QVTo3AB7WNU4yAOYoI4TCRjUIM6wXAy85SyIiSqDnTSl4Rpo4jjVo65zCXLOnQsxnUr2drGxXZMt4WocyESJApcvqktR9dwlvKV1XXeU/qGJZKfLrPuSQrkVDOwuV48sU5eQCNE4l5ycbmAsb3F93yfs+XAN66eEBULJfIIcDdqGdEC+yGCBfMYY4a7dsNr8AAAAASUVORK5CYII=) center no-repeat;
  background-size: contain;
  width: .26rem;
  height: .23rem;
  display: block; }

.main .nav-top .sns-wrap .dynamic {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAMAAADX9CSSAAAAjVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8DizOFAAAALnRSTlMAmqqnwqywlzsq7ezc17q2owHv5r2ckohpV0szIA72896MgXtiQQbi4Z51UyQbJmQBggAAAN5JREFUKM9tkedywjAQBiVbuHc7LmBDQgjp+/6PFx+xGQbx/VBZ3ehm9tSa8rQxb8pK8AxkFg4hStlY/J1kesW9xwP8qie7XpPL8qIG7X2eyivf0F4ePSRJsHIfIxzIfHnbLXwLofBKwE9KvH7lEI1H9tP/rWZQoa+1bj2g5tBpSfeBqxoexaiC2HckfkwMNMV8doO5ZbT0qGjDCE8tqUnHeRsTcMXTduE7ZtC5IFzlFLeKAZMJP97ILnuncXp18VnY8sTn+UB/z8WnYX+269ME7Bk7QPX9YPQm/5rWyx8SMRvrNIYfuAAAAABJRU5ErkJggg==) center no-repeat;
  background-size: contain;
  width: .23rem;
  height: .23rem;
  display: block; }

.main .nav-top .sns-wrap .sina {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAUCAMAAACknt2MAAAAolBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8ELnaCAAAANXRSTlMA/PYJ+eLLpFJDGekiHRDw5eS5n5eOcWo1CwLc2dG9m4eBe3VlX0o7JhUHsK9ZLiwOzbKxmf/EYBYAAAEgSURBVCjPbZGHjoMwEETHNp0DAqGk90rqlf3/X7tdR5zEKU8CzXqLd2T8Z3KJs3mV4A3j3NFETt0rT9JOfqwc2uAvKjNSNjSrMkDoqDssZu0QE9sinjfEmj8h8sgyZXk8js8FhSdyJfMY0Iv5asZ/NzpQPSElEzjTYxeqMKEBkE7Jknueq6wKYfBQPuBzoK5Bak0FBUeNkVktRqy9O9s6jWw20LxpIEqaFgbYudy7lPKbTDlKKicdgW1YSjAui6UIRV/A2dHX2T6nDIyYtH5n5IMvDBCJJXCZZnGQ1JbiJ1J9Q8MnNV4bFxDaBV1a7OUlVAWYpWz8hGU8pPkBybaqTzA78f9j0BEWNPA3zbZaSOv3qPe0SeN/xjpzvXIfoeMXTAMoUUdq94YAAAAASUVORK5CYII=) center no-repeat;
  background-size: contain;
  width: .26rem;
  height: .2rem;
  display: block; }

.main .nav-top .sns-wrap .wechat {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAWCAMAAAAGlBe5AAAAmVBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////VHQRUAAAAMnRSTlMA+/S86uPGgk4H9vHUzsF4XyMWA/jYs62VcWpJNAuln5CJfWNYLBEQAuzayL2MV0U6HcSrmUAAAADsSURBVCjPbZDXsoIwFEU3JTQBAaUoYG+3X/P/H+chmTMExvWwYWdl0qDojl8f0k6avwdm5I5kPtuputjS4LAyVGvRiNbrBUUzqrugHuBEKYrQUYVZDvOBK31q3WIwniSOXU0ZZa2QZVUX7FxpEB0Cv0rSfXZTLjJUGfBt7NNw3HJU4ncxlrQHfsaaDcriVgFPm8v3jsIP6XDeraHfC3Bmt1yzcx6+pASwsbTbqFRF7euCOLObYuunsWKavp05D0SyzxHmXZFOXQbQMDT/lqnSFUzMVZMCUwKXVdxjTr91XBnFO1fgLcM+d/8KvADFTD6XpOi2ywAAAABJRU5ErkJggg==) center no-repeat;
  background-size: contain;
  width: .27rem;
  height: .22rem;
  position: relative; }

.main .nav-top .sns-wrap .wechat .wx-dialog {
  background: url(../images/wx-dialog.png) center no-repeat;
  background-size: contain;
  width: .98rem;
  height: 1.06rem;
  position: absolute;
  left: 50%;
  margin-left: -.49rem;
  bottom: -1.1rem; }

.main .nav-top .sns-wrap .qq {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAWCAMAAAAYXScKAAAAbFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8+T+BWAAAAI3RSTlMA+tWz/PTNqsOwj4ljNCsmBey8hDvl39zJvpOAamhcTkQdGPLR7qkAAACPSURBVBjTbdBHEsMwCEBRJLmoWy7pPdz/jsmgFAv7L9+CASDXOSlQNDbCrFFgrnLphxb/Hb94x3m3jzaFyowTlk2kJ6Yjacu0JT0w3ZNqpg2dVTOtI43lKYCnWGj1AI/LzmBW1MAGKz4Ae9AqlEuIYDS8c4VaoKIsVAb+yMyr31GkyQ+92CnfXdUW6+GSAF6VyCwDrtkWEgAAAABJRU5ErkJggg==) center no-repeat;
  background-size: contain;
  width: .21rem;
  height: 0.22rem; }

.main .nav-top .sns-wrap .game {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAASCAMAAAByxz6RAAAAilBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////2N2iNAAAALXRSTlMA3frwiPUuHQLn0MvGwKucdG5HBeThuHlfWFNPQz4ZEQ4J6q+hk5J9aWY0KSPsE860AAAAw0lEQVQY02XP17LCMAxF0e30ShJCu3Rub+f/f49xjMkQ1pNkaSQLq982lbkrVuuUm4PRRBD1WPtAz2YAl4UNl/mktgF2w4RTOr6arpRqYG2zEMbSll8pBxopMAUY43e2vEi6wEpKGMz9/yrb9AdG2mMNvSpjOXOy4GFXxE7ON6keSj/8yzcd3Pg00WDR1fejNy6IY02UfI1J9Rm9G3mvtD6sE3dB4U/gtHRBm+FkXSjrDY5NqHiWMDpGRvnHGeucMdEDV1yRMfkI2SyNAAAAAElFTkSuQmCC) center no-repeat;
  background-size: contain;
  width: .26rem;
  height: .18rem;
  display: block; }

.main .main-body {
  position: relative;
  z-index: 10;
  height: 100%;
  transition: all 700ms ease 0s; }

.main .main-body .section {
  overflow: hidden;
  height: 100%; }

.main .main-body .theme {
  position: relative;
  background: url(../images/bg1.png) top no-repeat;
  background-size: cover;
  height: 100%;
  overflow: initial; }

.main .main-body .theme .pv-wrap {
  width: 1.92rem;
  height: 1.92rem;
  position: absolute;
  top: 1rem;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 64.5%;
  cursor: pointer;
  z-index: 10; }

.main .main-body .theme .pv-wrap .pv-border {
  background: url(../images/pv-border.png) center no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%; }

.main .main-body .theme .pv-wrap .pv-play {
  background: url(../images/pv-play.png) center no-repeat;
  background-size: contain;
  width: .48rem;
  height: .51rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer; }

.main .main-body .theme .logo {
  background: url(../images/logo.png) center no-repeat;
  background-size: contain;
  width: 4.04rem;
  height: 3.33rem;
  position: absolute;
  left: 4%;
  top: 7%; }

.main .main-body .theme .slogan {
  background: url(../images/slogan.png) center no-repeat;
  background-size: contain;
  width: 5.29rem;
  height: 2.88rem;
  position: absolute;
  left: 49%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 1.12rem; }

.main .main-body .theme .android-slogan {
  background: url(../images/android-tips.png) center no-repeat;
  background-size: contain;
  width: 7.61rem;
  height: .49rem;
  position: absolute;
  left: 50%;
  margin-left: -3.68rem;
  top: 50%;
  margin-top: 1.62rem; }

.main .main-body .theme .btn-all-download {
  background-size: contain;
  width: 2.46rem;
  height: .7rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  margin-top: -.65rem;
  cursor: pointer;
  top: 9.7rem; }

.main .main-body .theme .btn_download {
  background: url(../images/btn_android_download.png) center no-repeat;
  background-size: contain;
  width: 2.03rem;
  height: .75rem;
  position: absolute;
  left: 61%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  margin-top: -.65rem;
  margin-left: -1rem;
  cursor: pointer;
  top: 4.7rem; }

.main .main-body .theme .btn-ios {
  background: url(../images/btn-ios.png) center no-repeat;
  background-size: contain;
  width: 2.04rem;
  height: .75rem;
  position: absolute;
  left: 35.5%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  margin-top: -.65rem;
  margin-left: 1.2rem;
  cursor: pointer;
  top: 4.7rem; }

.main .main-body .theme .btn-gift {
  background: url(../images/btn-gift.png) center/contain no-repeat;
  background-size: contain;
  width: 2.46rem;
  height: .7rem;
  position: absolute;
  left: 62%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  margin-top: -.65rem;
  margin-left: -1rem;
  cursor: pointer;
  top: 4.7rem; }

.main .main-body .theme .news-content {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATsAAAFxAgMAAABxcedeAAAACVBMVEUAAAC4qXu4qXvHrKIeAAAAAnRSTlMAUB34nMwAAACeSURBVHja7d0xEQAhEATBk/DJOwN/hBQqUUC2wQU9AtrC1Im2496qaP29fwYbtb5KxuPxeDwej8fj8Xg8Ho/H4/F4PB6Px+PxeDwej8fj8Xg8Ho/H4/F4PB6Px+PxeDwej8fj8Xg8Ho/H4/F4PB6Px+PxeDwej8fj8Xg8Ho/H4/F4PB6Px+PxeDwej8fj8Xg83sNr/vfr/jPMct1/lReH/v+aMstGYAAAAABJRU5ErkJggg==) center no-repeat;
  background-size: contain;
  width: 315px;
  height: 369px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -184px;
  -webkit-transition: -webkit-transform 1.5s;
  transition: -webkit-transform 1.5s;
  -o-transition: transform 1.5s;
  transition: transform 1.5s;
  transition: transform 1.5s, -webkit-transform 1.5s; }

.main .main-body .theme .news-content .arrow {
  width: 18px;
  height: 45px;
  background: url(../images/news-arrow.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-14px, -50%);
  -ms-transform: translate(-14px, -50%);
  transform: translate(-14px, -50%);
  cursor: pointer; }

.main .main-body .theme .news-content .news-list {
  width: 284px;
  margin: 0 auto;
  margin-top: 34px;
  position: relative; }

.main .main-body .theme .news-content .news-list .news-red {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAAARCAMAAAB6iQVDAAAAM1BMVEW8vLz/AADx9f3z4Of5lZr1yc/6d3vy6vL01Nv5h4v8VFf9P0H4o6n2vcP+JCb3sLb7Z2qHPlcmAAAAAXRSTlORx+57tAAAAKFJREFUKM/N0ksOwyAMBNDO4Bg34dP7n7YukSoIbLKpOotZPSwjeOBefuQDD++DTwjPFAqARPU2Q9gu3r4eZyx/igkolMlHysWnCOwUb+U++a3yGHxTYsXbT86+BOv3r22LnGACywsPpQzzsWVEhRiirDwqdfAStF3BF1v6EkLvXYYMIMaApYdy8IgU78qElskjde/1AjL3NkW7+X/3327mDXsFBrBgvWVSAAAAAElFTkSuQmCC) center no-repeat;
  background-size: contain;
  width: 47px;
  height: 17px;
  position: absolute;
  top: -26px;
  right: 0; }

.main .main-body .theme .news-content .news-list .item {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 28px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.521);
  color: #fff;
  cursor: pointer; }

.main .main-body .theme .news-content .news-list .noNews {
  font-size: 14px;
  line-height: 28px;
  color: #fff;
  text-align: center; }

.main .main-body .theme .news-content .more {
  display: block;
  margin-top: 18px;
  margin-left: 20px;
  font-size: 16px;
  color: #fff;
  cursor: pointer; }

.main .main-body .page3 {
  position: relative;
  background: url(../images/bg3.jpg) bottom no-repeat;
  background-size: cover; }

.main .main-body .page3 .story-text {
  background: url(../images/story-text.png) center no-repeat;
  background-size: contain;
  width: 9.99rem;
  height: 9.92rem;
  position: absolute;
  top: 35%;
  left: 39%;
  margin-top: -3rem;
  margin-left: -3rem; }

.main .main-body .page6 {
  height: 100%;
  position: relative;
  background: url(../images/bg6.jpg) bottom no-repeat;
  background-size: cover; }

.main .main-body .page6 .p6-title {
  background: url(../images/p6-title.png) center no-repeat;
  background-size: contain;
  width: 1.87rem;
  height: .6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -.93rem;
  margin-top: -3.2rem; }

.main .main-body .page6 .feature-cont {
  width: 1020px;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
  position: relative; }

.main .main-body .page6 #feature-swiper {
  width: 11.63rem;
  width: 26rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2.5rem;
  margin-left: -13rem; }

.main .main-body .page6 #feature-swiper .pic1 {
  background: url(../images/p1.jpg) center no-repeat;
  background-size: contain;
  width: 9.96rem;
  height: 4.89rem; }

.main .main-body .page6 #feature-swiper .pic2 {
  background: url(../images/p2.jpg) center no-repeat;
  background-size: contain;
  width: 9.96rem;
  height: 4.89rem; }

.main .main-body .page6 #feature-swiper .pic3 {
  background: url(../images/p3.jpg) center no-repeat;
  background-size: contain;
  width: 9.96rem;
  height: 4.89rem; }

.main .main-body .page6 #feature-swiper .pic4 {
  background: url(../images/p4.jpg) center no-repeat;
  background-size: contain;
  width: 9.96rem;
  height: 4.89rem; }

.main .main-body .page6 #feature-swiper .pic5 {
  background: url(../images/p5.jpg) center no-repeat;
  background-size: contain;
  width: 9.96rem;
  height: 4.89rem; }

.main .main-body .page6 #feature-swiper .pic6 {
  background: url(../images/p6.jpg) center no-repeat;
  background-size: contain;
  width: 9.96rem;
  height: 4.89rem; }

.main .main-body .page6 #feature-swiper .feature-pagination {
  margin-top: 20px;
  text-align: center;
  font-size: 0; }

.main .main-body .page6 #feature-swiper .feature-pagination .dot {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMAgMAAAArG7R0AAAADFBMVEUAAACYdEiYdEiYdEh4yU0vAAAABHRSTlMA/oFVNVA0MQAAACtJREFUCNdjYNBgYGCYxsDAFNrAwFmbwKB6OIJhOsM1EAaxQWIgOZAakFoA9SIKUaRaISIAAAAASUVORK5CYII=) center no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  display: inline-block;
  cursor: pointer; }

.main .main-body .page6 #feature-swiper .feature-pagination .dot-active {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAMAAABhq6zVAAAAP1BMVEUAAADIom++mWrguYDas3u3kmXTrXfPqXTKpHHUrXfYsXrFn27PqXTPqHTBm2vctXy9l2jfuH7GoG65k2XBm2oRpZrUAAAACHRSTlMAgoKBgYGBgXqlP94AAABNSURBVAjXPccJDoAgDETRoWwqtIp4/7NaK+lLJpkPEyNcHMMrnSqtfxirsi8FqMzcO3ddRdhcAEJr7f4WoEhEHhGCoUsRljxnhsv/fwHxUQMsD74K5AAAAABJRU5ErkJggg==) center no-repeat;
  background-size: contain; }

.main .main-body .page6 .feature-prev {
  background: url(../images/left.png) center no-repeat;
  background-size: contain;
  width: .51rem;
  height: .75rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: -6.55rem;
  z-index: 10;
  outline: 0;
  cursor: pointer; }

.main .main-body .page6 .feature-next {
  background: url(../images/right.png) center no-repeat;
  background-size: contain;
  width: .51rem;
  height: .75rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 6.08rem;
  z-index: 10;
  outline: 0;
  cursor: pointer; }

.footer {
  background: #000;
  padding: 50px 0;
  }

.footer td, .footer a {
  color: #fff;
  font-size: 12px;
  text-decoration: none; }

@-webkit-keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px); }
  50% {
    opacity: .2;
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px); }
  50% {
    opacity: .2;
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@-webkit-keyframes playRotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes playRotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0); }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
.home-container {
  height: 8rem;
  width: 6rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

#insert-game-header {
  height: 50px !important; }

audio {
  display: none; }
  audio.active {
    display: block; }

.ios-down, .tap-down, .btn-all-download {
  background: url(../images/button.png) center no-repeat;
  background-size: contain;
  width: 2.46rem;
  height: 0.7rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  margin-top: -0.65rem;
  cursor: pointer;
  top: 9.7rem;
  color: #fff;
  font-size: .25rem;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  line-height: 0.7rem;
  text-shadow: 0 0 1px #15278a, 0 0 1px #15278a, 0 0 1px #15278a,0 0 1px #15278a; }
  .ios-down:hover, .tap-down:hover, .btn-all-download:hover {
    background: url(../images/button-hover.png) center no-repeat;
    background-size: contain; }

.ios-down {
  margin-left: -2.64rem; }

.tap-down {
  margin-left: 2.64rem; }

a:hover {
  filter: brightness(1.2);
  cursor: pointer; }

/*# sourceMappingURL=style.css.map */
