.faq-main-wrap {
    max-width: 1366px;
    padding-top: 65px;
    margin: 0 auto;

}

.faq-title-bar {
    background: linear-gradient(90deg, #b700ff 0%, #a6a1ff 100%);
    color: #fff;
    padding: 32px 24px 24px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.6rem;
    font-weight: bold;
}

.faq-title-bar h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.faq-title-bar small {
    font-size: 1.1rem;
    opacity: 0.85;
}

.faq-search-bar {
    margin: 24px 0 16px 0;
    display: flex;
    justify-content: center;
}

.faq-search-bar input {
    width: 320px;
    max-width: 80vw;
    padding: 12px 16px;
    border: 1px solid #eee;
    border-radius: 24px 0 0 24px;
    outline: none;
    font-size: 1rem;
}

.faq-search-bar button {
    background: #b700ff;
    color: #fff;
    border: none;
    border-radius: 0 24px 24px 0;
    padding: 12px 20px;
    font-size: 1.2rem;
    cursor: pointer;
}

.faq-hot-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    margin-bottom: 32px;
    padding-bottom: 8px;
}

.faq-hot-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #eee;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #b700ff;
    min-width: 220px;
    white-space: nowrap;
    border: 1px solid #f5e6ff;
}

.faq-hot-item i {
    color: #ff3b3b;
    margin-right: 8px;
}

.faq-content-wrap {
    display: flex;
    gap: 24px;
}

.faq-side-menu {
    width: 280px;
    min-width: 180px;
    background: #faf9ff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #eee;
    padding: 16px 0;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.faq-side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-side-menu li {
    margin: 0;
}

.faq-side-menu a {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #333;
    font-size: 1.08rem;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}

.faq-side-menu a.active,
.faq-side-menu a:hover {
    background: #f3e6ff;
    border-left: 4px solid #b700ff;
    color: #b700ff;
}

.faq-side-menu i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.faq-accordion {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #eee;
    padding: 24px 0;
}

.faq-accordion .accordion-item {
    border-bottom: 1px solid #f2f2f2;
}

.faq-accordion .accordion-header {
    padding: 16px 32px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-accordion .accordion-body {
    padding: 16px 32px;
    background: #f8eaff;
    color: #333;
    font-size: 1rem;
    display: none;
}

.faq-accordion .accordion-item.active .accordion-body {
    display: block;
}

.faq-accordion .accordion-item.active .accordion-header {
    color: #b700ff;
}

/* FAQ 內容用的大黑圓點（取代特殊符號  /  避免顯示成方塊） */
.faq-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #111;
    margin: 0 10px 0 2px;
    vertical-align: middle;
    transform: translateY(-1px);
}

.faq-customer-tip {
    background: #f8eaff;
    color: #b700ff;
    border-radius: 16px;
    padding: 28px 0;
    text-align: center;
    font-size: 1.2rem;
    margin: 36px 0 0 0;
    font-weight: 500;
}

@media (max-width: 900px) {
    .faq-content-wrap {
        flex-direction: column;
    }

    .faq-side-menu {
        width: 100%;
        min-width: 0;
        margin-bottom: 12px;
    }

    .faq-accordion {
        padding: 8px 0;
    }
}