/* 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%;
  -webkit-transform-origin: top left;
  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%;
    -webkit-transform: scale(0.5);
    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%;
    -webkit-transform: scale(0.333333);
    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%;
}
/* Align */
/* absolute 自身 左右居中 */
.ac-hc {
  position: absolute !important;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* absolute 自身 上下居中 */
.ac-vc {
  position: absolute !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* absolute 自身 绝对居中 */
.ac-cc {
  position: absolute !important;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* flex 内容多行居中排版，需要定高 */
.ac-fvc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
}
.ac-flvc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-content: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ac-fcc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ac-fbvc {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ac-flex11 {
  -webkit-flex: 1 1 auto;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
}
.ac-flex01 {
  -webkit-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
}
.ac-flex00 {
  -webkit-flex: 0 0 auto;
  -webkit-box-flex: 0;
  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;
  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;
  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;
}
i svg {
  display: block;
  width: 100%;
  height: 100%;
}
svg {
  display: inline-block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  font-family: inherit;
  line-height: 0;
}
/* 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;
  }
}

/* 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;
}
/* 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;
  background-color: #3d4673;
}
.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;
}
.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/a20230629newarea/unit_topcenter_haoyou-btn-n.png);
}
.button.received {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/ylq.png);
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.input {
  border: none;
  outline: 0;
  width: 100%;
  height: 100%;
  font-size: 14px;
  background: transparent;
  padding: 0 10px;
  box-sizing: border-box;
}
.placeholder {
  position: absolute;
  top: 0;
  width: 100%;
  background-image: url("data: image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAGCAYAAAD68A/GAAAAAklEQVR4AewaftIAAADqSURBVAXBTy/DYADA4d+7vtY/aafNppM1bSxqyYgIJxFHCacdHCS+jm/hA4i4OgtOLi7D1UEySzHaSmqrzTrPI04212b9kkRXC/SKRu8lYy9o0M1yDjr7XN/cIpIY2VypYX9P+EhHhO0arlnmuZ/iex7C0ugcHxJ1n5BikLFkWZjzBSIe41d1jIlKZcHg/fGB5VYV1wY5nk5Z3fJJohjRbjCKvvBswZvIKalVFq0yf4aGnLNN1FYdo65SDMHZWOdHUTg/vWBXyxn0PgmPdpBuYHF5dkdR1vAlNLdnxMMUJfnFCQVK4PB6dc8/AvJIbvfbzDEAAAAASUVORK5CYII=");
}
.ui-1 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_1_ph.jpg);
  min-height: inherit;
}
.ui-1.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_1.jpg);
}
.ui-2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_2.jpg);
  min-height: inherit;
}
.ui-3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_3.jpg);
  min-height: inherit;
}
.ui-4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_4.jpg);
  min-height: inherit;
}
.ui-5 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_5.jpg);
  min-height: inherit;
}
.ui-6 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_6.jpg);
  min-height: inherit;
}
.ui-7 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_7.jpg);
  min-height: inherit;
}
.ui-8 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_8.jpg);
  min-height: inherit;
}
.ui-9 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_9.jpg);
  min-height: inherit;
}
.ui-10 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_10.jpg);
  min-height: inherit;
}
.ui-11 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_11.jpg);
  min-height: inherit;
}
.ui-12 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_12.jpg);
  min-height: inherit;
}
.ui-13 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slice_13.jpg);
  max-height: 40px;
}
.box-reserver,
.new_info,
.text-qq,
.ted-txtbg,
.ted-txt-bottom,
.box-rule-txtbg,
.box-rule-txt-bottom,
.box-yuyue-txtbg,
.box-huigui-txtbg,
.box-haoyou-txtbg,
.box-haoyou-txt-bottom,
.box-haoyou-txt-center,
.box-xinfu-txtbg,
.box-xinfu-txt-bottom,
.box-huigui-txt-top,
.box-yuyue-txt-center,
.box-yuyue-txt-bottom,
.box-huigui-txt-bottom,
.hs-tip,
.zs,
.lc {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}
.box-reserver.active,
.new_info.active,
.text-qq.active,
.ted-txtbg.active,
.ted-txt-bottom.active,
.box-rule-txtbg.active,
.box-rule-txt-bottom.active,
.box-yuyue-txtbg.active,
.box-huigui-txtbg.active,
.box-haoyou-txtbg.active,
.box-haoyou-txt-bottom.active,
.box-haoyou-txt-center.active,
.box-xinfu-txtbg.active,
.box-xinfu-txt-bottom.active,
.box-huigui-txt-top.active,
.box-yuyue-txt-center.active,
.box-yuyue-txt-bottom.active,
.box-huigui-txt-bottom.active,
.hs-tip.active,
.zs.active,
.lc.active {
  opacity: 1;
  transform: translateY(0);
}
.xf-box,
.xf-txt,
.box-notice,
.box-xinfu-txt-top,
.box-haoyou-txt-top,
.ted-txt-top,
.box-rule-txt-top,
.ted1-txt-top,
.box-yuyue-txt-top {
  opacity: 0;
  transition: all 0.5s linear;
}
.xf-box.active,
.xf-txt.active,
.box-notice.active,
.box-xinfu-txt-top.active,
.box-haoyou-txt-top.active,
.ted-txt-top.active,
.box-rule-txt-top.active,
.ted1-txt-top.active,
.box-yuyue-txt-top.active {
  opacity: 1;
}
.yl_dec {
  opacity: 0;
  transition: all 0.5s linear 0.7s;
}
.yl_dec.active {
  opacity: 1;
}
.xinfu-content-container,
.xinfu-content-container2,
.xinfu-content-container3,
.xinfu-content-container4,
.ted1-content-container,
.ted1-content-container2,
.ted1-content-container3,
.ted1-content-container4 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out 0.3s;
}
.xinfu-content-container.active,
.xinfu-content-container2.active,
.xinfu-content-container3.active,
.xinfu-content-container4.active,
.ted1-content-container.active,
.ted1-content-container2.active,
.ted1-content-container3.active,
.ted1-content-container4.active {
  opacity: 1;
  transform: translateY(0);
}
.box-yuyue-tiptxt {
  position: absolute;
  width: 789px;
  height: 24px;
  top: 830px;
  left: 202px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_yuyue-tiptxt.png);
}
.box-rule-txt,
.box-huigui-btn,
.box-xinfu-btn,
.box-haoyou-btn,
.text-invite__num,
.box-huigui-content,
.yuyue-content-container,
.ted-content-container,
.ted-content-container2,
.ted-content-container3,
.ted-content-container4 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}
.box-rule-txt.active,
.box-huigui-btn.active,
.box-xinfu-btn.active,
.box-haoyou-btn.active,
.text-invite__num.active,
.box-huigui-content.active,
.yuyue-content-container.active,
.ted-content-container.active,
.ted-content-container2.active,
.ted-content-container3.active,
.ted-content-container4.active {
  opacity: 1;
  transform: translateY(0);
}
.box-huigui-tiptxt,
.box-yuyue-btn,
.box-yuyue-tiptxt {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}
.box-huigui-tiptxt.active,
.box-yuyue-btn.active,
.box-yuyue-tiptxt.active {
  opacity: 1;
  transform: translateY(0);
}
.box-logo {
  position: absolute;
  width: 143px;
  height: 145px;
  top: 14px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_top_logo.png);
}
.haoyou-container {
  position: absolute;
  top: 2383px;
  width: 1200px;
  display: flex;
  justify-content: center;
}
.box-haoyou-content-center {
  width: 372px;
  height: 1054px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_haoyou-content-center.png);
}
.box-haoyou-img {
  position: absolute;
  top: 40px;
  left: 50px;
  width: 278px;
  height: 823px;
  margin: 0 auto;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_haoyou-img3.png);
}
.box-haoyou-img3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_haoyou-img3.png);
}
.box-haoyou-img2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_haoyou-img2.png);
}
.box-haoyou-img1 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_haoyou-img1.png);
}
.box-haoyou-btn-y {
  position: absolute;
  top: 900px;
  left: 25px;
  width: 325px;
  height: 87px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_haoyou-btn-y.png);
}
.content-container3 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease-out 0.3s;
}
.content-container3.active {
  opacity: 1;
  transform: translateY(0);
}
.content-container1 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease-out 0.5s;
}
.content-container1.active {
  opacity: 1;
  transform: translateY(0);
}
.content-container2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease-out 0.7s;
}
.content-container2.active {
  opacity: 1;
  transform: translateY(0);
}
@keyframes opacity {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.5;
  }
}
.box-slogan1 {
  position: absolute;
  width: 0px;
  height: 65px;
  top: 351px;
  left: 240px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_top_notice1.png);
  opacity: 0;
  transition: 0.5s;
}
.box-slogan1.active {
  width: 712px;
  opacity: 1;
}
@keyframes kvtit-ani {
  0% {
    opacity: 0;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-mask-position: -823px 0;
    mask-position: -823px 0;
    opacity: 0;
    transform: translateX(823px);
  }
}
.kvtit-container {
  perspective: 500px;
  filter: brightness(1.2);
  transition: filter 1s linear;
}
.kvtit-container.active {
  filter: brightness(1);
}
.slg {
  position: absolute;
  width: 933px;
  height: 204px;
  width: 110px;
  top: 432px;
  left: 141px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0));
  -webkit-mask-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slgmask.png);
  mask-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/slgmask.png);
  -webkit-mask-size: 933px 204px;
  mask-size: 933px 204px;
  opacity: 0;
}
.slg.active {
  animation: kvtit-ani 1s ease-in-out infinite;
  animation-delay: 1s;
  animation-iteration-count: 1;
}
.box-slogan {
  position: absolute;
  width: 1493px;
  height: 684px;
  top: 175px;
  left: -105px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_top_slogan.png);
}
.box-reserver {
  position: absolute;
  width: 444px;
  height: 102px;
  top: 874px;
  left: 395px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_reserver.png);
}
.box-reserver.received {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_reserved.png);
}
.box-yuyue-txt-top {
  position: absolute;
  width: 821px;
  height: 295px;
  top: 0px;
  left: 181px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/t1.jpg);
}
@keyframes xz {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.xf-box {
  position: absolute;
  width: 241px;
  height: 241px;
  top: 604px;
  left: 301px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/xf.png);
  animation: xz 25s linear infinite 0.8s;
}
.xf-txt {
  position: absolute;
  width: 133px;
  height: 131px;
  top: 663px;
  left: 356px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/xf-txt.png);
}
.box-notice {
  position: absolute;
  width: 456px;
  height: 143px;
  top: 655px;
  left: 446px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_top_notice.png);
}
@keyframes swing {
  0% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}
@keyframes hd {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.label {
  position: absolute;
  width: 53px;
  height: 166px;
  top: 414px;
  left: 1412px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/label.png);
  transform-origin: top;
}
.label.active {
  animation: hd 4s linear infinite 0.5s;
}
.yuyue-container {
  position: absolute;
  width: 1200px;
  top: 1416px;
  display: flex;
  justify-content: center;
}
@keyframes dec {
  0% {
    transform: rotateY(180deg);
    right: 11px;
  }
  80% {
    transform: rotateY(180deg);
    right: 11px;
  }
  100% {
    transform: rotateY(0deg);
    right: -71px;
  }
}
@keyframes xinfudec {
  0% {
    transform: rotateY(180deg);
    right: 10px;
  }
  80% {
    transform: rotateY(180deg);
    right: 10px;
  }
  100% {
    transform: rotateY(0deg);
    right: -73px;
  }
}
.yuyue-content-container {
  position: absolute;
  top: 175px;
  left: 0px;
  display: flex;
  align-items: center;
  width: 1202px;
  height: 621px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_yuyue-content.png);
}
@keyframes contentwidth {
  0% {
    width: 0;
  }
  100% {
    width: 1202px;
  }
}
@keyframes xinfuwidth {
  0% {
    width: 0;
  }
  100% {
    width: 1202px;
  }
}
.box-yuyue-content {
  width: 1202px;
  height: 621px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_yuyue-content.png);
}
.box-yuyue-btn {
  position: absolute;
  width: 325px;
  height: 87px;
  top: 707px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_yuyue-btn.png);
}
.huigui-container {
  position: absolute;
  top: 1938px;
  width: 1200px;
  display: flex;
  justify-content: center;
}
.dengjilb {
  position: absolute;
  width: 354px;
  height: 338px;
  left: 206px;
  top: 218px;
}
.dengjimg {
  position: absolute;
  left: 94px;
  display: none;
}
.renwuimg {
  position: absolute;
  right: -278px;
  display: none;
}
.dengjilb:hover .dengjimg {
  display: block;
}
.renwulb {
  position: absolute;
  width: 354px;
  height: 338px;
  left: 628px;
  top: 218px;
}
.renwulb:hover .renwuimg {
  display: block;
}
.box-haoyou-txt-top {
  position: absolute;
  width: 996px;
  height: 316px;
  top: 0px;
  left: 130px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_haoyou-txt-top.png);
}
@keyframes contentheight {
  0% {
    height: 0;
  }
  100% {
    height: 716px;
  }
}
.haoyou-content {
  position: absolute;
  top: 345px;
  width: 1200px;
  display: flex;
  justify-content: space-around;
}
.yl_dec {
  position: absolute;
  top: 0;
  left: 0;
  width: 1238px;
  height: 1181px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/yl_dec.png);
  pointer-events: none;
}
.box-haoyou-btn {
  position: absolute;
  width: 434px;
  height: 99px;
  top: 1454px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_haoyou-btn.png);
}
.xinfu-container {
  position: absolute;
  width: 1200px;
  top: 4034px;
}
.ted-container {
  position: absolute;
  width: 1200px;
  top: 6591px;
}
.ted1-container {
  position: absolute;
  width: 1200px;
  top: 9145px;
}
.hs-tip {
  position: absolute;
  width: 1159px;
  height: 193px;
  top: 290px;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/hs-tip.png);
}
.xinfu-content-container,
.xinfu-content-container2,
.xinfu-content-container3,
.xinfu-content-container4 {
  position: absolute;
  width: 1202px;
  height: 621px;
  left: -32px;
}
.xinfu-content-container {
  top: 420px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/3000.png);
}
.xinfu-content-container2 {
  top: 910px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/5000.png);
}
.xinfu-content-container3 {
  top: 1400px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/6666.png);
}
.xinfu-content-container4 {
  top: 1890px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/8888.png);
}
.ted-content-container,
.ted-content-container2,
.ted-content-container3,
.ted-content-container4,
.ted1-content-container,
.ted1-content-container2,
.ted1-content-container3,
.ted1-content-container4 {
  position: absolute;
  width: 1202px;
  height: 621px;
  left: -23px;
}
.ted-content-container {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/25.png);
  top: 398px;
}
.ted-content-container2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/27.png);
  top: 884px;
}
.ted-content-container3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/29.png);
  top: 1368px;
}
.ted-content-container4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/30.png);
  top: 1850px;
}
.ted1-content-container {
  top: 398px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/3.png);
}
.ted1-content-container2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/5.png);
  top: 884px;
}
.ted1-content-container3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/7.png);
  top: 1368px;
}
.ted1-content-container4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/10.png);
  top: 1850px;
}
.box-xinfu-txt-top {
  position: absolute;
  width: 938px;
  height: 291px;
  top: 0px;
  left: 116px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_xinfu-txt-top.jpg);
}
.lc {
  position: absolute;
  width: 1159px;
  height: 193px;
  top: 260px;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/lc.png);
}
.zs {
  position: absolute;
  width: 1159px;
  height: 193px;
  top: 270px;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/zs.png);
}
.ted-txt-top {
  position: absolute;
  width: 1013px;
  height: 264px;
  top: 0;
  left: 122px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_ted-txt-top.jpg);
}
.ted1-txt-top {
  position: absolute;
  width: 1111px;
  height: 272px;
  top: 0;
  left: 31px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/zs.jpg);
}
.box-xinfu-content-bg {
  width: 1202px;
  height: 621px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/3000.png);
  display: flex;
  align-items: center;
  opacity: 0;
}
.box-xinfu-content-bg.active {
  opacity: 1;
  animation: xinfuwidth 1s forwards 1s;
}
.box-xinfu-content-bg2 {
  width: 1202px;
  height: 621px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/5000.png);
  display: flex;
  align-items: center;
  opacity: 0;
}
.box-xinfu-content-bg2.active {
  opacity: 1;
  animation: xinfuwidth 1s forwards 1s;
}
.box-xinfu-content-bg3 {
  width: 1202px;
  height: 621px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/6666.png);
  display: flex;
  align-items: center;
  opacity: 0;
}
.box-xinfu-content-bg3.active {
  opacity: 1;
  animation: xinfuwidth 1s forwards 1s;
}
.box-xinfu-content-bg4 {
  width: 1202px;
  height: 621px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/8888.png);
  display: flex;
  align-items: center;
  opacity: 0;
}
.box-xinfu-content-bg4.active {
  opacity: 1;
  animation: xinfuwidth 1s forwards 1s;
}
.ted-content-bg,
.ted-content-bg2,
.ted-content-bg3,
.ted-content-bg4,
.ted1-content-bg,
.ted1-content-bg2,
.ted1-content-bg3,
.ted1-content-bg4 {
  width: 1202px;
  height: 621px;
  display: flex;
  align-items: center;
  opacity: 0;
}
.ted-content-bg.active,
.ted-content-bg2.active,
.ted-content-bg3.active,
.ted-content-bg4.active,
.ted1-content-bg.active,
.ted1-content-bg2.active,
.ted1-content-bg3.active,
.ted1-content-bg4.active {
  opacity: 1;
  animation: xinfuwidth 1s forwards 1s;
}
.ted-content-bg {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/25.png);
}
.ted-content-bg2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/27.png);
}
.ted-content-bg3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/29.png);
}
.ted-content-bg4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/30.png);
}
.rule-container {
  position: absolute;
  top: 11684px;
  width: 1200px;
}
.box-rule-txt-top {
  position: absolute;
  width: 860px;
  height: 297px;
  top: 0;
  left: 162px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_rule-txt-top.jpg);
}
.box-rule-txt {
  position: absolute;
  width: 1056px;
  height: 384px;
  top: 318px;
  left: 70px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/unit_topcenter_rule-txt.png);
}
.text-qq {
  position: absolute;
  width: 140px;
  top: 986px;
  left: 567px;
  line-height: 28px;
  text-align: left;
  font-size: 24px;
  color: #cbb57c;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
}
.text-invite__num {
  position: absolute;
  top: 1575px;
  font-size: 16px;
  letter-spacing: 4px;
  color: #cbb57c;
}
.new_info {
  position: absolute;
  width: 1159px;
  height: 383px;
  top: 1033px;
  left: 22px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/m1.png);
}
.yln {
  position: absolute;
  width: 429px;
  height: 909px;
  bottom: -536px;
  left: -196px;
  transform: scale(0.5);
  opacity: 0;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/yln.png);
  transition: all linear 1s;
}
.yln.active {
  opacity: 0.7;
  bottom: -446px;
  left: -31px;
  transform: scale(1);
}

.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: 880px;
  height: 464px;
  display: flex;
  align-items: center;
}
@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: 108px;
  height: 107px;
  top: 38px;
  right: 46px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/modal/close.png);
}
.box-close1 {
  top: 38px;
  right: 46px;
}
.box-modelbg {
  width: 809px;
  height: 673px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/modal/modal_contentbg1.png);
}
.content-box {
  width: 625px;
  height: 400px;
  margin-top: 231px;
  margin-left: 63px;
  opacity: 0;
}
.content-box.active {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.box-modelbg1 {
  width: 809px;
  height: 673px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/modal/modal_contentbg1.png);
  /* &.active {
    width: 817px;
    transition: width 0.7s ease-in-out;
  }*/
}
.content-box1 {
  width: 662px;
  height: 367px;
  opacity: 0;
}
.content-box1.active {
  opacity: 1;
  transition: opacity 0.3s linear;
}
.box-copytext {
  position: absolute;
  width: 577px;
  height: 368px;
  top: 141px;
  left: 89px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/modal/unit_topcenter_copytext.png);
}
.box-copybutton {
  position: absolute;
  width: 434px;
  height: 99px;
  top: 328px;
  left: 158px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/modal/copy.png);
}
.text-linktext {
  position: absolute;
  width: 548px;
  top: 149px;
  left: 107px;
  opacity: 1;
  line-height: 46px;
  font-size: 20px;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 1px;
}
.box-sendbg {
  position: absolute;
  width: 221px;
  height: 78px;
  margin-top: 113px;
  margin-left: 402px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/modal/unit_top_sendbg.png);
}
.box-sendtxt {
  position: absolute;
  width: 81px;
  height: 42px;
  top: 257px;
  left: 536px;
  pointer-events: none;
  text-align: center;
  color: #ffeeca;
  font-size: 22px;
  line-height: 34px;
}
.box-sendtxt.static {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/modal/unit_top_sendtxt.png);
}
.box-submit {
  position: absolute;
  width: 434px;
  height: 99px;
  margin-top: 222px;
  margin-left: 106px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/modal/unit_top_submit.png);
}
.phone-box {
  position: absolute;
  width: 521px;
  height: 148px;
  margin-top: 28px;
  margin-left: 60px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230629newarea/modal/content.png);
}
.text-phonelabel {
  position: absolute;
  top: 125px;
  left: 138px;
  opacity: 1;
  line-height: 24px;
  text-align: center;
  font-size: 22px;
  color: #f1842a;
}
.text-codelabel {
  position: absolute;
  top: 186px;
  left: 138px;
  opacity: 1;
  line-height: 24px;
  text-align: center;
  font-size: 22px;
  color: #f1842a;
}
.box-phoneinput {
  position: absolute;
  width: 366px;
  height: 40px;
  top: 9px;
  left: 135px;
}
.box-codeinput {
  position: absolute;
  width: 176px;
  height: 40px;
  top: 96px;
  left: 141px;
}

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


