.banner {
    position: relative;
    height: 30vh;
    width: 100%;
    overflow: hidden;
    background: -webkit-linear-gradient(240deg, #f1fdf6, #f1fdf9, #f1f7fd); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(240deg, #f1fdf6, #f1fdf9, #f1f7fd); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.banner .title{
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff;
    font-size: clamp(1rem, 2vw,1.8rem);
}
.banner .title>div{
    display: inline-block;
    padding: 15px 30px;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.22);
}
.banner .title>div >span{
    display: block;
    font-size: clamp(0.8rem, 2vw,1.3rem);
}
#item2 {
    width: 100%;
    position: absolute;
    left: 50px;
    top: 0;
}
#item3 {
    width: 30%;
    position: absolute;
    left: -50px;

}
.team-member-card .image{
    aspect-ratio: 1 / 1;
}
.team-member-card .content-wrapper .content .title{
    font-size: 1.3rem!important;
}
/* 样式容器 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: block;
    width: 40px; /* 设置宽度 */
    height: 40px; /* 设置高度 */
    line-height: 40px; /* 使文本垂直居中 */
    text-align: center; /* 使文本水平居中 */
    text-decoration: none;
    color: #007eca;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.pagination a:hover,
.pagination a:focus {
    background-color: #e9ecef;
    color: #007eca;
}

.pagination .active span {
    background-color: #d6e7f8;
    color: #000000;
}

.pagination .disabled span {
    color: #6c757d;
    cursor: not-allowed;
    background-color: #f8f9fa;
}
/*swiper*/
.swiper-container {
    width: 100%;
}
.main-swiper {
    height: 250px;
    overflow: hidden; /* Prevent overflow */
}

.swiper-slide img {
    width: 100%;
    height: auto;
}
.swiper-thumbs {
    height: 100px;
    margin-top: 10px;
}
.swiper-thumbs .swiper-slide {
    opacity: 0.4;
}
.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}
@media (max-width: 600px) {
    #item3 {
        width: 80%;
        position: absolute;
        right: -50px;
        top:100px;
    }
}