.swiper {
    height: 100vh;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: grid!important;
    justify-items: center;
    align-items: center;
}

.banner .banner-content {
    display: grid;
    width: fit-content;
    height: fit-content;
    align-items: center;
    align-content: center;
    justify-items: start;
}

.banner .banner-content h1 {
    color: white;
    font-size: 30pt;
    font-weight: 600;
}

.banner .banner-content p {
    color: white;
    margin-top: 15px;
}

.banner .banner-content a {
    background: black;
    color: white;
    border-radius: 50px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 15px;
}
.banner .banner-content a:hover{
    cursor: pointer;
}

.section h1{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: black;
}

.case-content{
    display: grid;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}
.case-box{
    display: flex;
    gap: 50px;
    padding: 10px 0px 10pt;
    box-sizing: border-box;
}


.case-box img{
    width: 100%; /* 确保图片宽度适应盒子 */
    position: absolute; /* 使图片绝对定位 */
    top: 0; /* 初始位置 */
    cursor: pointer;
    left: 0; /* 初始位置 */
}
.case-item-box{
    display: grid;
    width: 350px;
    gap: 15px;
}

.case-box>.case-item{
    width: 450px;
    height: 580px;
}
.case-item-box>.case-item{
    width: 350px;
    height: 280px;
}
.case-item::-webkit-scrollbar {
    display: none;
}
.case-item{
    position: relative;
    overflow: hidden;
}
.case-item .title{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 10px 10px;
    background: rgba(100, 98, 98, 0.8);
    color: white;
}