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

/* Footer */
#afooter {
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  color: #9f9e9e;
  background: #000306;
  padding: 15px 0;
  overflow: hidden;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
ul,
li {
  list-style: none;
}
em,
b {
  font-style: normal;
}
a {
  text-decoration: none;
}
td,
th,
ul,
ol {
  padding: 0;
}
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
#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: #d7c89f;
}
.web-bg {
  /* 页面背景切片 */
  position: relative;
  min-width: 1200px;
  background-size: 1920px 100%;
  background-position: top center;
  width: 100%;
  height: 1080px;
}
.ui-1 {
  /* background-image: url("$assets/slice_1.jpg");*/
}
.ui-2 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/slice_2.jpg);
}
.ui-2.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/part2/slice_2.jpg);
}
.ui-3 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/slice_3.jpg);
}
.ui-3.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/part2/slice_3.jpg);
}
.ui-4 {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/slice_4.jpg);
  max-height: 235px;
}
.ui-4.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/part2/slice_4.jpg);
  max-height: 308px;
}
.button {
  /* 按钮 */
  cursor: pointer;
  transition: all 0.3s;
}
.button:hover {
  filter: brightness(1.1);
}
.button.disabled {
  filter: grayscale(1);
}
.button.disabled:hover {
  filter: grayscale(1);
}
.app-container__inner {
  position: absolute;
  width: 1200px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.img-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hide {
  display: none;
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
.clearfix:after {
  clear: both;
  display: block;
  content: '';
  width: 0;
  height: 0;
  visibility: hidden;
}
.clearfix {
  *clear: both;
  *zoom: 1;
}
.t-c {
  text-align: center;
}
.t-r {
  text-align: right;
}
.t-h {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.t {
  text-indent: -10000px;
}
.bg {
  background-size: 100% auto;
}
.bgc {
  background-position: top center;
  background-repeat: no-repeat;
}
.sp {
  display: block;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/spr.png);
  background-repeat: no-repeat;
}
.title-icon {
  display: block;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/titles.png);
  background-repeat: no-repeat;
}
.p-a {
  position: absolute;
}
.p-r {
  position: relative;
}
.ani {
  transition: 0.3s all;
}
.gray {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.btn-hv:hover {
  filter: brightness(1.15);
  -webkit-filter: brightness(1.15);
  transform: scale(1.05);
}
.btn-hv:active,
.select-list li:active {
  transform: scale(0.96);
}
.stage {
  position: absolute;
  width: 1200px;
  margin: 0 auto;
}
.tabs-container {
  position: absolute;
  top: 1088px;
}
.wrap {
  position: relative;
  margin: 0 auto;
  width: 1000px;
}
.role-ani {
  opacity: 0;
  transition: all 0.6s ease;
}
.role-ani.active {
  opacity: 1;
  transform: none;
}
.head-wrap {
  width: 1920px;
  height: 1088px;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/head_bg.jpg);
}
.dec_pd {
  position: absolute;
  width: 738px;
  height: 615px;
  left: 1182px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/dec_pd.png);
  background-position: center center;
  transform: translateX(300px);
  transition-delay: 0s;
}
.dec_st {
  position: absolute;
  width: 100%;
  height: 1088px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/dec_st.png);
  background-position: top center;
}
.dec_cd {
  position: absolute;
  left: 134px;
  bottom: 200px;
  width: 1786px;
  height: 721px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/dec_cd.png);
  background-position: top center;
  transition-delay: 0.3s;
}
.dec_qj {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 163px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/dec_qj.png);
  background-position: top center;
}
.sloganbg {
  position: absolute;
  width: 391px;
  left: 506px;
  top: 0;
  height: 1031px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/sloganbg.png);
  background-position: top center;
}
@keyframes kvtit-ani {
  0% {
    opacity: 0;
    -webkit-mask-position: 0 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-mask-position: 0 -587px;
    opacity: 0;
    transform: translateY(587px);
  }
}
.kvtit-container {
  perspective: 500px;
  filter: brightness(1.2);
  transition: filter 1s linear;
}
.kvtit-container.active {
  filter: brightness(1);
}
.slg {
  position: absolute;
  width: 242px;
  height: 687px;
  top: 77px;
  left: 607px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(247, 238, 160, 0), #f7eea0 30%, #f7eea0 60%, rgba(247, 238, 160, 0));
  -webkit-mask-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/slogan.png);
  -webkit-mask-size: 242px 687px;
  opacity: 0;
}
.slg.active {
  animation: kvtit-ani 1.5s ease-in-out;
  animation-delay: 0.5s;
  animation-iteration-count: 2;
}
.slogan1 {
  position: absolute;
  width: 120px;
  left: 607px;
  top: 77px;
  height: 661px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/slogan1.png);
  background-position: top center;
  transform: translateY(124px);
}
.slogan2 {
  position: absolute;
  width: 120px;
  left: 731px;
  top: 129px;
  height: 635px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/slogan2.png);
  background-position: top center;
  transform: translateY(-100px);
}
.role1 {
  position: absolute;
  width: 1042px;
  left: 710px;
  top: 0;
  height: 1374px;
  background-position: top center;
  transform: translateX(300px);
  transition-delay: 0s;
  opacity: 0;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/role1-1.png);
}
.role1.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/role1.png);
}
.role2.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/role2.png);
}
.role3.active {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/role3.png);
}
.role2 {
  position: absolute;
  width: 551px;
  left: 0;
  top: 251px;
  height: 954px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/role2-1.png);
  background-position: top center;
  transform: translateX(-100px);
  transition-delay: 0.2s;
}
@keyframes hx {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.role2_mw {
  position: absolute;
  width: 1556px;
  left: 0;
  bottom: 0px;
  height: 606px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/dec_yw.png);
  background-position: top center;
  animation: hx 5s linear infinite;
  transition-delay: 0.4s;
}
.role3 {
  position: absolute;
  width: 707px;
  left: 1250px;
  top: 118px;
  height: 1029px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/role3-1.png);
  background-position: top center;
  transform: translateX(250px);
  transition-delay: 0.3s;
}
@keyframes hx1 {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.3;
  }
}
.role3_mw {
  position: absolute;
  width: 1132px;
  right: 0px;
  bottom: 0px;
  height: 963px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/role3_mw.png);
  background-position: top center;
  animation: hx1 6s linear infinite;
  transition-delay: 0.5s;
}
.time-wrap {
  top: 125px;
  left: 86px;
  width: 28px;
  height: 610px;
  /*/ background-image: url('$assets/date.png');/*/
  font-size: 24px;
  display: flex;
  color: #fff1a3;
  flex-direction: column;
  align-items: center;
}
.time-wrap > div {
  position: absolute;
  letter-spacing: 4px;
  writing-mode: vertical-rl;
}
.time-wrap :nth-child(1) {
  color: #efe8d1;
  top: 0;
}
.time-wrap :nth-child(2) {
  top: 130px;
  font-size: 24px;
}
.btn-container {
  top: 804px;
  left: 0;
  width: 100%;
  transform: translateY(80px);
  transition-delay: 0s;
}
@keyframes breathe {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
.btn-tabs {
  display: inline-block;
  margin: 0 30px;
  width: 377px;
  height: 99px;
  animation: breathe 2s linear infinite;
}
.tabs-1 {
  background-position: 0 -103px;
}
.tabs-1.active {
  background-position: 0 0;
}
.tabs-2 {
  background-position: -388px 0;
}
.tabs-2.active {
  background-position: -388px -103px;
}
/* .part.p1 {
  height: 2018px;
  background-image: url('$assets/part1_bg.jpg');
  background-position: top center;
}*/
.logo-icon {
  top: 20px;
  left: 290px;
  z-index: 99;
  width: 132px;
  height: 135px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/logo.png);
}
.login-wrap {
  position: absolute;
  top: 20px;
  width: 380px;
  left: 1155px;
}
.login-wrap .login-w {
  width: 168px;
  height: 42px;
  background-position: -769px -10px;
  text-align: center;
}
.login-wrap,
.login-wrap a {
  line-height: 42px;
  font-size: 22px;
  color: #fff;
  text-shadow: 0 0 3px #646464;
}
.logined {
  padding-top: 5px;
}
.logined,
.logined a {
  line-height: 42px;
}
.login-wrap .top-btn {
  display: block;
  line-height: 32px;
  font-size: 16px;
  color: #fff;
}
.title-icon {
  width: 1000px;
  height: 103px;
}
.part {
  background-repeat: no-repeat;
}
.part.p1-1 {
  position: absolute;
  width: 1200px;
  height: 751px;
}
.title-icon.ti-1-1 {
  background-position: 0 0;
}
.part.p1-1 .inset-icon {
  margin: 22px auto 0;
  width: 231px;
  height: 63px;
  background-position: -769px -106px;
}
.part.p1-1 .desc-text {
  margin-top: 2px;
  line-height: 1;
  font-size: 20px;
  color: #5a1207;
}
.bx-list {
  margin-top: 40px;
}
.bx-list .bx-item {
  display: inline-block;
  position: relative;
  margin: 0 56px;
}
.bx-list .bx-icon {
  width: 339px;
  height: 248px;
  cursor: pointer;
}
.bx-list .bx-1 .bx-icon {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/bx_1.png);
}
.bx-list .bx-1:hover .bx-icon,
.bx-list .bx-item.bx-1 .t {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/bx_1_active.png);
}
.bx-list .bx-2 .bx-icon {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/bx_2.png);
}
.bx-list .bx-2:hover .bx-icon,
.bx-list .bx-item.bx-2 .t {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/bx_2_active.png);
}
.bx-list .bx-item .t {
  width: 0;
  height: 0;
}
.btn-get1 {
  margin: 34px auto;
  width: 325px;
  height: 80px;
  background-position: -2px -213px;
}
.btn-get1.ylq {
  background-position: -23px -621px;
}
.tabs-content {
  display: none;
}
.part.p1-2 {
  position: absolute;
  width: 1200px;
  height: 927px;
  top: 751px;
}
.title-icon.ti-1-2 {
  background-position: 0 -108px;
}
.part.p1-2 .inset-icon {
  margin: 22px auto 0;
  width: 231px;
  height: 63px;
  background-position: -770px -175px;
}
.part.p1-2 .desc-text {
  margin-top: 2px;
  line-height: 1;
  font-size: 20px;
  color: #ffe39f;
}
.part.p1-2 .prize-list {
  margin-top: 64px;
}
.part.p1-2 .prize-img {
  display: inline-block;
  margin: 0 47px;
}
.recall-wrap {
  margin-top: -22px;
}
.recall-left {
  display: inline-block;
  vertical-align: top;
  margin-right: 12px;
  width: 231px;
}
.recall-desc-text {
  margin: 16px 10px 20px;
  line-height: 30px;
  font-size: 18px;
  color: #ffe39f;
  text-align: center;
}
.recall-input {
  margin-top: 18px;
  padding: 0 10px;
  box-sizing: border-box;
  width: 231px;
  height: 42px;
  background-position: -632px -351px;
  background-color: transparent;
  border: none;
}
.reacall-right {
  display: inline-block;
  vertical-align: top;
}
.reacall-right .recall-desc-text {
  margin: 4px 0 0;
  text-align: center;
  font-size: 16px;
}
.btn-bind {
  margin: 12px auto 0;
  width: 204px;
  height: 50px;
  background-position: -330px -217px;
}
.part.p3 {
  position: absolute;
  width: 1200px;
  height: 703px;
  top: 1678px;
}
.part.p2-3 {
  position: absolute;
  width: 1200px;
  height: 705px;
  top: 1861px;
}
.title-icon.ti-3 {
  background-position: 0 -215px;
}
.rule-list {
  line-height: 54px;
  font-size: 18px;
  color: #4f0b03;
}
.btn-order {
  margin: 26px auto 0;
  width: 377px;
  height: 99px;
  background-position: -5px -313px;
}
.part.p2-1 {
  position: absolute;
  width: 1200px;
  height: 976px;
}
.title-icon.ti-2-1 {
  background-position: 0 -323px;
}
.part.p2-2 {
  position: absolute;
  width: 1200px;
  height: 885px;
  top: 976px;
}
.title-icon.ti-2-2 {
  background-position: 0 -431px;
}
.recall-list {
  padding-top: 95px;
  box-sizing: border-box;
}
.recall-list li {
  display: inline-block;
  margin: 0 4px;
  width: 490px;
  height: 100px;
  vertical-align: top;
}
.recall-list .recall-tips {
  line-height: 1;
  font-size: 20px;
  color: #2f0600;
}
.recall-list .recall-prize-list {
  margin-top: 25px;
}
.recall-prize-list .recall-prize-item {
  display: inline-block;
  margin: 15px 40px 0;
  width: 157px;
  height: 158px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/goods_bg.png);
}
.recall-prize-item .recall-prize-img {
  margin: 28px auto 0;
  width: 80px;
}
.recall-prize-item .recall-name {
  margin: 6px auto 0;
  font-size: 16px;
  color: #feeab5;
}
.recall-list .btn-cont {
  margin-top: 36px;
}
.btn-create-code,
.btn-get-2 {
  display: inline-block;
  width: 225px;
  height: 56px;
}
.btn-create-code {
  background-position: -337px -486px;
}
.btn-get-2 {
  background-position: -578px -487px;
}
.btn-get-2.ylq {
  background-position: -361px -633px;
}
.recall-tips2 {
  margin-top: 32px;
  line-height: 32px;
  font-size: 16px;
  color: #5a1207;
}
.copy-code-wrap {
  margin-top: 16px;
}
.code-ipt {
  display: inline-block;
  margin-top: 3px;
  padding: 0 10px;
  box-sizing: border-box;
  width: 271px;
  height: 42px;
  background-color: transparent;
  background-position: -385px -406px;
  border: none;
  vertical-align: top;
}
.btn-copy-code {
  display: inline-block;
  width: 179px;
  height: 46px;
  background-position: -418px -334px;
  vertical-align: top;
}
.btn-look-wj {
  margin: -10px auto 0;
  width: 265px;
  height: 56px;
  background-position: -52px -449px;
}
.zhany-list {
  margin-top: 114px;
}
.zhany-list .zhany-item {
  display: inline-block;
  vertical-align: top;
  width: 490px;
}
.zhany-tips {
  margin-top: 32px;
  line-height: 32px;
  font-size: 20px;
  color: #ffe39f;
}
.zhany-tips2 {
  margin-top: 32px;
  line-height: 32px;
  font-size: 16px;
  color: #ffe39f;
}
.zhany-bx {
  margin: 0 auto 0;
  width: 320px;
  height: 248px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/bx_3.png);
  cursor: pointer;
}
.zhany-bx i,
.zhany-bx:hover {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/bx_3_active.png);
}
.zhany-bx-tips {
  margin: 20px 0 36px;
  font-size: 28px;
  color: #ffe39f;
}
.btn-exchange-prize,
.btn-give-jf {
  display: inline-block;
  width: 225px;
  height: 56px;
}
.btn-exchange-prize {
  background-position: -678px -246px;
}
.btn-give-jf {
  background-position: -715px -410px;
}
.pop {
  display: none;
  outline: none;
}
.btn-close {
  top: 16px;
  right: 29px;
  width: 37px;
  height: 38px;
  background-position: -830px -497px;
}
.pop-give {
  width: 810px;
  height: 332px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/pop_1.png);
}
.form-list {
  padding-top: 50px;
}
.form-item {
  margin: 0 auto 39px;
}
.form-item span {
  display: inline-block;
  width: 142px;
  font-size: 28px;
  color: #4f1b02;
  vertical-align: top;
}
.form-item input {
  display: inline-block;
  padding: 0 10px;
  box-sizing: border-box;
  width: 271px;
  height: 42px;
  background-color: transparent;
  background-position: -385px -406px;
  border: none;
  vertical-align: top;
}
.btn-confirm-give {
  margin: 0 auto;
  width: 263px;
  height: 66px;
  background-position: -49px -520px;
}
.pop-exchange-list,
.pop-getGive {
  width: 950px;
  height: 306px;
}
.pop-exchange-list {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/pop_2.png);
}
.pop-getGive {
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/pop_3.png);
}
.pop-exchange-list .pop-con {
  overflow: hidden;
}
.el-table {
  margin: 55px auto 0px;
  width: 838px;
  height: 170px;
  border-color: #5c3731;
  text-align: center;
  color: #5e2003;
  font-size: 16px;
}
.el-table tr th {
  height: 40px;
}
.el-table tr td {
  height: 30px;
}
.page-wrap {
  /* margin-top: 10px; */
  margin-top: 3px;
}
.page-wrap span,
.page-wrap a {
  display: inline-block;
  margin: 0 20px;
  font-size: 18px;
  color: #5e2003;
}
.page-wrap a:hover {
  text-decoration: underline;
}
.pop-recall {
  width: 810px;
  height: 339px;
  background-image: url(//game.gtimg.cn/images/xy2/act/a20231109return/pop_4.png);
}
.et-2 {
  margin-top: 34px;
  margin-left: 87px;
  width: 636px;
  height: 40px;
}
.table-scroll {
  position: relative;
  overflow-y: auto;
  margin-left: 87px;
  width: 676px;
  height: 230px;
  text-align: left;
}
.table-scroll::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.table-scroll::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  background: #6a2605;
}
.table-scroll::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 5px;
  background: #976c58;
}
.table-line {
  display: block;
  margin: -1px 0 0 87px;
  width: 636px;
  height: 1px;
  background-color: #5c3731;
}
.et-3 {
  margin: -1px 0 0;
  width: 636px;
  border-top: 1px solid transparent;
}
.td-1 {
  width: 32%;
}
.td-2 {
  width: 32%;
}
.td-3 {
  width: 36%;
}
.bx-item:hover .img-look-cont {
  display: block;
}
.img-look-cont {
  display: none;
  top: 0;
  z-index: 999;
  font-size: 0;
}
.img-look-cont.ilc-1 {
  width: 860px;
  left: 120px;
}
.img-look-cont.ilc-2 {
  width: 560px;
  right: 120px;
}
.img-look-cont .img-look {
  display: inline-block;
  vertical-align: top;
}
.img-look-cont.ilc-1 .img-look {
  width: 32%;
}
.img-look-cont.ilc-2 .img-look {
  width: 100%;
}
.img-look-cont .img-look img {
  display: block;
  width: 100%;
}
#afooter {
  background: #000;
  color: #666;
  text-align: center;
  font-size: 12px;
  padding: 35px 0;
}
#afooter .foot {
  background: #000;
}
#afooter a {
  color: #666;
}

.modal-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}
.modal-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@keyframes close {
  0% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes modal {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

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