div.roleselector-frame {
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: fixed;
	font-size: 14px;
}
div.roleselector-mask {
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: #333;
	opacity: 0.5;
	filter: alpha(opacity=50)
}
div.roleselector {
	width: 400px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -200px;
	z-index: 1000;
	margin-top: -150px;
	text-align: center;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden
}
div.roleselector-header {
	height: 30px;
	line-height: 30px;
	padding: 0px 10px;
	text-align: left;
	border-bottom: solid 1px #eee;
	color: #fff;
	background-color: #2196F3;
	font-size: 16px
}
.roleselector-select {
	padding: 5px 10px;
	box-sizing: border-box
}
.roleselector-box {
	line-height: 40px;
	height: 40px;
	border-bottom: solid 1px #f0f0f0;
}
.roleselector-box span {
	display: inline-block;
    width: 60px;
    text-align: left;
}
.roleselector-box select {
	display: inline-block;
	width: 300px;
	text-align: right;
	line-height: 30px;
	height: 30px;
	background-color: #fff;
	border: solid 1px #ddd;
	font-size: 14px
}

/*提示语*/
div.roleselector-msg{
	height:20px;
    line-height: 28px;
    display:none;
    text-align: left;
    padding: 0px 10px;
    font-size: 12px;
}
.roleselector-btn {
	line-height: 40px;
	height: 40px
}
.roleselector-btn a {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	border-radius: 3px;
	text-decoration: none;
	color: #fff;
	width: 150px;
	cursor: pointer
}
.roleselector-btn a.btn-confirm {
	float: left;
	margin-left: 18px;
	margin-top: 5px;
	background-color: #2096f3
}
.roleselector-btn a.btn-confirm:hover {
	background-color: #027bdc
}
.roleselector-btn a.btn-cancel {
	float: right;
	margin-right: 18px;
	margin-top: 5px;
	background-color: #999
}
.roleselector-btn a.btn-cancel:hover {
	background-color: #888
}
.roleselector-policy-tips {
    width: 100%;
	text-align: left;
	padding: 0 5px;
	transform: scale(0.98);
	color: #222222;
}
.roleselector-policy-allow {
    border: 1px solid #c1bdbd;
    color: white;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    padding: 2px;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    top: 2px;
	box-sizing: content-box;
}
.roleselector-policy-allow-status {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: black;
}
.roleselector-policy-allow-text {
    user-select: none;
    cursor: pointer;
    font-size: 12px;
}
@media screen and (max-width: 500px) {
    .roleselector {
		transform: scale(0.8, 0.8);
    }
}
.milo-alert-frame {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

.milo-alert-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    background: #000;
    z-index: 9998    
}

