@keyframes simpleZoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

#LegoMembers {
    background: url(https://wwp-static.wenweipo.com/img/special/legoMembers/bg.png) no-repeat;
    background-size: 100% 100%;
    padding-top: 2.1%;
    padding-bottom: 5%;
}
#module01 {
    margin-bottom: 0;
}
#module02 {
    display: block;
    aspect-ratio: 1200/850;
    padding: 1.9% 1% 0;
    margin-bottom: 0;
    background: url(https://wwp-static.wenweipo.com/img/special/legoMembers/sub-bg.png) no-repeat;
    background-size: 100% 100%;
}
.member-show {
    display: flex;
    justify-content: space-between;
    gap: 1.5%;
}
.big-cover {
    flex: none;
    width: 73.15%;
    overflow: hidden;
}
.big-cover > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    animation: simpleZoom 3s ease-out forwards;
    transform-origin: center center;
}
.introduce {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #F9FDFE;
}
.desc {
    width: fit-content;
    padding-bottom: 0.2em;
    padding-right: 0.5em;
    margin-bottom: 1em;
    font-weight: 800;
    font-size: clamp(16px, 2.8vw, 30px);
    line-height: 1.5;
    border-bottom: 2px solid #ffffff;
}
.summrize {
    font-size: clamp(14px, 1.7vw, 20px);
    line-height: 2.5em;
    text-indent: 2em;
}
.member-list {
    margin-top: .8em;
}
.group-list {
    display: flex;
    justify-content: space-around;
    padding: 0 2%;
    margin-bottom: .5em;
}
.group {
    font-weight: 800;
    font-size: clamp(16px, 2vw, 30px);
    color: #0B74BC;
    line-height: 2;
    cursor: pointer;
}
.group.active {
    color: #ffffff;
}
.list-swiper {
    position: relative;
}
.list-swiper .swiper {
    width: 92%;
    height: 18.16%;
    margin: 0 auto;
    overflow: hidden;
}
.list-swiper .swiper .swiper-slide {
    cursor: pointer;
    aspect-ratio: 16 / 9;
}
.list-swiper .swiper-slide img {
    opacity: 0;
    transition: opacity 0.7s ease;
}
.list-swiper .swiper-slide img.loaded {
    opacity: 1;
}
.list-swiper .swiper-button-prev,
.list-swiper .swiper-button-next {
    margin-top: unset;
    transform: translateY(-50%);
}
.list-swiper .swiper-button-prev:after,
.list-swiper .swiper-button-next:after {
    display: none;
}

@media (max-width: 768px) {
    #module02 {
        aspect-ratio: unset;
        padding: 2%;
    }
    .member-show {
       flex-direction: column;
       gap: unset;
    }
    .big-cover {
        width: 100%;
        margin-bottom: .8em;
    }
    .desc {
        font-size: 4vw;
        margin-bottom: 0.5em;
    }
    .summrize {
        font-size: 2.5vw;
        line-height: 1.5em;
    }
    .group {
        font-size: 3vw;
    }
}
@media (max-width: 578px) {
    .summrize {
        font-size: 3vw;
    }
}
