* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f5f5f5;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #409EFF;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

/* Main Content */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

/* 新闻中心顶部横幅（参考旧站，与全站内容区 1160px 一致） */
.news-top-banner {
    width: 100%;
    border-bottom: 3px solid #b58d55;
    padding: 20px;
    margin-bottom: 0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/static/image/news/banner.jpeg') no-repeat center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.news-top-inner {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    text-align: left;
}
.news-top-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 8px 0;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0,0,0,.5), 0 0 20px rgba(0,0,0,.35);
}
.news-top-desc {
    font-size: 14px;
    color: rgba(255,255,255,.92);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,.5), 0 0 12px rgba(0,0,0,.3);
}

/* 新闻分类筛选 Tab（参考设计：白底条、顶部分隔线、居中均匀分布、选中金橙/未选深灰） */
.news-maintab {
    width: 100%;
    padding: 1.5% 0;
    background-color: #fff;
    box-shadow: 0px 12px 27px 2px rgba(162, 162, 162, 0.11);
}
.news-maintab .news-tabul {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
.news-maintab ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.news-maintab ul li {
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.25s ease;
    padding: 8px 4px;
}
.news-maintab ul li .news-tab-icon {
    display: inline-block;
    width: 30px;
    height: 26px;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: currentColor;
    transition: background-color 0.25s ease;
}
.news-maintab ul li .news-tab-icon-enterprise {
    -webkit-mask-image: url(/static/image/news/icon-enterprise.svg);
    mask-image: url(/static/image/news/icon-enterprise.svg);
}
.news-maintab ul li .news-tab-icon-investment {
    -webkit-mask-image: url(/static/image/news/icon-investment.svg);
    mask-image: url(/static/image/news/icon-investment.svg);
}
.news-maintab ul li .news-tab-icon-media {
    -webkit-mask-image: url(/static/image/news/icon-media.svg);
    mask-image: url(/static/image/news/icon-media.svg);
}
.news-maintab ul li h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #555;
    transition: color 0.25s ease;
}
.news-maintab ul li h3 a {
    transition: all 0.5s;
    font-family: 'SourceHanSerifCN-Bold';
    font-weight: bold;
    font-size: 26px;
    color: rgba(61, 61, 61, 0.8);
    line-height: 1;
}
.news-maintab ul li:hover .news-tab-icon,
.news-maintab ul li:hover h3,
.news-maintab ul li:hover a {
    color: #b58d55;
}
.news-maintab ul li.istab .news-tab-icon,
.news-maintab ul li.istab h3,
.news-maintab ul li.istab a {
    color: #b58d55 !important;
}

@media (max-width: 768px) {
    .news-top-banner {
        padding: 28px 16px 24px;
    }
    .news-top-title {
        font-size: 22px;
    }
    .news-top-desc {
        font-size: 13px;
    }
    .news-maintab {
        padding: 16px 0;
    }
    .news-maintab ul li h3 {
        font-size: 15px;
    }
    .news-maintab ul li .news-tab-icon {
        width: 18px;
        height: 18px;
    }
    .news-pagination-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }
    .news-pagination-wrap .pagination-gold {
        gap: 6px;
    }
    .news-pagination-wrap .pagination-gold a,
    .news-pagination-wrap .pagination-gold span {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.news-card-image-wrap {
    display: block;
    text-decoration: none;
    color: inherit;
    line-height: 0;
}
.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
    display: block;
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.news-card-button {
    display: inline-block;
    padding: 8px 20px;
    background: #b58d55;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.news-card-button:hover {
    background: #8b6914;
    color: #fff;
}

/* Pagination 通用 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #409EFF;
    color: #fff;
    border-color: #409EFF;
}

.pagination .current {
    background: #409EFF;
    color: #fff;
    border-color: #409EFF;
}

.pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
}

.pagination .disabled:hover {
    background: transparent;
    color: #ccc;
    border-color: #eee;
}

/* 新闻分页：全站金色 + 居中 */
.news-pagination-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.news-pagination-wrap .pagination-gold {
    margin-top: 0;
}

.pagination-gold a:hover {
    background: #b58d55;
    color: #fff;
    border-color: #b58d55;
}

.pagination-gold .current {
    background: #b58d55;
    color: #fff;
    border-color: #b58d55;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #0E2A47;
    color: #fff;
    padding: 60px 20px 40px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-circle {
    width: 50px;
    height: 50px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #0E2A47;
    margin-right: 12px;
    flex-shrink: 0;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 0;
}

.footer-desc {
    color: #E0E0E0;
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

.footer-links-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
}

.footer-divider {
    height: 1px;
    background: rgba(200, 200, 200, 0.3);
    margin: 40px 0;
}

.footer-bottom {
    text-align: center;
    color: #E0E0E0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom p {
    margin: 8px 0;
}

/* Footer H5 兼容：隐藏快速链接/服务与资源，仅保留简介+版权，居中紧凑 */
@media (max-width: 768px) {
    .footer {
        padding: 20px 16px 16px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 16px;
    }
    .footer-col-links,
    .footer-col-services {
        display: none;
    }
    .footer-col-about {
        align-items: center;
        text-align: center;
    }
    .footer-logo-wrapper {
        margin-bottom: 10px;
        justify-content: center;
    }
    .footer-logo-circle {
        width: 36px;
        height: 36px;
        font-size: 11px;
        margin-right: 8px;
    }
    .footer-logo-text {
        font-size: 16px;
    }
    .footer-title {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .footer-desc {
        font-size: 12px;
        line-height: 1.55;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-divider {
        margin: 12px 0;
    }
    .footer-bottom {
        font-size: 11px;
        line-height: 1.5;
    }
    .footer-bottom p {
        margin: 3px 0;
    }
}

@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        display: none;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 24px;
    }
}