/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部栏样式 */
.top-bar {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left ul, .nav-right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left li, .nav-right li {
    position: relative;
    margin: 0 25px;
}

.nav-left a, .nav-right a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.nav-left a:hover, .nav-right a:hover {
    color: #C9A66B;
}

/* 下拉菜单 */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 150px;
    z-index: 1001;
}

.nav-right .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 8px 15px;
    font-size: 14px;
}

/* 移动端菜单切换按钮 */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333333;
}

/* 顶部右侧 */
.top-right {
    display: flex;
    align-items: center;
}

.search-box {
    display: flex;
    margin-right: 20px;
}

.search-box input {
    padding: 8px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.search-box button {
    padding: 8px 15px;
    background-color: #C9A66B;
    color: #FFFFFF;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #8B5A2B;
}

.donate-btn {
    padding: 10px 20px;
    background-color: #C9A66B;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.donate-btn:hover {
    background-color: #8B5A2B;
}

/* 轮播区样式 */
.banner {
    position: relative;
    margin-top: 90px;
    height: 600px;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.slider-item.active {
    opacity: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #FFFFFF;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* 轮播控制按钮 */
.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.banner-controls button {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner-controls button:hover {
    background-color: #FFFFFF;
}

/* 快速入口区样式 */
.quick-entry {
    padding: 60px 0;
    background-color: #F5F5F5;
}

.entry-items {
    display: flex;
    justify-content: space-around;
}

.entry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #333333;
    text-decoration: none;
    transition: transform 0.3s;
    padding: 20px;
}

.entry-item:hover {
    transform: translateY(-10px);
}

.entry-icon {
    width: 100px;
    height: 100px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.entry-icon img {
    width: 60px;
    height: 60px;
}

.entry-item h3 {
    font-size: 18px;
    font-weight: 500;
}

/* 内容区样式 */
.content-section {
    padding: 60px 0;
}

.content-section .container {
    display: flex;
    justify-content: space-between;
}

.content-left {
    width: 65%;
}

.content-right {
    width: 32%;
}

.section-title {
    font-size: 24px;
    color: #333333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C9A66B;
    display: inline-block;
}

/* 新闻列表 */
.news-list {
    margin-bottom: 30px;
}

.news-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E0E0E0;
}

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

.news-date {
    width: 100px;
    text-align: center;
    background-color: #F5F5F5;
    padding: 10px;
    margin-right: 20px;
    flex-shrink: 0;
}

.news-content h3 {
    margin-bottom: 10px;
}

.news-content h3 a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: #C9A66B;
}

.news-content p {
    color: #666666;
    font-size: 14px;
}

/* 项目卡片 */
.project-cards {
    margin-bottom: 30px;
}

.project-card {
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 10px;
}

.project-info h3 a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.project-info h3 a:hover {
    color: #C9A66B;
}

.project-info p {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}

.project-progress {
    display: flex;
    align-items: center;
}

.progress-bar {
    flex-grow: 1;
    height: 8px;
    background-color: #F0F0F0;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
}

.progress {
    height: 100%;
    background-color: #C9A66B;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 14px;
    color: #666666;
}

/* 更多按钮 */
.more-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #FFFFFF;
    color: #C9A66B;
    border: 1px solid #C9A66B;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.more-btn:hover {
    background-color: #C9A66B;
    color: #FFFFFF;
}

/* 新闻详情页样式 */
.news-detail-content {
    padding: 40px 0;
    min-height: 600px;
}

.news-detail-main {
    display: flex;
    justify-content: space-between;
}

.news-detail {
    /* width: 65%; */
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.related-news {
    width: 32%;
}

.news-title {
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E0E0E0;
    font-size: 14px;
    color: #666666;
}

.news-date {
    margin-right: 30px;
}

.news-cover {
    margin-bottom: 30px;
}

.news-cover img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 30px;
}

.news-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-body p:last-child {
    margin-bottom: 0;
}

.news-share {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #F5F5F5;
    border-radius: 8px;
}

.news-share h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333333;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 8px 15px;
    background-color: #FFFFFF;
    color: #C9A66B;
    border: 1px solid #C9A66B;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.share-btn:hover {
    background-color: #C9A66B;
    color: #FFFFFF;
}

