/* Banner样式 */
.banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.banner .swiper {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    position: relative;
}

.banner .swiper-slide .bg {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper-slide .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.banner .swiper-slide .text .t {
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner .swiper-pagination {
    bottom: 30px !important;
}

.statement_content,
.privacy_content {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px 40px;
}

.statement_content .title,
.privacy_content .title {
    text-align: center;
    margin-bottom: 60px;
}

.statement_content .title h1,
.privacy_content .title h1 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.statement_content .content,
.privacy_content .content {
    line-height: 2;
    color: #666;
}

.statement_content .content p,
.privacy_content .content p {
    margin-bottom: 20px;
}

.statement_content .content h2,
.privacy_content .content h2 {
    font-size: 32px;
    color: #333;
    margin: 40px 0 20px;
    font-weight: 600;
}

.statement_content .content h3,
.privacy_content .content h3 {
    font-size: 24px;
    color: #333;
    margin: 30px 0 15px;
    font-weight: 500;
}

.statement_content .content ul,
.privacy_content .content ul {
    list-style: disc;
    padding-left: 40px;
    margin: 20px 0;
}

.statement_content .content ol,
.privacy_content .content ol {
    list-style: decimal;
    padding-left: 40px;
    margin: 20px 0;
}

.statement_content .content li,
.privacy_content .content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .banner {
        height: 300px;
    }
    
    .banner .swiper-slide .text .t {
        font-size: 32px;
    }
    
    .banner .swiper-pagination {
        bottom: 15px !important;
    }
    
    .statement_content,
    .privacy_content {
        margin: 60px auto;
        padding: 30px 20px;
    }
    
    .statement_content .title,
    .privacy_content .title {
        margin-bottom: 40px;
    }
    
    .statement_content .title h1,
    .privacy_content .title h1 {
        font-size: 32px;
    }
    
    .statement_content .content h2,
    .privacy_content .content h2 {
        font-size: 24px;
    }
    
    .statement_content .content h3,
    .privacy_content .content h3 {
        font-size: 20px;
    }
}

