/* 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}
body,
html {
  background-color: #79360a;
}
/* Footer */
#afooter {
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  color: #9f9e9e;
  background: #000306;
  padding: 15px 0;
  overflow: hidden;
}
#afooter .wrap_ied {
  margin: 0 auto;
  width: 1200px;
}
#afooter a {
  color: #9f9e9e;
  text-decoration: none;
}
#afooter a:hover {
  text-decoration: underline;
}
.text {
  font-size: 0;
}
/* Footer END */
.bg {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.app-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  min-width: 1200px;
  max-width: 1920px;
  overflow: hidden;
}
.app-container__inner {
  position: absolute;
  width: 1200px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
.web-bg {
  position: relative;
  min-width: 1200px;
  background-size: 1920px 100%;
  background-position: top center;
  width: 100%;
  height: 1080px;
}
.button {
  /* 按钮 */
  cursor: pointer;
  transition: all 0.3s;
  background-size: contain;
  background-repeat: no-repeat;
}
.button:hover {
  filter: brightness(1.1);
}
.button.disabled {
  filter: grayscale(1);
}
.button.disabled:hover {
  filter: grayscale(1);
}
.button.unable {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unable.png);
}
.button.received {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/ylq.png);
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.ui-1 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_1ph.jpg);
  z-index: 2;
  transition: all 0.5s linear;
}
.ui-1.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_1.jpg);
}
.ui-2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_2.jpg);
}
.ui-3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_3.jpg);
}
.ui-4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_4.jpg);
}
.ui-5 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_5.jpg);
}
.ui-6 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_6.jpg);
}
.ui-7 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_7.jpg);
}
.ui-8 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_8.jpg);
}
.ui-9 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/slice_9.jpg);
  max-height: 155px;
}
.box-button {
  position: absolute;
  top: 877px;
  left: 50%;
  width: 930px;
  height: 200px;
  z-index: 100;
  transform: translate(-50%);
}
.box-button .box-down {
  position: absolute;
  width: 459px;
  height: 110px;
  right: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/down.png);
  z-index: 101;
  z-index: 100;
}
.box-button .box-yy {
  position: absolute;
  width: 459px;
  height: 110px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_yy.png);
  z-index: 101;
}
.box-button .box-yy.received {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/yyy.png);
}
.box-button .loginTxt {
  position: absolute;
  width: 449px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 20px;
  top: 199px;
  left: 50%;
  transform: translate(-50%);
  color: #f2f2f2;
  cursor: pointer;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/qqbg.png);
}
.normal-ani {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease-out;
}
.normal-ani.active {
  opacity: 1;
  transform: none;
}
.opc-ani {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.opc-ani.active {
  opacity: 1;
}
.kv-container {
  position: absolute;
}
.m1lqbtn {
  position: absolute;
  width: 168px;
  height: 50px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m3-lq.png);
}
.box-lq1 {
  top: 687px;
  left: 96px;
}
.box-lq2 {
  top: 738px;
  left: 310px;
}
.box-lq3 {
  top: 687px;
  left: 518px;
}
.box-lq4 {
  top: 738px;
  left: 729px;
}
.box-lq5 {
  top: 687px;
  left: 942px;
}
.box-xylogo {
  position: absolute;
  width: 98px;
  height: 100px;
  top: 36px;
  left: 311px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_xylogo.png);
  z-index: 100;
}
.box-wegame {
  position: absolute;
  width: 244px;
  height: 56px;
  top: 58px;
  left: 49px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_wegame.png);
  z-index: 100;
}
.box-m1container {
  position: relative;
  margin-top: 1163px;
  width: 100%;
  height: 1054px;
}
.box-m1 {
  position: absolute;
  width: 1200px;
  height: 924px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m1.png);
}
.box-dljs {
  position: absolute;
  width: 366px;
  height: 88px;
  top: 950px;
  left: 229px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_dljs.png);
}
.box-qhzh {
  position: absolute;
  width: 366px;
  height: 88px;
  top: 950px;
  left: 641px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_qhzh.png);
}
.m2lqbtn {
  position: absolute;
  width: 368px;
  height: 88px;
  top: 530px;
  left: 884px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m3-lq1.png);
}
.m2lqbtn.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m2-ylq.png);
}
.m2lqbtn.unable {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unable1.png);
}
.m2lqbtn.received {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m2-ylq.png);
}
.m2btn2 {
  left: 6px;
}
.m2btn3 {
  left: 418px;
}
.m2btn5 {
  left: 828px;
}
.m2btn100 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m3-lq2.png);
  top: 1296px;
  left: 649px;
}
.text-m2-txt2 {
  position: absolute;
  top: 840px;
  left: 225px;
  font-size: 22px;
  color: #eebb6e;
  text-align: center;
}
.qbyl {
  position: absolute;
  top: 1410px;
  left: 525px;
  font-size: 28px;
  color: #eebb6e;
  line-height: 40px;
  border-bottom: 2px solid #eebb6e;
  cursor: pointer;
}
.roleName {
  position: absolute;
  top: 1055px;
  left: 321px;
  color: #703009;
  font-size: 22px;
}
.jb {
  position: absolute;
  top: 1210px;
  left: 180px;
  width: 380px;
  display: flex;
  justify-content: center;
}
.qbnum {
  position: absolute;
  top: 968px;
  left: 905px;
  display: flex;
  transition: all 0.5s linear;
}
.qbnum img {
  width: 20px;
}
.icon {
  position: absolute;
  top: 901px;
  left: 301px;
  border-radius: 50%;
  overflow: hidden;
}
.icon img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
}
.boxmtitle {
  position: absolute;
}
.box-m2container {
  position: relative;
  width: 100%;
  height: 1385px;
  margin-top: 170px;
}
.box-m2 {
  position: absolute;
  width: 1200px;
  height: 505px;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m2.png);
}
.box-m2-1 {
  position: absolute;
  width: 842px;
  height: 656px;
  top: 720px;
  left: 180px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m2-1.png);
}
.box-m3-yqhy {
  position: absolute;
  width: 459px;
  height: 110px;
  top: 694px;
  left: 380px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m3-yqhy.png);
}
.box-m3container {
  position: relative;
  width: 100%;
  height: 886px;
  margin-top: 208px;
  transition: all 0.3 linear;
}
.box-m3 {
  position: absolute;
  width: 1200px;
  height: 534px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m3.png);
}
.m3btn {
  position: absolute;
  width: 368px;
  height: 88px;
  top: 564px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m3-lq1.png);
}
.m3btn.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m2-ylq.png);
}
.m3btn.unable {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unable1.png);
}
.m3btn.received {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m2-ylq.png);
}
.box-m3-lq1 {
  left: 8px;
}
.box-m3-lq3 {
  left: 418px;
}
.box-m3-lq5 {
  left: 828px;
}
.box-m4container {
  position: relative;
  width: 100%;
  height: 928px;
  margin-top: 30px;
  transition: all 0.3 linear;
  z-index: 99;
}
.box-newcontainer {
  position: relative;
  width: 1180px;
  height: 817px;
  margin-top: 32px;
  transition: all 0.3 linear;
  z-index: 99;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/m6.png);
}
.new-txt {
  position: absolute;
  color: #eebb6e;
  font-size: 22px;
  line-height: 29px;
  top: 121px;
  left: 50px;
  text-align: center;
}
.box-m4-zp {
  position: absolute;
  width: 669px;
  height: 640px;
  top: 150px;
  left: -3px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m4-zp.png);
}
.box-m4-rw {
  position: absolute;
  width: 517px;
  height: 516px;
  top: 150px;
  left: 678px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m4-rw.png);
}
.box-m4-lq-container {
  position: absolute;
  width: 124px;
  height: 241px;
  top: 350px;
  left: 1046px;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.m4lqbtn {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/m4lqbtn.png);
  width: 139px;
  height: 33px;
}
.m4lqbtn.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/m4lqbtn1.png);
}
.m4lqbtn.unable {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/m4lqbtn2.png);
}
.m4lqbtn.received {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/m4lqbtn1.png);
}
.box-m4-rule {
  position: absolute;
  width: 229px;
  height: 55px;
  top: 678px;
  left: 701px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m4-rule.png);
}
.box-m4-gift {
  position: absolute;
  width: 227px;
  height: 55px;
  top: 678px;
  left: 959px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m4-gift.png);
}
.box-m4-cjgl {
  position: absolute;
  width: 199px;
  height: 33px;
  top: 758px;
  left: 740px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m4-cjgl.png);
}
.box-m4-address {
  position: absolute;
  width: 88px;
  height: 33px;
  top: 758px;
  left: 1010px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAAhCAMAAABqZpwPAAAAM1BMVEUAAACzUACzUACzUACzUACzUACzUACzUACzUACzUACzUACzUACzUACzUACzUACzUACzUAA70TABAAAAEHRSTlMAQL+A3zAQn2Dvj3Agz1Cvy20+fgAAAcZJREFUSMftlEty6yAQRfsDCBCS7v5X+4QBt0wU500ySfkMJAqaQ9elCjrJ4qmhEuk98VnBEJvWPmuyioCfo/25baYVKfRODJlkNlYY+lbc2vpvMatqhtMK9352fSkysYBbRQg/iqkwrzj4JFAXC9a34hAT/LdikYRNomXRjqnX4bByp0Qt5EUcnOQuTqkVZxEkkajQq3jEqt2yPFcCDL3cqNTdLOfocLVYeskkZt5OZTnFi1YuK3A6eMyFeuzCngS1WVeaxjNjYy5dXDXRYrkRKzLN1M2nHZDcboEt4y6uiIlvohDEW3HduxPfie877lj6V9jEHAX8rXhUmvjxtT95MdJVHOgi9j+Iw9TxBFCGeFm2Id4V6Otb3PRGnJ3OHfOFQENA9d5SGGJsq70syyz2DoDTlro+/lPA7OHopOR0atWiaGRXtZ5MbNqYcYWI5ILfm6Q0bQ+Pa7zrGmiD0/A1Y4elDf0mhXw6An0h98fyWMP0IBzwtEeqzGJutSEDWyHekFaaCG68009drykJ1KkhiqpriVpPaQhXYCFD5fHy0AsRA6vFCzTwLaYWiSeDceI8TeZDGmuwjq/Qhw8f/hbySxD/Ev8AcGYgi+B+3UYAAAAASUVORK5CYII=);
}
.box-m4-title {
  width: 566px;
  height: 114px;
  left: 314px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m4-title.png);
}
.box-m5container {
  position: relative;
  width: 100%;
  height: 882px;
  margin-top: 80px;
  transition: all 0.3 linear;
}
.box-m5-lb {
  position: absolute;
  width: 1195px;
  height: 700px;
  top: 150px;
  left: 1px;
}
.box-m5-title {
  width: 626px;
  height: 114px;
  left: 286px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m5-title.png);
}
.box-m6container {
  position: relative;
  width: 100%;
  height: 930px;
  transition: all 0.3 linear;
}
.box-m6-lb {
  position: absolute;
  width: 1355px;
  height: 698px;
  top: 156px;
  left: -74px;
}
.box-m6-btn1 {
  position: absolute;
  width: 515px;
  height: 123px;
  top: 931px;
  left: 366px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m6-btn1.png);
}
.box-m6-title {
  width: 626px;
  height: 114px;
  left: 286px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/unit_top_m6-title.png);
}
.text-m1-txt2 {
  position: absolute;
  width: 1200px;
  top: 830px;
  opacity: 1;
  line-height: 29px;
  text-align: center;
  font-size: 22px;
  color: #b35000;
  letter-spacing: 1px;
}
.text-m1-txt1 {
  position: absolute;
  width: 966px;
  top: 114px;
  left: 128px;
  opacity: 1;
  line-height: 29px;
  text-align: center;
  font-size: 20px;
  color: #b25915;
  letter-spacing: 1px;
}
.text-m1-txt1 span {
  color: #b25915;
}
.text-m2-txt1 {
  position: absolute;
  width: 690px;
  top: 124px;
  left: 271px;
  opacity: 1;
  line-height: 29px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  color: #eebb6e;
}
.text-m3-txt1 {
  position: absolute;
  width: 1040px;
  top: 122px;
  left: 86px;
  opacity: 1;
  line-height: 29px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  color: #8c5628;
}
.text-m3-txt1 span {
  color: #dd4800;
}
.text-m3-txt2 {
  position: absolute;
  width: 100%;
  top: 820px;
  opacity: 1;
  line-height: 29px;
  text-align: center;
  font-size: 20px;
  color: #b35000;
  letter-spacing: 1px;
}
.prev1,
.prev2 {
  position: absolute;
  width: 175px;
  height: 78px;
  top: 228px;
  left: 0;
  background-size: cover;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/lb/left.png);
}
.prev1::after,
.prev2::after {
  content: '';
}
.next1,
.next2 {
  position: absolute;
  width: 175px;
  height: 78px;
  top: 228px;
  right: 0;
  background-size: cover;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/lb/right.png);
}
.next2::after,
.next1::after {
  content: '';
}
.swiper-slide {
  width: 1026px;
  height: 588px;
  left: 84px;
}
.swiper-pagination1,
.swiper-pagination2 {
  display: block;
  position: absolute;
  left: 50% !important;
  top: 620px;
  bottom: auto;
  transform: translateX(-50%);
  width: 643px !important;
}
.swiper-pagination1 .swiper-pagination-bullet,
.swiper-pagination2 .swiper-pagination-bullet {
  width: 149px;
  height: 60px;
  background-size: cover;
  background-color: transparent;
  border-radius: 0;
  transition: all 0.3s linear;
  opacity: 1;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJUAAAA8CAMAAABYbwhbAAAAY1BMVEUAAABDIQRIJQdEIgRDIgRDIQRCIQRCIQRFIgVCIQRCIQRFIwVEIgVFIgVGIwZGIwVGIwVFIwVHJAZCIQRCIQREIgVCIQRCIQRGIwVDIQRIJQdIJQdEIgVCIQRIJQdCIQRCIQSRXmvAAAAAIHRSTlMABrNvCjfx7DDXXCdSPnqtphqB5MyJVUqgIBJll7uRvO6kXusAAAHFSURBVGje7ZnZbqQwEEWL9m4MGGi2XpL7/185VAtNemYyiRIpoh44LxeBhMsuy66FDg4OfhatSSBlSQKpKhLIOJJAlCKBDAMJZJ5JIPc7CSQEEohzJI8CKEgcC7CQDJ5WxwDm+cOeTJo2EpBoQ0+0K/rWbk8KUNtje9O0L+3ZsMPGbAGXR/acObe0N8ZGSgEbIVG0hvYn4ownzogkATbK1QEItWOzSAIjAOupB3ryFoCEOKvoAQs3YWVysEAv4IyPgPMWG9Y7SNhYDdDRhI2JaqCh99ClaVnba109tJsj62VoVMGL3jWdZlXNcKGVa/PSsqZmLlmr+eZZy1o9VHt/ec95i0nKAqHHb/oAWJXM8o8bF28qfplU3fHf1JxzyYOfTic2M62aePBVrzz4qjVbveoLj5ZzZqW6qx/TMMaXxducq6iGfA8OH+LCPQ8qVqX+26ru56x6/dyq1z+s0qX/rgdvX/GgZg+6/3hQ0w58vNt3R+bJIPMUlXnjCL2dRUYyHPWNb1HfKCLq2yLk2FjANlFGhCwzmxCZeQnNUkVm9OKrHzIrRUKrajIrkDKrtTIr2zK7ADI7JjK7SzI7cTK7lgcHO/AL1BU3at6kZzEAAAAASUVORK5CYII=);
}
.swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  filter: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJUAAAA8CAMAAABYbwhbAAAAk1BMVEUAAABIJQf/+Zz/+Zz/+Zz/+Zz/+Zz/+Zz/+Zz/+ZxIJQf/+Zz/+Zz/+Zz/+Zz/+Zz/+ZxIJQdIJQdIJQf/+Zz/+Zz/+Zz/+Zz/+Zz/+ZxIJQdIJQdIJQf/+ZxIJQdIJQdIJQf/+Zz/+Zz/+Zz/+Zz/+Zz/+ZxIJQdIJQdIJQdIJQf/+ZxIJQf/+ZxIJQf/+Zz/+ZyT9flHAAAAMHRSTlMAsusm0qEkB5sMMfrIiVc09HwnFrZxPTkgEQwEqJ+FZJPe2sG7p3ZwUz2f73VSQVC6jyR1AAACO0lEQVRo3szWx3arMBSF4Y0EEr2FYmzjXuKSZL//012LgW+K59I3+deSWOgAE2BHFMFBUsJBXQcH5Tkc1LZwUJbBQUEABx0OcJDvw0FCwD2a1HDOjJzBOT3Zwzkf5AecEuVheiNvaZjb/3GYYaLCkk9lqJ6blrQDoLOE3J/6I3nsT3syyTQwtLBmaKTyyVECaMgGgBxJX8lmgD1SCO4KGD7pwyi2FELCInXjLsJEkAKTYcubgj3a55aBBopR8EGMBaAD7uhrWJNxOwRMVcinUKUMoh0z2KISFtApE36TMNUomChYEnIEIBP+kMhpK4QdUUkFIOAvAQDFMoIVOfcACv5RANgzhxUhTwBG8tXLOtn6hCk7AIJ/CAAdU/w0r+M307f1/XPq6rqe1lfeeWFaedUcwOLsraYL195m6rt3rU0/r5vYtL6fp85jc8Pv9Kz/KnlsfMEXhN8cWX71M43/6ji+LMwh92plTj9fl8t6OtzzLmb90XcAl0fNuPWjlZn+0Y2ZdrlcmqJaVdNjxJe4No1kl7dZcHg9y+v5DkHW5p2M/pVrBikAgzAQPAk96g/6AIX8/3UlUCwttktPGTQvEFaS7Gygr7oULE8Fq1BwvytY6ruCTSnYXEFZQb9d1wKdgdlFmRPHRzBvOkM3mb71JeuVwre+rw35/6+a3E0wndfIpW7hLhXp6Mf04xQvHrE5KcpmGUGK4FSNSyCZtJZJtpkpADQxYaZLzCSOmVoyE15mGs68HGBeWYiLlAMG/YLEXMcYgQAAAABJRU5ErkJggg==);
}
.swiper-pagination2 {
  width: 342px !important;
}
.swiper2 .swiper-slide {
  width: 1161px;
  height: 588px;
}
.swiper2 .vdbg {
  width: 1161px;
  height: 588px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/lb/vdbg.png);
}
.swiper2 .video {
  width: 1100px;
  height: 519px;
  margin-top: 35px;
  margin-left: 31px;
}
.swiper2 .lbimg {
  position: absolute;
  width: 1135px;
  height: 562px;
  margin-top: 14px;
  margin-left: 14px;
  cursor: pointer;
}
.swiper2 .lbimg1 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/lb/v1.png);
}
.swiper2 .lbimg2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/lb/v2.png);
}
.swiper2 .play {
  cursor: pointer;
  position: absolute;
  top: 240px;
  left: 520px;
  width: 114px;
  height: 113px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/lb/play.png);
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  width: 668px;
  margin-left: 2px;
}
.grid-item {
  text-align: center;
  width: 208px;
  height: 202px;
  text-indent: 999;
  font-size: 0;
  border-radius: 2px;
}
.lottery-button {
  cursor: pointer;
}
.drawNum {
  position: absolute;
  top: 386px;
  left: 390px;
  color: #f9dea3;
  font-size: 22px;
  font-weight: 700;
}
.rellax {
  position: absolute;
  z-index: 100;
}
.box-f19 {
  position: absolute;
  width: 139px;
  height: 167px;
  top: 8920px;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f19.png);
}
.box-f18 {
  position: absolute;
  width: 54px;
  height: 46px;
  top: 8222px;
  left: 1716px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f18.png);
}
.box-f17 {
  position: absolute;
  width: 45px;
  height: 40px;
  top: 5504px;
  left: 1686px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f17.png);
}
.box-f16 {
  position: absolute;
  width: 120px;
  height: 108px;
  top: 6309px;
  left: 1716px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f16.png);
}
.box-f15 {
  position: absolute;
  width: 88px;
  height: 85px;
  top: 5796px;
  left: 136px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f15.png);
}
.box-f11 {
  position: absolute;
  width: 162px;
  height: 143px;
  top: 1840px;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f11.png);
}
.box-f12 {
  position: absolute;
  width: 115px;
  height: 131px;
  top: 1739px;
  left: 1760px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f12.png);
}
.box-f13 {
  position: absolute;
  width: 91px;
  height: 197px;
  top: 3848px;
  left: 1739px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f13.png);
}
.box-f14 {
  position: absolute;
  width: 235px;
  height: 327px;
  top: 3363px;
  left: 119px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f114.png);
}
.box-f9 {
  position: absolute;
  width: 48px;
  height: 41px;
  top: 2384px;
  left: 307px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f9.png);
}
.box-f10 {
  position: absolute;
  width: 74px;
  height: 82px;
  top: 2604px;
  left: 1509px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f10.png);
}
.box-f8 {
  position: absolute;
  width: 98px;
  height: 52px;
  top: 1273px;
  left: 1575px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f8.png);
}
.box-f6 {
  position: absolute;
  width: 54px;
  height: 46px;
  top: 109px;
  left: 712px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f6.png);
}
.box-f5 {
  position: absolute;
  width: 49px;
  height: 34px;
  top: 561px;
  left: 327px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f5.png);
}
.box-f4 {
  position: absolute;
  width: 45px;
  height: 40px;
  top: 582px;
  left: 1591px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f4.png);
}
.box-f3 {
  position: absolute;
  width: 57px;
  height: 55px;
  top: 280px;
  left: 1187px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f3.png);
}
.box-f1 {
  position: absolute;
  width: 137px;
  height: 94px;
  top: 790px;
  left: 1488px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f1.png);
}
.box-f2 {
  position: absolute;
  width: 98px;
  height: 76px;
  top: 700px;
  left: 388px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f2.png);
}
.box-f20 {
  position: absolute;
  width: 115px;
  height: 129px;
  top: 9602px;
  left: 1753px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f20.png);
}
.box-f7 {
  position: absolute;
  width: 111px;
  height: 74px;
  top: 51px;
  left: 1176px;
  opacity: 0.8;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/flower/unit_top_f7.png);
}

