/* FAQ页面专用样式 */
/* Banner区域样式 - 与list保持一致 */
.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-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    color: #fff;
    animation: slideInUp 0.8s ease 0.2s both;
}

.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 svg {
    width: 20px;
    height: 20px;
}

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

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

.home-banner .consult-btn .consult-icon {
    width: 30px;
    height: 30px;
}

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

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

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

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

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

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

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

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

    .home-banner .box-slide-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

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

    .home-banner .consult-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
/* 面包屑 */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #1366EE;
}

.breadcrumb-item.active {
    color: #999;
}

/* FAQ主区域 */
.faq-section {
    padding: 60px 0 80px;
}

.faq-page-title {
    font-size: 32px;
    color: #212121;
    margin-bottom: 10px;
    text-align: center;
}

.faq-page-subtitle {
    font-size: 16px;
    color: #888;
    text-align: center;
    margin-bottom: 50px;
}

/* 分类标签 */
.faq-category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.faq-cat-btn {
    padding: 8px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
    border-color: #1366EE;
    background: #1366EE;
    color: #fff;
}

/* FAQ列表 */
.faq-content-wrapper {
    margin-bottom: 40px;
}

.faq-group {
    margin-bottom: 40px;
}

.faq-group-title {
    font-size: 22px;
    color: #212121;
    padding-bottom: 12px;
    border-bottom: 3px solid #1366EE;
    margin-bottom: 20px;
    display: inline-block;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f7faff;
}

.faq-question h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.6;
}

.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #1366EE;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.3s;
    margin-left: 16px;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer-inner p {
    margin-bottom: 10px;
}

.faq-answer-inner ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.faq-answer-inner li {
    margin-bottom: 6px;
}

.faq-answer-inner strong {
    color: #333;
}

.faq-answer-inner a {
    color: #1366EE;
    font-weight: 600;
}

/* 底部CTA */
.faq-cta {
    background: linear-gradient(135deg, #1366EE 0%, #0d4bc4 100%);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 60px;
    color: #fff;
}

.faq-cta h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
    text-transform: none;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 30px;
}

.faq-cta .btn-cta {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: #1366EE;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.faq-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #0d4bc4;
}

/* 响应式 */
@media (max-width: 768px) {
    .faq-page-title {
        font-size: 24px;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-answer-inner {
        padding: 0 16px 16px;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .faq-cta h2 {
        font-size: 22px;
    }

    .faq-group-title {
        font-size: 18px;
    }
}
