.indexPage {
  background: url(../../image/en-us/index/index.jpg) top center no-repeat;
  background-size: cover;
  width: 100%;
  height: 31.71rem;
  position: relative;
}

.header {
  width: 17.32rem;
  display: flex;
  margin: 0 auto;
  padding-top: 0.56rem;
  justify-content: space-between;
  align-items: flex-start;
}


.header img {
  width: 3.09rem;
  height: 1.55rem;
}


.header .head-r {
  width: 4.25rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  /* align-items: center; */
}

.header .head-r .enter {
  position: absolute;
  right: 0;

}

.header .head-r .enter a {
  display: inline-block;
  width: 2.71rem;
  height: 0.89rem;
  background: url(../../image/en-us/index/enter.png) center no-repeat;
  background-size: cover;
}

.select {
  position: absolute;
  z-index: 10;
  width: 1.3rem;
  text-align: center;
}

.select>a {
  margin: 0.2rem 0;
  display: block;
  text-decoration: underline;
  /* 添加下划线 */
  text-decoration-color: #cda560;
  text-underline-offset: 0.3em;
  cursor: pointer;
  background: -webkit-linear-gradient(top, #ffe7b3, #cda560);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.3rem;
  transition: all 0.5s ease;
  font-weight: bold;
}

.select>a:first-child {
  display: block;
}

.select>a:not(:first-child) {
  display: none;
  transition: all 0.5s ease;
  opacity: 0;
}

.select.expanded>a:not(:first-child) {
  /* 展开时显示其他选项 */
  display: block;
  opacity: 1;
}

.select.expanded>a:first-child {
  border-bottom: none;
}

.main {
  width: 12rem;
  margin: 5.7rem auto 0;
}

.down {
  width: 7.47rem;
  height: 2.61rem;
  margin: 0 auto;
  background: url(../../image/en-us/index/down-bg.png) center no-repeat;
  background-size: cover;
}

.down-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0.5rem;
}

.down img {
  width: 1.49rem;
  height: 1.86rem;
}

.down .download {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.08rem;
}

.down .download a {
  display: inline-block;
  width: 1.49rem;
  height: 0.64rem;
  background: url(../../image/en-us/index/down-download.png) no-repeat;
  background-size: cover;
}

.down .download a:nth-child(2) {
  background-position-y: -0.64rem;
}

.partOne {
  width: 100%;
  height: 5.36rem;
  display: flex;
  margin: 1.5rem auto 0.8rem;
  align-items: center;
}

.left-section {
  width: 6.2rem;
}

.character-name {
  text-align: left;
  height: 2.44rem;
}

.character-name img {
  max-width: 100%;
  width: 100%;

  /* object-fit: contain; */
}

.character-avatars {
  position: relative;
  margin-top: 0.1rem;
}

.avatars-container {
  display: flex;
  padding: 0 0.5rem;
  justify-content: space-between;
}

.avatar {
  /* flex: 0 0 calc(20% - 8px); */
  cursor: pointer;
  transition: all 0.8s ease;
  opacity: 0.5;
}

.avatar:hover {
  transform: scale(1.12);
  opacity: 1;
}



.character-image img.shifted {
  transform: translateX(0.51rem);
}

.avatar.active {
  transform: scale(1.12);
  opacity: 1;

}

.avatar img {
  width: 100%;
  height: 0.89rem;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.39rem;
  height: 0.51rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;


}

.arrow:hover {
  -webkit-filter: brightness(120%);
  -ms-filter: brightness(120%);
  -o-filter: brightness(120%);
  -moz-filter: brightness(120%);
}

.arrow.left {
  left: 0px;
}

.arrow.right {
  right: 0px;
}

.right-section {
  width: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.character-image img {
  transition: transform 1.2s;
  width: 5.3rem;
}


.partTwo {
  height: 5.2rem;
}



.games-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0 1.83rem;
  box-sizing: border-box;
  position: relative;
}

