/* 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 {
  position: relative;
  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: #fbf7d2;
}
.app-container__inner {
  position: absolute;
  width: 1432px;
  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.5s;
}
.button:hover {
  filter: brightness(1.1);
  transform: translate(0, 5px);
}
.button.disabled {
  filter: grayscale(1);
}
.button.disabled:hover {
  filter: grayscale(1);
}
.button.unable {
  /*background-image: url('$assets/unit_topcenter_haoyou-btn-n.png'); */
}
.button.received {
  /* background-image: url('$assets/ylq.png'); */
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.placeholder {
  position: absolute;
  top: 0;
  width: 100%;
  filter: blur;
  background-image: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAf/AABEIAAYACgMBEQACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4+Tl5ufo6ery8/T19vf4+fr/2gAMAwEAAhEDEQA/APubVP2Or/8AZm8QeKfC4+FH7Ncms22n6lbaV4+0F/Fgn0PwF4m1XTNHmgtPBk/hbTor/WUtNSmvY9L1bxldaPaXt1d2cF7JpRa1n/g3O8sztZlHDY7OK9SFNSxDWHxFSnGUZxdPmmnQ9vOq4VXFpYmELJau2v61h8VhJYdToYf2aaUJRlCLblDVJP2jgo3itfZczW+r0/Xm1/4I/wD7HENtbxXPhrV765ighjuL2SXSYZLydI1WW6kig0qOCJ7iQNK0cKJEjOVjRUAA/WKfDeTQhCEpZtUlGEYubzKtFzcUk5uMWoxcmrtRVley0PmZZji5Sk1HCRTbaSwtJ2u72vKLbttdtt9W2f/Z);
}
.nav {
  position: absolute;
  width: 1116px;
  top: 982px;
  left: 180px;
  display: flex;
  justify-content: space-between;
}
.yuyue {
  /* background-image: url('$assets/tab-btn.png');*/
  /* span {
    background-image: linear-gradient(to bottom, #ca4419, #a22806);
    -webkit-background-clip: text;
    color: transparent;
  }

  &.active {
    span {
      background-image: linear-gradient(to bottom, #a30601, #4e0b00);
      -webkit-background-clip: text;
      color: transparent;
    }*/
  /* background-image: url('$assets/tab-active.png');*/
  /*}*/
}
.fanli {
  margin-left: -91px;
  /* background-image: url('$assets/tab-btn.png');

  span {
    background-image: linear-gradient(to bottom, #ca4419, #a22806);
    -webkit-background-clip: text;
    color: transparent;
  }

  &.active {
    span {
      background-image: linear-gradient(to bottom, #a30601, #4e0b00);
      -webkit-background-clip: text;
      color: transparent;
    }

    background-image: url('$assets/tab-active.png');
  }*/
}
.nav-btn {
  width: 573px;
  height: 124px;
}
.nav-btn span {
  font-size: 48px;
  line-height: 160px;
  width: 429px;
  display: inline-block;
  text-align: center;
}
.login-info {
  position: absolute;
  top: 1136px;
  text-align: center;
  color: #f9ebc6;
  width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
.nickname {
  font-size: 24px;
  color: #f9ebc6;
  cursor: pointer;
  text-decoration: underline;
}
#new-info {
  color: #f9ebc6;
  font-size: 18px;
  margin: 0 10px;
}
.quit {
  cursor: pointer;
}
@keyframes gift {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.part1 .content1 {
  position: absolute;
  top: 1240px;
}
.part1 .p1-title {
  position: absolute;
  top: 0;
  left: 156px;
  width: 1100px;
  height: 121px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/p1-title.png);
}
.part1 .p1-subtitle {
  position: absolute;
  top: 164px;
  left: 590px;
  width: 244px;
  height: 57px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/p1-subtitle.png);
}
.part1 .p1-gift {
  position: absolute;
  top: 288px;
  left: 72px;
  width: 1335px;
  height: 412px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/p1-gift.png);
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}
.part1 .gift-txt {
  width: 291px;
  height: 354px;
  font-size: 21px;
  color: #cd3405;
  line-height: 46px;
}
.part1 .p2-gift-txt {
  width: 178px;
}
.part1 .p1-btn-box {
  position: absolute;
  top: 774px;
  left: 218px;
  width: 958px;
  display: flex;
  justify-content: space-between;
}
.part1 .yy {
  width: 334px;
  height: 83px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/yy.png);
}
.part1 .lq {
  width: 334px;
  height: 83px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/lq.png);
}
.part1 .yy-num {
  position: absolute;
  top: 944px;
  left: 496px;
  width: 402px;
  height: 42px;
  text-align: center;
  font-size: 20px;
  line-height: 42px;
  color: #f1e2be;
  display: flex;
  justify-content: center;
}
.part1 .ynum {
  font-size: 20px;
}
.part1 .content2 {
  position: absolute;
  top: 2524px;
}
.part1 .p2-title {
  position: absolute;
  top: 0;
  left: 158px;
  width: 1100px;
  height: 123px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/p2-title.png);
}
.part1 .share-box {
  position: absolute;
  width: 1400px;
  top: 218px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.part1 .input {
  font-size: 24px;
  color: #a97f2e;
  line-height: 84px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 25px;
  box-sizing: border-box;
  margin-top: 8px;
  width: 687px;
  height: 84px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/input.png);
}
.part1 .copy {
  width: 292px;
  height: 70px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/copy.png);
}
.part1 .look {
  width: 292px;
  height: 70px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/look.png);
}
.part1 .p2-tip {
  position: absolute;
  top: 332px;
  width: 637px;
  height: 92px;
  color: #d75432;
  font-size: 18px;
  line-height: 32px;
}
.part1 .p2-tip span {
  color: #6c1202;
}
.part1 .yy-tip {
  position: absolute;
  top: 568px;
  width: 682px;
  text-align: center;
  font-size: 18px;
  line-height: 34px;
  color: #bf4127;
}
.part1 .sj-tip {
  position: absolute;
  top: 560px;
  width: 682px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #bf4127;
}
.part1 .p2-gift-box {
  position: absolute;
  width: 1432px;
  top: 505px;
  display: flex;
  justify-content: space-between;
}
.part1 .gift-txt-container {
  position: absolute;
  width: 543px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 20px;
  line-height: 41px;
  color: #fde986;
  top: 156px;
  left: 80px;
}
.part1 .p2-gift-img1,
.part1 .p2-gift-img2,
.part1 .p2-gift-img3,
.part1 .p2-gift-img4,
.part1 .p2-gift-img5,
.part1 .p2-gift-img6 {
  margin: 0 0 22px 24px;
  width: 132px;
  height: 131px;
  opacity: 0;
}
.part1 .p2-gift-name {
  width: 118px;
  margin: 0 0 0 29px;
  line-height: 24px;
}
.part1 .p2-gift-name1 {
  width: 100px;
  margin: 0 0 0 38px;
  line-height: 24px;
}
.part1 .p2-gift-img1 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/5.png);
}
.part1 .p2-gift-img1.active {
  animation: gift 0.5s linear forwards;
}
.part1 .p2-gift-img2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/6.png);
}
.part1 .p2-gift-img2.active {
  animation: gift 0.5s linear forwards 0.3s;
}
.part1 .p2-gift-img3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/7.png);
}
.part1 .p2-gift-img3.active {
  animation: gift 0.5s linear forwards 0.5s;
}
.part1 .p2-gift-img4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/8.png);
}
.part1 .p2-gift-img4.active {
  animation: gift 0.5s linear forwards 0.7s;
}
.part1 .p2-gift-img5 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/9.png);
}
.part1 .p2-gift-img5.active {
  animation: gift 0.5s linear forwards 0.9s;
}
.part1 .p2-gift-img6 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/10.png);
}
.part1 .p2-gift-img6.active {
  animation: gift 1s linear forwards 1.2s;
}
.part1 .p2-yy {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/p2-yy.png);
}
.part1 .p2-sj {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/p2-sj.png);
}
.part1 .p2-content {
  position: relative;
  width: 698px;
  height: 488px;
  font-size: 16px;
  color: #831e0a;
}
.part1 .p2-btn {
  position: absolute;
  top: 440px;
  width: 284px;
  height: 73px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/p2-lq.png);
}
.part1 .p2-yy_btn {
  left: 202px;
}
.part1 .p2-sj_btn {
  left: 202px;
}
.part1 .create_num {
  position: absolute;
  top: -10px;
  left: 32px;
  font-weight: bold;
}
.part1 .sjpeo_num {
  position: absolute;
  top: -10px;
  left: 32px;
  font-weight: bold;
}
.part1 .create_draw {
  position: absolute;
  top: -10px;
  right: 48px;
  font-weight: bold;
}
.part1 .sjpeo_draw {
  position: absolute;
  top: -10px;
  right: 48px;
  font-weight: bold;
}
.part1 .content3 {
  position: absolute;
  top: 4034px;
}
.part1 .p3-title {
  position: absolute;
  top: 0;
  left: 308px;
  width: 800px;
  height: 121px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/p3-title.png);
}
.part1 .rule {
  position: absolute;
  top: 286px;
  width: 737px;
  height: 209px;
}
.part1 .rule-txt {
  font-size: 18px;
  color: #ecd8b6;
  height: 61px;
  line-height: 28px;
}
.part1 .rule-num {
  text-align: center;
  font-size: 14px;
  width: 20px;
  height: 20px;
  background-color: #a43311;
  border: 1px solid #922b0e;
  display: inline-block;
  margin-right: 20px;
  transform: rotate(45deg);
}
.part1 .num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  color: #ffa58a;
}
.part1 .gift-img1,
.part1 .gift-img2,
.part1 .gift-img3,
.part1 .gift-img4 {
  width: 190px;
  height: 190px;
  opacity: 0;
  margin: 40px auto;
}
.part1 .gift-img1 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/1.png);
}
.part1 .gift-img1.active {
  animation: gift 0.3s linear forwards;
}
.part1 .gift-img2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/2.png);
}
.part1 .gift-img2.active {
  animation: gift 0.3s linear forwards 0.3s;
}
.part1 .gift-img3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/3.png);
}
.part1 .gift-img3.active {
  animation: gift 0.3s linear forwards 0.5s;
}
.part1 .gift-img4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/4.png);
}
.part1 .gift-img4.active {
  animation: gift 0.3s linear forwards 0.7s;
}
.part1 .p1-title,
.part1 .p1-subtitle,
.part1 .p1-gift,
.part1 .p1-btn-box,
.part1 .yy-num,
.part1 .p2-title,
.part1 .share-box,
.part1 .p2-tip,
.part1 .p2-gift-box,
.part1 .p3-title,
.part1 .rule {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s linear;
}
.part1 .p1-title.active,
.part1 .p1-subtitle.active,
.part1 .p1-gift.active,
.part1 .p1-btn-box.active,
.part1 .yy-num.active,
.part1 .p2-title.active,
.part1 .share-box.active,
.part1 .p2-tip.active,
.part1 .p2-gift-box.active,
.part1 .p3-title.active,
.part1 .rule.active {
  opacity: 1;
  transform: translateY(0);
}
.part2 .content1 {
  position: absolute;
  top: 1240px;
}
.part2 .f1-title {
  position: absolute;
  top: 0;
  left: 156px;
  width: 1100px;
  height: 120px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/f1-title.png);
}
.part2 .f1-content1 {
  position: absolute;
  top: 190px;
  width: 1400px;
  display: flex;
  justify-content: space-between;
}
.part2 .qd-box {
  width: 635px;
  height: 461px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/qd-bg.png);
  font-size: 20px;
  color: #a97f2e;
  text-align: center;
  line-height: 62px;
}
.part2 .qd-box > div {
  position: absolute;
  line-height: 42px;
}
.part2 .lq-box {
  width: 635px;
  color: #a97f2e;
  height: 461px;
  font-size: 20px;
  text-align: center;
  line-height: 62px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/lq-bg.png);
}
.part2 .lq-box > div {
  position: absolute;
}
.part2 .bind-box {
  top: 220px;
  left: 231px;
  color: #f07d24;
  width: 326px;
  height: 88px;
}
.part2 .oldBind {
  position: absolute;
  top: 0;
  width: 326px;
  height: 43px;
  background-color: #fffae0;
  border-bottom: 1px solid #e1be7d;
  cursor: pointer;
}
.part2 .newBind {
  position: absolute;
  bottom: 0;
  width: 326px;
  height: 44px;
  background-color: #fffae0;
  cursor: pointer;
}
.part2 .old-area {
  top: 220px;
  left: 235px;
  width: 104px;
  height: 42px;
}
.part2 .old-role {
  top: 220px;
  left: 351px;
  width: 203px;
  height: 42px;
}
.part2 .new-area {
  top: 265px;
  left: 235px;
  width: 104px;
  height: 42px;
}
.part2 .new-role {
  top: 265px;
  left: 351px;
  width: 203px;
  height: 42px;
}
.part2 .qy-btn {
  top: 342px;
  left: 198px;
  width: 241px;
  height: 60px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/qy-btn.png);
}
.part2 .gh-btn {
  top: 342px;
  left: 198px;
  width: 241px;
  height: 60px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/gh-btn.png);
}
.part2 .xf {
  top: 174px;
  left: 949px;
  width: 122px;
  height: 62px;
}
.part2 .scale {
  top: 174px;
  left: 1209px;
  width: 109px;
  height: 62px;
}
.part2 .yfl {
  top: 243px;
  left: 949px;
  width: 122px;
  height: 62px;
}
.part2 .klq {
  top: 243px;
  left: 1209px;
  width: 109px;
  height: 62px;
}
.part2 .fl-btn {
  top: 342px;
  left: 970px;
  width: 241px;
  height: 60px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/fl.png);
}
.part2 .f1-subtitle {
  position: absolute;
  top: 1097px;
  left: 78px;
  width: 1260px;
  height: 122px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/f1-subtitle.png);
}
.part2 .fl-info-btn {
  position: absolute;
  top: 1258px;
  left: 528px;
  width: 362px;
  height: 77px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/flinfo.png);
}
.part2 .f1-tip {
  position: absolute;
  top: 2126px;
  left: 184px;
  width: 986px;
  height: 217px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/f1-tip.png);
  cursor: pointer;
}
.part2 .turndisc {
  position: absolute;
  top: 1386px;
  left: 256px;
  width: 901px;
  height: 450px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/edbg.png);
}
.part2 .default {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 901px;
  height: 901px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/zz.png);
  transform-origin: center;
}
@keyframes needle1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
@keyframes needle2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(55deg);
  }
}
@keyframes needle3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(125deg);
  }
}
@keyframes needle4 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(160deg);
  }
}
.part2 .needle1 {
  animation: needle1 0.8s ease-out forwards;
}
.part2 .needle2 {
  animation: needle2 1.2s ease-out forwards;
}
.part2 .needle3 {
  animation: needle3 1.6s ease-out forwards;
}
.part2 .needle4 {
  animation: needle4 2s ease-out forwards;
}
.part2 .ed {
  position: absolute;
  top: 399px;
  left: 302px;
  width: 306px;
  height: 51px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/f1-edtxt.png);
}
.part2 .fl-num-box {
  position: absolute;
  width: 200px;
  top: 460px;
  left: 348px;
  font-size: 44px;
  display: flex;
  justify-content: center;
}
.part2 .fl-num {
  color: #d87802;
}
.part2 .content2 {
  position: absolute;
  top: 3890px;
}
.part2 .f2-title {
  position: absolute;
  top: 0;
  left: 292px;
  width: 800px;
  height: 121px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/f2-title.png);
}
.part2 .f2-rule {
  position: absolute;
  top: 213px;
  width: 1132px;
  height: 356px;
}
.part2 .rule-txt {
  font-size: 18px;
  color: #ecd8b6;
  height: 61px;
  line-height: 28px;
}
.part2 .rule-num {
  text-align: center;
  font-size: 14px;
  width: 24px;
  height: 24px;
  background-color: #a43311;
  border: 1px solid #912b0e;
  display: inline-block;
  margin-right: 20px;
  transform: rotate(45deg);
}
.part2 .num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  color: #ffa58a;
}
.part2 .f1-title,
.part2 .f1-content1,
.part2 .f1-subtitle,
.part2 .fl-info-btn,
.part2 .turndisc,
.part2 .f1-tip,
.part2 .f2-title,
.part2 .f2-rule {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s linear;
}
.part2 .f1-title.active,
.part2 .f1-content1.active,
.part2 .f1-subtitle.active,
.part2 .fl-info-btn.active,
.part2 .turndisc.active,
.part2 .f1-tip.active,
.part2 .f2-title.active,
.part2 .f2-rule.active {
  opacity: 1;
  transform: translateY(0);
}

