
/* FAQ 独立样式，不污染网站全局 */
.dizik-faq-wrap {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.dizik-faq-wrap h1 {
    color: #2e967F;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.dizik-faq-wrap h2 {
    color: #2e967F;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
}

.dizik-faq-wrap .faq-accordion {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.dizik-faq-wrap .faq-question {
    background: #f9f9f9;
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.dizik-faq-wrap .faq-question:hover {
    background: #f0f8f8;
}

.dizik-faq-wrap .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 16px;
}

.dizik-faq-wrap .faq-answer.show {
    padding: 15px 20px;
    max-height: 600px;
}

.dizik-faq-wrap .faq-icon {
    color: #2e967F;
    font-size: 1.2rem;
}

.dizik-faq-wrap .geo-note {
    color: #2e967F;
    font-weight: 500;
    font-size: 16px;
}

.dizik-faq-wrap .faq-answer ul,
.dizik-faq-wrap .faq-answer ol {
    margin-top: 10px;
    margin-left: 20px;
    font-size: 16px;
}

.dizik-faq-wrap * {
    box-sizing: border-box;
    max-width: 100% !important;
}
