:root {
    --primary-color: #ff6b00;
    --primary-light: #fff0e6;
    --primary-light-hover: #ffe0cc;
    --secondary-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #fff;
}
body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--secondary-color);
    background-color: var(--light-color);
}
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    background-color: var(--white-color);
    padding: 0.8rem 0;
    border-radius: 0 0 10px 10px;
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}
.nav-link {
    color: var(--secondary-color);
    position: relative;
    padding: 0.8rem 1.2rem;
    margin: 0 0.3rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
}
.nav-link::after {
    display: none;
}
/* 已移除导航链接悬停下划线效果 */
.banner {
    background: url('../images/shoujika_banner.svg') center center/cover no-repeat;
    min-height: 50vh;
    position: relative;
    overflow: hidden;
}

/* 已删除banner区域相关伪元素和文本样式 */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    height: 100%;
    background-color: var(--white-color);
    position: relative;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.card-img-top {
    /*height: 180px;
    width: 100%;
    max-width: 180px;*/
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.5s ease;
    display: block;
}

/* 热门标签样式 */
.badge-hot {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4d4f;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 77, 79, 0.3);
}

/* 热门卡片容器样式 */
.card .position-relative {
    position: relative;
    /*height: 180px;*/
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}
.card-body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    /*height: calc(100% - 180px);*/
}
.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    text-align: center;
}

.card-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.card-title a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}
.card-text {
    color: #666;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 按钮容器居中 */
.card-body .mt-auto {
    align-items: center;
    width: 100%;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
}

.banner .btn-primary {
    font-size: clamp(1rem, 2vw, 1.2rem);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-primary:hover {
    background-color: #e55a00;
    border-color: #e55a00;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}
.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}
.section-padding {
    padding: 3rem 0;
}

/* 最新资讯和常见问题样式优化 */
.news-list, .faq-list {
    padding: 1.5rem;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 1.5rem;
}

/* 为最新资讯和常见问题添加不同背景色，增加区分度 */
.news-list {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
}

.faq-list {
    background-color: #fefefe;
    border-left: 4px solid #4CAF50;
}

.news-item, .faq-item {
    padding: 1.25rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.news-item:last-child, .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-item:hover, .faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background-color: #fff;
}

.news-title, .faq-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

/* 添加图标增强视觉效果 */
.news-title::before, .faq-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.news-title::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FF6B00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>');
}

.faq-title::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%234CAF50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line></svg>');
}

.news-title a, .faq-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-title a:hover, .faq-title a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.news-date, .faq-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    font-style: italic;
}

/* 为日期添加小图标 */
.news-date::before, .faq-date::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background-size: contain;
    background-repeat: no-repeat;
}

.news-date::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
}

.faq-date::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23888" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"></polyline></svg>');
}

/* 优化查看更多按钮 */
.news-list + div .btn-outline-primary, .faq-list + div .btn-outline-primary {
    background-color: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.65rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-list + div .btn-outline-primary:hover, .faq-list + div .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}
#faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 3rem 0 1.5rem;
}
.footer h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}
.badge-hot {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #ff4d4f;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 77, 79, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.card:hover .badge-hot {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 77, 79, 0.4);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bg-white {
    background-color: var(--white-color);
}
.faq-question {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background-color: var(--primary-light);
    border-radius: 10px 10px 0 0;
    cursor: default;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-bottom: none;
}
.faq-question:hover {
    background-color: var(--primary-light-hover);
}
.faq-answer {
    padding: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    border-top: none;
}
#faq .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0;
}
#faq .col-md-6 {
    padding-left: 15px;
    padding-right: 15px;
}
/* 已移除冲突的.faq-item样式定义 */

.faq-item:last-child {
    margin-bottom: 0;
}
/* 添加FAQ标题样式 */
#faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}


/*news*/

.news-list {
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.news-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: white;
}
.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.news-image {
    height: 150px;
    overflow: hidden;
    border-radius: 5px;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.news-item:hover .news-image img {
    transform: scale(1.05);
}
.news-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.news-title a:hover {
    color: var(--primary-color);
}
.news-meta {
    display: flex;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.news-meta span {
    margin-right: 1rem;
}
.news-excerpt {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-read-more {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.news-read-more:hover {
    background-color: #e05c00;
    transform: translateY(-2px);
}
.news-read-more i {
    margin-left: 0.5rem;
}
.sidebar {
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.category-list {
    list-style: none;
    padding: 0;
}
.category-item {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.category-item:hover {
    background-color: rgba(255, 107, 0, 0.05);
}
.category-item a {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.category-item a:hover {
    color: var(--primary-color);
}
.hot-card-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s;
}
.hot-card-item:last-child {
    border-bottom: none;
}
.hot-card-item:hover {
    transform: translateX(5px);
}
.hot-card-image {
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
}
.hot-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-card-title {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.hot-card-title a {
    color: var(--secondary-color);
    text-decoration: none;
}
.hot-card-title a:hover {
    color: var(--primary-color);
}
.random-article-list {
    list-style: none;
    padding: 0;
}
.random-article-item {
    margin-bottom: 0.7rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px dotted var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}
.random-article-item:last-child {
    border-bottom: none;
}
.random-article-item:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.5rem;
}
.random-article-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
}
.random-article-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.pagination .page-item .page-link {
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    margin: 0 0.2rem;
    border-radius: 5px;
    transition: all 0.3s;
}
.pagination .page-item .page-link:hover {
    background-color: rgba(255, 107, 0, 0.05);
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}
.nav-link-external {
    color: var(--primary-color);
    font-weight: bold;
}
.nav-link-external:hover {
    text-decoration: underline;
}

/* news1.html specific styles */
.news-content {
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}
.news-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}
.news-meta {
    display: flex;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.news-meta span {
    margin-right: 1.5rem;
}
.news-body {
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.news-body p {
    margin-bottom: 1.5rem;
}
.news-body img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 5px;
}
.news-nav {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    margin-top: 2rem;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}
.news-nav a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.news-nav a:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.news-nav .prev i {
    margin-right: 0.5rem;
}
.news-nav .next i {
    margin-left: 0.5rem;
}

/* Responsive styles */
@media (max-width: 992px) {
    .news-image {
        height: 200px;
        margin-bottom: 1rem;
    }
    .hot-card-image {
        height: 120px;
    }
}
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
    .nav-link {
        padding: 0.8rem 1rem;
    }
    .news-image {
        height: 180px;
    }
    .hot-card-item {
        flex-direction: column;
    }
    .hot-card-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    .news-nav {
        flex-direction: column;
        gap: 1rem;
    }
    .news-nav a {
        justify-content: center;
        width: 100%;
    }
    .news-content {
        padding: 1.5rem;
    }
    .news-content h1 {
        font-size: 1.5rem;
    }
}