/* Function */
.ac-dn {
  display: none !important;
}
.ac-cb:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  overflow: hidden;
  content: '.';
}
.ac-ib {
  display: inline-block;
}
.ac-blk {
  display: block;
}
.ac-blkfull {
  display: block;
  width: 100%;
  height: 100%;
}
.ac-img {
  display: block;
  width: 100%;
}
.ac-dis {
  pointer-events: none;
}
.ac-hide {
  display: none !important;
}
.ac-vhide {
  visibility: hidden;
}
/* 适配iphoneX */
.ac-iphonexfull {
  padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.ac-iphonexlr {
  padding-left: constant(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.ac-iphonexbm {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.ac-iphonexmgfull {
  margin: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  margin: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.ac-iphonexmglf {
  margin-left: constant(safe-area-inset-left);
  margin-right: constant(safe-area-inset-right);
  margin-left: env(safe-area-inset-left);
  margin-right: env(safe-area-inset-right);
}
.ac-iphonexmgbm {
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom);
}
/* 1px解决文案：优点，可画圆角，重置可变色；缺点，安卓低端机边框可能会糊，会丢线；*/
.ac-bd {
  position: relative;
}
.ac-bd *,
.ac-txt * {
  position: relative;
  z-index: 1;
}
.ac-bd:after,
.ac-txt:after {
  position: absolute;
  z-index: 2;
  content: '';
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-width: 0;
  pointer-events: none;
}
/* @Media & for UI fix */
/*-----------------------------------------------------*/
/* 1px解决方案 2倍屏 */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .ac-bd:after,
  .ac-txt:after {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    border-color: rgba(0, 0, 0, 0.1);
  }
}
/* 1px解决方案 3倍屏 */
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .ac-bd:after,
  .ac-txt:after {
    width: 300%;
    height: 300%;
    transform: scale(0.333333);
    border-color: rgba(0, 0, 0, 0.13);
  }
}
/* Position */
.ac-fl {
  float: left;
}
.ac-fr {
  float: right;
}
.ac-pr {
  position: relative;
}
.ac-pa {
  position: absolute;
}
.ac-prafll {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ac-fix {
  position: fixed;
}
.ac-fixfll {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ac-bgfll {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
/* Align */
/* absolute 自身 左右居中 */
.ac-hc {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
}
/* absolute 自身 上下居中 */
.ac-vc {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
}
/* absolute 自身 绝对居中 */
.ac-cc {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* flex 内容多行居中排版，需要定高 */
.ac-fvc {
  display: flex;
  justify-content: center;
  flex-direction: column;
  -webkit-box-pack: center;
}
.ac-flvc {
  display: flex;
  align-content: center;
  align-items: center;
}
.ac-fcc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ac-fbvc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ac-flex11 {
  flex: 1 1 auto;
}
.ac-flex01 {
  flex: 0 1 auto;
}
.ac-flex00 {
  flex: 0 0 auto;
}
.ac-mgt5 {
  margin-top: 5px;
}
.ac-mgt10 {
  margin-top: 10px;
}
.ac-mgt15 {
  margin-top: 15px;
}
.ac-mgt20 {
  margin-top: 20px;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: 'HanHei SC', 'PingFang SC', 'Helvetica Neue', 'Helvetica', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
body {
  box-sizing: border-box;
}
html,
body,
img,
iframe,
button,
input {
  border: 0;
}
body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
p,
input,
header,
menu,
section,
figure,
figcaption,
article,
blockquote {
  padding: 0;
  margin: 0;
}
textarea,
select,
input,
button {
  font-size: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
em,
i {
  font-style: normal;
  text-align: left;
}
li,
i {
  list-style: none;
}
textarea {
  resize: none;
  overflow: auto;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
/* Text */
.ac-thide {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: normal;
}
.ac-thide2,
.ac-thide3,
.ac-thide4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.ac-thide3 {
  -webkit-line-clamp: 3;
}
.ac-thide4 {
  -webkit-line-clamp: 4;
}
.ac-pre {
  word-wrap: break-word;
  word-break: break-all;
}
.ac-nw {
  white-space: nowrap;
}
.ac-tid {
  text-indent: -9999px;
}
.ac-tc {
  text-align: center;
}
.ac-tl {
  text-align: left;
}
.ac-tr {
  text-align: right;
}
/* Grid for Web */
@media screen and (min-width: 600px) {
  .ac-g-web {
    width: 600px;
    margin: 0 auto;
  }
  .ac-g-web-sep {
    width: 100%;
  }
  .ac-g-web-sep .ac-g-main {
    width: 600px;
    margin: 0 auto;
  }
  .ac-g-main-cnt {
    height: auto;
  }
}

/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 26, 2022
 */

 @font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.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{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-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,.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:flex;justify-content: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%;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;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
html,
body {
  margin: 0;
  padding: 0;
  background-color: #faece1;
}
div,
p,
span,
img {
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: #000000;
  -webkit-tap-highlight-color: transparent;
}
.app-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-size: cover;
  font-size: 0.12rem;
}
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
.bg {
  width: 100%;
  height: 100%;
  background-size: cover;
}
@font-face {
  font-family: 'font';
  src: local('Source Han Serif CN'), url(//game.gtimg.cn/images/xycq/act/a20260428qyf/font/font.woff2) format('woff2');
  font-style: normal;
}
.ui-1 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_1.jpg);
  width: 100%;
  height: 7rem;
  top: 0rem;
  left: 0;
}
.ui-2 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_2.jpg);
  width: 100%;
  height: 7rem;
  top: 7rem;
  left: 0;
}
.ui-3 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_3.jpg);
  width: 100%;
  height: 7rem;
  top: 14rem;
  left: 0;
}
.ui-4 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_4.jpg);
  width: 100%;
  height: 7rem;
  top: 21rem;
  left: 0;
}
.ui-5 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_5.jpg);
  width: 100%;
  height: 7rem;
  top: 28rem;
  left: 0;
}
.ui-6 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_6.jpg);
  width: 100%;
  height: 7rem;
  top: 35rem;
  left: 0;
}
.ui-7 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_7.jpg);
  width: 100%;
  height: 7rem;
  top: 42rem;
  left: 0;
}
.ui-8 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_8.jpg);
  width: 100%;
  height: 7rem;
  top: 49rem;
  left: 0;
}
.ui-9 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_9.jpg);
  width: 100%;
  height: 7rem;
  top: 56rem;
  left: 0;
}
.ui-10 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_10.jpg);
  width: 100%;
  height: 7rem;
  top: 63rem;
  left: 0;
}
.ui-11 {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slice_11.jpg);
  width: 100%;
  height: 5.41rem;
  top: 70rem;
  left: 0;
}
.box-logo {
  position: absolute;
  left: 0.31rem;
  top: 0.21rem;
  width: 1.08rem;
  height: 1.35rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/xycq.png);
}
.box-m01 {
  position: absolute;
  top: 8.97rem;
  left: 0rem;
  width: 7.5rem;
  height: 5.89rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m01.png);
}
.box-m02 {
  position: absolute;
  top: 22.2rem;
  left: 0rem;
  width: 7.5rem;
  height: 11.16rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m02.png);
}
.box-tab {
  position: absolute;
  left: 4.18rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 6rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/tab.png);
}
.box-slogan {
  position: absolute;
  left: 4.15rem;
  top: 1.2rem;
  width: 3.28rem;
  height: 5.75rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/slogan.png);
}
.goindex {
  position: absolute;
  width: 2.87rem;
  height: 0.81rem;
  top: 0.17rem;
  left: 4.35rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/goindex.png);
}
.box-m1 {
  position: absolute;
  left: 0.27rem;
  top: 9.15rem;
  width: 6.9rem;
  height: 7.19rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m1.png);
}
.box-reserve {
  position: absolute;
  left: 0.6rem;
  top: 16.48rem;
  width: 3.05rem;
  height: 0.87rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/reserve.png);
}
.box-reserve.got {
  filter: grayscale(100%);
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/reserved.png);
}
.reserve-num {
  position: absolute;
  left: 2.2rem;
  top: 27rem;
  width: 3.07rem;
  height: 0.8rem;
  font-size: 0.4rem;
  color: #001018;
  text-align: center;
  line-height: 0.8rem;
  font-family: font;
}
.box-m2 {
  position: absolute;
  left: 0rem;
  top: 17.77rem;
  width: 7.5rem;
  height: 12.89rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m2.png);
}
.box-m2-btns {
  position: absolute;
  left: 5.4rem;
  top: 21.38rem;
  width: 1.44rem;
  height: 8.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.box-m2-btns .actbtn {
  width: 1.44rem;
  height: 0.36rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m2_not.png);
}
.box-m2-btns .actbtn.get {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m2_get.png);
}
.box-m2-btns .actbtn.got {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m2_got.png);
}
.level-num {
  position: absolute;
  left: 0rem;
  top: 20.17rem;
  width: 50%;
  height: 0.36rem;
  font-size: 0.2rem;
  color: #ffffff;
  text-align: center;
  font-family: font;
  line-height: 0.36rem;
}
.active-num {
  position: absolute;
  left: 50%;
  top: 20.17rem;
  width: 50%;
  height: 0.36rem;
  font-size: 0.2rem;
  color: #ffffff;
  text-align: center;
  font-family: font;
  line-height: 0.36rem;
}
.thb-num {
  position: absolute;
  left: 4.2rem;
  top: 45.05rem;
  width: 2.5rem;
  height: 0.36rem;
  font-size: 0.35rem;
  color: #001018;
  text-align: center;
  font-family: font;
  line-height: 0.36rem;
}
.box-m3 {
  position: absolute;
  left: 0rem;
  top: 31.5rem;
  width: 7.43rem;
  height: 9.21rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m3.png);
}
.box-create-btn {
  position: absolute;
  left: 1.75rem;
  top: 34.05rem;
  width: 4.02rem;
  height: 0.64rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/create_btn.png);
}
.box-join-btn-1 {
  position: absolute;
  left: 4.7rem;
  top: 34.05rem;
  width: 2.46rem;
  height: 0.64rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/join_btn-1.png);
}
.box-join-input {
  position: absolute;
  left: 0.4rem;
  top: 34.1rem;
  width: 4.3rem;
  height: 0.55rem;
  background-color: #f190a3;
  border: 1px solid #f8e0d0;
}
.box-join-input .invite-input {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  width: 90%;
  height: 96%;
  left: 0.1rem;
  line-height: 0.61rem;
  color: #ffffff;
  font-size: 0.2rem;
  text-align: center;
}
.box-join-dec {
  position: absolute;
  left: 2.5rem;
  top: 34.75rem;
  width: 2.7rem;
  height: 0.51rem;
  font-size: 0.25rem;
  letter-spacing: 2px;
  color: #704951;
  line-height: 0.6rem;
}
.box-other-code {
  position: absolute;
  left: 1.6rem;
  top: 35.32rem;
  width: 4.3rem;
  height: 0.51rem;
  background-color: #f190a3;
  border: 1px solid #f8e0d0;
}
.box-other-code input {
  position: absolute;
  width: 90%;
  height: 96%;
  left: 0.2rem;
  color: #ffffff;
  font-size: 0.24rem;
  text-align: center;
  outline: none;
  border: none;
  background-color: transparent;
}
.box-join-btn {
  position: absolute;
  left: 2.5rem;
  top: 36.1rem;
  width: 2.46rem;
  height: 0.64rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/join_btn.png);
}
.box-team-bg {
  position: absolute;
  left: 1.3rem;
  top: 37.8rem;
  width: 4.9rem;
  height: 1.77rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: space-evenly;
}
.box-team-bg .team-item {
  width: 1.77rem;
  height: 1.77rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.box-team-bg .box-icon {
  position: absolute;
  left: 0.25rem;
  top: 0.3rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
}
.box-team-bg .box-icon img {
  border-radius: 50%;
  border: 2px solid #eac970;
  width: 100%;
  height: 100%;
}
.box-team-bg .box-icon-bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.77rem;
  height: 1.77rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/icon_bg.png);
}
.box-team-bg .box-icon-dec {
  position: absolute;
  font-size: 0.18rem;
  color: #ffffff;
  left: 5%;
  top: -0.3rem;
  width: 90%;
  text-align: center;
  letter-spacing: 1px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box-m4 {
  position: absolute;
  left: 0rem;
  top: 41.42rem;
  width: 7.5rem;
  height: 11.5rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m4.png);
}
.box-m4-btns {
  position: absolute;
  left: 0.15rem;
  top: 47.6rem;
  width: 7.2rem;
  height: 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-between;
}
.m4btn {
  width: 1.76rem;
  height: 0.45rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m4_not.png);
}
.m4btn.get {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m4_get.png);
}
.m4btn.got {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m4_got.png);
}
.m4-money-num {
  position: absolute;
  left: 1rem;
  top: 44rem;
  width: 5.5rem;
  height: 0.75rem;
  line-height: 0.75rem;
  font-size: 0.6rem;
  text-align: center;
  font-family: font;
  color: #ffffff;
}
.box-m5 {
  position: absolute;
  left: 0rem;
  top: 61.25rem;
  width: 7.43rem;
  height: 12.35rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m5.png);
}
.m5btn {
  position: absolute;
  width: 1.99rem;
  height: 0.52rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m5_not.png);
}
.m5btn.get {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m5_get.png);
}
.m5btn.got {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m5_got.png);
}
.box-m5-btn1 {
  left: 1.22rem;
  top: 65.37rem;
}
.box-m5-btn2 {
  left: 4.23rem;
  top: 65.37rem;
}
.box-m5-btn3 {
  left: 1.22rem;
  top: 68.13rem;
}
.box-m5-btn4 {
  left: 4.23rem;
  top: 68.13rem;
}
.box-m5-btn5 {
  left: 1.22rem;
  top: 70.93rem;
}
.box-m5-btn6 {
  left: 4.23rem;
  top: 70.93rem;
}
.box-m5-btn7 {
  left: 2.8rem;
  top: 73.66rem;
}
.box-m6 {
  position: absolute;
  left: 0.35rem;
  top: 54.05rem;
  width: 6.7rem;
  height: 6.4rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m6.png);
}
.yybtn {
  position: absolute;
  left: 3.85rem;
  top: 16.48rem;
  width: 3.05rem;
  height: 0.87rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/reserve_get.png);
}
.yybtn.got {
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/yy_got.png);
}
.pop-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pop-content {
  position: relative;
  width: 7.5rem;
  height: 5.42rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/modal_bg.png);
}
.close {
  position: absolute;
  top: -0.3rem;
  right: 0.8rem;
  width: 0.28rem;
  height: 0.28rem;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcBAMAAACAI8KnAAAAHlBMVEUAAAD///////////////////////////////////8kfJuVAAAACXRSTlMAYO+fMBDPv4BfeUZBAAAAh0lEQVQY00XPIQ4CQRBE0SKAx64HgQOJI5xgFRcgeAyCIyCBBKjbbrZ6frZUT575I/Vqy7m8iM3W0tk7nt37qIc/oL3RyXBnr7TYhoMvqRhUMQiDxSBcCP+CEwcnDrKnfctBUEujttLAfyuntpVTy8eoDYMKg5SDMAgfRoSvmgeLv720l+C7Bs/vSAQ2O1T/AAAAAElFTkSuQmCC);
}
.create_txt {
  position: absolute;
  top: 1.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: 76%;
  text-align: center;
  font-size: 0.24rem;
  color: #f14974;
  line-height: 0.5rem;
}
.create_btn {
  position: absolute;
  top: 3.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.46rem;
  height: 0.64rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/join_btn.png);
}
.invite_bg {
  position: absolute;
  top: 1.1rem;
  left: 0.7rem;
  width: 5.8rem;
  height: 2.88rem;
  transform: scale(0.85);
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/modal/invite_txt.png);
}
.invite_code {
  position: absolute;
  width: 3.2rem;
  height: 0.4rem;
  line-height: 0.4rem;
  top: 2.6rem;
  left: 2.82rem;
  font-size: 0.16rem;
  color: #f14974;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.invite_url {
  position: absolute;
  width: 2.9rem;
  height: 0.5rem;
  top: 3.22rem;
  left: 3rem;
  font-size: 0.17rem;
  color: #f14974;
}
.copy_code {
  position: absolute;
  transform: scale(0.85);
  top: 4.1rem;
  left: 1.25rem;
  width: 2.54rem;
  height: 0.67rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/modal/copy.png);
}
.copy_url {
  position: absolute;
  transform: scale(0.85);
  top: 4.1rem;
  left: 3.7rem;
  width: 2.54rem;
  height: 0.67rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/modal/copy_url.png);
}
.box-login {
  position: absolute;
  top: 8.65rem;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.18rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m01-swiper {
  position: absolute;
  width: 6.66rem;
  height: 6.38rem;
  top: 15.2rem;
  left: 0.42rem;
}
.s1 {
  width: 6.66rem;
  height: 6.38rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m01_s1.png);
}
.s2 {
  margin-left: 0.12rem;
  width: 6.47rem;
  height: 5.81rem;
  background-image: url(//game.gtimg.cn/images/xycq/act/a20260428qyf/m/m01_s2.png);
}
.swiper-button-next,
.swiper-button-prev {
  width: 0.34rem;
  height: 0.46rem;
}
.prev1 {
  margin-left: -0.45rem;
  margin-top: -0.9rem;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAuCAMAAAB6WzuLAAAAVFBMVEUAAADTdULLbTvxj1rJbDnxj1rgf0vxj1rTdEHxj1rbe0jkg0/DZzbXeEXxj1rigk3riVXxj1rxj1rYeEXIaznMbzzff0vQcj/EaDbUdULcfEjjgU5TISldAAAAE3RSTlMAKoGw6gaDM+rp6ZmZgk3patOSLcExnQAAAKpJREFUOMvNz+sOwiAMhmFkbnMepxxq5/3fpwj5IiEDEg/Z3vRfnzSpmE8ekcyJO9pulhVau7XWeaHR6oUx2o/JC9/yggwRGUMFgXZBtE1fFc3Q14Q4w+REK2IjmditmSGEF95AoES8zSkl4+BE6HYVsya9AqOUYhUbCBgPXgWTfgTjEEcGIjJoDwNRMBAZgz4w3YRWYmxosnVjf2Yu35lHqGzQ/814QJ14Ao5AKE2uE61XAAAAAElFTkSuQmCC);
}
.next1 {
  margin-top: -0.9rem;
  margin-right: -0.4rem;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAuCAMAAAB6WzuLAAAATlBMVEUAAADNcD3be0jLbjzcfEnJbDrgf0vxj1rti1bxj1rxj1rDZzXwjlnkg0/xj1rSdEHFaTfffkvJbDrSdEHbfEjYeUbPcT7MbzzigU3VdkOAr0oHAAAAEHRSTlMAgzMw8O1/vAom5LmgqmDv8UCyEwAAAKlJREFUOMvV0MsOgjAQQNHiAyrio5YO9P9/1NrkCkLa6EKRm8l0czKLKn18VqhE2/2VVmRu7xj6J9N1WdPRL4zIQ0jOCM2Mrg5Jg6jqlEE06oy5WLEiYWEQamyoeBFpg8ibstbca6r4bMZkfiUK7631YfkgMBNBCAxiNxWYsXBhnEMMv4twhBgMgko16xPRZkVLCwtj2jgmLWLLi970IdNnBH1R6OZECXEHVhokh1+BwGYAAAAASUVORK5CYII=);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: '';
}