.nav-bg {
  position: absolute;
  top: 30px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/nav1bg.png);
  width: 571px;
  height: 95px;
  transition: all 0.3s ease-out;
}
.nav-bg::after {
  opacity: 0;
  transition: all 0.3s ease-out;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/nav2bg.png);
  background-position: cover;
}
.nav-txt {
  transition: all 0.3s ease-out;
}
.nav-txt1 {
  position: absolute;
  top: 58px;
  left: 120px;
  width: 196px;
  height: 48px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/nav1txt.png);
}
.nav-txt2 {
  position: absolute;
  top: 58px;
  left: 120px;
  width: 196px;
  height: 48px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/nav2txt.png);
}
.nav-dec1 {
  position: absolute;
  top: 20px;
  left: 75px;
  width: 68px;
  height: 37px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/navdec1.png);
  transition: all 0.3s ease-out;
}
.nav-dec1::after {
  opacity: 0;
  transition: all 0.3s ease-out;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/nav2dec1.png);
  background-position: cover;
}
.nav-dec2 {
  position: absolute;
  top: 0px;
  left: 42px;
  width: 33px;
  height: 35px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/navdec2.png);
  transition: all 0.3s ease-out;
}
.nav-dec2::after {
  opacity: 0;
  transition: all 0.3s ease-out;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/nav2dec2.png);
  background-position: cover;
}
.nav-dec3 {
  position: absolute;
  top: 20px;
  left: 2px;
  width: 77px;
  height: 68px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/navdec3.png);
  transition: all 0.3s ease-out;
}
.nav-dec3::after {
  opacity: 0;
  transition: all 0.3s ease-out;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/nav2dec3.png);
  background-position: cover;
}
.nav-btn {
  position: relative;
}
.nav-btn.mouse .nav-bg {
  transform: translateY(10px);
}
.nav-btn.mouse .nav-txt {
  transform: scale(1.05) translateY(10px);
}
.nav-btn.mouse .nav-dec1,
.nav-btn.mouse .nav-dec2,
.nav-btn.mouse .nav-dec3 {
  transform: translateY(15px);
}
.nav-btn.active .nav-bg::after,
.nav-btn.active .nav-dec1::after,
.nav-btn.active .nav-dec2::after,
.nav-btn.active .nav-dec3::after {
  opacity: 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);
}
.fli-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 736px;
  height: 456px;
  display: flex;
  align-items: center;
}
.modal-content {
  width: 687px;
  height: 433px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/dialog/model-bg.png);
}
.modal-left {
  width: 24px;
  height: 461px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/dialog/model-dec.png);
}
.modal-right {
  width: 24px;
  height: 461px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/dialog/model-dec.png);
}
.fl-content-img {
  width: 557px;
  height: 344px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/dialog/model-fl-content.png);
}
@keyframes close {
  0% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.box-close {
  width: 70px;
  height: 68px;
  position: absolute;
  right: 0;
  top: -88px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/close.png);
  transform: rotate(-90deg);
}
.box-close:hover {
  animation: close 0.5s linear forwards;
}
.money-title {
  width: 579px;
  height: 50px;
  position: absolute;
  left: 76px;
  top: 108px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/money-title.png);
}
.money-input {
  width: 587px;
  height: 82px;
  position: absolute;
  left: 75px;
  top: 190px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/money-input.png);
}
.money-input input {
  width: 100%;
  height: 100%;
  background: none;
  outline: none;
  border: none;
  font-size: 24px;
  line-height: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  color: #925008;
}
.money-input input::input-placeholder {
  color: #b6b6b6e9;
}
.money-input input::-webkit-input-placeholder {
  color: #b6b6b6e9;
}
.money-input input::-moz-placeholder {
  color: #b6b6b6e9;
}
.money-input input::-moz-placeholder {
  color: #b6b6b6e9;
}
.money-input input::-ms-input-placeholder {
  color: #b6b6b6e9;
}
.m-btn-y {
  width: 241px;
  height: 60px;
  position: absolute;
  left: 80px;
  top: 312px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/y.png);
}
.m-btn-n {
  width: 241px;
  height: 60px;
  position: absolute;
  left: 418px;
  top: 312px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/n.png);
}
@keyframes modal {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.yq-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 736px;
  height: 456px;
  display: flex;
  align-items: center;
  animation: modal 0.3s linear forwards;
  transition: 0.5s;
}
.yq-left {
  width: 24px;
  height: 461px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/dialog/model-dec.png);
}
.yq-right {
  width: 24px;
  height: 461px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/dialog/model-dec.png);
}
.modal-content-yq {
  width: 687px;
  height: 433px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/dialog/model-bg.png);
}
.hy-content-img {
  width: 557px;
  height: 344px;
  position: absolute;
  top: 40px;
  left: 92px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/dialog/model-hy-content.png);
}
.hy-content {
  position: absolute;
  bottom: 0;
  width: 557px;
  height: 294px;
}
.invite-one {
  width: 100%;
  height: 48px;
}
.invite-one span {
  display: inline-block;
  text-align: center;
  color: #a97f2e;
  font-size: 24px;
  line-height: 48px;
}
.invite-one .qq {
  width: 184px;
}
.invite-one .name {
  width: 190px;
}
.invite-one .cz {
  width: 172px;
}
.cz-content-img {
  position: absolute;
  top: 130px;
  width: 658px;
  height: 117px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/purchase.png);
}
.sign-content-img {
  position: absolute;
  top: 128px;
  width: 628px;
  height: 112px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/sign-tip.png);
}
.limit-content-img {
  position: absolute;
  top: 177px;
  width: 550px;
  height: 39px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/limit-tip.png);
}
.newarea-content-img {
  position: absolute;
  top: 158px;
  width: 476px;
  height: 40px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/new-tip.png);
}
.page-box {
  width: 366px;
  height: 36px;
  font-size: 20px;
  color: #dd2e0a;
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
}