.modal-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}
.modal-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 860px;
  height: 845px;
  display: flex;
  align-items: center;
}
.qbmodal-content {
  width: 860px;
  height: 405px;
}
@keyframes money {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(0.9);
  }
}
.modal-moneydecr1 {
  bottom: 33px;
  right: -26px;
}
@keyframes closerotate {
  0% {
    transform-origin: top center;
    transform: rotate(-100deg) scale(0);
  }
  100% {
    transform-origin: top center;
    transform: rotate(0deg) scale(1);
  }
}
.box-close {
  position: absolute;
  width: 48px;
  height: 47px;
  top: -9px;
  right: -24px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAvBAMAAABXrFT6AAAAG1BMVEUAAAD/UwD/UwD/UwD/UwD/UwD/UwD/UwD/UwD9L49iAAAACHRSTlMAGNi/ClVMRKebCDAAAAC4SURBVDjLZdIxCgJBEETRWlBjWbzAYrKxGBgqXsDQ0GMYK2IfW1g+dvA7f8NUUclmG93wSHKfohs/ybpeW4G5bnlWTQJV31yrSYM6ZnVq0uB9DkQgEAOIQBMBiEATAYgBRKBJAxOACMAEIAIwAZgATAAmABMDQhPf0yC+AcTToDFvica8JRoTSCDeEkQAYgARMAGIAEwAIg2aCDQRgDQQAZgM8x80Wd4aGzSZkgx7QJoclv/uorskP5k9iHjsoIRBAAAAAElFTkSuQmCC);
}
.box-close1 {
  top: 38px;
  right: 46px;
}
.box-modelbg {
  width: 860px;
  height: 845px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/modal/modalbg.png);
}
.box-qbmodelbg {
  width: 860px;
  height: 405px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/modal/qb.png);
}
.qbContent {
  position: absolute;
  top: 137px;
  left: 467px;
}
.content-box {
  opacity: 0;
}
.content-box.active {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.box-copytext {
  position: absolute;
  width: 780px;
  height: 425px;
  top: 190px;
  left: 42px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/modal/unit_topcenter_copytext.png);
}
.box-copybutton {
  position: absolute;
  width: 459px;
  height: 110px;
  top: 408px;
  left: 205px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/modal/copy.png);
}
.copy-tip {
  position: absolute;
  width: 447px;
  height: 103px;
  top: 223px;
  left: 176px;
  line-height: 30px;
  font-size: 22px;
  color: #c47c4c;
  letter-spacing: 2px;
}
.text-linktext {
  position: absolute;
  width: 680px;
  top: 198px;
  left: 94px;
  opacity: 1;
  line-height: 46px;
  font-size: 20px;
  color: #feecc3;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
}
.title {
  position: absolute;
  width: 566px;
  height: 69px;
  top: 76px;
  left: 148px;
}
.ruletitle {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/modal/rule-title.png);
}
.gifttitle {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/modal/gift-title.png);
}
.gltitle {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/modal/gl-title.png);
}
.ruletxt {
  position: absolute;
  top: 180px;
  left: 40px;
  width: 765px;
  height: 473px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20240328newarea/modal/rule-txt.png);
}
.gifttxt {
  position: absolute;
  top: 180px;
  left: 52px;
  color: #a54314;
  font-size: 20px;
  line-height: 30px;
  width: 740px;
}
.box_table {
  width: 766px;
  height: 440px;
  margin-top: 184px;
  margin-left: 48px;
}
.box_table .table-content {
  height: 390px;
}
.box_table .tr {
  display: flex;
  border-top: 1px solid #8b5629;
  height: 48px;
  line-height: 50px;
  color: #62340e;
}
.box_table .tr:last-child {
  border-bottom: 1px solid #8b5629;
}
.box_table .tr .td:last-child {
  border-right: 1px solid #8b5629;
}
.box_table .td {
  font-size: 20px;
  flex: 1;
  text-align: center;
  border-left: 1px solid #8b5629;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box_table .th {
  color: #8b5629;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}
.giftList {
  margin-top: 260px;
  height: 439px;
  overflow-y: auto;
}
.giftList img {
  width: 130px;
  height: auto;
  margin-top: 35px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.giftList p {
  width: 100%;
  font-size: 18px;
  line-height: 50px;
  color: #62340e;
  text-align: center;
  letter-spacing: 2px;
}

/*
	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;
    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: white;
    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
}


.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;
}

.au-fa-modal,
.au-fa-modal .au-fa-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.au-fa-modal {
  transition: opacity 0.5s ease;
  opacity: 0;
  display: none;
  z-index: 5000;
}
.au-fa-mask {
  background: rgba(0, 0, 0, 0.7);
}
.au-fa-display {
  display: block;
}
.au-fa-opacity {
  opacity: 1;
}
.au-fa-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.au-fa-close-icon {
  position: absolute;
  top: 3.6vw;
  right: 4.8vw;
  width: 6.4vw;
  height: 5.6vw;
  /* background: url("//glfagame.com/act/a20230320feres/images/au-fa-ui/icon-close.png") no-repeat top/contain; */
}
.au-fa-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.au-fa-point {
  pointer-events: none;
}

.au-fa-addr {
  z-index: 5001;
}
.au-fa-close-icon {
  position: absolute;
  top: 20px;
  font-size: 20px;
  right: 20px;
  width: 24px;
  height: 21px;
  /* background: url("//glfagame.com/act/a20230320feres/images/au-fa-ui/icon-close.png") no-repeat top/contain; */
}
.au-fa-addr .au-fa-bg {
  width: 290px;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  font-size: 20px;
  z-index: 5001;
}
.au-fa-addr-container {
  display: flex;
  flex-direction: column;
}
.au-fa-addr-container label {
  font-size: 18px;
  margin: 8px 0 5px;
  text-indent: 10px;
  position: relative;
}
.au-fa-addr-container label::before {
  display: block;
  content: '*';
  position: absolute;
  top: 0;
  left: -10px;
  color: red;
}
.au-fa-addr-area select,
.au-fa-addr-area option {
  width: 100%;
  margin: 5px 0;
  height: 30px;
  box-sizing: border-box;
  border: 1px solid #797b7c;
  border-radius: 2px;
  padding: 3px;
  font-size: 15px;
}
.au-fa-addr-area.mobile {
  width: 238px;
  margin-bottom: 8px;
  font-size: 15px;
  border: 1px solid #797b7c;
  border-radius: 2px;
  padding: 3px 5px;
  margin-right: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
}
.au-fa-addr-area.mobile::after {
  display: block;
  content: '';
  position: absolute;
  right: 5px;
  top: 11px;
  border: 5px solid transparent;
  border-top: 5px solid #000;
}
.au-fa-addr input,
.au-fa-addr textarea {
  outline: none;
  border: 1px solid #797b7c;
  border-radius: 2px;
  width: 250px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  box-sizing: border-box;
  padding-left: 10px;
  margin-bottom: 8px;
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}
.au-fa-addr textarea {
  height: 70px;
}
.au-fa-addr-confirm {
  background-color: #66b1ff;
  color: #fff;
  width: 75px;
  height: 35px;
  line-height: 35px;
  margin: 15px auto 0;
  text-align: center;
  letter-spacing: 0.5em;
  text-indent: 0.7em;
  border-radius: 5px;
  cursor: pointer;
}

#cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 5005;
}
#cover.show {
  visibility: visible;
  opacity: 0.5;
}
#cover.show,
#picker {
  transition: 0.5s;
}
#picker {
  background-color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: translateY(100%);
  z-index: 5005;
}
#picker.show {
  transform: translateY(0);
  z-index: 5005;
}
.picker-header {
  position: relative;
  background-color: #f2f2f4;
  height: 40px;
  line-height: 40px;
  z-index: 3;
  color: #007af0;
  font-size: 17px;
}
.picker-header .cancel {
  position: absolute;
  top: 0;
  left: 15px;
}
.picker-header .confirm {
  position: absolute;
  top: 0;
  right: 15px;
}
.picker-items {
  position: relative;
  height: 216px;
  overflow: hidden;
}
.picker-items-col {
  float: left;
  width: 33%;
  height: 100%;
  position: relative;
  z-index: 10;
}
.picker-item {
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  box-sizing: border-box;
  left: 0;
  color: #000;
  width: 100%;
  text-align: center;
  z-index: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.picker-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 10;
  /*!* autoprefixer: off *!*/
  background: -webkit-linear-gradient(top, #fff, hsla(0, 0%, 100%, 0.7));
  background: linear-gradient(top, #fff, hsla(0, 0%, 100%, 0.7));
  border-bottom: 1px solid #ddd;
  pointer-events: none;
}
.picker-line-bottom {
  top: auto;
  bottom: 0;
  border-top: 1px solid #ddd;
  border-bottom: none;
  /*!* autoprefixer: off *!*/
  background: -webkit-linear-gradient(bottom, #fff, hsla(0, 0%, 100%, 0.7));
  background: linear-gradient(bottom, #fff, hsla(0, 0%, 100%, 0.7));
}

