/* FAQ页面样式 */
.faq-search-box {
    margin-bottom: 30px;
    text-align: center;
}
.faq-search-box input {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}
.faq-search-box input:focus {
    border-color: #ff6229;
}
.faq-categories {
    margin-bottom: 30px;
    text-align: center;
}
.faq-cat {
    display: inline-block;
    padding: 8px 20px;
    margin: 5px;
    background: #f5f5f5;
    color: #666;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
.faq-cat:hover,
.faq-cat.active {
    background: #ff6229;
    color: #fff;
}
.faq-list-page {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item-page {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item-page:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.faq-question-page {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s;
}
.faq-question-page:hover {
    background: #fafafa;
}
.faq-question-page h3 {
    font-size: 16px;
    color: #1b2d3e;
    margin: 0;
    font-weight: 600;
    flex: 1;
}
.faq-icon {
    font-size: 24px;
    color: #ff6229;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item-page.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer-page {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item-page.active .faq-answer-page {
    max-height: 2000px;
}
.faq-answer-content {
    padding: 0 25px 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}
.faq-answer-content p {
    margin-bottom: 12px;
}
.faq-answer-content h4 {
    color: #1b2d3e;
    margin: 15px 0 10px;
    font-size: 15px;
}
.faq-answer-content ul, .faq-answer-content ol {
    margin: 10px 0;
    padding-left: 25px;
}
.faq-answer-content li {
    margin-bottom: 8px;
}
.faq-answer-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 10px 0;
}
/* 首页FAQ样式 */
.faq-list-home {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item-home {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}
.faq-question-home {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.faq-question-home h3 {
    font-size: 15px;
    color: #1b2d3e;
    margin: 0;
    font-weight: 600;
}
.faq-answer-home {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item-home.active .faq-answer-home {
    max-height: 2000px;
}
.faq-answer-content {
    padding: 0 25px 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}
/* 首页新闻样式 */
.news-list-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}
.news-item-home {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: all 0.3s;
}
.news-item-home:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.news-thumb {
    height: 180px;
    overflow: hidden;
}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-info {
    padding: 20px;
}
.news-info h3 {
    font-size: 17px;
    color: #1b2d3e;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}
.news-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.read-more {
    color: #ff6229;
}
.news-more {
    text-align: center;
}
.more-btn {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #ff6229;
    color: #ff6229;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}
.more-btn:hover {
    background: #ff6229;
    color: #fff;
}
/* 文章列表页样式 */
.news-list-page {
    margin-bottom: 30px;
}
.news-item-page {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s;
}
.news-item-page:hover {
    background: #fafafa;
}
.news-thumb-page {
    width: 240px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}
.news-thumb-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-info-page {
    flex: 1;
}
.news-info-page h2 {
    font-size: 20px;
    color: #1b2d3e;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}
.news-info-page h2 a {
    color: inherit;
    text-decoration: none;
}
.news-info-page h2 a:hover {
    color: #ff6229;
}
.news-info-page p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}
.news-meta-page {
    font-size: 13px;
    color: #999;
    display: flex;
    gap: 20px;
    align-items: center;
}
