
    .furniglobe-faq-v2 {
        max-width: 850px;
        margin: 30px auto;
        font-family: 'Helvetica Neue', Arial, sans-serif;
        background: #ffffff;
        padding: 10px;
    }
    .faq-main-title {
        text-align: center;
        color: #333;
        font-size: 28px;
        margin-bottom: 30px;
        font-weight: bold;
    }
    .faq-box {
        border-bottom: 1px solid #f0f0f0;
    }
    .faq-btn {
        width: 100%;
        padding: 22px;
        background: none;
        border: none;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        transition: 0.3s;
    }
    .faq-btn:hover {
        color: #DAB038;
    }
    .faq-symbol {
        color: #DAB038;
        font-size: 22px;
        font-weight: 300;
        transition: transform 0.3s;
    }
    .faq-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        background: #fcfcfc;
    }
    .faq-inner-text {
        padding: 0 22px 22px 22px;
        font-size: 16px; /* 严格执行16px */
        line-height: 1.8;
        color: #555;
    }
    .faq-box.active .faq-panel {
        max-height: 600px;
    }
    .faq-box.active .faq-symbol {
        transform: rotate(45deg);
    }
