.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 {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  cursor: pointer;
}
.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.8);
  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.3s cubic-bezier(0.25, 1.47, 0.6, 0.99) both;
          animation: cardFlipIn 0.6s 0.3s cubic-bezier(0.25, 1.47, 0.6, 0.99) both;
}
.btn {
  cursor: pointer;
}
input {
  outline: none;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 0.2rem;
  line-height: 0.25rem;
}
@-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);
  }
}
@-webkit-keyframes opacityChange {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacityChange {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes widthChange {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes widthChange {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes opacityChange2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 2;
  }
}
@keyframes opacityChange2 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 2;
  }
}
@-webkit-keyframes floatUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-0.1rem);
            transform: translateY(-0.1rem);
  }
}
@keyframes floatUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-0.1rem);
            transform: translateY(-0.1rem);
  }
}
@-webkit-keyframes floatUp5 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-0.05rem);
            transform: translateY(-0.05rem);
  }
}
@keyframes floatUp5 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-0.05rem);
            transform: translateY(-0.05rem);
  }
}
@-webkit-keyframes downIn {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes downIn {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes upIn {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes upIn {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes upIn1 {
  0% {
    -webkit-transform: translateY(1%);
            transform: translateY(1%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes upIn1 {
  0% {
    -webkit-transform: translateY(1%);
            transform: translateY(1%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes upIn5 {
  0% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes upIn5 {
  0% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes upIn2 {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes upIn2 {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes upIn20 {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes upIn20 {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    opacity: 1;
  }
}
@-webkit-keyframes abcUpIn1 {
  0% {
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes abcUpIn1 {
  0% {
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@-webkit-keyframes lcUpIn {
  0% {
    -webkit-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    opacity: 1;
  }
}
@keyframes lcUpIn {
  0% {
    -webkit-transform: translate(-50%, 10%);
            transform: translate(-50%, 10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    opacity: 1;
  }
}
@-webkit-keyframes leftIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes leftIn {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes leftIn2 {
  0% {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes leftIn2 {
  0% {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes rightIn {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes rightIn {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes rightIn50 {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes rightIn50 {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes downIn2 {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes downIn2 {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
:root {
  /* 兜底默认值，防止JS没执行 */
  --pc-nav-height: 0.36rem;
}
.part2 {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  background-color: #231918;
}
.part2::-webkit-scrollbar {
  display: none;
}
.part2 .btn {
  text-indent: -99.99rem;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.part2 .btn:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.part2 .left-nav-list .nav-item {
  position: relative;
  line-height: 100%;
}
.part2 .left-nav-list .nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  margin-left: -1.5rem;
  width: 0.04rem;
  height: 0.04rem;
  background-color: #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  opacity: 0;
}
.part2 .left-nav-list.nav-2 .nav-item:nth-child(1)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-3 .nav-item:nth-child(1)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-3 .nav-item:nth-child(2)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-4 .nav-item:nth-child(1)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-4 .nav-item:nth-child(2)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-4 .nav-item:nth-child(3)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-5 .nav-item:nth-child(1)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-5 .nav-item:nth-child(2)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-5 .nav-item:nth-child(3)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-5 .nav-item:nth-child(4)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-6 .nav-item:nth-child(1)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-6 .nav-item:nth-child(2)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-6 .nav-item:nth-child(3)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-6 .nav-item:nth-child(4)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-6 .nav-item:nth-child(5)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-7 .nav-item:nth-child(1)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-7 .nav-item:nth-child(2)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-7 .nav-item:nth-child(3)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-7 .nav-item:nth-child(4)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-7 .nav-item:nth-child(5)::before {
  opacity: 1;
}
.part2 .left-nav-list.nav-7 .nav-item:nth-child(6)::before {
  opacity: 1;
}
.part2 .part2-ctn {
  width: 19.2rem;
  height: 25.39rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/bg.jpg') center / contain no-repeat;
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 16.52rem;
  background-position: top;
  background-size: cover;
  border: 0.01rem solid transparent;
}
.part2 .title {
  width: 6.73rem;
  height: 1.16rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/title.png') center / contain no-repeat;
  position: absolute;
  left: 2.8rem;
  top: 1.5rem;
  text-indent: -99.99rem;
  height: 0.9rem !important;
  background-size: 6.73rem auto !important;
  background-position: top !important;
}
.part2 .line {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 13.6rem;
  height: 0.06rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part7/line.png') center / contain no-repeat;
  top: 2.86rem;
  width: 0;
}
.part2 .btn-step {
  width: 2.44rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/btn_step.png') center / contain no-repeat;
  position: absolute;
  right: 2.8rem;
  top: 1.87rem;
  cursor: pointer;
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}
.part2 .btn-step:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.part2 .sub-title {
  width: 10.87rem;
  height: 0.73rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/subTitle.png') center / contain no-repeat;
  position: absolute;
  left: 2.8rem;
  top: 3.49rem;
}
.part2 .tabs {
  position: absolute;
  left: 2.8rem;
  top: 4.71rem;
  display: flex;
  font-size: 0.18rem;
  color: #f4f1ec;
  font-family: 'text';
}
.part2 .tabs span {
  font-family: 'text_bold';
}
.part2 .tabs .tabs-item {
  width: 1.47rem;
  height: 0.44rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/btn_type_bg.png') center / contain no-repeat;
  margin-left: 0.18rem;
  text-align: center;
  line-height: 0.44rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.part2 .tabs .tabs-item:first-child {
  margin-left: 0;
}
.part2 .tabs .tabs-item:hover {
  width: 1.47rem;
  height: 0.44rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/btn_type_bg_act.png') center / contain no-repeat;
}
.part2 .tabs .tabs-item.act {
  width: 1.47rem;
  height: 0.44rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/btn_type_bg_act.png') center / contain no-repeat;
}
.part2 .part2-type-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 5.46rem;
  width: 13.63rem;
}
.part2 .part2-type-info.tab1 .type-item1 {
  display: block;
}
.part2 .part2-type-info.tab2 .type-item2 {
  display: block;
}
.part2 .part2-type-info.tab3 .type-item3 {
  display: block;
}
.part2 .part2-type-info.tab4 .type-item4 {
  display: block;
}
.part2 .part2-type-info.tab5 .type-item5 {
  display: block;
}
.part2 .part2-type-info .type-item {
  display: none;
  position: relative;
  margin-bottom: 0.4rem;
}
.part2 .part2-type-info .type-item:first-child {
  margin-top: 0;
}
.part2 .part2-type-info .type-item1-1 {
  width: 6.63rem;
  height: 8.14rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab1_1.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item1-2 {
  width: 6.63rem;
  height: 8.14rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab1_2.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item1-3 {
  width: 6.63rem;
  height: 8.14rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab1_3.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item1-4 {
  width: 6.63rem;
  height: 8.14rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab1_4.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item2-1 {
  width: 6.63rem;
  height: 8.14rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab2_1.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item2-2 {
  width: 13.63rem;
  height: 2.56rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab2_2.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item3-1 {
  width: 6.63rem;
  height: 6.68rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab3_1.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item3-2 {
  width: 6.63rem;
  height: 6.68rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab3_2.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item3-3 {
  width: 6.63rem;
  height: 6.68rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab3_3.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item3-4 {
  width: 6.63rem;
  height: 6.68rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab3_4.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item4-1 {
  width: 6.63rem;
  height: 7.35rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab4_1.png') center / contain no-repeat;
}
.part2 .part2-type-info .type-item5-1 {
  width: 6.63rem;
  height: 7.35rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tab5_1.png') center / contain no-repeat;
}
.part2 .tips {
  width: 10.29rem;
  height: 0.21rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/tips.png') center / contain no-repeat;
  position: relative;
  margin: 0 auto;
  margin-top: 0.35rem;
}
.part2 .check-img-ctn {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.part2 .check-img-ctn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.part2 .check-img-ctn .close-btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: 1rem;
}
.part2 .ctn-item-2 .title {
  width: 6.73rem;
  height: 1.16rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/title2.png') center / contain no-repeat;
}
.part2 .ctn-item-2 .btn-step {
  width: 2.44rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/btn_step2.png') center / contain no-repeat;
}
.part2 .ctn-item-2 .ctn-item2-info {
  margin: 0 auto;
  margin-top: 3.49rem;
  width: 13.66rem;
}
.part2 .ctn-item-2 .ctn-item2-info img {
  width: 13.66rem !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.part2 .ctn-item-2 .lazy-ctn {
  opacity: 0;
}
.part2 .ctn-item-2 .part2-ctn2-item2 {
  margin-top: 0.82rem;
}
.part2 .ctn-item-2 .part2-ctn2-item3 {
  margin-top: 0.27rem;
}
.part2 .ctn-item-2 .part2-ctn2-item4 {
  margin-top: 0.54rem;
}
.part2 .ctn-item-2 .part2-ctn2-item5 {
  margin-top: 0.28rem;
}
.part2 .ctn-item-2 .part2-ctn2-item5 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-2 .part2-ctn2-item5 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-2 .part2-ctn2-item6 {
  margin-top: 0.2rem;
}
.part2 .ctn-item-2 .part2-ctn2-item6 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-2 .part2-ctn2-item6 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-2 .part2-ctn2-item7 {
  margin-top: 0.7rem;
}
.part2 .ctn-item-2 .part2-ctn2-item7 .part-ctn-item-img-ctn {
  margin-left: 0.02rem;
  margin-top: -0.25rem;
  width: 13.78rem;
  height: 6.2rem;
}
.part2 .ctn-item-2 .part2-ctn2-item8 {
  margin-top: 1rem;
}
.part2 .ctn-item-2 .part2-ctn2-item9 {
  margin-top: 0.27rem;
}
.part2 .ctn-item-2 .part-ctn-item-img-ctn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-2 .part-ctn-item-img-ctn::after {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/img_hover_i.png') center / contain no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  transition: all 0.5s ease;
}
.part2 .ctn-item-2 .part-ctn-item-img-ctn img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease;
}
.part2 .ctn-item-2 .part-ctn-item-img-ctn:hover::after {
  opacity: 1;
}
.part2 .ctn-item-2 .part-ctn-item-img-ctn:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.part2 .ctn-item-2 .img-ctn-left,
.part2 .ctn-item-2 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-2 .img-ctn-left {
  margin-left: -3.47rem;
  margin-top: -0.3rem;
}
.part2 .ctn-item-2 .img-ctn-right {
  margin-left: 3.44rem;
  margin-top: -0.28rem;
}
.part2 .ctn-item-3 .title {
  width: 6.73rem;
  height: 1.16rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/title3.png') center / contain no-repeat;
}
.part2 .ctn-item-3 .btn-step {
  width: 2.44rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/btn_step3.png') center / contain no-repeat;
}
.part2 .ctn-item-3 .ctn-item3-info {
  margin: 0 auto;
  margin-top: 3.49rem;
}
.part2 .ctn-item-3 .ctn-item3-info {
  margin: 0 auto;
  margin-top: 3.49rem;
  width: 13.66rem;
}
.part2 .ctn-item-3 .ctn-item3-info img {
  width: 13.66rem !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.part2 .ctn-item-3 .lazy-ctn {
  opacity: 0;
}
.part2 .ctn-item-3 .part2-ctn3-item2 {
  margin-top: 0.82rem;
}
.part2 .ctn-item-3 .part2-ctn3-item3 {
  margin-top: 0.24rem;
}
.part2 .ctn-item-3 .part2-ctn3-item3 .part-ctn-item-img-ctn {
  margin-left: 3rem;
  margin-top: -0.15rem;
  width: 7.1rem;
  height: 3.2rem;
}
.part2 .ctn-item-3 .part2-ctn3-item4 {
  margin-top: 0.52rem;
}
.part2 .ctn-item-3 .part2-ctn3-item5 {
  margin-top: 0.19rem;
}
.part2 .ctn-item-3 .part2-ctn3-item5 .part-ctn-item-img-ctn {
  margin-left: 3rem;
  margin-top: -0.15rem;
  width: 7.1rem;
  height: 3.2rem;
}
.part2 .ctn-item-3 .part2-ctn3-item6 {
  margin-top: 0.67rem;
}
.part2 .ctn-item-3 .part2-ctn3-item6 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-3 .part2-ctn3-item6 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-3 .part2-ctn3-item7 {
  margin-top: 0.24rem;
}
.part2 .ctn-item-3 .part2-ctn3-item7 .img-ctn-left,
.part2 .ctn-item-3 .part2-ctn3-item7 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.41rem;
  height: 2.88rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-3 .part2-ctn3-item7 .img-ctn-left {
  margin-left: -3.34rem;
  margin-top: 1.2rem;
}
.part2 .ctn-item-3 .part2-ctn3-item7 .img-ctn-right {
  margin-left: 3.34rem;
  margin-top: 1.2rem;
}
.part2 .ctn-item-3 .part2-ctn3-item8 {
  margin-top: 0.75rem;
}
.part2 .ctn-item-3 .part2-ctn3-item9 {
  margin-top: 0.19rem;
}
.part2 .ctn-item-3 .part2-ctn3-item9 .img-ctn-left,
.part2 .ctn-item-3 .part2-ctn3-item9 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.41rem;
  height: 2.92rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-3 .part2-ctn3-item9 .img-ctn-left {
  margin-left: -3.32rem;
  margin-top: 0.88rem;
}
.part2 .ctn-item-3 .part2-ctn3-item9 .img-ctn-right {
  margin-left: 3.32rem;
  margin-top: 0.88rem;
}
.part2 .ctn-item-3 .part-ctn-item-img-ctn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-3 .part-ctn-item-img-ctn::after {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/img_hover_i.png') center / contain no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  transition: all 0.5s ease;
}
.part2 .ctn-item-3 .part-ctn-item-img-ctn img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease;
}
.part2 .ctn-item-3 .part-ctn-item-img-ctn:hover::after {
  opacity: 1;
}
.part2 .ctn-item-3 .part-ctn-item-img-ctn:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.part2 .ctn-item-3 .img-ctn-left,
.part2 .ctn-item-3 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-3 .img-ctn-left {
  margin-left: -3.47rem;
  margin-top: -0.3rem;
}
.part2 .ctn-item-3 .img-ctn-right {
  margin-left: 3.44rem;
  margin-top: -0.28rem;
}
.part2 .ctn-item-4 .title {
  width: 6.74rem;
  height: 1.16rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/title4.png') center / contain no-repeat;
}
.part2 .ctn-item-4 .btn-step {
  width: 2.44rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/btn_step4.png') center / contain no-repeat;
}
.part2 .ctn-item-4 .ctn-item4-info {
  margin: 0 auto;
  margin-top: 3.49rem;
}
.part2 .ctn-item-4 .ctn-item4-info {
  margin: 0 auto;
  margin-top: 3.49rem;
  width: 13.66rem;
}
.part2 .ctn-item-4 .ctn-item4-info img {
  width: 13.66rem !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.part2 .ctn-item-4 .lazy-ctn {
  opacity: 0;
}
.part2 .ctn-item-4 .part2-ctn4-item2 {
  margin-top: 0.8rem;
}
.part2 .ctn-item-4 .part2-ctn4-item3 {
  margin-top: 0.3rem;
}
.part2 .ctn-item-4 .part2-ctn4-item3 .img-ctn-left,
.part2 .ctn-item-4 .part2-ctn4-item3 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.41rem;
  height: 2.88rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-4 .part2-ctn4-item3 .img-ctn-left {
  margin-left: -3.34rem;
  margin-top: 0.62rem;
}
.part2 .ctn-item-4 .part2-ctn4-item3 .img-ctn-right {
  margin-left: 3.35rem;
  margin-top: 0.62rem;
}
.part2 .ctn-item-4 .part2-ctn4-item4 {
  margin-top: 0.99rem;
}
.part2 .ctn-item-4 .part2-ctn4-item5 {
  margin-top: 0.23rem;
}
.part2 .ctn-item-4 .part2-ctn4-item5 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-4 .part2-ctn4-item5 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-4 .part2-ctn4-item6 {
  margin-top: 0.74rem;
}
.part2 .ctn-item-4 .part2-ctn4-item6 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-4 .part2-ctn4-item6 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-4 .part2-ctn4-item7 {
  margin-top: 0.29rem;
}
.part2 .ctn-item-4 .part2-ctn4-item7 .part-ctn-item-img-ctn {
  margin-left: 0.02rem;
  margin-top: -0.25rem;
  width: 13.78rem;
  height: 6.2rem;
}
.part2 .ctn-item-4 .part2-ctn4-item8 {
  margin-top: 1.58rem;
}
.part2 .ctn-item-4 .part2-ctn4-item9 {
  margin-top: 0.28rem;
}
.part2 .ctn-item-4 .part-ctn-item-img-ctn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-4 .part-ctn-item-img-ctn::after {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/img_hover_i.png') center / contain no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  transition: all 0.5s ease;
}
.part2 .ctn-item-4 .part-ctn-item-img-ctn img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease;
}
.part2 .ctn-item-4 .part-ctn-item-img-ctn:hover::after {
  opacity: 1;
}
.part2 .ctn-item-4 .part-ctn-item-img-ctn:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.part2 .ctn-item-4 .img-ctn-left,
.part2 .ctn-item-4 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-4 .img-ctn-left {
  margin-left: -3.47rem;
  margin-top: -0.3rem;
}
.part2 .ctn-item-4 .img-ctn-right {
  margin-left: 3.44rem;
  margin-top: -0.28rem;
}
.part2 .ctn-item-5 .title {
  width: 6.73rem;
  height: 1.16rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/title5.png') center / contain no-repeat;
}
.part2 .ctn-item-5 .btn-step {
  width: 2.44rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/btn_step5.png') center / contain no-repeat;
}
.part2 .ctn-item-5 .ctn-item5-info {
  margin: 0 auto;
  margin-top: 3.49rem;
}
.part2 .ctn-item-5 .ctn-item5-info {
  margin: 0 auto;
  margin-top: 3.49rem;
  width: 13.66rem;
}
.part2 .ctn-item-5 .ctn-item5-info img {
  width: 13.66rem !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.part2 .ctn-item-5 .lazy-ctn {
  opacity: 0;
}
.part2 .ctn-item-5 .part2-ctn5-item2 {
  margin-top: 0.82rem;
}
.part2 .ctn-item-5 .part2-ctn5-item3 {
  margin-top: 0.82rem;
}
.part2 .ctn-item-5 .part2-ctn5-item4 {
  margin-top: 0.3rem;
}
.part2 .ctn-item-5 .part2-ctn5-item4 .part-ctn-item-img-ctn {
  margin-left: 3.02rem;
  margin-top: -0.41rem;
  width: 7.1rem;
  height: 3.2rem;
}
.part2 .ctn-item-5 .part2-ctn5-item5 {
  margin-top: 0.55rem;
}
.part2 .ctn-item-5 .part2-ctn5-item5 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-5 .part2-ctn5-item5 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-5 .part2-ctn5-item6 {
  margin-top: 0.32rem;
}
.part2 .ctn-item-5 .part2-ctn5-item6 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-5 .part2-ctn5-item6 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-5 .part2-ctn5-item7 {
  margin-top: 0.27rem;
}
.part2 .ctn-item-5 .part2-ctn5-item7 .part-ctn-item-img-ctn {
  margin-left: 0.02rem;
  margin-top: -0.25rem;
  width: 13.78rem;
  height: 6.2rem;
}
.part2 .ctn-item-5 .part2-ctn5-item8 {
  margin-top: 0.7rem;
}
.part2 .ctn-item-5 .part2-ctn5-item9 {
  margin-top: 0.43rem;
}
.part2 .ctn-item-5 .part-ctn-item-img-ctn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-5 .part-ctn-item-img-ctn::after {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/img_hover_i.png') center / contain no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  transition: all 0.5s ease;
}
.part2 .ctn-item-5 .part-ctn-item-img-ctn img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease;
}
.part2 .ctn-item-5 .part-ctn-item-img-ctn:hover::after {
  opacity: 1;
}
.part2 .ctn-item-5 .part-ctn-item-img-ctn:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.part2 .ctn-item-5 .img-ctn-left,
.part2 .ctn-item-5 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-5 .img-ctn-left {
  margin-left: -3.47rem;
  margin-top: -0.3rem;
}
.part2 .ctn-item-5 .img-ctn-right {
  margin-left: 3.44rem;
  margin-top: -0.28rem;
}
.part2 .ctn-item-6 .title {
  width: 6.73rem;
  height: 1.16rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/title6.png') center / contain no-repeat;
}
.part2 .ctn-item-6 .btn-step {
  width: 2.44rem;
  height: 0.55rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/btn_step6.png') center / contain no-repeat;
}
.part2 .ctn-item-6 .ctn-item6-info {
  margin: 0 auto;
  margin-top: 3.49rem;
}
.part2 .ctn-item-6 .ctn-item6-info {
  margin: 0 auto;
  margin-top: 3.49rem;
  width: 13.66rem;
}
.part2 .ctn-item-6 .ctn-item6-info img {
  width: 13.66rem !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.part2 .ctn-item-6 .lazy-ctn {
  opacity: 0;
}
.part2 .ctn-item-6 .part2-ctn6-item2 {
  margin-top: 0.82rem;
}
.part2 .ctn-item-6 .part2-ctn6-item3 {
  margin-top: 0.34rem;
}
.part2 .ctn-item-6 .part2-ctn6-item3 .part-ctn-item-img-ctn {
  margin-left: 2.96rem;
  margin-top: -0.1rem;
  width: 7.1rem;
  height: 3.2rem;
}
.part2 .ctn-item-6 .part2-ctn6-item4 {
  margin-top: 0.21rem;
}
.part2 .ctn-item-6 .part2-ctn6-item5 {
  margin-top: 0.52rem;
}
.part2 .ctn-item-6 .part2-ctn6-item6 {
  margin-top: 0.2rem;
}
.part2 .ctn-item-6 .part2-ctn6-item6 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-6 .part2-ctn6-item6 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-6 .part2-ctn6-item7 {
  margin-top: 0.53rem;
}
.part2 .ctn-item-6 .part2-ctn6-item7 .part-ctn-item-img-ctn {
  margin-left: 0.02rem;
  margin-top: -0.25rem;
  width: 13.78rem;
  height: 6.2rem;
}
.part2 .ctn-item-6 .part2-ctn6-item8 {
  margin-top: 0.24rem;
}
.part2 .ctn-item-6 .part2-ctn6-item8 .img-ctn-left,
.part2 .ctn-item-6 .part2-ctn6-item8 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.41rem;
  height: 2.88rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-6 .part2-ctn6-item8 .img-ctn-left {
  margin-left: -3.34rem;
  margin-top: 0.84rem;
}
.part2 .ctn-item-6 .part2-ctn6-item8 .img-ctn-right {
  margin-left: 3.35rem;
  margin-top: 0.84rem;
}
.part2 .ctn-item-6 .part-ctn-item-img-ctn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-6 .part-ctn-item-img-ctn::after {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/img_hover_i.png') center / contain no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  transition: all 0.5s ease;
}
.part2 .ctn-item-6 .part-ctn-item-img-ctn img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease;
}
.part2 .ctn-item-6 .part-ctn-item-img-ctn:hover::after {
  opacity: 1;
}
.part2 .ctn-item-6 .part-ctn-item-img-ctn:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.part2 .ctn-item-6 .img-ctn-left,
.part2 .ctn-item-6 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-6 .img-ctn-left {
  margin-left: -3.47rem;
  margin-top: -0.3rem;
}
.part2 .ctn-item-6 .img-ctn-right {
  margin-left: 3.44rem;
  margin-top: -0.28rem;
}
.part2 .ctn-item-7 .title {
  width: 6.73rem;
  height: 1.16rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/part2/title7.png') center / contain no-repeat;
}
.part2 .ctn-item-7 .ctn-item7-info {
  margin: 0 auto;
  margin-top: 3.49rem;
}
.part2 .ctn-item-7 .ctn-item7-info {
  margin: 0 auto;
  margin-top: 3.49rem;
  width: 13.66rem;
}
.part2 .ctn-item-7 .ctn-item7-info img {
  width: 13.66rem !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.part2 .ctn-item-7 .lazy-ctn {
  opacity: 0;
}
.part2 .ctn-item-7 .part2-ctn7-item2 {
  margin-top: 0.8rem;
}
.part2 .ctn-item-7 .part2-ctn7-item2 .img-ctn-left,
.part2 .ctn-item-7 .part2-ctn7-item2 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.41rem;
  height: 2.88rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-7 .part2-ctn7-item2 .img-ctn-left {
  margin-left: -3.34rem;
  margin-top: 2.2rem;
}
.part2 .ctn-item-7 .part2-ctn7-item2 .img-ctn-right {
  margin-left: 3.35rem;
  margin-top: 2.2rem;
}
.part2 .ctn-item-7 .part2-ctn7-item3 {
  margin-top: 0.4rem;
}
.part2 .ctn-item-7 .part2-ctn7-item4 {
  margin-top: 0.24rem;
}
.part2 .ctn-item-7 .part2-ctn7-item5 {
  margin-top: 0.7rem;
}
.part2 .ctn-item-7 .part2-ctn7-item5 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-7 .part2-ctn7-item5 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-7 .part2-ctn7-item6 {
  margin-top: 0.23rem;
}
.part2 .ctn-item-7 .part2-ctn7-item6 .part-ctn-item-img-ctn {
  margin-left: 3.32rem;
  margin-top: 0.24rem;
}
.part2 .ctn-item-7 .part2-ctn7-item6 .part-ctn-item-img-ctn img {
  width: 6.55rem !important;
}
.part2 .ctn-item-7 .part2-ctn7-item7 {
  margin-top: 0.44rem;
}
.part2 .ctn-item-7 .part2-ctn7-item7 .part-ctn-item-img-ctn {
  margin-left: 0.02rem;
  margin-top: -0.25rem;
  width: 13.78rem;
  height: 6.2rem;
}
.part2 .ctn-item-7 .part-ctn-item-img-ctn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-7 .part-ctn-item-img-ctn::after {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/img_hover_i.png') center / contain no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  transition: all 0.5s ease;
}
.part2 .ctn-item-7 .part-ctn-item-img-ctn img {
  width: 100% !important;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease;
}
.part2 .ctn-item-7 .part-ctn-item-img-ctn:hover::after {
  opacity: 1;
}
.part2 .ctn-item-7 .part-ctn-item-img-ctn:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.part2 .ctn-item-7 .img-ctn-left,
.part2 .ctn-item-7 .img-ctn-right {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.7rem;
  height: 3.03rem;
  overflow: hidden;
  cursor: pointer;
}
.part2 .ctn-item-7 .img-ctn-left {
  margin-left: -3.47rem;
  margin-top: -0.3rem;
}
.part2 .ctn-item-7 .img-ctn-right {
  margin-left: 3.44rem;
  margin-top: -0.28rem;
}
@media screen and (max-device-width: 1024px) {
  .part2 .left-nav {
    display: none !important;
  }
  .part2 .left-nav .left-nav-bg {
    width: 10.8rem;
    background-size: 13.08rem auto;
    background-position: center left;
    background-repeat: no-repeat;
  }
  .part2 .left-nav-m {
    display: block !important;
    position: absolute;
    left: 0.25rem;
    top: 3.55rem;
  }
  .part2 .line {
    display: none;
  }
  .part2 .btn-step {
    display: none;
  }
  .part2 .title {
    width: 2.75rem !important;
    height: 0.73rem !important;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/title.png') center / contain no-repeat !important;
    left: 0.25rem;
    top: 2.35rem;
  }
  .part2 .sub-title {
    width: 7.04rem;
    height: 1.05rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/subTitle.png') center / contain no-repeat;
    left: 0.25rem;
    top: 5.38rem;
  }
  .part2 .tabs {
    left: 0.25rem;
    top: 7.14rem;
    width: 7.01rem;
  }
  .part2 .tabs .tabs-item {
    width: 1.37rem;
    height: 0.51rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/btn_type_bg.png') center / contain no-repeat;
    flex-shrink: 0;
    margin-left: 0.05rem;
    font-size: 0.16rem;
    line-height: 0.51rem;
  }
  .part2 .tabs .tabs-item.act {
    width: 1.37rem;
    height: 0.51rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/btn_type_bg_act.png') center / contain no-repeat;
  }
  .part2 .tips {
    width: 6.43rem;
    height: 0.39rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tips.png') center / contain no-repeat;
    position: relative;
    margin: 0 auto;
    margin-top: 0.35rem;
  }
  .part2 .part2-type-info {
    margin-top: 7.88rem;
    width: 7.01rem;
  }
  .part2 .part2-type-info .type-item1-1 {
    width: 7.01rem;
    height: 10.81rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab1_1.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item1-2 {
    width: 7.01rem;
    height: 10.81rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab1_2.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item1-3 {
    width: 7.01rem;
    height: 10.81rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab1_3.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item1-4 {
    width: 7.01rem;
    height: 10.81rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab1_4.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item2-1 {
    width: 7.01rem;
    height: 10.81rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab2_1.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item2-2 {
    width: 7.01rem;
    height: 3.05rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab2_2.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item3-1 {
    width: 7.01rem;
    height: 9.33rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab3_1.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item3-2 {
    width: 7.01rem;
    height: 9.33rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab3_2.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item3-3 {
    width: 7.01rem;
    height: 9.33rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab3_3.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item3-4 {
    width: 7.01rem;
    height: 9.33rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab3_4.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item4-1 {
    width: 7.01rem;
    height: 9.33rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab4_1.png') center / contain no-repeat;
  }
  .part2 .part2-type-info .type-item5-1 {
    width: 7.01rem;
    height: 9.33rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/tab5_1.png') center / contain no-repeat;
  }
  .part2 .step-ctn {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    width: 7rem;
  }
  .part2 .step-ctn .btn-prev-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/next_step.png') center / contain no-repeat;
    opacity: 0;
    pointer-events: none;
  }
  .part2 .step-ctn .btn-next-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/next_step.png') center / contain no-repeat;
  }
  .part2 .ctn-item-2 .title {
    width: 3.83rem !important;
    height: 0.74rem !important;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/title2.png') center / contain no-repeat !important;
  }
  .part2 .ctn-item-2 .ctn-item2-info {
    margin: 0 auto;
    margin-top: 5.8rem;
    width: 7rem;
  }
  .part2 .ctn-item-2 .ctn-item2-info img {
    width: 7rem !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .part2 .ctn-item-2 .part2-ctn2-item2 {
    margin-top: 0.95rem;
  }
  .part2 .ctn-item-2 .part2-ctn2-item3 {
    margin-top: 0.26rem;
  }
  .part2 .ctn-item-2 .part2-ctn2-item4 {
    margin-top: 0.89rem;
  }
  .part2 .ctn-item-2 .part2-ctn2-item5 {
    margin-top: 0.78rem;
  }
  .part2 .ctn-item-2 .part2-ctn2-item6 {
    margin-top: 0.45rem;
  }
  .part2 .ctn-item-2 .part2-ctn2-item7 {
    margin-top: 0.2rem;
  }
  .part2 .ctn-item-2 .part2-ctn2-item8 {
    margin-top: 0.26rem;
  }
  .part2 .ctn-item-2 .part2-ctn2-item9 {
    margin-top: 0.89rem;
  }
  .part2 .ctn-item-2 .step-ctn {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    width: 7rem;
  }
  .part2 .ctn-item-2 .step-ctn .btn-prev-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/prev_step2.png') center / contain no-repeat;
    opacity: 1;
    pointer-events: auto;
  }
  .part2 .ctn-item-2 .step-ctn .btn-next-step {
    width: 2.85rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/next_step2.png') center / contain no-repeat;
  }
  .part2 .ctn-item-3 .title {
    width: 3.83rem !important;
    height: 0.74rem !important;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/title3.png') center / contain no-repeat !important;
  }
  .part2 .ctn-item-3 .ctn-item3-info {
    margin: 0 auto;
    margin-top: 5.8rem;
    width: 7rem;
  }
  .part2 .ctn-item-3 .ctn-item3-info img {
    width: 7rem !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .part2 .ctn-item-3 .part2-ctn2-item2 {
    margin-top: 0.98rem;
  }
  .part2 .ctn-item-3 .part2-ctn2-item3 {
    margin-top: 0.38rem;
  }
  .part2 .ctn-item-3 .part2-ctn2-item4 {
    margin-top: 0.95rem;
  }
  .part2 .ctn-item-3 .part2-ctn2-item5 {
    margin-top: 0.33rem;
  }
  .part2 .ctn-item-3 .part2-ctn2-item6 {
    margin-top: 0.64rem;
  }
  .part2 .ctn-item-3 .part2-ctn2-item7 {
    margin-top: 0.41rem;
  }
  .part2 .ctn-item-3 .part2-ctn2-item8 {
    margin-top: 0.84rem;
  }
  .part2 .ctn-item-3 .part2-ctn2-item9 {
    margin-top: 0.31rem;
  }
  .part2 .ctn-item-3 .step-ctn {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    width: 7rem;
  }
  .part2 .ctn-item-3 .step-ctn .btn-prev-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/prev_step3.png') center / contain no-repeat;
    opacity: 1;
    pointer-events: auto;
  }
  .part2 .ctn-item-3 .step-ctn .btn-next-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/next_step3.png') center / contain no-repeat;
  }
  .part2 .ctn-item-4 .title {
    width: 3.82rem !important;
    height: 0.74rem !important;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/title4.png') center / contain no-repeat !important;
  }
  .part2 .ctn-item-4 .ctn-item4-info {
    margin: 0 auto;
    margin-top: 5.8rem;
    width: 7rem;
  }
  .part2 .ctn-item-4 .ctn-item4-info img {
    width: 7rem !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .part2 .ctn-item-4 .part2-ctn2-item2 {
    margin-top: 0.67rem;
  }
  .part2 .ctn-item-4 .part2-ctn2-item3 {
    margin-top: 0.34rem;
  }
  .part2 .ctn-item-4 .part2-ctn2-item4 {
    margin-top: 1.11rem;
  }
  .part2 .ctn-item-4 .part2-ctn2-item5 {
    margin-top: 0.37rem;
  }
  .part2 .ctn-item-4 .part2-ctn2-item6 {
    margin-top: 1.07rem;
  }
  .part2 .ctn-item-4 .part2-ctn2-item7 {
    margin-top: 0.31rem;
  }
  .part2 .ctn-item-4 .part2-ctn2-item8 {
    margin-top: 1.21rem;
  }
  .part2 .ctn-item-4 .part2-ctn2-item9 {
    margin-top: 0.34rem;
  }
  .part2 .ctn-item-4 .step-ctn {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    width: 7rem;
  }
  .part2 .ctn-item-4 .step-ctn .btn-prev-step {
    width: 2.8rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/prev_step4.png') center / contain no-repeat;
    opacity: 1;
    pointer-events: auto;
  }
  .part2 .ctn-item-4 .step-ctn .btn-next-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/next_step4.png') center / contain no-repeat;
  }
  .part2 .ctn-item-5 .title {
    width: 3.83rem !important;
    height: 0.74rem !important;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/title5.png') center / contain no-repeat !important;
  }
  .part2 .ctn-item-5 .ctn-item5-info {
    margin: 0 auto;
    margin-top: 5.8rem;
    width: 7rem;
  }
  .part2 .ctn-item-5 .ctn-item5-info img {
    width: 7rem !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .part2 .ctn-item-5 .part2-ctn2-item2 {
    margin-top: 0.89rem;
  }
  .part2 .ctn-item-5 .part2-ctn2-item3 {
    margin-top: 0.93rem;
  }
  .part2 .ctn-item-5 .part2-ctn2-item4 {
    margin-top: 1.22rem;
  }
  .part2 .ctn-item-5 .part2-ctn2-item5 {
    margin-top: 0.33rem;
  }
  .part2 .ctn-item-5 .part2-ctn2-item6 {
    margin-top: 1.12rem;
  }
  .part2 .ctn-item-5 .part2-ctn2-item7 {
    margin-top: 0.45rem;
  }
  .part2 .ctn-item-5 .step-ctn {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    width: 7rem;
  }
  .part2 .ctn-item-5 .step-ctn .btn-prev-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/prev_step5.png') center / contain no-repeat;
    opacity: 1;
    pointer-events: auto;
  }
  .part2 .ctn-item-5 .step-ctn .btn-next-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/next_step5.png') center / contain no-repeat;
  }
  .part2 .ctn-item-6 .title {
    width: 3.83rem !important;
    height: 0.74rem !important;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/title6.png') center / contain no-repeat !important;
  }
  .part2 .ctn-item-6 .ctn-item6-info {
    margin: 0 auto;
    margin-top: 5.8rem;
    width: 7rem;
  }
  .part2 .ctn-item-6 .ctn-item6-info img {
    width: 7rem !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .part2 .ctn-item-6 .part2-ctn2-item2 {
    margin-top: 0.75rem;
  }
  .part2 .ctn-item-6 .part2-ctn2-item3 {
    margin-top: 0.32rem;
  }
  .part2 .ctn-item-6 .part2-ctn2-item4 {
    margin-top: 0.69rem;
  }
  .part2 .ctn-item-6 .part2-ctn2-item5 {
    margin-top: 0.36rem;
  }
  .part2 .ctn-item-6 .part2-ctn2-item6 {
    margin-top: 0.99rem;
  }
  .part2 .ctn-item-6 .part2-ctn2-item7 {
    margin-top: 0.35rem;
  }
  .part2 .ctn-item-6 .step-ctn {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    width: 7rem;
  }
  .part2 .ctn-item-6 .step-ctn .btn-prev-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/prev_step6.png') center / contain no-repeat;
    opacity: 1;
    pointer-events: auto;
  }
  .part2 .ctn-item-6 .step-ctn .btn-next-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/next_step6.png') center / contain no-repeat;
  }
  .part2 .ctn-item-7 .title {
    width: 3.83rem !important;
    height: 0.74rem !important;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/title7.png') center / contain no-repeat !important;
  }
  .part2 .ctn-item-7 .ctn-item7-info {
    margin: 0 auto;
    margin-top: 5.8rem;
    width: 7rem;
  }
  .part2 .ctn-item-7 .ctn-item7-info img {
    width: 7rem !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .part2 .ctn-item-7 .part2-ctn2-item2 {
    margin-top: 0.75rem;
  }
  .part2 .ctn-item-7 .part2-ctn2-item3 {
    margin-top: 0.8rem;
  }
  .part2 .ctn-item-7 .part2-ctn2-item4 {
    margin-top: 0.38rem;
  }
  .part2 .ctn-item-7 .part2-ctn2-item5 {
    margin-top: 0.73rem;
  }
  .part2 .ctn-item-7 .part2-ctn2-item6 {
    margin-top: 0.26rem;
  }
  .part2 .ctn-item-7 .step-ctn {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    width: 7rem;
  }
  .part2 .ctn-item-7 .step-ctn .btn-prev-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/prev_step7.png') center / contain no-repeat;
    opacity: 1;
    pointer-events: auto;
  }
  .part2 .ctn-item-7 .step-ctn .btn-next-step {
    width: 2.7rem;
    height: 0.61rem;
    background: url('https://game.gtimg.cn/images/rm/cp/a20260527xsz/m/part2/next_step7.png') center / contain no-repeat;
  }
}