.milo-alert {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content:center;

   
}
.milo-alert-box {
    display: inline-block;
    width: 420px;
    padding-bottom: 10px;
    vertical-align: middle;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ebeef5;
    font-size: 18px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
    text-align: left;
    overflow: hidden;
    backface-visibility: hidden;
    
   
}

.milo-alert-box .milo-alert-header {
    position: relative;
    padding: 15px 15px 10px;
    
}
.milo-alert-box .milo-alert-header .milo-alert-close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: url('https://ossweb-img.qq.com/images/milosdk/close.png');
    background-size: contain;
}

.milo-alert-box .milo-alert-content {
    padding: 10px 15px;
    color: #606266;
    font-size: 14px;
}
.milo-alert-box .milo-alert-footer {
    display: flex;
    justify-content: flex-end;
    padding: 5px 15px 0;
}
.milo-alert-box .milo-alert-footer div {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid #dcdfe6;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    transition: .1s;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px;
    color: #fff;
    margin: 0 5px;
    min-width: 88px;
}
.milo-alert-box .milo-alert-footer .btn-confirm{
    background-color: #409eff;
    border-color: #409eff;
}

.milo-alert-box .milo-alert-footer .btn-cancel {
    background-color: #a7a6a4;
    border-color: #a7a6a4;
    display:none;
}

.milo-alert-box-mobile {
    display: inline-block;
    width: 80vw;
    vertical-align: middle;
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #ebeef5;
    font-size: 16px;
    color: #606266;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    backface-visibility: hidden;
}
.milo-alert-box-mobile .milo-alert-header {
    position: relative;
    padding: 27px 15px 0;
    color: #000;
    font-weight: bold;
}
.milo-alert-box-mobile .milo-alert-content {
    padding: 15px;
    color: #606266;
    font-size: 14px;
    border-bottom: 1px solid #ebeef5;
}
.milo-alert-box-mobile .milo-alert-footer {
    display: flex;
}
.milo-alert-box-mobile .milo-alert-footer div {
    padding: 15px;
    display: inline-block;
    width: 50%;
    box-sizing: border-box;
}
.milo-alert-box-mobile .milo-alert-footer .btn-cancel {
    display: none;
    border-right: 1px solid #ebeef5;
    color: #000;
}
.milo-alert-box-mobile .milo-alert-footer .btn-confirm {
    flex: 1;
    color: #0f4379;
}