.app-container {
  perspective: 1000px;
}
.opacity-ani {
  opacity: 0;
  transition: opacity 0.5s linear;
  transition-delay: 0.5s;
}
.opacity-ani.active {
  opacity: 1;
}
.kv {
  position: absolute;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/kvplace.jpg);
  transform: scale(1.2);
  transition: all 1s ease-in-out;
}
.kv.def {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/kv.png);
}
.kv.active {
  transform: none;
}
.kv.active.distransition {
  transition: none;
}
.bg-container {
  position: relative;
  margin-top: 345px;
  transform: translate3d(0, 0, 0);
}
.bg-decs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
}
.kv-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
}
.ui-bg::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.3s linear;
}
.ui-bg.tab2::after {
  opacity: 1;
}
.ui-1 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice_1.png);
}
.ui-1::after {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice2_1.png);
}
.ui-2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice_2.jpg);
}
.ui-2::after {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice2_2.jpg);
}
.ui-3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice_3.jpg);
}
.ui-3::after {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice2_3.jpg);
}
.ui-4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice_4.jpg);
}
.ui-4::after {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice2_4.jpg);
}
.ui-5 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice_5.jpg);
  height: 221px;
}
.ui-5::after {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/slice2_5.jpg);
}
.box-kvdec4 {
  position: absolute;
  width: 1920px;
  height: 885px;
  top: 0px;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvdec4.png);
  opacity: 0;
}
.box-kvdec4.enter {
  animation: kvdec4-enter 1.5s ease;
  animation-fill-mode: forwards;
}
.box-kvdec3 {
  position: absolute;
  width: 683px;
  height: 384px;
  top: 692px;
  left: 200px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvdec3.png);
  opacity: 0;
}
.box-kvdec3.enter {
  animation: kvdec3-enter 1.5s ease;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
}
.box-kvdec2 {
  position: absolute;
  width: 695px;
  height: 387px;
  top: 689px;
  left: 1012px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvdec2.png);
  opacity: 0;
}
.box-kvdec2.enter {
  animation: kvdec2-enter 1s ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.box-kvdec1 {
  position: absolute;
  width: 317px;
  height: 411px;
  top: 437px;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvdec1.png);
  opacity: 0;
}
.box-kvdec1.enter {
  animation: kvdec1-enter 1s ease;
  animation-fill-mode: forwards;
}
.box-kvdec1.active {
  opacity: 1;
  animation: kvdec1-active 10s linear infinite;
}
@keyframes kvdec1-enter {
  0% {
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kvdec2-enter {
  0% {
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kvdec3-enter {
  0% {
    transform: translateX(-200px) scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kvdec4-enter {
  0% {
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kvdec5-enter {
  0% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
  }
}
@keyframes kvdec1-active {
  50% {
    transform: translateX(-20px) translateY(-50px);
  }
}
.box-bird {
  position: absolute;
  width: 398px;
  height: 177px;
  top: 1118px;
  left: 1499px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_bird.png);
}
.box-logo {
  position: absolute;
  width: 162px;
  height: 165px;
  top: 36px;
  left: 31px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_logo.png);
}
.box-logo11 {
  position: absolute;
  width: 145px;
  height: 121px;
  top: 55px;
  left: 230px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/11logo.png);
}
.box-kvdec5 {
  position: absolute;
  width: 1920px;
  height: 1128px;
  top: 0px;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvdec5.png);
  opacity: 0;
}
.box-kvdec5.enter {
  animation: kvdec5-enter 1.5s ease;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
}
.box-btmdec2 {
  position: absolute;
  width: 265px;
  height: 291px;
  bottom: 0;
  right: 0;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_btmdec2.png);
}
.box-btmdec1 {
  position: absolute;
  width: 1920px;
  height: 1385px;
  bottom: 0;
  left: 0px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_btmdec1.png);
}
.box-kvtit {
  position: absolute;
  width: 1170px;
  height: 354px;
  top: 502px;
  left: 411px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s linear;
}
.box-kvtit.enter {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvtit.png);
  opacity: 1;
  transform: none;
}
.box-kvtit.enter .kvtithl {
  position: absolute;
  top: 42px;
  left: 43px;
  /* width: 1170px;*/
  width: 100px;
  height: 268px;
  -webkit-mask-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvtit__mask.png);
  mask-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvtit__mask.png);
  -webkit-mask-size: 1085px 268px;
  mask-size: 1085px 268px;
  -webkit-mask-position: 0 0px;
  mask-position: 0 0px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: linear-gradient(to right, rgba(247, 238, 205, 0), rgba(247, 238, 205, 1) 30%, rgba(247, 238, 205, 1) 70%, rgba(247, 238, 205, 0));
  animation: kvtithl 1.7s ease-out;
  animation-fill-mode: forwards;
}
@keyframes kvtithl {
  0% {
    opacity: 0;
    -webkit-mask-position: 0 0px;
    mask-position: 0 0px;
    transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-mask-position: -985px 0;
    mask-position: -985px 0;
    transform: translate(985px, 0);
  }
}
.box-kvsubtit {
  position: absolute;
  /* width: 790px;*/
  height: 58px;
  top: 772px;
  left: 565px;
  background-position: left;
  width: 0;
  opacity: 0;
  filter: brightness(3);
  transition: all 0.8s linear;
}
.box-kvsubtit.enter {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvsubtit.png);
  opacity: 1;
  width: 790px;
  filter: none;
}
.box-kvdec {
  position: absolute;
  width: 40px;
  height: 102px;
  top: 599px;
  left: 1422px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/unit_top_kvdec.png);
}
.opacity-ani {
  opacity: 0;
  transition: opacity 1s linear;
}
.opacity-ani.enter {
  opacity: 1;
}
.delay5 {
  transition-delay: 0.5s;
}
.delay10 {
  transition-delay: 1s;
}
.delay13 {
  transition-delay: 1.3s;
}
.delay15 {
  transition-delay: 1.5s;
}
.particle-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 300px;
  pointer-events: none;
}
.particle-area1 {
  top: 800px;
}
.particle-area2 {
  top: 2100px;
}
.particle-area3 {
  top: 3800px;
}

