/* FAQ页面样式 */
.no-wrap-text {
    white-space: nowrap;
}

.focus-section {
    padding-top: 10px;
    padding-bottom: 5px;
}

.focus-section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.5;
}

.faq-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.faqkv-container {
    height: 500px;
    max-width: 2300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.faqkv-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.faqkv-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    justify-content: flex-end;
    align-items: flex-start;
}

.faqkv-maintitle {
    color: #ffffff;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 0 0.75rem 0;
    max-width: 50%;
    line-height: 1.2;
    white-space: normal;
}

.faq-question {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    text-align: left;
    outline: none;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1.25rem;
}

.faq-question.active .faq-answer {
    max-height: 1000px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.6s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

html {
    scroll-behavior: smooth;
}




.faq-tip {
    margin: 40px 0;
}

.tip-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #165DFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tip-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(22, 93, 255, 0.15);
}

.tip-icon .bulb-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(22, 93, 255, 0.2));
}
.tip-content .tip-title {
    color: #165DFF;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
}

.tip-content .tip-text {
    color: #334155;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}



@media (max-width: 768px) {
    .tip-container {
        padding: 18px;
        gap: 16px;
    }

    .tip-icon {
        width: 44px;
        height: 44px;
    }

    .tip-icon .bulb-img {
        width: 28px;
        height: 28px;
    }

    .tip-content .tip-title {
        font-size: 16px;
    }

    .tip-content .tip-text {
        font-size: 15px;
    }
}