/* Function */
.ac-dn {
  display: none !important;
}
.ac-cb:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  overflow: hidden;
  content: '.';
}
.ac-ib {
  display: inline-block;
}
.ac-blk {
  display: block;
}
.ac-blkfull {
  display: block;
  width: 100%;
  height: 100%;
}
.ac-img {
  display: block;
  width: 100%;
}
.ac-dis {
  pointer-events: none;
}
.ac-hide {
  display: none !important;
}
.ac-vhide {
  visibility: hidden;
}
/* 适配iphoneX */
.ac-iphonexfull {
  padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.ac-iphonexlr {
  padding-left: constant(safe-area-inset-left);
  padding-right: constant(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.ac-iphonexbm {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.ac-iphonexmgfull {
  margin: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
  margin: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.ac-iphonexmglf {
  margin-left: constant(safe-area-inset-left);
  margin-right: constant(safe-area-inset-right);
  margin-left: env(safe-area-inset-left);
  margin-right: env(safe-area-inset-right);
}
.ac-iphonexmgbm {
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom);
}
/* 1px解决文案：优点，可画圆角，重置可变色；缺点，安卓低端机边框可能会糊，会丢线；*/
.ac-bd {
  position: relative;
}
.ac-bd *,
.ac-txt * {
  position: relative;
  z-index: 1;
}
.ac-bd:after,
.ac-txt:after {
  position: absolute;
  z-index: 2;
  content: '';
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-width: 0;
  pointer-events: none;
}
/* @Media & for UI fix */
/*-----------------------------------------------------*/
/* 1px解决方案 2倍屏 */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .ac-bd:after,
  .ac-txt:after {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
    border-color: rgba(0, 0, 0, 0.1);
  }
}
/* 1px解决方案 3倍屏 */
@media screen and (-webkit-min-device-pixel-ratio: 3) {
  .ac-bd:after,
  .ac-txt:after {
    width: 300%;
    height: 300%;
    transform: scale(0.333333);
    border-color: rgba(0, 0, 0, 0.13);
  }
}
/* Position */
.ac-fl {
  float: left;
}
.ac-fr {
  float: right;
}
.ac-pr {
  position: relative;
}
.ac-pa {
  position: absolute;
}
.ac-prafll {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.ac-fix {
  position: fixed;
}
.ac-fixfll {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* Align */
/* absolute 自身 左右居中 */
.ac-hc {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
}
/* absolute 自身 上下居中 */
.ac-vc {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
}
/* absolute 自身 绝对居中 */
.ac-cc {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* flex 内容多行居中排版，需要定高 */
.ac-fvc {
  display: flex;
  justify-content: center;
  flex-direction: column;
  -webkit-box-pack: center;
}
.ac-flvc {
  display: flex;
  align-content: center;
  align-items: center;
}
.ac-fcc {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ac-fbvc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ac-flex11 {
  flex: 1 1 auto;
}
.ac-flex01 {
  flex: 0 1 auto;
}
.ac-flex00 {
  flex: 0 0 auto;
}
.ac-mgt5 {
  margin-top: 5px;
}
.ac-mgt10 {
  margin-top: 10px;
}
.ac-mgt15 {
  margin-top: 15px;
}
.ac-mgt20 {
  margin-top: 20px;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: 'HanHei SC', 'PingFang SC', 'Helvetica Neue', 'Helvetica', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
body {
  box-sizing: border-box;
}
html,
body,
img,
iframe,
button,
input {
  border: 0;
}
body,
html,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
p,
input,
header,
menu,
section,
figure,
figcaption,
article,
blockquote {
  padding: 0;
  margin: 0;
}
textarea,
select,
input,
button {
  font-size: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
em,
i {
  font-style: normal;
  text-align: left;
}
li,
i {
  list-style: none;
}
textarea {
  resize: none;
  overflow: auto;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
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: 12rem;
  overflow: hidden;
}
.web-bg {
  /* 页面背景切片 */
  position: relative;
  width: 100%;
  min-width: 12rem;
  background-size: 1920px 100%;
  background-position: top center;
  height: 10.8rem;
}
.ui-1 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/slice_1.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/slice_2.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/slice_3.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/slice_4.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-5 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/slice_5.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-6 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/slice_6.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-7 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/slice_7.png);
  margin-top: -1px;
  background-size: cover;
  background-repeat: no-repeat;
}
.ui-8 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/slice_8.png);
  height: 1.04rem;
  background-size: cover;
  background-repeat: no-repeat;
}
.button {
  /* 按钮 */
  cursor: pointer;
  transition: all 0.3s;
}
.button:hover {
  filter: brightness(1.2);
}
.button.disabled {
  filter: grayscale(1);
}
.button.disabled:hover {
  filter: grayscale(1);
}
.app-container__inner {
  position: absolute;
  width: 12rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-container {
  position: relative;
  width: 100%;
}
.top-container .logo {
  position: absolute;
  width: 3.56rem;
  height: 1.87rem;
  top: 0.5rem;
  left: -2.7rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/logo.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-container .slogan {
  position: absolute;
  top: 4.12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 15.4rem;
  height: 7.84rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/slogan.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.user-container {
  color: #fff;
  position: absolute;
  top: 9.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.32rem;
}
.user-container .login-wrapper {
  color: #ffed7e;
  display: flex;
  justify-content: space-between;
}
.user-container .bind-container {
  text-indent: 0.5em;
  font-size: 0.28rem;
}
.rel {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.buy-button {
  top: 10.33rem;
  width: 11.56rem;
  display: flex;
  justify-content: space-between;
}
.buy-button .self-buy {
  width: 4.23rem;
  height: 1.43rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/selfBuyBtn.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.buy-button .classic-buy {
  width: 4.23rem;
  height: 1.43rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/classicBuyBtn.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.classic-region-container {
  opacity: 0;
  transform: translate(-50%, 50px);
  transition: all 0.5s ease-out;
  position: relative;
  top: 11rem;
}
.classic-region-container.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.classic-region-container .title {
  width: 10.52rem;
  height: 1.71rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/classicHeader.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  margin-bottom: 0.3rem;
}
.classic-region-container .desc {
  margin-top: 0.48rem;
  margin-bottom: 0.4rem;
  font-size: 0.3rem;
  text-align: center;
  color: #f5f8ff;
}
.self-region-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-out;
  position: absolute;
  top: 34.65rem;
}
.self-region-container.show {
  opacity: 1;
  transform: translateY(0);
}
.self-region-container .title {
  width: 10.52rem;
  height: 1.87rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/selfHeader.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  margin-bottom: 0.4rem;
}
.self-region-container .desc {
  margin-top: 0.48rem;
  margin-bottom: 0.4rem;
  font-size: 0.3rem;
  text-align: center;
  color: #f5f8ff;
}
.gift-list {
  position: relative;
  width: 12.45rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.gift-list .gift-item {
  position: relative;
  width: 5.9rem;
  height: 3.46rem;
  margin-bottom: 0.18rem;
}
.gift-list .gift-1191459 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191459.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1191460 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191460.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1191461 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191461.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1191462 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191462.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1191463 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191463.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1191464 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191464.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1191465 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191465.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1191466 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191466.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1191467 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191467.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1191477 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1191477.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189109 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189109.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189950 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189950.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189951 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189951.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189952 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189952.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189953 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189953.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189954 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189954.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189955 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189955.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189956 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189956.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189957 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189957.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .gift-1189958 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBg/gift-1189958.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .left-info {
  position: relative;
  left: 0.62rem;
  top: 0.9rem;
  width: 1.96rem;
  height: 1.96rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/iconCircle.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .left-info .goods-limit-container {
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 0.2rem;
  color: #5e88ea;
}
.gift-list .left-info .icon {
  width: 0.83rem;
  height: 0.83rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gift-list .left-info .icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
}
.gift-list .left-info .count4 {
  position: absolute;
  top: -0.63rem;
  right: 1.37rem;
  width: 1.21rem;
  height: 1.22rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/count4.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .count5 {
  position: absolute;
  top: -0.63rem;
  right: 1.37rem;
  width: 1.21rem;
  height: 1.22rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/count5.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .count54 {
  position: absolute;
  top: -0.63rem;
  right: 1.37rem;
  width: 1.21rem;
  height: 1.22rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/count54.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .count58 {
  position: absolute;
  top: -0.63rem;
  right: 1.37rem;
  width: 1.21rem;
  height: 1.22rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/count58.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .count83 {
  position: absolute;
  top: -0.63rem;
  right: 1.37rem;
  width: 1.21rem;
  height: 1.22rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/count83.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .right-buy {
  position: absolute;
  top: 0.88rem;
  right: 0.48rem;
  width: 2.74rem;
  height: 1.9rem;
}
.gift-list .right-buy .buy-btn {
  position: absolute;
  width: 2.42rem;
  height: 0.67rem;
  bottom: 0.28rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBuyBtn.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .right-buy .user-limit-container {
  position: absolute;
  bottom: -0.2rem;
  width: 100%;
  text-align: center;
  font-size: 0.2rem;
  color: #5e88ea;
}
.gift-list .price9900 {
  position: absolute;
  width: 2.33rem;
  height: 0.78rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/price99.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .price19900 {
  position: absolute;
  width: 2.44rem;
  height: 0.77rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/price199.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .price49900 {
  position: absolute;
  width: 2.51rem;
  height: 0.78rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/price499.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .price99900 {
  position: absolute;
  width: 2.51rem;
  height: 0.78rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/price999.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .price18800 {
  position: absolute;
  width: 2.48rem;
  height: 0.78rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/price188.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.gift-list .price199900 {
  position: absolute;
  width: 2.52rem;
  height: 0.76rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/price1999.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.buy-btn {
  position: relative;
  width: 5.74rem;
  height: 3.3rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/giftBuyBtn.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconfeixian1 {
  width: 0.93rem;
  height: 0.93rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/feixian1.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconfeixian2 {
  width: 0.93rem;
  height: 0.93rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/feixian2.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconfudai {
  width: 1.06rem;
  height: 1.06rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/fudai.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconyueka {
  width: 1.06rem;
  height: 1.06rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/yueka.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconfengzhu {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/fengzhu.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconxinghai {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/xinghai.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconxingkun {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/xingkun.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconzhanchen {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/zhanchen.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconchise {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/chise.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconlongxiang {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/longxiang.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconzhubao {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/zhubao.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconlongyun {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/longyun.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconniepan {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/niepan.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconrongzhuang {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/rongzhuang.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.icontianming {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/tianming.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconcuiyuan {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/cuiyuan.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.iconjuemiao {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/juemiao.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.desc-container {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s linear;
  border-radius: 5px;
  transform: translateY(-50%);
  pointer-events: none;
}
.desc-container.active {
  opacity: 1;
}
.descImg {
  width: 351px;
  height: auto;
}
.rules-container {
  position: absolute;
  top: 71.29rem;
  width: 100%;
}
.rules-container .title {
  margin: 0 auto;
  width: 8.69rem;
  height: 1.08rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/rules.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0.42rem;
}
.rules-container p {
  width: 100%;
  word-wrap: normal;
  font-size: 0.24rem;
  color: #f5f8ff;
  margin-bottom: 0.26rem;
}

.modal-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.modal-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s linear;
}
.modal-mask.active {
  opacity: 1;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-content .close-button {
  position: absolute;
  right: -0.8rem;
  top: -0.52rem;
  width: 1.02rem;
  height: 1.02rem;
  background: url(//game.gtimg.cn/images/xy2/act/a20250618gift/modal/close.png) no-repeat center top;
  background-size: cover;
}
.modal-content input:focus {
  outline: none;
  border: none;
}
.modal-content .model-input {
  width: 2.62rem;
  height: 0.45rem;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQYAAAAtBAMAAAC+B9hOAAAAElBMVEV7o/F7o/F7o/F7o/F7o/F7o/E6fIxCAAAABXRSTlPdItqkCYqcq0MAAABKSURBVFjD7c5RCcAwEAWwgykYzML+Z2EWCvVvpYUn4qAkClL/3e2pd3YbNfs5ODg4ODg4ODg4ODg4OGwO4RAO4RAO4RBnHr7qdi2uzFelVZOd2wAAAABJRU5ErkJggg==);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  outline: none;
  font-size: 0.25rem;
}
.modal-content .btn-submit {
  color: #fff;
  font-size: 20px;
}
.modal-content .content-box {
  width: 6.2rem;
  margin: 0 auto;
}
.tr {
  display: flex;
  border-top: 1px solid #ebf3ff;
  height: 0.47rem;
  line-height: 0.47rem;
}
.tr:nth-child(odd) {
  background-color: #ffffff;
}
.tr:nth-child(even) {
  background-color: #f5f9ff;
}
.tr:last-child {
  border-bottom: 2px solid #ffffff;
}
.tr .td:first-child {
  border-left: 2px solid #ffffff;
}
.tr .td:last-child {
  border-right: 2px solid #ffffff;
  flex: 1;
}
.td {
  font-size: 0.18rem;
  flex: 1;
  text-align: center;
  border-left: 1px solid #c6e4f8;
}
.th {
  font-size: 0.18rem;
  font-weight: 700;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  background-color: #dbe9ff !important;
}
.th:first-child {
  border-left: 2px solid #ffffff;
}
.th:last-child {
  border-right: 2px solid #ffffff;
}
.table-content.history-table {
  height: 2.2rem;
  overflow: auto;
}
.table-content.history-table::-webkit-scrollbar {
  transform: scale(0.5);
  width: 2px;
  height: 2px;
  /**/
}
.table-content.history-table::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 2px;
}
.table-content.history-table::-webkit-scrollbar-thumb {
  background: #bfbfbf;
  border-radius: 10px;
}
.table-content.history-table::-webkit-scrollbar-thumb:hover {
  background: #333;
}
.percent-content {
  background-color: #dbe9ff !important;
}
.history-table.thead-container {
  margin-right: 2px;
}
.giftHistory-modal {
  width: 7.74rem;
  height: 6.19rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/historyBg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.giftHistory-modal .giftList-tip {
  font-size: 0.2rem;
  color: #4f97dd;
  margin-bottom: 0.22rem;
}
.buy-gift-modal {
  width: 7.74rem;
  height: 4.3rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/modal/modalBuyGift.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.buy-gift-modal .buyGift-title {
  width: 6.3rem;
  height: 0.63rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/modal/modalBuyGiftTitle.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  margin-top: 0.9rem;
  margin-bottom: 0.46rem;
}
.buy-gift-modal .model-icon-sub {
  width: 0.43rem;
  height: 0.43rem;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAArBAMAAAATc2zzAAAAHlBMVEUAAAB7o/F7o/F7o/F7o/F7o/F7o/F7o/F7o/H///9Dkn/6AAAACHRSTlMAOPHw4wnhB6iLoSIAAACUSURBVCjPbcwhDsJgEAXhv4JgGyB4HLaOYyA4ESCWG8Bt6TabjJgd+fLlDdqPtvPcrdNt6eZjvOYORywdjo0bJzcubgwHw4XhYLgwHAwHw4XhYDhYHAwvbF7486u+xR/h+X0f0zXUZf0+aH2u38mNiwsXF4aD4cJwMBwMF4aD4cJwMBwsDoYXNk9sXlg8sTsldrtBfwlP1RvivrvoAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-size: cover;
}
.buy-gift-modal .model-icon-add {
  width: 0.42rem;
  height: 0.42rem;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAArBAMAAAD8sQfNAAAAHlBMVEUAAAB7o/F7o/F7o/F7o/F7o/F7o/H////B1Pi5zviLGJNIAAAABnRSTlMAp6uhbWh9SxHEAAAAm0lEQVQoz4XNwQkCMRCG0Sw2IB4824KXLcV7RGIH2oEt2K6zxPAICex//HjMpL1dZ/FQjpO6ljyjBUajwijcURiFOwqjdTAKo89XxaiaURVeu5pRdcOomlF1w6iaG/2+//tUfJvUR1rKcKFcUjoP9R7fFhUNrDYKR0XhqGhgFQ3cKgqjcAyFURgdMAqjMNpjFEY7jHYYTXZKO/sBg3CnHR5Ew30AAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-size: cover;
}
.buy-gift-modal .buyGift-container {
  width: 4rem;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 0.4rem;
}
.buy-gift-modal .btn-submit {
  width: 2.74rem;
  height: 0.75rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/modal/submit.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}
.address-btn {
  width: 2.74rem;
  height: 0.75rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/submit.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  margin-top: 0.1rem;
}
.percent-modal {
  width: 7.74rem;
  height: 5.78rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/percentBg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.percent-modal .percent-title {
  margin-top: 0.72rem;
  width: 5.3rem;
  height: 0.7rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/modal/percentTitle.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.model-title {
  margin: 0 auto;
  margin-top: 0.6rem;
  margin-bottom: 0.2rem;
}
.giftHistory-title {
  width: 5.3rem;
  height: 0.67rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/modal/congratulation.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.nodata {
  width: 5.49rem;
  height: 0.55rem;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAiUAAAA3CAMAAADkMspgAAAASFBMVEVwm/Bwm/Bwm/D3+f62zPePsfOZuPTl7fzu8/3T4Pp7ovGtxfbA0/jc5vuFqvKjv/XJ2flwm/Bwm/Bwm/Bwm/Bwm/Bwm/D///8R+NYWAAAAF3RSTlPmilz98uvt+vz36PDz+Onu9Qjhdzyrql3GtdcAAAKYSURBVHja7d3dspowFIbh1a6QBELA3b/3/u+0Bjag1tr2rKXfMyMqxrN3WGHGGe3t8weRVz6/2VcTee2bifzKJxMREREREREREREREREREfnXxctofyKMkzVDugwm/4lEb7uhK8VemMycaMP1ueBHObjJaWV38CbU64Ert6vIo/fl3VJJolil3leSuBFMTiM7+CIkrtxT/6KSCx6dWPHJnKJK/hMj2VaJYI8iDyf7VsmcfbLCyo9KjtHlquRMJqcY/GYlgV1IRyU9TVIlZxVg3ZnkY2D0tiswP69khNj6CLZXoolzVsF9qyQ/qSS0Fu5MGebOrEJZrj/al/wnYD3Oy8ume1chbq8nu4oOZPoOGM0y0R72JRFMziWl5A4OAYa9EudHvdnQQ3Uyi9qWD6rk/Fh5rplkv6qkh4s5MeBeyRZx2yoJJXFQKmfSbRMnOp09TpzY+knHxBm82DTPg80lTjCNpGV1SK0iVXJegXvRDiMk3G4NTrGFc8lc7CrTjJo45/Wqkoz3t5X0bJJZ3VcnHG+rR1VyUgFsF+8qGWHcKhl+qKQA2Zpp3b06vQbOSf28krlVsFWSPCxPjMuxrlvc0RZLJR0UVXJSAfxwU8nsMO+VOP26OM/tOC2tEG4qGfFl2mjqnNDPKhlpEeyVsGxUh+A0YYnkqhyVJKoqOasA3a5slXT5vYUe5rWZctRDnYYMl/Z4P+kdFFVyVk/vcXrA57uPfTCLrQtyAncYbcrgZtUhZXKrIy9Uyck8nTgB8nB395vb+Qqk2Wyqdb3SDJnLuiQEiulaclZD1929WeMYiz0x5TDYqkZbXIbtW51ZdF8rcf0MVkRERERERERERERERET+cvofJfl1Ix9M5LUP9vblo8grX96+A1CUS6Gz/YOoAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}
.giftList-table-container,
.percent-table-container {
  color: #6796ce;
}

.lottery-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-out;
  position: absolute;
  top: 57.38rem;
  width: 100%;
}
.lottery-container.show {
  opacity: 1;
  transform: translateY(0);
}
.lottery-container .title {
  width: 13.13rem;
  height: 1.57rem;
  margin: 0 auto;
  margin-left: -0.56rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/lotterHeader.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.lottery-container .desc {
  text-align: center;
  margin-top: 0.48rem;
  margin-bottom: 0.48rem;
  font-size: 0.3rem;
  color: #fff;
}
.lottery-container .money-wrapper {
  font-size: 0.24rem;
  color: #fff;
  display: flex;
  width: 6.82rem;
  margin: 0 auto;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.normal-ani {
  opacity: 0;
  position: relative;
  transform: translateY(50px);
  top: -0.2rem;
  transition: all 0.3s ease-out;
  height: 10.15rem;
}
.normal-ani.show {
  opacity: 1;
  transform: none;
}
.text-mygift {
  position: absolute;
  width: 1.95rem;
  height: 0.56rem;
  top: 12rem;
  left: 2.4rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/myGiftBtn.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.text-probability {
  position: absolute;
  width: 2.84rem;
  height: 0.56rem;
  top: 12rem;
  right: 1.6rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/percentBtn.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.box-turnbg {
  position: absolute;
  width: 12.38rem;
  height: 11.77rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/lotteryBg.png);
  pointer-events: none;
  transform: translateX(-50%) rotate(30deg);
  transition: all 1s ease-out;
}
.box-turnbg.show {
  transform: translateX(-50%);
}
.box-turnbtn {
  position: absolute;
  width: 2.18rem;
  height: 2.19rem;
  left: 50%;
  top: 50%;
  transform: translate(-44%, -50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/lotteryStart.png);
  cursor: pointer;
  transition: all 0.3s ease;
}
.box-turnbtn:hover {
  filter: brightness(1.2);
}
.box-turnhl {
  position: absolute;
  width: 4.53rem;
  height: 4.25rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/lotteryPointer.png);
  transform-origin: bottom;
  left: 3.84rem;
  top: 0.77rem;
  opacity: 0;
}
.box-turnhl.active {
  opacity: 1;
  animation: turnactive 0.5s linear infinite;
}
.box-turnhl.stop1 {
  animation: turnstop1 1s linear;
  animation-fill-mode: forwards;
}
.box-turnhl.stop2 {
  animation: turnstop2 1s linear;
  animation-fill-mode: forwards;
}
.box-turnhl.stop3 {
  animation: turnstop3 1s linear;
  animation-fill-mode: forwards;
}
.box-turnhl.stop4 {
  animation: turnstop4 1s linear;
  animation-fill-mode: forwards;
}
.box-turnhl.stop5 {
  animation: turnstop5 1s linear;
  animation-fill-mode: forwards;
}
.box-turnhl.stop6 {
  animation: turnstop6 1s linear;
  animation-fill-mode: forwards;
}
@keyframes turnactive {
  0% {
    opacity: 1;
    transform: rotate(0);
    transform-origin: bottom;
  }
  100% {
    opacity: 1;
    transform: rotate(360deg);
    transform-origin: bottom;
  }
}
@keyframes turnstop1 {
  100% {
    opacity: 1;
    transform: rotate(360deg);
  }
}
@keyframes turnstop2 {
  100% {
    opacity: 1;
    transform: rotate(420deg);
  }
}
@keyframes turnstop3 {
  100% {
    opacity: 1;
    transform: rotate(480deg);
  }
}
@keyframes turnstop4 {
  100% {
    opacity: 1;
    transform: rotate(540deg);
  }
}
@keyframes turnstop5 {
  100% {
    opacity: 1;
    transform: rotate(600deg);
  }
}
@keyframes turnstop6 {
  100% {
    opacity: 1;
    transform: rotate(660deg);
  }
}

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


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

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


/*qq微信登录*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*qc登录*/

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

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

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

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

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

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

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

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

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

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


/*qc微信登录*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*wegame登录*/

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

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

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

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

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

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

div.wegameLoginIcon {
    display: none
}

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

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

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

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

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

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


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

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

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

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

.sidebar-container {
  position: fixed;
  top: 2rem;
  right: 1.5rem;
  opacity: 0;
  transition: all 0.3s linear;
}
.sidebar-container.active {
  opacity: 1;
}
.sidebar-content {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 2.21rem;
  height: 3.15rem;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/sidebar/bg.png);
  transition: all 0.3s ease;
}
.tabactive2 {
  transform: translateY(55px);
}
.tabactive3 {
  transform: translateY(111px);
}
.sidebar-tab {
  position: relative;
  margin: 0 auto;
  width: 1.82rem;
  height: 0.47rem;
  line-height: 0.4rem;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #c484eb;
  font-size: 0.18rem;
}
.sidebar-tab::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALYAAAAvCAMAAAB5R8C9AAAAbFBMVEUAAADBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrBfOrLhG7oAAAAI3RSTlMAiHcIGwwFcVQVhU2BdGxiWytnRzskEUIxNh/3fL+un43r1JUa+tkAAADhSURBVGje7c/basQgFIXh3YlJNOak5mxOU9//HauEUkoZmJtQhPVdr4t/EQAAAAAAAAAAAAAAwD8RFCVJUToYRUjYguKT7c7OFBu1Oeeszug+WZYkSZqmwyAEY0vfKzVNc9eNxkjJeds2jdZ1ned5VVWPN5THp7s89/PVqPLyoK5rrZumaduWcy6lNMaMY9fN8zQp1ffLwpgQYhh8og/NPAr+Vl/Rodknh+Lqsa5lWRbex1uOp/O28+WgCMpgXf2HUK/1T/tV/h3OGPvVTbdJNmdHig+zJ8VoXyhGnKLE6EZf1lgRFvoPiYsAAAAASUVORK5CYII=);
  width: 1.82rem;
  height: 0.47rem;
  z-index: -1;
}
.sidebar-tab.active {
  color: #ffffff;
}
.sidebar-tab.active::after {
  animation: none;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/sidebar/active.png);
  width: 1.82rem;
  height: 0.47rem;
  background-size: cover;
  background-repeat: no-repeat;
}
.sidebar-tab1 {
  margin-top: 0.35rem;
}
.sidebar-tab2 {
  margin-top: 0.15rem;
}
.sidebar-tab3 {
  margin-top: 0.15rem;
}
.scroll-top {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20250618gift/sidebar/tab4.png);
  width: 1.29rem;
  height: 0.57rem;
  margin-top: 0.15rem;
}
.scroll-top::after {
  display: none;
}
@keyframes sidebarhl {
  0% {
    transform: none;
  }
  50% {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
  100% {
    transform: none;
  }
}
@keyframes sidebarHighlight {
  0% {
    transform: none;
  }
  50% {
    filter: brightness(1.2);
  }
  100% {
    transform: none;
  }
}

.au-ob-animated {
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-fill-mode: both;
}
.au-ob-mark {
  opacity: 0;
}
@keyframes au-ob-fade-in-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-fade-in-up {
  animation-name: au-ob-fade-in-up;
}
@keyframes au-ob-fade-in-down {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-fade-in-down {
  animation-name: au-ob-fade-in-down;
}
@keyframes au-ob-fade-in-left {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-fade-in-left {
  animation-name: au-ob-fade-in-left;
}
@keyframes au-ob-fade-in-right {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-fade-in-right {
  animation-name: au-ob-fade-in-right;
}
@keyframes au-ob-slide-in-up {
  0% {
    opacity: 1;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-slide-in-up {
  animation-name: au-ob-slide-in-up;
}
@keyframes au-ob-slide-in-down {
  0% {
    opacity: 1;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-slide-in-down {
  animation-name: au-ob-slide-in-down;
}
@keyframes au-ob-slide-in-left {
  0% {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-slide-in-left {
  animation-name: au-ob-slide-in-left;
}
@keyframes au-ob-slide-in-right {
  0% {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.au-ob-slide-in-right {
  animation-name: au-ob-slide-in-right;
}

