/* 帮助中心页面样式 */

/* 导航栏样式调整 */
.navbar {
    background-color: #1890ff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navbar-brand .logo a {
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
}

.navbar-menu .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu .nav-list li a {
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.navbar-menu .nav-list li a:hover {
    opacity: 0.8;
}

.navbar-end {
    margin-left: auto;
}

.navbar-end .navbar-item {
    color: #fff;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 15px;
    transition: opacity 0.3s;
}

.navbar-end .navbar-item:hover {
    opacity: 0.8;
}

.navbar-end .navbar-item i {
    margin-right: 8px;
}

/* 页面标题区域 */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.page-header p {
    font-size: 1rem;
    color: #666;
}

/* FAQ部分 */
.faq-section {
    padding: 40px 0 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f7ff;
}

.faq-question h3 {
    font-size: 16px;
    margin: 0;
    color: #333;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* 联系支持区域 */
.contact-support {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.contact-support h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-support p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.support-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 150px;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.support-option i {
    font-size: 24px;
    color: #1890ff;
    margin-bottom: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .support-options {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .support-option {
        width: 100%;
        max-width: 300px;
    }
}