.circles {
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
}
.light-particle {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 16px;
  height: 16px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20230529newareaznq/kv/particle.png);
  background-size: contain;
}
.light-particle.active1 {
  animation: particle-active1 3s linear;
  animation-fill-mode: forwards;
}
.light-particle.active2 {
  animation: particle-active2 3s linear;
  animation-fill-mode: forwards;
}
.light-particle.active3 {
  animation: particle-active3 3s linear;
  animation-fill-mode: forwards;
}
.light-particle.active4 {
  animation: particle-active4 3s linear;
  animation-fill-mode: forwards;
}
@keyframes particle-active1 {
  100% {
    opacity: 0;
    transform: translate(60px, -100px);
  }
}
@keyframes particle-active2 {
  100% {
    opacity: 0;
    transform: translate(40px, -100px);
  }
}
@keyframes particle-active3 {
  100% {
    opacity: 0;
    transform: translate(40px, -40px);
  }
}
@keyframes particle-active4 {
  100% {
    opacity: 0;
    transform: translate(-40px, 100px);
  }
}
.light-circle__container {
  position: absolute;
  top: 50%;
  mix-blend-mode: overlay;
  width: 1.28rem;
  height: 1.28rem;
}
.light-circle {
  width: 1.28rem;
  height: 1.28rem;
  /* mix-blend-mode: @blendmode;*/
  /* background-image: url('$assets/liangpian.png');*/
  animation: light-circle 6s ease-in-out;
  animation-fill-mode: forwards;
  transform: scale(0.5);
  opacity: 0;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
@keyframes light-circle {
  10% {
    opacity: 0.2;
  }
  20% {
    opacity: 0.4;
  }
  30% {
    opacity: 0.2;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.2;
  }
  60% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}

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


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

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


/*qq微信登录*/

.milo-qqwx-login {
    position: fixed;
    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;
}

