.section1{
  width: 100%;
  height: 48.4vw;
  background: url("../imgs/page1.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}
.section1 .age-appropriate{
  position: absolute;
  top: 3vw;
  right: 4vw;
  z-index: 999;
}
.section1 .aside{
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 220px;
  height: 490px;
  background: url("../imgs/aside-bg.png") no-repeat;
  background-size: 100% 100%;
  z-index: 3;
}
.aside .aside-content{
  width: 180px;
  height: 450px;
  padding: 10px 0;
  box-sizing: border-box;
  position: absolute;
  left: 22px;
  top: 20px;
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: center;
}
.aside-content img{
  width: 78%;
  cursor: pointer;
}
.aside-content .download-item{
  width: auto;
}
.aside .operate{
  width: 36px;
  height: 60px;
  background-color: #70d6b7;
  position: absolute;
  left: 14px;
  top: 290px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.aside .aside-button{
  width: auto;
  height: 37px;
}
.section2{
  width: 100%;
  height: 49.78vw;
  background: url("../imgs/page2.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.section2 .title{
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 9;
  position: absolute;
  top: 9vw;
  left: 1vw;
  font-weight: 700;
}
.section2 .active{
  position: relative;
  color: #3b9946;
}
.section2 .menu{
  height: 40px;
  padding: 0 10px;
}
/* .menu::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #fecd52;
  border-radius: 2px;
  transition: width 0.5s ease-in-out;
}
.menu:hover::after{
  width: 100%;
}
.active::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fecd52;
} */
.section2 .hero{
  /* width: 30vw; */
  height: 26vw;
  position: absolute;
  top: 18vw;
  left: 13vw;
}
.section2 .pagination{
  position: absolute;
  left: 45vw;
  overflow: hidden;
  padding: 6px;
  top: 61%;
  transform: translateY(-50%);
  height: 16vw;
  min-height: 340px;
}
.pagination .pagination-content{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.1vw;
  transition: all .5s ease-in-out;
  position: relative;
  width: 120px;
}
.pagination-content img:nth-child(1){
  text-align: center;
  line-height: 120px;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  left: -20px;
}
.pagination-content img:nth-child(2){
  text-align: center;
  line-height: 120px;
  cursor: pointer;
  border-radius: 50%;
}
.pagination-content img:nth-child(3){
  text-align: center;
  line-height: 120px;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  left: -20px;
}
.section2 .page-number{
  position: absolute;
  top: 39vw;
  left: 17vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 10vw;
}
.page-number .number{
  color: #9da89b;
  font-size: 24px;
  font-weight: 700;
}
.page-number .prev,.next{
  cursor: pointer;
  height: 24px;
}
.section2 .right-content{
  position: absolute;
  top: 14vw;
  left: 56vw;
  width: 30vw;
  height: 30vw;
}
.right-content .desc{
  position: absolute;
  top: 1vw;
}
.right-content .factions{
  margin-top: 20px;
  display: table;
  position: absolute;
  top: 17vw;
}
.factions img{
  height: auto;
  margin: 0 28px;
  vertical-align: top;
  cursor: pointer;
}
.factions .line{
  position: relative;
  border: none;
  height: 2px;
  background-color: #cdc4ab;
  margin: 20px 0;
}
.line::before,
  .line::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 8px;
    height: 8px;
    background-color: #cdc4ab;
    border-radius: 50%;
  }

  .line::before {
    left: -4px;
  }

  .line::after {
    right: -4px;
  }
.section3{
  width: 100%;
  height: 46.6vw;
  background: url("../imgs/page3.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.page3{
  width: 56vw;
  height: 36vw;
  overflow: hidden;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.page3 .swiper-wrapper{
  width: 56vw;
  height: 32vw;
}
.swiper-wrapper .swiper-slide{
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  transition: 300ms;
  transform: scale(0.85);
}
.swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.swiper-slide.swiper-slide-active{
  transform: scale(1);
}
.swiper-pagination .pagination1{
  z-index: 999;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  width: 30px;
  height: 30px;
  border: 3px solid #8e7729;
  color: #8e7729;
  border-radius: 0;
  transform: rotate(45deg);
  margin: 0 15px !important;
  background-color: transparent !important;
  background-blend-mode: overlay;
}
.swiper-pagination-bullet-active{
  border: 3px solid #b46b38 !important;
  background-color: transparent !important;
  color: #b46b38 !important;
  background-blend-mode: overlay;
}
.section5{
  position: relative;
}
.section5 .follow{
  width: 100%;
  height: 42.5vw;
  background: url("../imgs/page4.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
}
.follow .code-content{
  width: 60vw;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 11vw;
  display: flex;
  justify-content: space-around;
}
.code-content .code-item{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.code-item .code-bg{
  width: 10vw;
  height: 11vw;
  background: url(../imgs/qrcode-bg.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.code-item .channel{
  font-size: 20px;
  font-weight: 700;
}
.section5 .footer{
  background-color: #122c2d;
  color: #597874;
  box-sizing: border-box;
  padding: 1.5vw 15vw;
  display: flex;
  /* justify-content: space-around; */
}
.footer p{
  color: #a6bbbb;
}
.footer a{
  color: #4b5a4b;
}
.footer p{
  padding: 3px 0;
  text-align: left;
}
.footer .tips{
  color: #7b9491;
}
.mask{
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
}
.mask .redemption-content{
  width: 860px;
  height: 533px;
  background: url("../imgs/redemption-bg.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mask1{
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: none;
  overflow: hidden;
}
.mask1 .redemption-content{
  width: 860px;
  height: 533px;
  background: url("../imgs/redemption-bg.png") no-repeat;
  background-size: 100% 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #86948a;
  line-height: 32px;
  z-index: 99;
}
.redemption-content .age-title{
  position: absolute;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  top: 51px;
  left: 50%;
  transform: translateX(-67%);
  letter-spacing: 5px;
}
.redemption-content .close-mask{
  width: 60px;
  position: absolute;
  right: 30px;
  top: 4px;
  cursor: pointer;
  z-index: 999;
}
.redemption-content .code-item{
  font-size: 24px;
  font-weight: 700;
  color: #838a85;
}
.age-content{
  font-size: 16px;
  width: 79%;
  position: absolute;
  left: 46%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  height: 13vw;
}
.backToTop {
  position: absolute;
  bottom: 0;
  text-decoration: underline;
}
.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.close-redemption{
  width: 2vw;
  height: 2vw;
  position: absolute;
  right: 1.7vw;
  top: 0.5vw;
  cursor: pointer;
}
table {
  border-collapse: collapse;
}

th, td {
  border: 1px solid black;
  padding: 3px 1px;
  text-align: center;
  font-size: 24px;
}

th {
  background-color: #f2f2f2;
}
.gift-content{
  width: 86%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
.gift-content-item{
  display: flex;
  justify-content: space-between;
  width: 86%;
  align-items: center;
  margin: 25px 0;
}
.gift-content-item-title{
  color: #77877a;
  font-weight: 700;
  font-size: 24px;
}
.gift-content-item-content{
  color: #77877a;
}
.coppy-button{
  height: 40px;
  cursor: pointer;
}
.message-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  display: none;
  z-index: 999;
  color: #fff;
}