.home-banner {
    height: 600px;
}

.home-banner .swiper-slide {
    height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.home-banner .swiper-slide::before {
    display: none;
}

.home-banner .container.banner-container {
    height: auto;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-banner .box-slider-text {
    max-width: 800px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.home-banner .box-slide-title {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    animation: slideInUp 0.8s ease;
}

.home-banner .box-slide-sub-title {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 70px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    animation: slideInUp 1s ease;
}

.home-banner .box-slide-description {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
    animation: slideInUp 1.2s ease;
}

/* Banner按钮组 */
.home-banner .banner-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    animation: slideInUp 0.8s ease 0.4s both;
}

.home-banner .banner-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-banner .banner-buttons .btn img {
    width: 30px;
    height: 30px;
}

/* 点击咨询按钮 - 蓝色实心 */
.home-banner .banner-buttons .btn-consult {
    background: #1366EE;
    color: #fff;
    border: 2px solid #1366EE;
    box-shadow: 0 4px 15px rgba(19, 102, 238, 0.4);
}

.home-banner .banner-buttons .btn-consult:hover {
    background: #0d4bb5;
    border-color: #0d4bb5;
    box-shadow: 0 6px 20px rgba(19, 102, 238, 0.5);
    transform: translateY(-2px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 991px) {
    .home-banner {
        height: 400px;
    }

    .home-banner .swiper-slide {
        height: 400px;
    }

    .home-banner .box-slide-title,
    .home-banner .box-slide-sub-title {
        font-size: 48px;
    }

    .home-banner .box-slide-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .home-banner {
        height: 300px;
    }

    .home-banner .swiper-slide {
        height: 300px;
    }

    .home-banner .box-slide-title,
    .home-banner .box-slide-sub-title {
        font-size: 36px;
    }

    .home-banner .box-slide-description {
        font-size: 14px;
    }
}

/* ========== 第二部分：视觉美化 (卡片风格) ========== */
/* 1. 整体容器：增加呼吸感 */
.main-container {
    background: #f5f7fa;
    padding: 40px 0;
}

/* 卡片风格 */
.content-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

/* 标题蓝条 */
h3 {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* 轮播图与遮罩效果 */
.mySwiper2 {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.mySwiper {
    height: 110px;
    margin-top: 15px;
}

.mySwiper .swiper-slide {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

/* 遮罩层：默认全遮盖 */
.mySwiper .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

/* 选中状态：移除遮罩，高亮边框 */
.mySwiper .swiper-slide.swiper-slide-thumb-active::after {
    background: rgba(255, 255, 255, 0);
}

.mySwiper .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式 */
@media (max-width: 991px) {
    .home-banner {
        height: 400px;
    }

    .mySwiper2 {
        height: 300px;
    }
}