.news-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    font-size: 14px;
}

.prev-news, .next-news {
    flex: 1;
}

.prev-news {
    margin-right: 20px;
}

.prev-news a, .next-news a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.prev-news a:hover, .next-news a:hover {
    color: #C9A66B;
}

.related-news-list {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.related-news-item {
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0;
    cursor: pointer;
    transition: transform 0.3s;
}

.related-news-item:hover {
    transform: translateX(5px);
}

.related-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-news-title {
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-news-date {
    font-size: 12px;
    color: #999999;
}

.hot-news {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hot-news-list {
    margin-top: 20px;
}

.hot-news-item {
    padding: 10px 0;
    border-bottom: 1px solid #E0E0E0;
    cursor: pointer;
    transition: transform 0.3s;
}

.hot-news-item:hover {
    transform: translateX(5px);
}

.hot-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hot-news-title {
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.hot-news-date {
    font-size: 12px;
    color: #999999;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .news-detail-main {
        flex-direction: column;
    }
    
    .news-detail {
        width: 100%;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .related-news {
        width: 100%;
    }
    
    .news-title {
        font-size: 20px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .news-date {
        margin-right: 0;
    }
    
    .news-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .prev-news, .next-news {
        margin-right: 0;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .share-btn {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
}

/* 健康服务区样式 */
.health-service {
    padding: 60px 0;
    background-color: #F5F5F5;
}

.health-section,
.doctors-section {
    margin-bottom: 50px;
}

.health-cards {
    display: flex;
    justify-content: space-between;
}

.health-card {
    width: 32%;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.health-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.health-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.health-info {
    padding: 20px;
}

.health-info h3 {
    margin-bottom: 10px;
}

.health-info h3 a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.health-info h3 a:hover {
    color: #C9A66B;
}

.health-info p {
    color: #666666;
    font-size: 14px;
}

/* 名医推荐 */
.doctors-list {
    display: flex;
    justify-content: space-between;
}

.doctor-item {
    width: 32%;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.doctor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.doctor-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.doctor-info p {
    color: #666666;
    margin-bottom: 20px;
}

.doctor-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #C9A66B;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.doctor-more:hover {
    background-color: #8B5A2B;
}

/* 底部栏样式 */
.footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 60px 0 30px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-content .container {
    display: flex;
    justify-content: space-between;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
    max-width: 100%;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.footer-section {
    margin-right: 50px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #C9A66B;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #C9A66B;
}

.wechat-qrcode {
    text-align: center;
}

.wechat-qrcode img {
    border: 2px solid #C9A66B;
    border-radius: 8px;
    padding: 5px;
    background-color: #FFFFFF;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wechat-qrcode p {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
}

.social-links {
    display: flex;
}

.social-links a {
    margin-right: 10px;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #555555;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links a:hover {
    background-color: #C9A66B;
}

.social-links img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #555555;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #CCCCCC;
}

.friend-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
    transition: color 0.3s;
}

.friend-links a:hover {
    color: #C9A66B;
}

/* 捐赠页面样式 */
.donation-page {
    padding: 120px 0 60px;
}

.donation-methods {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.donation-method {
    width: 32%;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donation-method h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #C9A66B;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code img {
    width: 180px;
    height: 180px;
}

/* 捐赠记录 */
.donation-records {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.records-table {
    width: 100%;
    border-collapse: collapse;
}

.records-table th,
.records-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #E0E0E0;
}

.records-table th {
    background-color: #F5F5F5;
    font-weight: 500;
    color: #333333;
}

/* 联系我们页面样式 */
.contact-page {
    padding: 120px 0 60px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.contact-details {
    width: 45%;
}

.contact-form {
    width: 50%;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #C9A66B;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 12px 40px;
    background-color: #C9A66B;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #8B5A2B;
}

/* 捐赠页面样式 */
.donation-content {
    padding: 120px 0 60px;
}

.donation-info {
    background-color: #F5F5F5;
    border: 2px solid #C9A66B;
    padding: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.donation-info .section-title {
    color: #8B5A2B;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid #8B5A2B;
}

.donation-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.donation-methods {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 30px;
}

.method-item {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.method-title {
    color: #8B5A2B;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C9A66B;
    display: inline-block;
}

.method-content {
    font-size: 16px;
    line-height: 1.8;
}

.method-content p {
    margin-bottom: 15px;
}

.method-content strong {
    color: #333333;
}

.gold-text {
    color: #C9A66B;
    font-weight: bold;
}

.qr-code {
    display: inline-block;
    margin: 20px;
    text-align: center;
}

.qr-code img {
    border: 1px solid #E0E0E0;
    padding: 10px;
    background-color: #FFFFFF;
}

.qr-code p {
    margin-top: 10px;
    font-size: 14px;
    color: #666666;
}

.qr-note {
    text-align: center;
    color: #999999;
    font-size: 14px;
    margin-top: 20px;
}

.donation-publicity {
    margin-bottom: 60px;
}

.section-subtitle {
    color: #8B5A2B;
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C9A66B;
    display: inline-block;
}

.publicity-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.publicity-card {
    flex: 1;
    background-color: #FFFFFF;
    border: 2px solid #C9A66B;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: background-color 0.3s;
}

.publicity-card:hover {
    background-color: #F5F5F5;
}

.donor-name {
    color: #8B5A2B;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.donor-amount,
.donor-time,
.donor-purpose {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333333;
}

/* 项目展示页面样式 */
.projects-page {
    /* padding: 0 60px; */
}

.page-title {
    font-size: 32px;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #C9A66B;
    display: inline-block;
}

/* 项目分类 */
.project-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.category-btn {
    padding: 10px 25px;
    background-color: #FFFFFF;
    color: #C9A66B;
    border: 1px solid #C9A66B;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background-color: #C9A66B;
    color: #FFFFFF;
}

/* 项目列表 */
.projects-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.project-info h3 a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.project-info h3 a:hover {
    color: #C9A66B;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666666;
}

.project-meta .project-category {
    background-color: #F5F5F5;
    padding: 3px 10px;
    border-radius: 12px;
}

.project-progress {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #F0F0F0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background-color: #C9A66B;
    transition: width 0.5s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666666;
}

/* 立即捐赠按钮 */
.donate-now-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C9A66B;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.donate-now-btn:hover {
    background-color: #8B5A2B;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 18px;
    background-color: #FFFFFF;
    color: #C9A66B;
    border: 1px solid #C9A66B;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background-color: #C9A66B;
    color: #FFFFFF;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .container {
        width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        width: 720px;
    }
    
    .content-section .container {
        flex-direction: column;
    }
    
    .content-left,
    .content-right {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .health-cards,
    .doctors-list {
        flex-direction: column;
    }
    
    .health-card,
    .doctor-item {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .donation-methods {
        flex-direction: column;
    }
    
    .publicity-cards {
        flex-direction: column;
    }
    
    .publicity-card {
        margin-bottom: 20px;
    }
    
    .donation-method {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .contact-details,
    .contact-form {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 540px;
        padding: 0 15px;
    }
    
    /* 顶部栏响应式 */
    .top-bar .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: block;
        order: 1;
        margin: 10px 0;
    }
    
    .nav-left, .nav-right {
        display: none;
        order: 3;
        width: 100%;
    }
    
    .nav-left.active, .nav-right.active {
        display: block;
    }
    
    .nav-left ul, .nav-right ul {
        flex-direction: column;
        align-items: center;
        margin: 10px 0;
    }
    
    .nav-left li, .nav-right li {
        margin: 5px 0;
    }
    
    .logo {
        order: 2;
        margin: 10px 0;
    }
    
    .logo img {
        height: 80px;
    }
    
    .top-right {
        display: none;
    }
    
    /* 轮播图响应式 */
    .banner {
        height: 300px;
        margin-top: 100px;
    }
    
    .banner-content {
        padding: 30px;
    }
    
    .banner-content h1 {
        font-size: 24px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
    
    /* 内容区响应式 */
    .content-section .container {
        flex-direction: column;
    }
    
    .content-left, .content-right {
        width: 100%;
    }
    
    /* 项目卡片响应式 */
    .projects-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 健康卡片响应式 */
    .health-cards {
        flex-direction: column;
    }
    
    .health-card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* 名医推荐响应式 */
    .doctors-list {
        flex-direction: column;
    }
    
    .doctor-item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    /* 新闻列表响应式 */
    .news-item {
        flex-direction: column;
    }
    
    .news-date {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* 底部响应式 */
    .footer-content .container {
        flex-direction: column;
    }
    
    .footer-info {
        width: 100%;
        flex-direction: column;
    }
    
    .footer-section {
        margin-right: 0;
        margin-bottom: 30px;
    }
}

/* 超小屏幕设备 */
@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
    
    /* 轮播图响应式 */
    .banner {
        height: 250px;
    }
    
    .banner-content h1 {
        font-size: 20px;
    }
    
    .banner-content p {
        font-size: 12px;
    }
    
    /* 项目卡片响应式 */
    .project-card img {
        height: 200px;
    }
    
    /* 健康卡片响应式 */
    .health-card img {
        height: 180px;
    }
    
    /* 名医推荐响应式 */
    .doctor-avatar {
        width: 120px;
        height: 120px;
    }
}

/* 平板设备横屏 */
@media (min-width: 769px) and (max-width: 1024px) {
    /* 项目列表响应式 */
    .projects-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 面包屑样式 */
.breadcrumb {
    background-color: #FFFFFF;
    padding: 15px 0;
    border-bottom: 1px solid #E0E0E0;
    margin-top: 50px;
}

.breadcrumb .container {
    font-size: 14px;
    color: #666666;
}

.breadcrumb a {
    color: #C9A66B;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 机构介绍内容区 */
.about-content {
    padding: 0;
    background-color: #F5F5F5;
    min-height: 500px;
}

/* Tab栏样式 */
.about-tabs {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 0 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn {
    flex: 1;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: #C9A66B;
}

.tab-btn.active {
    color: #C9A66B;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #C9A66B;
}

/* 内容展示区 */
.tab-content-container {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 通用内容样式 */
.content-wrapper {
    max-width: 100%;
}

.section-title {
    font-size: 24px;
    color: #8B5A2B;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E0E0E0;
}

/* 章程内容样式 */
.charter-content {
    color: #333333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.charter-content p {
    margin-bottom: 15px;
}

.charter-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.charter-content li {
    margin-bottom: 10px;
}

/* PDF下载按钮 */
.pdf-download-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #C9A66B;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.pdf-download-btn:hover {
    background-color: #8B5A2B;
}

/* 理事会成员样式 */
.council-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.council-member {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.council-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333333;
}

.member-position {
    color: #C9A66B;
    margin-bottom: 10px;
    font-weight: 500;
}

.member-bio {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* 组织架构样式 */
.structure-chart {
    text-align: center;
    margin-bottom: 40px;
}

.chart-node {
    display: inline-block;
    background-color: #FFFFFF;
    border: 2px solid #C9A66B;
    border-radius: 8px;
    padding: 15px 25px;
    margin: 10px;
    text-align: center;
    vertical-align: top;
}

.top-node {
    background-color: #C9A66B;
    color: #FFFFFF;
    border-color: #C9A66B;
}

.second-node {
    margin: 20px 10px;
}

.third-node {
    margin: 30px 5px;
    background-color: #F5F5F5;
}

.structure-description {
    color: #333333;
}

.structure-description h3 {
    margin-bottom: 20px;
}

.department {
    margin-bottom: 20px;
}

.department h4 {
    color: #C9A66B;
    margin-bottom: 10px;
}

/* 发展历程样式 */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #C9A66B;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-node {
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #C9A66B;
    border-radius: 50%;
    border: 4px solid #FFFFFF;
}

.timeline-content {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    color: #8B5A2B;
    margin-bottom: 15px;
}

.timeline-content p {
    margin-bottom: 10px;
    color: #333333;
}

.timeline-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .council-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-tabs {
        flex-direction: column;
    }
    
    .tab-btn.active::after {
        left: 0;
        right: auto;
        width: 3px;
        height: 100%;
        bottom: auto;
    }
}

@media (max-width: 768px) {
    .council-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-node {
        display: block;
        margin: 10px auto;
    }
}

/* 联系我们内容区 */
.contact-content {
    padding: 0;
    background-color: #F5F5F5;
    min-height: 500px;
}

/* 内容区两栏布局 */
.content-wrapper {
    display: flex;
    gap: 30px;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-left,
.contact-right {
    width: 50%;
}

/* 左栏：联系方式样式 */
.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* 地图容器样式 */
.map-container {
    border: 2px solid #C9A66B;
    border-radius: 8px;
    overflow: hidden;
}

/* 右栏：留言反馈样式 */
.feedback-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #C9A66B;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8B5A2B;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* 提交按钮样式 */
.submit-btn {
    padding: 12px 30px;
    background-color: #C9A66B;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #8B5A2B;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .contact-left,
    .contact-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 20px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .submit-btn {
        width: 100%;
    }
}

/* 捐赠内容区 */
.donation-content {
    padding: 40px 0;
    background-color: #F5F5F5;
    min-height: 500px;
}

/* 捐赠说明区 */
.donation-info {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 捐赠方式区 */
.donation-methods {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.method-item {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.method-title {
    font-size: 20px;
    color: #8B5A2B;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E0E0E0;
}

.method-content {
    color: #333333;
}

.method-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* 金色文本样式 */
.gold-text {
    color: #C9A66B;
    font-weight: 500;
}

/* 二维码样式 */
.qr-code {
    display: inline-block;
    margin-right: 30px;
    text-align: center;
}

.qr-code img {
    border: 2px solid #C9A66B;
    border-radius: 8px;
    padding: 10px;
    background-color: #FFFFFF;
    margin-bottom: 10px;
}

.qr-code p {
    margin-top: 10px;
    font-size: 14px;
    color: #666666;
}

.qr-note {
    margin-top: 20px;
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

/* 捐赠公示区 */
.donation-publicity {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-subtitle {
    font-size: 20px;
    color: #8B5A2B;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E0E0E0;
}

.publicity-cards {
    display: flex;
    gap: 20px;
}

.publicity-card {
    flex: 1;
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.donor-name {
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
}

.donor-amount {
    margin-bottom: 8px;
}

.donor-time {
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
}

.donor-purpose {
    font-size: 14px;
    color: #666666;
}

/* 新闻动态内容区 */
.news-content {
    padding: 0;
    background-color: #F5F5F5;
    /* min-height: 500px; */
}

/* 筛选栏样式 */
.news-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-tabs {
    display: flex;
    gap: 10px;
}

.filter-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.filter-btn:hover {
    background-color: #F5F5F5;
    color: #C9A66B;
    border-color: #C9A66B;
}

.filter-btn.active {
    background-color: #C9A66B;
    color: #FFFFFF;
    border-color: #C9A66B;
}

/* 新闻搜索样式 */
.news-search {
    display: flex;
}

#news-search-input {
    padding: 8px 12px;
    border: 2px solid #C9A66B;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

#news-search-btn {
    padding: 8px 20px;
    background-color: #C9A66B;
    color: #FFFFFF;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#news-search-btn:hover {
    background-color: #8B5A2B;
}

/* 内容区（两栏布局） */
.news-main {
    display: flex;
    gap: 20px;
}

/* 左栏：新闻列表 */
.news-list {
    width: 67%;
}

.news-card {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 40%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 18px;
    color: #8B5A2B;
    margin: 0 0 10px 0;
    transition: color 0.3s;
}

.news-card:hover .card-title {
    color: #C9A66B;
}

.card-excerpt {
    color: #666666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-size: 14px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-date {
    color: #C9A66B;
    font-size: 14px;
}

.read-more {
    color: #C9A66B;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #8B5A2B;
    text-decoration: underline;
}

/* 右栏：热门资讯 */
.hot-news {
    width: 33%;
}

.sidebar-title {
    background-color: #FFFFFF;
    border-radius: 8px 8px 0 0;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-title h3 {
    font-size: 18px;
    color: #8B5A2B;
    margin: 0;
}

.hot-news-list {
    background-color: #FFFFFF;
    border-radius: 0 0 8px 8px;
    padding: 0 20px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hot-news-item {
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
}

.hot-news-item:last-child {
    border-bottom: none;
}

.hot-news-title {
    font-size: 14px;
    color: #333333;
    margin: 0 0 8px 0;
    transition: color 0.3s;
}

.hot-news-item:hover .hot-news-title {
    color: #C9A66B;
}

.hot-news-date {
    color: #C9A66B;
    font-size: 12px;
}

/* 分页控件 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.page-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #FFFFFF;
    color: #333333;
    text-decoration: none;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    background-color: #F5F5F5;
    color: #C9A66B;
    border-color: #C9A66B;
}

.page-btn.active {
    background-color: #C9A66B;
    color: #FFFFFF;
    border-color: #C9A66B;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-btn.disabled:hover {
    background-color: #FFFFFF;
    color: #333333;
    border-color: #E0E0E0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .donation-methods {
        flex-direction: column;
    }
    
    .publicity-cards {
        flex-direction: column;
    }
    
    .qr-code {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .news-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .news-main {
        flex-direction: column;
    }
    
    .news-list,
    .hot-news {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .donation-info,
    .method-item,
    .donation-publicity {
        padding: 20px;
    }
    
    .method-title,
    .section-subtitle {
        font-size: 18px;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .card-image,
    .card-content {
        width: 100%;
    }
    
    .card-image {
        height: 200px;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
    }
}

/* 信息公开内容区 */
.public-content {
    padding: 0;
    background-color: #F5F5F5;
    min-height: 500px;
}

/* Tab栏样式 */
.public-tabs {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 0 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn {
    flex: 1;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.tab-btn:hover {
    color: #C9A66B;
}

.tab-btn.active {
    color: #C9A66B;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #C9A66B;
}

/* 筛选栏样式 */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-item {
    display: flex;
    align-items: center;
}

.filter-item label {
    font-size: 14px;
    color: #333333;
    margin-right: 10px;
}

.filter-item select,
.filter-item input {
    padding: 8px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
}

.filter-item select {
    min-width: 120px;
}

.search-filter input {
    width: 300px;
    margin-right: 10px;
}

.search-filter button {
    padding: 8px 20px;
    background-color: #C9A66B;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-filter button:hover {
    background-color: #8B5A2B;
}

/* 内容展示区 */
.tab-content-container {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 公开列表样式 */
.public-list {
    width: 100%;
}

.public-item {
    padding: 25px 0;
    border-bottom: 1px solid #C9A66B;
}

.public-item:last-child {
    border-bottom: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-title {
    font-size: 18px;
    color: #8B5A2B;
    margin: 0;
}

.item-date {
    font-size: 14px;
    color: #C9A66B;
}

.item-content {
    margin-bottom: 15px;
}

.item-content p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* 下载按钮样式 */
.item-download {
    display: flex;
    gap: 15px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #C9A66B;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #8B5A2B;
}

.file-icon {
    margin-right: 5px;
    font-size: 16px;
}

/* 分页控件样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #FFFFFF;
    color: #333333;
    text-decoration: none;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    background-color: #F5F5F5;
    color: #C9A66B;
    border-color: #C9A66B;
}

.page-btn.active {
    background-color: #C9A66B;
    color: #FFFFFF;
    border-color: #C9A66B;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-btn.disabled:hover {
    background-color: #FFFFFF;
    color: #333333;
    border-color: #E0E0E0;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .search-filter input {
        width: calc(100% - 90px);
    }
}

@media (max-width: 768px) {
    .public-tabs {
        flex-direction: column;
    }
    
    .tab-btn.active::after {
        left: 0;
        right: auto;
        width: 3px;
        height: 100%;
        bottom: auto;
    }
    
    .item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .item-download {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-filter input {
        width: calc(100% - 90px);
    }
}