:root {
  font-family: '\5FAE\8F6F\96C5\9ED1', Tahoma, SimSun, Verdana;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: baseline;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
a {
  font-weight: 500;
  color: #fff;
  text-decoration: inherit;
}
body {
  margin: 0;
  line-height: 1;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* rem，vw，vh使用注意 

1、IE9及以上支持rem，但9-10伪类不支持rem
2、iOS8及以上全线支持vw, vh, vmin, vmax
3、IE9及以上支持vw，vh，不支持vmax，vmin
4、Android4.4以上全线支持

*/
/* --- 兼容不支持vw的设备 start --- */
html {
  font-size: 50PX;
}
@media screen and (max-width: 768px) and (min-width: 414px) {
  html {
    font-size: 55.2PX;
  }
}
/* --- 兼容不支持vw的设备 end --- */
/* --- 移动端竖版，设计稿750px对应100vw，倍率100 start --- */
@media screen and (max-width: 768px) {
  html {
    font-size: 13.333vw;
  }
}
/* --- 移动端竖版，设计稿750px对应100vw，倍率100 end --- */
/* --- pad端，设计稿1920px对应100vw，倍率100 start --- */
/* --- PC端，设计稿1920px对应100vw，倍率100 start --- */
/* --- PC端，设计稿1920px对应100vw，倍率100 end --- */
.m_horizontal {
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.m_horizontal .m_wrap {
  position: relative;
  overflow: hidden;
  width: 100vh;
  height: 100vw;
}
@media all and (orientation: landscape) {
  html .m_horizontal {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  html .m_horizontal .m_wrap {
    width: 100vw;
    height: 100vh;
  }
}
.hide {
  display: none;
}
.full {
  width: 100%;
  height: 100%;
}
.abs {
  position: absolute;
}
.l0 {
  left: 0;
}
.t0 {
  top: 0;
}
.lhalf {
  left: 50%;
}
.thalf {
  top: 50%;
}
.absf {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.abcter {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lcter {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.tcter {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.fcter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fdc {
  flex-direction: column;
}
.sizcont {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.sizcover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.ol {
  border: 0.01rem solid #fff;
  -o-border-image: linear-gradient(to top, #f80, #2ed);
     border-image: linear-gradient(to top, #f80, #2ed);
  border-image-slice: 10;
  box-sizing: border-box;
}
.active-center {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
}
.active-center:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.active-center:active {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.active {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
}
.active:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.active:active {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.m-icon-loading {
  position: fixed;
  z-index: 999;
}
.m-icon-loading .inner {
  width: 1.2rem;
  height: 1.2rem;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0.1rem;
}
.m-icon-loading .inner svg path,
.m-icon-loading .inner svg rect {
  fill: #fff;
}
.m-msg {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 10000;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.m-msg .container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.m-msg .item {
  position: relative;
  max-width: 5.3rem;
  min-width: 2.3rem;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 0.5rem;
  font-size: 0.23rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  opacity: 0.4;
  -webkit-animation: msgIn 0.2s ease-in both;
          animation: msgIn 0.2s ease-in both;
}
.m-msg .item .content {
  padding: 0.2rem 0.33rem;
}
.m-msg .item i {
  color: #ffc039;
}
.m-msg .item::after {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 0.16rem;
  content: "点击任意位置继续";
  bottom: -0.15rem;
}
.m-msg .item.notips::after {
  display: none;
}
@-webkit-keyframes msgIn {
  0% {
    opacity: 0.4;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-0.1rem);
            transform: translateY(-0.1rem);
  }
}
@keyframes msgIn {
  0% {
    opacity: 0.4;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(-0.1rem);
            transform: translateY(-0.1rem);
  }
}
.pop_common {
  display: none;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 200;
  -webkit-perspective: 10rem;
          perspective: 10rem;
  position: fixed;
}
.pop_common .container {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-animation: cardFlipIn 0.6s 0.15s cubic-bezier(0.25, 1.47, 0.6, 0.99) both;
          animation: cardFlipIn 0.6s 0.15s cubic-bezier(0.25, 1.47, 0.6, 0.99) both;
}
@-webkit-keyframes cardFlipIn {
  from {
    opacity: 0.1;
    -webkit-transform: translate(-50%, 0%) rotate3d(-0.3, 0, 0, 30deg);
            transform: translate(-50%, 0%) rotate3d(-0.3, 0, 0, 30deg);
  }
}
@keyframes cardFlipIn {
  from {
    opacity: 0.1;
    -webkit-transform: translate(-50%, 0%) rotate3d(-0.3, 0, 0, 30deg);
            transform: translate(-50%, 0%) rotate3d(-0.3, 0, 0, 30deg);
  }
}
@font-face {
  font-family: "FZLanTingHeiS-R-GB";
  src: url("https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/font/FZLanTingHeiS-R-GB.TTF") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FZLanTingHeiB-R-GB";
  src: url("https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/font/FZLanTingHeiB-R-GB.TTF") format("truetype");
  font-style: normal;
  font-weight: normal;
}
.gift-bg.gift1 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift1-1 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift1-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift2 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift2-1 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift2-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift3 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift3.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift3-1 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift3-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift4 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift4.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift4-1 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift4-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift5 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift5.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift5-1 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift5-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift6 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift6.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift7 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift7.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift7-1 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift7-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift8 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift8.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift8-1 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift8-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift8-2 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift8-2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift8-3 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift8-3.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift8-4 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift8-4.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift9 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift9.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift10 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gun1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift11 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/ticket1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift11-1 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/ticket2.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift12 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift12.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.gift13 .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift13.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.lucky-more .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/lucky-more.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.lucky-once .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/lucky-once.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.gift-bg.icon-lottery-ticket .gift {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/icon-lottery-ticket.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
html {
  overflow: hidden;
  height: 100%;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0.28rem;
  font-family: "FZLanTingHeiS-R-GB";
  width: 7.5rem;
  height: 100%;
  margin: 0 auto;
  overflow: hidden scroll;
}
body::-webkit-scrollbar {
  display: none;
}
.main-bg {
  z-index: 0;
  width: 7.5rem;
  height: 67.39rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/bg.jpg') center / contain no-repeat;
  background-position: center top;
  background-color: #21282E;
}
.main-bg-miniapp {
  z-index: 0;
  width: 7.5rem;
  height: 11.9rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/bg_miniapp.jpg') center / contain no-repeat;
  background-position: center top;
  background-color: #21282E;
}
.login-box {
  top: 0.72rem;
  right: 0.2rem;
  font-size: 0.18rem;
  line-height: 0.25rem;
  color: #fff;
  z-index: 10;
  white-space: nowrap;
}
.login-box #milo-roleName {
  max-width: 50vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.login-box #milo-logout {
  color: #00ACFF;
}
.btn-menu {
  position: fixed;
  top: 1.12rem;
  left: 0.4rem;
  width: 0.48rem;
  height: 0.38rem;
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btn_menu.png');
  z-index: 10;
}
.tab-bar {
  position: fixed;
  bottom: 0rem;
  z-index: 10;
  width: 7.5rem;
  height: 1.44rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/app_bar.png') center / contain no-repeat;
}
.tab-bar .to-news {
  width: 3rem;
  height: 100%;
  float: right;
}
.img_btn_menu {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btn_menu.png');
}
.gift-container {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4rem;
  height: 1.5rem;
}
.gift-container .gift-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/bg-small.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.4rem;
  height: 1.5rem;
}
.gift-container .gift-bg .gift {
  height: 100%;
  width: 100%;
  max-width: 1.18rem;
  max-height: 1rem;
}
.gift-container .gift-bg.active {
  position: relative;
  z-index: 10;
  -webkit-animation: pulseGlow 1.5s ease-in-out infinite alternate;
          animation: pulseGlow 1.5s ease-in-out infinite alternate;
}
.gift-container .gift-bg.gift4-outtime {
  width: 1.38rem;
  height: 1.38rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/gifts/gift4-outtime-bg.png') center / contain no-repeat;
}
.gift-container .name {
  position: absolute;
  width: 100%;
  left: 0;
  top: 1.8rem;
  text-align: center;
  color: #d31313;
  font-size: 0.18rem;
  line-height: 1;
  height: 0.18rem;
}
input {
  background: transparent;
  outline: none;
  border: none;
  font-size: 0.28rem;
  text-align: center;
  color: #fff;
}
.part1 {
  position: relative;
  width: 7.5rem;
  height: 14.71rem;
  /* 展开更多福利 */
}
.part1 * {
  flex-shrink: 0;
  box-sizing: border-box;
}
.part1 .logo {
  position: absolute;
  top: 0.56rem;
  left: 0.2rem;
  width: 1.43rem;
  height: 0.67rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/logo.png') center / contain no-repeat;
  -webkit-filter: drop-shadow(0 0 0.1rem rgba(0, 0, 0, 0.8));
          filter: drop-shadow(0 0 0.1rem rgba(0, 0, 0, 0.8));
}
.part1 .btn.rule {
  position: absolute;
  top: 2.49rem;
  right: 0rem;
  width: 0.37rem;
  height: 1.31rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part1/btn-show-rule.png') center / contain no-repeat;
}
.part1 .btn.mygifts {
  position: absolute;
  top: 3.865rem;
  right: 0rem;
  width: 0.38rem;
  height: 1.25rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part1/btn-show-mygifts.png') center / contain no-repeat;
}
.part1 .content .title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 7.1rem;
  margin-left: 0.08rem;
  width: 5.41rem;
  height: 2.61rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part1/tittle-main.png') center / contain no-repeat;
}
.part1 .content .sub-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4.13rem;
  height: 0.35rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part1/tittle-sub.png') center / contain no-repeat;
  top: 10.05rem;
}
.part1 .content .demo-gifts {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10.82rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
}
.part1 .content .demo-gifts .gift-container {
  width: 1.4578rem;
  height: 1.4578rem;
}
.part1 .content .demo-gifts .gift-container .gift-bg {
  width: 1.4578rem;
  height: 1.4578rem;
}
.part1 .content .demo-gifts .gift-container .gift-bg .gift {
  width: 1.2rem;
  height: 1.2rem;
}
.part1 .content .demo-gifts .gift-container .name {
  top: 1.6rem;
  font-size: 0.18rem;
}
.part1 .content .btns {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  width: 5.4rem;
  top: 13.3rem;
}
.part1 .content .btns .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.3rem;
}
.part1 .content .btns .btn.book-now {
  cursor: pointer;
  width: 2.59rem;
  height: 0.78rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/big.png') center / contain no-repeat;
}
.part1 .content .btns .btn.book-now::after {
  content: '立即预约';
}
.part1 .content .btns .btn.book-now.done {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.part1 .content .btns .btn.book-now.done::after {
  content: '已预约';
}
.part1 .content .btns .btn.book-now.pc::after {
  content: 'PC测试资格激活';
}
.part1 .scroll-tips {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 14rem;
}
.part1 .scroll-tips .scroll-tips-text {
  color: #cdd8de;
  font-size: 0.2rem;
  line-height: 1;
  letter-spacing: 0rem;
  text-align: center;
}
.part1 .scroll-tips .scroll-tips-text::after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.32rem;
  width: 0.29rem;
  height: 0.13rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part1/array-more.png') center / contain no-repeat;
  -webkit-animation: down 1s infinite alternate;
          animation: down 1s infinite alternate;
}
@-webkit-keyframes down {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, -70%, 0);
            transform: translate3d(-50%, -70%, 0);
  }
}
@keyframes down {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, -70%, 0);
            transform: translate3d(-50%, -70%, 0);
  }
}
.lottery-tips {
  top: 2.35rem;
  width: 100%;
  white-space: nowrap;
  font-size: 0.15rem;
  text-align: center;
  color: #94A0A7;
}
.pc-activate-box {
  top: 2.7rem;
  width: 1.8rem;
  white-space: nowrap;
  font-size: 0.24rem;
  text-align: center;
  color: #00ACFF;
  font-family: 'FZLanTingHeiB-R-GB';
}
.pc-activate-box::after {
  content: "";
  position: absolute;
  top: 100%;
  margin-top: 0.05rem;
  left: 0;
  width: 100%;
  height: 0.01rem;
  background-color: #00ACFF;
}
.part2 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 14.71rem;
  width: 7.5rem;
  height: 16.91rem;
}
.part2 .title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 2.2rem;
  width: 2.6rem;
  height: 0.25rem;
}
.part2 .title .text_scroll_wrap {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.32rem;
  width: 100%;
  height: 0.8rem;
  justify-content: flex-start;
}
.part2 .title .text_scroll_wrap .swiper-slide {
  font-size: 0.24rem;
  font-weight: 400;
  height: 0.8rem;
  letter-spacing: 0rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.part2 .lottery-box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6.74rem;
  height: 6.9rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part2/bg-lottery-box.png') center / contain no-repeat;
  top: 2.9rem;
}
.part2 .lottery-box .lottery {
  padding: 0.2rem;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  /* 淡白色遮罩层 */
  /* 呼吸光效动画 */
}
.part2 .lottery-box .lottery .gift-container {
  top: -0.1rem;
}
.part2 .lottery-box .lottery .gift-container .name {
  top: 1.6rem;
  font-size: 0.15rem;
  line-height: 0.15rem;
}
.part2 .lottery-box .lottery .lottery-item.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  mix-blend-mode: overlay;
}
@-webkit-keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0.13rem rgba(255, 255, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 0.2rem rgba(255, 255, 255, 0.9), 0 0 0.3rem rgba(255, 31, 31, 0.5);
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0.13rem rgba(255, 255, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 0.2rem rgba(255, 255, 255, 0.9), 0 0 0.3rem rgba(255, 31, 31, 0.5);
  }
}
.part2 .start-lottery {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10.25rem;
}
.part2 .start-lottery .btn-start-lottery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.59rem;
  height: 0.78rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/big.png') center / contain no-repeat;
}
.part2 .start-lottery .btn-my-bag {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2.8rem;
}
.part2 .start-lottery .btn-my-bag .icon {
  content: '';
  display: block;
  margin-right: 0.05rem;
  text-decoration: none;
  width: 0.24rem;
  height: 0.23rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part2/icon-mygifts.png') center / contain no-repeat;
}
.part2 .start-lottery .btn-my-bag .text {
  color: #d6dee2;
  font-size: 0.2rem;
  white-space: nowrap;
  line-height: 1.5;
  border-bottom: 0.01rem solid #d6dee2;
}
.part2 .note {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.15rem;
  cursor: pointer;
  text-wrap: nowrap;
  text-align: center;
  line-height: 0.225rem;
  margin: 0.1rem 0;
}
.part2 .note .red {
  color: #d31313;
}
.part3 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  top: 26.5rem;
  width: 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.part3 * {
  flex-shrink: 0;
  box-sizing: border-box;
}
.part3 .title {
  position: relative;
  width: 3.44rem;
  height: 0.39rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part3/title.png') center / contain no-repeat;
}
.part3 .tasks {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.part3 .task {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.part3 .task .info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.part3 .task .info .main {
  font-size: 0.24rem;
  font-weight: bold;
}
.part3 .task .info .sub {
  font-size: 0.14rem;
  line-height: 0.2rem;
  width: 3.5rem;
}
.part3 .task .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2rem;
  cursor: pointer;
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
}
.part3 .task .btn.go::after {
  content: '去完成';
}
.part3 .task .btn.get::after {
  content: '立即领取';
}
.part3 .task .btn.done {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.part3 .task .btn.done::after {
  content: '已完成';
}
.part3 .task.white {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part3/bg-task-white.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.part4 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 31.62rem;
  width: 7.5rem;
  height: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.part4 * {
  flex-shrink: 0;
  box-sizing: border-box;
}
.part4 .tasks {
  height: 6rem;
  width: 7.2rem;
}
.part4 .tasks .task1 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 2.4rem;
  width: 6.5rem;
}
.part4 .tasks .task1 .name {
  text-wrap: nowrap;
  text-align: center;
  display: flex;
  justify-content: center;
}
.part4 .tasks .task h2 {
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 0.16rem;
  height: 0.2rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0rem;
  text-align: left;
  white-space: nowrap;
}
.part4 .tasks .task .task-detail {
  margin-top: 0.1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.part4 .tasks .task .task-detail .gifts {
  display: flex;
  gap: 0.12rem;
}
.part4 .tasks .task .task-detail .gifts .gift-container {
  width: 1.25rem;
  height: 1.4rem;
}
.part4 .tasks .task .task-detail .gifts .gift-container .gift-bg {
  width: 1.25rem;
  height: 1.4rem;
}
.part4 .tasks .task .task-detail .gifts .gift-container .gift-bg .gift {
  width: 0.7rem;
  height: 0.7rem;
}
.part4 .tasks .task .task-detail .gifts .gift-container .name {
  top: 1.45rem;
  font-size: 0.14rem;
  height: 0.2rem;
  line-height: 0.2rem;
}
.part4 .tasks .task .task-detail .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2rem;
  cursor: pointer;
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
}
.part4 .tasks .task .task-detail .btn.go::after {
  content: '去预约';
}
.part4 .tasks .task .task-detail .btn.get::after {
  content: '立即领取';
}
.part4 .tasks .task .task-detail .btn.done {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.part4 .tasks .task .task-detail .btn.done::after {
  content: '已领取';
}
.part4 .tasks .task .task-detail .btn.check::after {
  content: '资格校验';
}
.part4 .tasks .task .task-detail .btn.reserved {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.part4 .tasks .task .task-detail .btn.reserved::after {
  content: '已预约';
}
.part4 .tasks .task .task-detail .btn.reserve::after {
  content: '立即预约';
}
.part4 .tasks .task .task-detail .btn.cannot-get {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.part4 .tasks .task .task-detail .btn.cannot-get::after {
  content: '无法领取';
}
.part4 .tasks .task .task-detail .btn.bind::after {
  content: '绑定账号';
}
.part4 .tasks .task2 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 4.9rem;
  width: 6.5rem;
}
.part4 .tasks .task2 .mark {
  color: #94a0a7;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0rem;
  text-align: left;
  padding-top: 0.1rem;
  padding-bottom: 0.2rem;
}
.part5 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 40.62rem;
  width: 7.5rem;
  height: 12.7rem;
}
.part5 * {
  flex-shrink: 0;
  box-sizing: border-box;
}
.part5 .title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7.48rem;
  height: 1.26rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/title.png') center / contain no-repeat;
  margin-top: 0.5rem;
}
.part5 .content {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6.5rem;
}
.part5 .content .kv-father {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 2.1rem;
  padding: 0.03rem;
  padding-top: 0.07rem;
  box-sizing: border-box;
  width: 6.71rem;
  height: 4.07rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/kv-bg-index-1.png') center / contain no-repeat;
}
.part5 .content .kv-father .kv-child {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.05rem;
}
.part5 .content .kv-father .kv {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5.33rem;
  height: 3.21rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/kv-bg.png') center / contain no-repeat;
  -webkit-transform: translate(-50%, -50%) scale(1.28);
          transform: translate(-50%, -50%) scale(1.28);
}
.part5 .content .kv-father .mask1,
.part5 .content .kv-father .mask2,
.part5 .content .kv-father .mask3,
.part5 .content .kv-father .mask4 {
  position: absolute;
  width: 50%;
  height: 50%;
  overflow: visible;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
  opacity: 1;
  z-index: 2;
}
.part5 .content .kv-father .mask1 {
  top: 0.03rem;
  left: 0.03rem;
  width: 2.78rem;
  height: 1.81rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/mask1-off.png') center / contain no-repeat;
}
.part5 .content .kv-father .mask2 {
  top: 0.03rem;
  right: 0.03rem;
  width: 3.02rem;
  height: 1.71rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/mask2-off.png') center / contain no-repeat;
}
.part5 .content .kv-father .mask3 {
  bottom: 0.03rem;
  left: 0.03rem;
  width: 3.01rem;
  height: 1.67rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/mask3-off.png') center / contain no-repeat;
}
.part5 .content .kv-father .mask4 {
  bottom: 0.03rem;
  right: 0.03rem;
  width: 3.19rem;
  height: 1.71rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/mask4-off.png') center / contain no-repeat;
}
.part5 .content .kv-father .mask1.unlock,
.part5 .content .kv-father .mask2.unlock,
.part5 .content .kv-father .mask3.unlock,
.part5 .content .kv-father .mask4.unlock {
  opacity: 0;
}
.part5 .content .kv-note {
  position: absolute;
  top: 6.55rem;
  color: #ffffff;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 0.31rem;
  letter-spacing: 0rem;
  text-align: justify;
}
.part5 .content .kv-actions {
  position: absolute;
  top: 7.9rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.part5 .content .kv-actions .text {
  font-size: 0.2rem;
  color: #637885;
  text-align: center;
  line-height: 0.25rem;
  margin: 0.2rem 0;
}
.part5 .content .kv-actions .friends {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.part5 .content .kv-actions .friends .friend {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
}
.part5 .content .kv-actions .friends .friend .avator {
  position: relative;
  height: 1rem;
  width: 1rem;
  border: 0.01rem solid red;
  border-radius: 50%;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.part5 .content .kv-actions .friends .friend .avator img {
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  padding: 0.01rem;
}
.part5 .content .kv-actions .friends .friend .invite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.part5 .content .kv-actions .friends .friend .invite .gift {
  width: 1.01rem;
  height: 1.01rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/bg-gift.png') center / contain no-repeat;
  width: 1.32rem;
  height: 1.32rem;
}
.part5 .content .kv-actions .friends .friend .invite .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.15rem;
  cursor: pointer;
  width: 1.26rem;
  height: 0.39rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/small.png') center / contain no-repeat;
}
.part5 .content .kv-actions .friends .friend .invite .btn::after {
  content: '去邀请';
}
.part5 .content .kv-actions .friends .friend .invite .btn.get::after {
  content: '立即领取';
}
.part5 .content .kv-actions .friends .friend .invite .btn.done {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.part5 .content .kv-actions .friends .friend .invite .btn.done::after {
  content: '已领取';
}
.part5 .content .kv-actions .friends::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 100%;
  height: 0rem;
  border: 0.001rem solid #D9D9D9;
  z-index: -1;
}
.part5 .content .task-detail {
  width: 100%;
  height: 2.5rem;
  padding: 0 0.05rem;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part4/bg-task.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.part5 .content .task-detail .gifts {
  display: flex;
  gap: 0.1rem;
}
.part5 .content .task-detail .gifts .gift {
  height: 1.6rem;
  width: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part2/bg-gift.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.part5 .content .task-detail .gifts .gift-item3 {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/bg-more-lucky.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.part5 .content .task-detail .gifts .gift-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.25rem;
  line-height: 0.35rem;
  letter-spacing: 0.02rem;
  /* 扩大2像素间距 */
  font-weight: bold;
  color: #fff;
  padding: 0.3rem;
}
.part5 .content .task-detail .btn {
  width: 1.27rem;
  height: 0.43rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/btn-invite.png') center / contain no-repeat;
}
.part5 .content .task-detail .btn.get {
  width: 1.27rem;
  height: 0.41rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/btn-get.png') center / contain no-repeat;
}
.part5 .content .task-detail .btn.done {
  width: 1.27rem;
  height: 0.43rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/btn-done.png') center / contain no-repeat;
}
.part5 .task5 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 9.8rem;
  width: 6.31rem;
}
.part5 .task5 .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}
.part5 .task5 .task-detail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.part5 .task5 .task-detail .gifts {
  display: flex;
}
.part5 .task5 .task-detail .gifts .gift-container {
  width: 1.25rem;
  height: 1.4rem;
}
.part5 .task5 .task-detail .gifts .gift-container .gift-bg {
  width: 1.25rem;
  height: 1.4rem;
}
.part5 .task5 .task-detail .gifts .gift-container .gift-bg .gift {
  width: 1rem;
  height: 1rem;
}
.part5 .task5 .task-detail .gifts .gift-container .name {
  top: 1.45rem;
  font-size: 0.14rem;
  height: 0.2rem;
  line-height: 0.2rem;
}
.part5 .task5 .task-detail .description {
  margin-top: 0.2rem;
  font-size: 0.18rem;
  height: 0.2rem;
  line-height: 0.2rem;
}
.part5 .task5 .sharegift {
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  font-size: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.part5 .task5 .sharegift.get::after {
  content: '立即领取';
}
.part5 .task5 .sharegift.done {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.part5 .task5 .sharegift.done::after {
  content: '已领取';
}
.part5 .task5 .sharegift.unable {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.part5 .task5 .sharegift.unable::after {
  content: '尚未点亮海报';
}
.part5 .btn-box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 10.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.part5 .btn-box .btn {
  display: block;
  margin-top: 1.6rem;
  margin-bottom: 0.2rem;
  width: 2.64rem;
  height: 0.86rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part5/btn-rule-big.png') center / contain no-repeat;
}
.part5 .btn-box .help-text {
  margin-top: 0.2rem;
  font-size: 0.24rem;
  font-weight: 400;
  line-height: 0.31rem;
  letter-spacing: 0rem;
  text-align: center;
  text-wrap: nowrap;
  color: #dfedf6;
}
.part6 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 53.32rem;
  width: 6.74rem;
  height: 11rem;
}
.part6 .rules {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 2.35rem;
  width: 100%;
  color: #d8d8d8;
  text-align: center;
  font-size: 0.175rem;
  line-height: 0.27rem;
  letter-spacing: 0rem;
  text-align: justify;
}
.pop_common .container {
  position: relative;
  width: 6.66rem;
  height: 4.08rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/middle.png') center / contain no-repeat;
}
.pop_common .title {
  position: absolute;
  left: 0rem;
  top: 0rem;
  z-index: 2;
}
.pop_common .btn_close {
  position: absolute;
  right: 0.15rem;
  top: 0.2rem;
  width: 0.35rem;
  height: 0.35rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/icon-close.png') center / contain no-repeat;
  z-index: 2;
}
.pop_common .box {
  position: relative;
  width: 100%;
  height: 100%;
}
.pop_common .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 1.5rem);
  height: calc(100% - 1.5rem);
}
.pop_physical_gift .container {
  width: 6.66rem;
  height: 4.08rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/middle.png') center / contain no-repeat;
}
.pop_physical_gift .title {
  width: 1.55rem;
  height: 0.44rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-congrats.png') center / contain no-repeat;
}
.pop_physical_gift .btn_close {
  top: 0.15rem;
}
.pop_physical_gift .box .gift-box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pop_physical_gift .box .gift-box .gift-container {
  width: 0.9rem;
  height: 0.9rem;
}
.pop_physical_gift .box .gift-box .gift-container .gift-bg {
  width: 0.9rem;
  height: 0.9rem;
}
.pop_physical_gift .box .gift-box .gift-container .gift-bg .gift {
  width: 0.7rem;
  height: 0.7rem;
}
.pop_physical_gift .box .gift-box .gift-container .name {
  top: 0.95rem;
  font-size: 0.16rem;
  white-space: nowrap;
}
.pop_physical_gift .box .btn_pop_physical_gift {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.5rem;
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
}
.pop_physical_gift .box .btn_pop_physical_gift::after {
  content: '前往填写收货地址';
}
.pop_physical_gift .box .notice {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.1rem;
  width: 100%;
  font-size: 0.16rem;
  line-height: 1.15;
  color: #cdd8de;
}
.pop_rule .container {
  width: 6.64rem;
  height: 6.85rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/big.png') center / contain no-repeat;
}
.pop_rule .title {
  top: 0.05rem;
  width: 1.54rem;
  height: 0.43rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-rule.png') center / contain no-repeat;
}
.pop_rule .box .inner {
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  padding-top: 0.4rem;
}
.pop_rule .box .inner .rules {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding-right: 0.2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS平滑滚动 */
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  /* 防止滚动穿透 */
}
.pop_rule .box .inner .rules p {
  text-indent: 0.2rem;
  text-align: justify;
  color: #dfedf6;
  font-family: FZLanTingHeiS-R-GB;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 0.28rem;
  letter-spacing: 0rem;
  margin: 0;
  padding: 0;
}
.pop_rule .box .inner .rules p.gift {
  text-indent: 0.2rem;
}
.pop_mygifts {
  background-color: rgba(0, 0, 0, 0.95);
}
.pop_mygifts .container {
  width: 6.67rem;
  height: 7.9rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/biger.png') center / contain no-repeat;
}
.pop_mygifts .container.x2 {
  width: 6.67rem;
  height: 10.85rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/bigest.png') center / contain no-repeat;
}
.pop_mygifts .title {
  top: 0.05rem;
  width: 1.55rem;
  height: 0.44rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-mygift.png') center / contain no-repeat;
}
.pop_mygifts .btn_close {
  top: 0.15rem;
}
.pop_mygifts .inner {
  width: 6rem;
}
.pop_mygifts .box .rows {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.2rem;
}
.pop_mygifts .box .row::after {
  content: '';
  display: block;
  position: absolute;
  width: 5.51rem;
  height: 0.02rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/parts/line.png') center / contain no-repeat;
  left: 0.3rem;
}
.pop_mygifts .box .row {
  position: relative;
  width: 100%;
  height: 2rem;
}
.pop_mygifts .box .row.x2 {
  height: 3.5rem;
}
.pop_mygifts .box .row.x2 .content {
  height: calc(100% - 0.12rem);
}
.pop_mygifts .box .row.x2 .content .gifts {
  width: 4.2rem;
}
.pop_mygifts .box .row.task4 .content .gifts .gift-container .name {
  white-space: nowrap;
  width: auto;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.pop_mygifts .box .row .title-text {
  position: relative;
  padding-left: 0.1rem;
  position: absolute;
  top: 0.12rem;
  left: 0.2rem;
  font-size: 0.2rem;
  line-height: 0.35rem;
  color: #aac2d1;
  z-index: 2;
}
.pop_mygifts .box .row .title-text::before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.05rem;
  height: 0.05rem;
  background-color: #d30000;
}
.pop_mygifts .box .row .title-text .btn3 {
  color: #00ACFF;
  font-size: 0.12rem;
  text-decoration: underline;
}
.pop_mygifts .box .row .content {
  margin-top: 0.2rem;
  left: 0.12rem;
  width: 6rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1;
}
.pop_mygifts .box .row .content.no_gift .no_gift_tips {
  display: flex;
}
.pop_mygifts .box .row .content.no_gift .gifts,
.pop_mygifts .box .row .content.no_gift .btn {
  display: none;
}
.pop_mygifts .box .row .content .no_gift_tips {
  display: none;
  font-size: 0.22rem;
  color: #aac2d1;
  width: 100%;
}
.pop_mygifts .box .row .content .gifts {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 4.2rem;
}
.pop_mygifts .box .row .content .gifts .gift-container {
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
}
.pop_mygifts .box .row .content .gifts .gift-container .gift-bg {
  width: 0.74rem;
  height: 0.74rem;
  flex-shrink: 0;
}
.pop_mygifts .box .row .content .gifts .gift-container .gift-bg .gift {
  width: 0.54rem;
  height: 0.54rem;
}
.pop_mygifts .box .row .content .gifts .gift-container .name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  white-space: wrap;
  position: relative;
  width: 100%;
  top: 0;
  margin-top: 0.08rem;
  font-size: 0.16rem;
  height: auto;
  line-height: 0.18rem;
  text-align: center;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  height: 0.36rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pop_mygifts .box .row .btn {
  position: relative;
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.2rem;
  flex-shrink: 0;
}
.pop_mygifts .box .row .btn .write,
.pop_mygifts .box .row .btn .edit {
  display: none;
}
.pop_mygifts .box .row .btn.write .write {
  display: flex;
}
.pop_mygifts .box .row .btn.edit .edit {
  display: flex;
}
.pop_mygifts .box .row .btn.get::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: '立即领取';
  white-space: nowrap;
}
.pop_mygifts .box .row .btn.got {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.pop_mygifts .box .row .btn.got::after {
  content: '已获得';
}
.pop_mygifts .box .row .btn.disable {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.pop_mygifts .box .row .btn.disable::before {
  content: '不可领取';
}
.pop_mygifts .box .row .btn .disable-text {
  display: none;
}
.pop_mygifts .box .row .btn.disable .disable-text {
  display: block;
  top: calc(100% + 0.1rem);
  -webkit-transform: translateX(-50%) scale(0.9);
          transform: translateX(-50%) scale(0.9);
  color: #dfedf6;
  font-family: FZLanTingHei-R-GB;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0rem;
  text-align: center;
  white-space: nowrap;
}
.pop_mygifts .box .row .btns {
  display: flex;
}
.pop_mygifts .box .row .btn {
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
}
.pop_mygifts .box .row .btn.bind-phone::after {
  content: '手机号绑定';
}
.pop_mygifts .box .row .btn.disbind-phone::after {
  content: '解绑手机号';
}
.pop_mygifts .box .row .btn.disbind-phone::after {
  content: '更换绑定手机号';
}
.pop_mygifts .box .task4 .gifts {
  width: 3rem !important;
}
.pop_swich_account .container {
  width: 6.66rem;
  height: 3.16rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/small.png') center / contain no-repeat;
}
.pop_swich_account .title {
  width: 1.54rem;
  height: 0.43rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-notice.png') center / contain no-repeat;
}
.pop_swich_account .box {
  color: #DFEDF6;
  text-align: center;
}
.pop_swich_account .box .text1 {
  font-size: 0.2rem;
  line-height: 1.4;
}
.pop_swich_account .box .btn {
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
  margin-top: 0.4rem;
}
.pop_swich_account .box .btn::after {
  content: '确认';
}
.pop_swich_account .btn_close {
  top: 0.15rem;
}
.pop_address_form .container {
  width: 6.65rem;
  height: 4.86rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/large.png') center / contain no-repeat;
}
.pop_address_form .title {
  width: 1.55rem;
  height: 0.44rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-addr.png') center / contain no-repeat;
}
.pop_address_form .milo-form-item {
  position: absolute;
  width: 1rem;
  top: 1.9rem;
  background: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0.2rem;
  padding: 0.05rem;
  color: #d6dee2;
}
.pop_address_form #milo-province {
  left: 2.2rem;
}
.pop_address_form #milo-city {
  left: 3.4rem;
}
.pop_address_form #milo-region {
  left: 4.6rem;
}
.pop_address_form .box .inner {
  font-size: 0.24rem;
}
.pop_address_form .box .inner .inputs {
  position: relative;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4.7rem;
  height: 2.43rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/parts/addr-form.png') center / contain no-repeat;
}
.pop_address_form .box .inner input {
  color: #d6dee2;
  position: absolute;
  left: 1.2rem;
  width: 3.3rem;
  background: transparent;
  outline: none;
  border: none;
  font-size: 0.2rem;
  text-align: left;
}
.pop_address_form .box .inner input[name="addr1"] {
  top: 0.05rem;
}
.pop_address_form .box .inner input[name="addr2"] {
  top: 0.6rem;
}
.pop_address_form .box .inner input[name="recipient"] {
  top: 1.12rem;
}
.pop_address_form .box .inner input[name="phone"] {
  bottom: 0.05rem;
}
.pop_address_form .box .inner .gender-selector {
  position: absolute;
  top: 1.45rem;
  bottom: 0;
  left: 1rem;
  width: 2.5rem;
  height: 0.5rem;
  display: flex;
  justify-content: space-between;
  gap: 0.2rem;
}
.pop_address_form .box .inner .gender-selector .gender-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.pop_address_form .box .inner .gender-selector .gender-option .label {
  color: #dfedf6;
}
.pop_address_form .box .inner .gender-selector .custom-radio {
  display: inline-block;
  width: 0.18rem;
  height: 0.18rem;
  margin-right: 0.08rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.pop_address_form .box .inner .gender-selector .unchecked {
  background-image: url(https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/parts/icon-uncheck.png);
}
.pop_address_form .box .inner .gender-selector .checked {
  background-image: url(https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/parts/icon-checked.png);
}
.pop_address_form .btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.5rem;
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop_address_form .btn::after {
  font-size: 0.18rem;
  font-weight: 700;
  content: '确认';
}
.pop_idcard_form .container {
  width: 6.65rem;
  height: 4.86rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/large.png') center / contain no-repeat;
}
.pop_idcard_form .title {
  width: 1.55rem;
  height: 0.44rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-card.png') center / contain no-repeat;
}
.pop_idcard_form .box .inner {
  font-size: 0.24rem;
}
.pop_idcard_form .box .inner .inputs {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4.7rem;
  height: 1.48rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/parts/card-form.png') center / contain no-repeat;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.pop_idcard_form .box .inner input {
  color: #d6dee2;
  background: transparent;
  outline: none;
  border: none;
  font-size: 0.2rem;
  text-align: left;
  height: 0.32rem;
  line-height: 0.32rem;
  margin-left: 0.22rem;
}
.pop_idcard_form .info-text {
  white-space: nowrap;
  margin-top: 0.6rem;
  font-size: 0.16rem;
  color: #fff;
  opacity: 0.52;
}
.pop_idcard_form .btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.8rem;
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop_idcard_form .btn::after {
  font-size: 0.18rem;
  font-weight: 700;
  content: '保存地址';
  font-weight: bold;
}
.pop_reservation_success .container {
  position: relative;
  width: 6.65rem;
  height: 5.77rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/book_suc.png') center / contain no-repeat;
}
.pop_reservation_success .box .inner {
  font-size: 0.24rem;
}
.pop_reservation_success .box .inner .text {
  line-height: 0.27rem;
  font-size: 0.14rem;
  color: #DFEDF6;
  width: 100%;
}
.pop_reservation_success .box .inner .gift-container {
  width: 0.9rem;
  height: 0.9rem;
}
.pop_reservation_success .box .inner .gift-container .gift-bg {
  width: 0.9rem;
  height: 0.9rem;
}
.pop_reservation_success .box .inner .gift-container .gift-bg .gift {
  width: 0.7rem;
  height: 0.7rem;
}
.pop_reservation_success .box .inner .gift-container .name {
  top: 1rem;
  font-size: 0.16rem;
  line-height: 0.18rem;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.pop_reservation_success .box .inner .gifts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pop_reservation_success .box .inner .gifts1 {
  position: absolute;
  top: 0.4rem;
  width: 100%;
  height: 1.5rem;
  justify-content: space-around;
}
.pop_reservation_success .box .inner .gifts2 {
  position: absolute;
  bottom: 0.1rem;
  width: 100%;
  height: 1.5rem;
}
.pop_gift .container,
.pop_bind_phone .container {
  width: 6.64rem;
  height: 6.85rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/big.png') center / contain no-repeat;
}
.pop_gift .title,
.pop_bind_phone .title {
  width: 1.55rem;
  height: 0.44rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-congrats.png') center / contain no-repeat;
}
.pop_gift .box,
.pop_bind_phone .box {
  position: absolute;
  width: 6.1rem;
  height: 5.9rem;
  justify-content: space-around;
  margin: 0.17rem 0 0 0rem;
}
.pop_gift .box .tips,
.pop_bind_phone .box .tips {
  font-size: 0.14rem;
  line-height: 0.26rem;
}
.pop_gift .box .gift-wrap,
.pop_bind_phone .box .gift-wrap {
  margin-top: -0.3rem;
}
.pop_gift .box .gift-wrap .gift-bg,
.pop_bind_phone .box .gift-wrap .gift-bg {
  width: 0.99rem;
  height: 0.99rem;
}
.pop_gift .box .gift-wrap .gift-bg .gift,
.pop_bind_phone .box .gift-wrap .gift-bg .gift {
  width: 0.7rem;
  height: 0.7rem;
}
.pop_gift .box .gift-wrap .name,
.pop_bind_phone .box .gift-wrap .name {
  top: 1.25rem;
  margin-top: 0.1rem;
  font-size: 0.16rem;
}
.pop_gift .box .phone_bg,
.pop_bind_phone .box .phone_bg {
  position: relative;
  width: 4.7rem;
  height: 0.91rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/parts/part-phone.png') center / contain no-repeat;
  justify-content: space-between;
}
.pop_gift .box .phone_bg .line,
.pop_bind_phone .box .phone_bg .line {
  width: 100%;
  padding-left: 0.2rem;
  height: 0.35rem;
  justify-content: flex-start;
  font-size: 0.18rem;
  color: #DFEDF6;
}
.pop_gift .box .phone_bg .type_text,
.pop_bind_phone .box .phone_bg .type_text {
  width: 1rem;
  height: 100%;
  flex-shrink: 0;
}
.pop_gift .box .phone_bg input,
.pop_bind_phone .box .phone_bg input {
  text-align: left;
  color: #DFEDF6;
  border: none;
  background: transparent;
  outline: none;
  opacity: 0.3;
  height: 100%;
  line-height: 0.44rem;
  text-indent: 0.1rem;
  font-size: 0.18rem;
  width: 2.6rem;
}
.pop_gift .box .phone_bg input::-webkit-input-placeholder,
.pop_bind_phone .box .phone_bg input::-webkit-input-placeholder {
  color: #DFEDF6;
}
.pop_gift .box .phone_bg input::-moz-placeholder,
.pop_bind_phone .box .phone_bg input::-moz-placeholder {
  color: #DFEDF6;
}
.pop_gift .box .phone_bg input::-ms-input-placeholder,
.pop_bind_phone .box .phone_bg input::-ms-input-placeholder {
  color: #DFEDF6;
}
.pop_gift .box .phone_bg input::placeholder,
.pop_bind_phone .box .phone_bg input::placeholder {
  color: #DFEDF6;
}
.pop_gift .box .phone_bg .sms-btns,
.pop_bind_phone .box .phone_bg .sms-btns {
  width: 1.73rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop_gift .box .btn.bind-account,
.pop_bind_phone .box .btn.bind-account {
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
}
.pop_gift .box .btn.bind-account::after,
.pop_bind_phone .box .btn.bind-account::after {
  content: '绑定手机号';
}
.pop_come_with_qr {
  display: none;
  position: fixed;
  z-index: 5;
  width: 100vw;
  height: 100vh;
}
.pop_come_with_qr .container {
  background-image: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/pop_come_with_qr_bg.jpg');
  background-position-y: top;
  top: 0;
}
.pop_come_with_qr .box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 9.61rem;
  height: 7.18rem;
  bottom: 3.4rem;
}
.pop_come_with_qr .box .title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -0.1rem;
  margin-left: 0.08rem;
  width: 5.41rem;
  height: 2.61rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part1/tittle-main.png') center / contain no-repeat;
}
.pop_come_with_qr .box .sub-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4.13rem;
  height: 0.35rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/part1/tittle-sub.png') center / contain no-repeat;
  top: 3.15rem;
}
.pop_come_with_qr .box .sub-title1 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 4rem;
  color: #ffffff;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0rem;
  text-align: center;
  border-bottom: 0.01rem solid #ffffff;
}
.pop_come_with_qr .box .avator {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 1.4rem;
  width: 1.2rem;
  height: 1.2rem;
}
.pop_come_with_qr .box .player {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 1.1rem;
  font-size: 0.18rem;
  text-align: center;
  white-space: nowrap;
}
.pop_come_with_qr .box .gifts-bg {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 6.3rem;
  width: 3.22rem;
  height: 1.86rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/pop_come_with_qr_gifts_bg.png') center / contain no-repeat;
}
.pop_come_with_qr .box .gifts-bg .sub-title2 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0.04rem;
  color: #ffffff;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0rem;
  text-align: center;
}
.pop_come_with_qr .box .gifts-bg .gifts {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0.44rem;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-around;
}
.pop_come_with_qr .box .gifts-bg .gifts .gift-container {
  width: 1rem;
  height: 1rem;
}
.pop_come_with_qr .box .gifts-bg .gifts .gift-container .gift-bg {
  width: 1rem;
  height: 1rem;
}
.pop_come_with_qr .box .gifts-bg .gifts .gift-container .gift-bg .gift {
  width: 1rem;
  height: 1rem;
}
.pop_come_with_qr .box .gifts-bg .gifts .gift-container .name {
  top: 1.1rem;
  font-size: 0.15rem;
  line-height: 0.16rem;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop_come_with_qr .box .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.3rem;
  font-weight: 400;
}
.pop_come_with_qr .box .btn.invite {
  position: absolute;
  bottom: -2rem;
  right: 2.1rem;
  width: 2.44rem;
  height: 0.73rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/share.png') center / contain no-repeat;
}
.pop_come_with_qr .box .btn.invite::after {
  content: '预约助力';
}
.pop_come_with_qr .box .btn.invite[data-status='complete']::after {
  content: '已完成游戏预约';
}
.pop_come_with_qr .box .btn.invite[data-status='disabled'] {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.pop_come_with_qr .box .btn.invite[data-status='disabled']::after {
  content: '无法为自己援助';
}
.pop_come_with_qr .box .btn.detail {
  position: absolute;
  bottom: -2rem;
  left: 2.1rem;
  width: 2.45rem;
  height: 0.74rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/share-line.png') center / contain no-repeat;
}
.pop_come_with_qr .box .btn.detail::after {
  content: '活动详情';
}
.pop_msg {
  z-index: 999;
  background: #000;
}
.pop_msg .msg {
  min-height: 100%;
  color: #dfedf6;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 0.3rem;
  letter-spacing: 0rem;
  text-align: center;
  overflow-y: scroll;
  height: 2rem;
  width: 4rem;
}
.pop_msg3 .msg {
  min-height: 100%;
  color: #dfedf6;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 0.3rem;
  letter-spacing: 0rem;
  text-align: center;
  overflow-y: scroll;
  height: 2rem;
  width: 4rem;
}
.pop_msg2 .msg {
  min-height: 100%;
  color: #dfedf6;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 0.3rem;
  letter-spacing: 0rem;
  text-align: center;
  overflow-y: scroll;
  height: 2rem;
  width: 4rem;
}
.pop_msg2 .msg .text1 {
  font-size: 0.26rem;
}
.pop_msg2 .msg .text2 {
  font-size: 0.16rem;
}
.pop_swich_server .container {
  width: 6.64rem;
  height: 4.31rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/area.png') center / contain no-repeat;
}
.pop_swich_server .box .btns {
  position: absolute;
  bottom: 0.08rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
}
.pop_swich_server .box .btns .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.3rem;
  font-weight: 400;
  width: 2.26rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/pop-area.png') center / contain no-repeat;
}
.pop_swich_server .box .btns .btn.cancel::after {
  content: '取消';
}
.pop_swich_server .box .btns .btn.confirm::after {
  content: '确认';
}
.pop_swich_server .box select {
  position: absolute;
  left: 0.4rem;
  width: 4.7rem;
  font-size: 0.18rem;
  color: #dfedf6;
  background: transparent;
  outline: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.pop_swich_server .box #area_select {
  top: 0.92rem;
}
.pop_swich_server .box .btn.term_check {
  position: absolute;
  left: 0.2rem;
  top: 0rem;
  width: 0.23rem;
  height: 0.23rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop/icon-uncheck.png') center / contain no-repeat;
}
.pop_swich_server .box .btn.term_check.checked {
  width: 0.25rem;
  height: 0.24rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop/icon-checked.png') center / contain no-repeat;
}
.pop_swich_server .box .selector1 {
  top: 0.6rem;
}
.pop_swich_server .box .selector2 {
  top: 1.15rem;
}
.pop_swich_server .box .selector3 {
  top: 1.7rem;
}
.pop_swich_server .box #server_select {
  top: 1.54rem;
}
.pop_swich_server .box #role_select {
  top: 2.2rem;
}
.pop_copy_jdcard .container {
  width: 6.66rem;
  height: 4.63rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/jd.png') center / contain no-repeat;
}
.pop_copy_jdcard .box .btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.3rem;
  font-weight: 400;
  width: 2.44rem;
  height: 0.73rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/share.png') center / contain no-repeat;
}
.pop_copy_jdcard .box .btn::after {
  content: '点击复制卡密';
}
.pop_copy_jdcard .box .key {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.75rem;
  font-size: 0.24rem;
  width: 4.9rem;
  text-align: center;
}
.pop_copy_jdcard .box .key input {
  background: transparent;
  outline: none;
  border: none;
  font-size: 0.28rem;
  text-align: center;
}
.pop_change_bind .container {
  width: 6.64rem;
  height: 6.85rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/big.png') center / contain no-repeat;
}
.pop_change_bind .title {
  width: 1.55rem;
  height: 0.44rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-unbind.png') center / contain no-repeat;
}
.pop_change_bind .inner .text_tips1 {
  margin-top: 0.2rem;
}
.pop_change_bind .inner .tips {
  font-size: 0.14rem;
  line-height: 0.26rem;
}
.pop_change_bind .inner .phone_bg {
  position: relative;
  width: 4.7rem;
  height: 0.91rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/parts/part-phone.png') center / contain no-repeat;
  justify-content: space-between;
}
.pop_change_bind .inner .phone_bg .line {
  width: 100%;
  padding-left: 0.2rem;
  height: 0.35rem;
  justify-content: flex-start;
  font-size: 0.18rem;
  color: #DFEDF6;
}
.pop_change_bind .inner .phone_bg .type_text {
  width: 1rem;
  height: 100%;
  flex-shrink: 0;
}
.pop_change_bind .inner .phone_bg input {
  text-align: left;
  color: #DFEDF6;
  border: none;
  background: transparent;
  outline: none;
  opacity: 0.3;
  height: 100%;
  line-height: 0.44rem;
  text-indent: 0.1rem;
  font-size: 0.18rem;
  width: 2.6rem;
}
.pop_change_bind .inner .phone_bg input::-webkit-input-placeholder {
  color: #DFEDF6;
}
.pop_change_bind .inner .phone_bg input::-moz-placeholder {
  color: #DFEDF6;
}
.pop_change_bind .inner .phone_bg input::-ms-input-placeholder {
  color: #DFEDF6;
}
.pop_change_bind .inner .phone_bg input::placeholder {
  color: #DFEDF6;
}
.pop_change_bind .inner .phone_bg .sms-btns {
  width: 1.73rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop_change_bind .inner .btns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.18rem;
  margin: 0.2rem 0;
}
.pop_change_bind .inner .btns .btn {
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
}
.pop_change_bind .inner .btns .btn.cancel::after {
  content: '让我想想';
}
.pop_change_bind .inner .btns .btn.confirm::after {
  content: '解绑手机号';
}
.pop_unbind_recheck .container {
  width: 6.66rem;
  height: 3.16rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/small.png') center / contain no-repeat;
}
.pop_unbind_recheck .box .inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: calc(50% - 0.05rem);
  top: 0.5rem;
  height: 2rem;
  width: 5rem;
}
.pop_unbind_recheck .box .btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.08rem;
  width: 1.59rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/btns/middle.png') center / contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.18rem;
}
.pop_unbind_recheck .box .btn::after {
  content: '确认';
}
.pop_unbind_recheck .box .line {
  width: 100%;
  height: 1.3rem;
  overflow-y: scroll;
  display: block;
  color: #dfedf6;
  font-family: FZLanTingHei-R-GB;
  font-size: 0.14rem;
  font-weight: 400;
  line-height: 0.26rem;
  letter-spacing: 0.03rem;
  text-align: justify;
}
.pop_unbind_recheck .box .link {
  color: #00a0e9;
}
.pop_swich_account_no_btn .container {
  width: 6.66rem;
  height: 3.16rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/small.png') center / contain no-repeat;
}
.pop_swich_account_no_btn .title {
  width: 1.54rem;
  height: 0.43rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-notice.png') center / contain no-repeat;
}
.pop_swich_account_no_btn .box .inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: calc(50% - 0.05rem);
  top: 0.5rem;
  height: 2rem;
  width: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pop_swich_account_no_btn .box .line {
  width: 100%;
  display: block;
  color: #dfedf6;
  font-family: FZLanTingHeiS-R-GB;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 0.28rem;
  letter-spacing: 0rem;
  text-align: center;
}
.pop_swich_account_no_btn .box .link {
  color: #00a0e9;
}
.pop_swich_account_no_btn .btn_close {
  top: 0.15rem;
}
.pop_wx_miniapp .container {
  width: 6.66rem;
  height: 3.16rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/small.png') center / contain no-repeat;
}
.pop_wx_miniapp .box .inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: calc(50% - 0.05rem);
  top: 0.5rem;
  height: 2rem;
  width: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pop_wx_miniapp .box .line {
  width: 100%;
  display: block;
  color: #dfedf6;
  font-family: FZLanTingHeiS-R-GB;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 0.28rem;
  letter-spacing: 0rem;
  text-align: center;
}
.pop_wx_miniapp .box .link {
  color: #00a0e9;
}
.pop_wx_miniapp .btn_close {
  top: 0.15rem;
}
.pop_zsapp .container {
  width: 6.66rem;
  height: 3.16rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/small.png') center / contain no-repeat;
}
.pop_zsapp .box .inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: calc(50% - 0.05rem);
  top: 0.5rem;
  height: 2rem;
  width: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pop_zsapp .box .line {
  width: 100%;
  display: block;
  color: #dfedf6;
  font-family: FZLanTingHeiS-R-GB;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 0.28rem;
  letter-spacing: 0rem;
  text-align: center;
}
.pop_zsapp .box .link {
  color: #00a0e9;
}
.pop_swich_wx_account_no_btn .container {
  width: 6.66rem;
  height: 3.16rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/bg/small.png') center / contain no-repeat;
}
.pop_swich_wx_account_no_btn .title {
  width: 1.54rem;
  height: 0.43rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop2/titles/title-notice.png') center / contain no-repeat;
}
.pop_swich_wx_account_no_btn .box .inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: calc(50% - 0.05rem);
  top: 0.5rem;
  height: 2rem;
  width: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pop_swich_wx_account_no_btn .box .line {
  width: 100%;
  display: block;
  color: #dfedf6;
  font-family: FZLanTingHeiS-R-GB;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 0.28rem;
  letter-spacing: 0rem;
  text-align: center;
}
.pop_swich_wx_account_no_btn .box .link {
  color: #00a0e9;
}
.pop_swich_wx_account_no_btn .btn_close {
  top: 0.15rem;
}
.pop_share_guide .container {
  top: 0.2rem;
  left: auto;
  right: -0.1rem;
  width: 7.47rem;
  height: 4.8rem;
  background: url('https://game.gtimg.cn/images/nzm/cp/a20250722releaseaccount/pop/pop12-bg.png') center / contain no-repeat;
  -webkit-animation: none;
          animation: none;
}
.pop_share_guide .container.miniProgram {
  right: 0.7rem;
}
.poster {
  position: fixed;
  left: -9.99rem;
  top: 0;
  z-index: 999;
  width: 7.5rem;
  height: 16.24rem;
  overflow: hidden;
  border: none;
  outline: none;
}
.poster .poster-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 7.5rem;
  height: 16.24rem;
}
.poster .avator {
  position: absolute;
  bottom: 3.3rem;
  left: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
}
.poster .player {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.24rem;
  color: #aac2d1;
  text-align: center;
}
.poster .qr {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0.95rem;
  width: 1rem;
  height: 1rem;
}
.poster .qr canvas {
  width: 100% !important;
  height: 100% !important;
}
.pop_poster .container {
  height: 50%;
}
.pop_poster img {
  width: 6rem;
}
.pop_msg .container {
  font-size: 0.22rem;
}
.pop_msg .btn_close {
  top: 0.15rem;
}
.pop_msg3 .container {
  font-size: 0.22rem;
}
.pop_msg3 .btn_close {
  right: 0.2rem;
}
.debug_pop {
  display: flex;
  position: fixed;
  width: 7.5rem;
  z-index: 200;
  flex-wrap: wrap;
  gap: 0.1rem;
  padding: 0.1rem;
  background-color: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}
.debug_pop div {
  font-size: 0.21rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.05rem 0.1rem;
  border: 0.01rem solid red;
}