.role-selector {
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 1000;
  display: none;
  position: fixed;
}
.r-container {
  width: 296px;
  /* height: 422px; */
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  font-size: 20px;
  z-index: 1000;
}
.r-container > div {
  margin: 8px 0;
}
.pip {
  font-size: 0.7em;
}
.pip input {
  width: 14px;
  height: 14px;
  margin: 0 2px;
  cursor: pointer;
}
.r-container select,
.r-container option {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #797b7c;
  padding: 5px;
  font-size: 0.8em;
}
.error {
  margin: 0 0 -4px;
  font-size: 0.7em;
  color: red;
}
.btns {
  margin-top: 5px;
  line-height: 40px;
  font-size: 0.8em;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.btns div {
  width: 75px;
  height: 40px;
  text-align: center;
  letter-spacing: 0.5em;
  text-indent: 0.7em;
  border-radius: 5px;
  cursor: pointer;
}
.cancel-btn {
  border: 1px solid #e0e3e9;
  margin-right: 15px;
}
.confirm-btn {
  background-color: #66b1ff;
  color: #fff;
}
.r-block {
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.r-close {
  position: absolute;
  right: 30px;
  top: 20px;
  color: #abadb4;
  cursor: pointer;
}
.r-mask {
  background-color: #000;
  opacity: 0.7;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/*
	PC端登录相关样式
	less使用方式：
	lessc login.css login-min.css -x
*/


/*qq登录*/
.milo-qqLogin{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none;
}
.milo-qqLogin .qqLoginCover{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.milo-qqLogin .qqLoginContent{
    width: 650px;
    height: 400px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -225px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}
.milo-qqLogin .qqLoginFrame{
	width: 100%;
    height: 400px;
    overflow: hidden;
    border: 0px solid white
}

/*微信登录*/
.milo-wxLogin{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none;
}
.milo-wxLogin .wxLoginCover{
	position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.milo-wxLogin .wxLoginContent{
    box-sizing: content-box;
	width: 300px;
    height: 460px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -150px;
    margin-top: -230px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    padding:0px 20px;
}
.milo-wxLogin .wxLoginContent .wxLoginClose{
    height: 40px;
    width: 100%;  
}
.milo-wxLogin .wxLoginContent .wxLoginClose a{
	line-height: 36px;
    text-align: center;
	float: right;
	margin-right: -20px;
    height: 40px;
    width: 40px;
    display:inline-block;
	color: rgb(102, 102, 102);
    font-family: Verdana, sans-serif;
    font-size: 30px;
    text-decoration:none;
    cursor: pointer;
}
.milo-wxLogin .wxLoginContent .wxLoginClose a:hover{
	color: rgb(240, 115, 115);
    font-family: Verdana, sans-serif;
}
.milo-wxLogin .wxLoginContent .wxLoginBox{
	width:100%;
	height:100%;
	overflow:hidden;
}


/*qq微信登录*/

.milo-qqwx-login {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none
}

.qqwx-login-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.qqwx-login-frame {
    width: 750px;
    height: 470px;
    background-color: white;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -240px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: 5px 5px 0px 0px;
}

.qqwx-tabs {
    line-height: 40px;
    /* position: absolute; */
    z-index: 100001;
    width: 100%;
    height: 40px;
}

.qqwx-tabs .qq-tab,
.qqwx-tabs .wx-tab {
    cursor: pointer;
    display: inline-block;
    width: 50%;
    float: left;
    text-align: center;
    font-size: 18px;
    background-color: #f1f1f1;
    color: #b1b1b1;
    text-decoration: none
}

.qqwx-active-qq a.qq-tab {
    color: #fff;
    background-color: #51b7ec
}

.qqwx-active-wx a.wx-tab {
    color: #fff;
    background-color: #4ab218
}

.qqwx-tabs .qqwxtab-close {
    position: absolute;
    right: 0px;
    top: 0px;
    text-decoration: none;
    color: grey;
    font-size: 25px;
    line-height: 25px;
    display: inline-block;
    padding: 0px 5px;
    border-width: 0px 0px 1px 1px;
    border-style: solid
}

.qqwx-active-qq .qqwx-tabs .qqwxtab-close {
    border-color: #e0dcdc
}

.qqwx-active-wx .qqwx-tabs .qqwxtab-close {
    border-color: #8BC34A;
    color: #d4d2d2
}

.qqwx-tabs .qqwxtab-close:hover {
    font-weight: bold
}

.qqwx-tips {
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    color: #a2a2a2;
    position: absolute;
    height: 32px;
    width: 100%;
    top: 40px;
    z-index: 10001;
    background-color: #fff;
    border: none;
}

.qqwx-frame {
    width: 100%;
    height: 400px;
    position: absolute;
    overflow: hidden;
    border: none;
    top: 70px;
}

.qqwx-frame div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    text-align: center;
    display: none;
    border: none;
}

.qqwx-frame div iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.qqwx-active-qq div.qqwx-frame-qq-div {
    display: block
}

.qqwx-active-wx div.qqwx-frame-wx-div {
    display: block
}

i.ico-qq-logo,
i.ico-wx-logo {
    display: inline-block;
    height: 23px;
    vertical-align: middle;
    margin: 0px 5px;
    margin-top: -4px;
    background: url(https://vm.gtimg.cn/tencentvideo/vstyle/web/common/style/img/login/sprite_login.png?d=0210&max_age=31104000) no-repeat
}

i.ico-qq-logo {
    width: 20px
}

i.ico-wx-logo {
    width: 24px
}

.qqwx-active-wx i.ico-qq-logo {
    background-position: -180px -90px
}

.qqwx-active-wx i.ico-wx-logo {
    background-position: -250px -90px
}

.qqwx-active-qq i.ico-qq-logo {
    background-position: -200px -90px
}

.qqwx-active-qq i.ico-wx-logo {
    background-position: -220px -90px
}

div#qqwx-frame-wx-div {
    top: 20px
}


/*qc登录*/

.loginframe {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: 0px solid white
}

.milo-qConnectLogin {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px
}

.qConnectLoginCover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.qConnectLoginContent {
    width: 752px;
    height: 400px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -220px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}

.qConnectLoginContent>div {
    height: 30px;
    width: 100%;
    /* background-color: #4fb7ec; */
    background-color: #fff;
    font-size: 18px
}

.qConnectLoginContent>div span {
    color: white;
    display: inline-block;
    line-height: 30px;
    padding: 0px 5px
}

.qConnectLoginContent>div a {
    float: right;
    line-height: 30px;
    text-decoration: none;
    color: #009aff;
    font-weight: bold;
    font-size: 25px;
    width: 30px;
    text-align: center;
    cursor: pointer
}

.qConnectLoginContent>div a:hover {
    color: #f57272
}

.qConnectLoginContent>div {
    position: absolute;
    z-index: 100001;
    right: 0px;
    width: 30px;
    top: 0px;
    height: 48px;
    text-align: center
}

.qConnectLoginContent>div a {
    line-height: 40px;
    display: inline-block
}


/*qc微信登录*/

.milo-qcwx-login {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: none
}

.qcwx-login-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.qcwx-login-frame {
    width: 750px;
    height: 470px;
    background-color: white;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -375px;
    margin-top: -240px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    border-radius: 5px 5px 0px 0px;
}

.qcwx-tabs {
    line-height: 40px;
    position: absolute;
    z-index: 100001;
    width: 100%
}

.qcwx-tabs .qc-tab,
.qcwx-tabs .wx-tab {
    cursor: pointer;
    display: inline-block;
    width: 50%;
    float: left;
    text-align: center;
    font-size: 18px;
    background-color: #f1f1f1;
    color: #b1b1b1;
    text-decoration: none
}

.qcwx-active-qc a.qc-tab {
    color: #fff;
    background-color: #51b7ec
}

.qcwx-active-wx a.wx-tab {
    color: #fff;
    background-color: #4ab218
}

.qcwx-tabs .qcwxtab-close {
    position: absolute;
    right: 0px;
    top: 0px;
    text-decoration: none;
    color: grey;
    font-size: 25px;
    line-height: 25px;
    display: inline-block;
    padding: 0px 5px;
    border-width: 0px 0px 1px 1px;
    border-style: solid
}

.qcwx-active-qc .qcwx-tabs .qcwxtab-close {
    border-color: #e0dcdc
}

.qcwx-active-wx .qcwx-tabs .qcwxtab-close {
    border-color: #8BC34A;
    color: #d4d2d2
}

.qcwx-tabs .qcwxtab-close:hover {
    font-weight: bold
}

.qcwx-tips {
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    color: #a2a2a2;
    position: absolute;
    width: 100%;
    top: 40px;
    z-index: 10001;
    background-color: #fff;
}

.qcwx-frame {
    width: 750px;
    height: 470px;
    position: absolute;
    overflow: hidden;
}

.qcwx-frame div {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    text-align: center;
    display: none
}

.qcwx-frame div iframe {
    width: 100%;
    height: 100%
}

.qcwx-active-qc div.qcwx-frame-qc-div {
    display: block
}

.qcwx-active-wx div.qcwx-frame-wx-div {
    display: block;
    top: 70px;
    height: 400px;
}

i.ico-qc-logo,
i.ico-wx-logo {
    display: inline-block;
    height: 23px;
    vertical-align: middle;
    margin: 0px 5px;
    margin-top: -4px;
    background: url(https://vm.gtimg.cn/tencentvideo/vstyle/web/common/style/img/login/sprite_login.png?d=0210&max_age=31104000) no-repeat
}

i.ico-qc-logo {
    width: 20px
}

i.ico-wx-logo {
    width: 24px
}

.qcwx-active-wx i.ico-qc-logo {
    background-position: -180px -90px
}

.qcwx-active-wx i.ico-wx-logo {
    background-position: -250px -90px
}

.qcwx-active-qc i.ico-qc-logo {
    background-position: -200px -90px
}

.qcwx-active-qc i.ico-wx-logo {
    background-position: -220px -90px
}

div#qcwx-frame-wx-div {
    top: 20px
}


/*wegame登录*/

.wegameloginframe {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border: 0px solid white
}

.milo-wegameLogin {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px
}

.wegameLoginCover {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 9999;
    background-color: white;
    opacity: 0.7;
    filter: alpha(opacity=70)
}

.wegameLoginContent {
    width: 800px;
    height: 600px;
    background-color: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    margin-left: -400px;
    margin-top: -300px;
    border: 1px solid #bfbfbf;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3)
}

.wegameLoginContent>div {
    height: 30px;
    width: 100%;
    background-color: none;
    font-size: 18px
}

.wegameLoginContent>div.wegameLoginTitle {
    width: 100%;
    background-color: #0e0e0e
}

div.wegameLoginIcon {
    display: none
}

.wegameLoginTitle>div.wegameLoginIcon {
    display: block;
    float: left;
    width: 239px;
    height: 60px;
    background: url(https://api.rail.tgp.qq.com/web/oauth2.0/login/images/wegame-logo-m.png) no-repeat center;
    margin-left: 10px
}

.wegameLoginContent>div span {
    color: white;
    display: inline-block;
    line-height: 30px;
    padding: 0px 5px
}

.wegameLoginContent>div a {
    float: right;
    line-height: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 25px;
    width: 30px;
    text-align: center;
    cursor: pointer
}

.wegameLoginContent>div a:hover {
    color: #f57272
}

.wegameLoginContent>div {
    position: absolute;
    z-index: 100001;
    right: 0px;
    width: 30px;
    top: 0px;
    height: 60px;
    text-align: center
}

.wegameLoginContent>div a {
    line-height: 55px;
    display: inline-block
}


