/* FAQ Art Styles */

/* 主容器样式 */
.FAQT {
    width: 60%;
    margin: 0 auto;
    padding: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* 标题样式 */
.pr {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 20px 0;
    text-align: center;
    padding: 0 20px;
}

/* FAQ容器样式 */
.FAQdiv {
    /* background-color: #f9f9f9; */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 分类标题样式 */
.category h2 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

.category-btn {
    background: none;
    border: none;
    color: #3498db;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.category-btn:hover {
    color: #2980b9;
}

/* 分类内容样式 */
.category-content {
    margin-left: 20px;
    padding: 10px 0;
}

/* FAQ项目样式 */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* FAQ问题样式 */
.faq-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-btn:hover {
    color: #3498db;
}

/* FAQ答案样式 */
.faq-ul {
    list-style: none;
    padding: 10px 0 0 20px;
    margin: 0;
    color: #555;
    font-size: 15px;
}

.faq-ul li {
    margin-bottom: 8px;
    position: relative;
}

.faq-ul li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* @media (max-width: 768px) - faq article moved to media.css */

/* 动画效果 */
.faq-ul {
    transition: all 0.3s ease;
}

/* 按钮加号/减号样式 */
.category-btn:before,
.faq-btn:before {
    margin-right: 10px;
    font-weight: bold;
}