.games-swiper .swiper-slide {
  width: 33.33%;
  height: auto;
  min-height: 4.7rem;
  transition: transform 0.7s cubic-bezier(0.25, 0, 0.1, 1), opacity 0.5s ease;
  transform: scale(0.8);
  opacity: 0.6;
  z-index: 1;
}

.games-swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 20;
}

.games-swiper .swiper-slide-prev {
  transform-origin: right center;
  transform: scale(0.8) translateX(76%);
  z-index: 10;
  opacity: 0.6;
}

.games-swiper .swiper-slide-prev img {
  clip-path: inset(0 20% 0 0);
}

.games-swiper .swiper-slide-next {
  transform-origin: left center;
  transform: scale(0.8) translateX(-76%);
  z-index: 10;
  opacity: 0.6;
}

.games-swiper .swiper-slide-next img {
  clip-path: inset(0 0 0 20%);
}



.games-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Swiper 分页指示器样式 */
.games-swiper .games-swiper-pagination {
  position: absolute;
  /* bottom:0rem; */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.12rem;
}

.games-swiper .games-swiper-pagination .swiper-pagination-bullet {
  width: 0.16rem;
  height: 0.16rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.games-swiper .games-swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}


.partThree {
  display: flex;
  height: 4.6rem;
  margin-top: 1rem;
}

.news-swiper {
  width: 7.22rem;
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.news-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-swiper .swiper-pagination {
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.12rem;
}

.news-swiper .swiper-pagination-bullet {
  background: #ffffff;
  width: 0.13rem;
  height: 0.13rem;
  opacity: 1;
}

.news-swiper .swiper-pagination-bullet-active {
  background: #97d797;
}

.news-tab {
  width: 4.8rem;
  background: url(../../image/en-us/index/partThree-bg.png) no-repeat;
  background-size: cover;
}

.tab-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #536853;
  width: 4.21rem;
  margin: 0.15rem auto 0;
}

.tab-btn {
  padding: 0 0.20rem;
  line-height: 0.48rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.18rem;
  color: #fff;
  transition: all 0.3s ease;
  font-weight: bold;
}

.tab-btn.active {
  color: #97d797;
}




.tab-content {
  width: 4.21rem;
  margin: 0 auto;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-pane.active {
  display: block;
}

.news-title {
  background: #536853;
  width: 100%;
  height: 0.55rem;
  margin: 0.25rem auto 0.12rem;
}

.news-title p {
  text-align: center;
  line-height: 0.55rem;
  color: #ffffff;
  font-size: 0.16rem;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 2.5rem;
  overflow: hidden;
  /* overflow-y: auto;
  scrollbar-width: none; */
}

.more {
  text-align: center;
}

.more a {
  color: #97d797;
  font-size: 0.18rem;
  font-weight: bold;
}




.news-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #bdbdbd;
}

.news-list li a p {
  font-size: 0.14rem;

  line-height: 0.35rem;
}

.news-list li a p:first-child {
  width: 3.2rem;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list li a:hover {
  color: #97d797;
}
.w1110 {
    width: 1110px;
    margin: 0 auto;
    position: relative;
}

.footer {
    color: #fff;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 1.5rem;
    background: #000;
}
.footer .fnav a {
    color: #f2f2f2;
    margin: 0 10px;
}
.footer .fnav a:first-child {
    margin-left: 0;
}
.footer .flogo {
    width: 255px;
    height: 98px;
    float: left;
    margin-top: 30px;
}
.footer .finfo {
    width: 768px;
    float: left;
    margin-top: 25px;
    line-height: 28px;
    margin-left: 20px;
}
.footer .finfo p {
    font-size: 12px;
}
.footer .finfo p a {
    color: #fff;
}
.footer .finfo p a:hover {
    color: #fff;
}
.footer .ylogo {
    position: absolute;
    top: 57px;
    right: 270px;
}
.footer .ylogo img {
    width: 160px;
    height: 27px;
}
