/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimHei", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #4092ff;
    text-decoration: underline;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #4092ff 0%, #2c7fef 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(64, 146, 255, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 180px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 16px;
    font-weight: normal;
    margin-left: -5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item a {
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-item a:hover,
.nav-item a.active {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

/* Main Content */
.main {
    padding: 30px 0;
    min-height: calc(100vh - 200px);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

/* Left Content Styles */
.left-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* News List Styles */
.news-section {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.news-list {
    list-style: none;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #ddd;
}

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

.news-bullet {
    color: #4092ff;
    margin-right: 8px;
    font-size: 12px;
}

.news-link {
    flex: 1;
    color: #333;
    font-size: 14px;
    padding-right: 10px;
}

.news-link:hover {
    color: #4092ff;
}

.news-date {
    color: #999;
    font-size: 12px;
    min-width: 40px;
}

/* Section Title */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 3px solid #4092ff;
    margin: 0;
}

.title-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    position: relative;
}

.title-text::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: #4092ff;
    border-radius: 2px;
}

.more-link {
    color: #4092ff;
    font-size: 12px;
    text-decoration: none;
}

.more-link:hover {
    text-decoration: underline;
}

/* News Cards */
.news-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.news-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.news-card:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(64, 146, 255, 0.1);
}

.news-image img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.news-info {
    flex: 1;
}

.news-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-date-full {
    color: #999;
    font-size: 12px;
    margin-bottom: 8px;
}

.read-more-btn {
    display: inline-block;
    background: #4092ff;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #2c7fef;
    text-decoration: none;
}

/* Special Reports */
.special-reports {
    margin-top: 0;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
}

.report-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.report-bullet {
    color: #4092ff;
    margin-right: 8px;
    font-size: 12px;
}

.report-link {
    flex: 1;
    color: #333;
    font-size: 13px;
    padding-right: 10px;
}

.report-link:hover {
    color: #4092ff;
}

.report-date {
    color: #999;
    font-size: 12px;
    min-width: 40px;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hot-news,
.hot-center {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 2px solid #4092ff;
    margin: 0;
    font-size: 16px;
}

.hot-news-list,
.hot-center-list {
    list-style: none;
    padding: 20px;
}

.hot-news-item,
.hot-center-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}

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

.item-number {
    color: #4092ff;
    font-weight: bold;
    margin-right: 8px;
    min-width: 20px;
}

.item-bullet {
    color: #4092ff;
    margin-right: 8px;
    font-size: 12px;
}

.hot-news-link,
.hot-center-link {
    flex: 1;
    color: #333;
    font-size: 13px;
    padding-right: 10px;
    line-height: 1.4;
}

.hot-news-link:hover,
.hot-center-link:hover {
    color: #4092ff;
}

.hot-news-date,
.hot-center-date {
    color: #999;
    font-size: 12px;
    min-width: 40px;
}

/* Footer Styles */
.footer {
    background: #2c3e50;
    color: #bdc3c7;
    padding: 30px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.footer-logo img {
    width: 80px;
    height: 40px;
    opacity: 0.8;
}

.footer-info {
    flex: 1;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bdc3c7;
    font-size: 13px;
    margin: 0 5px;
}

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

.copyright {
    font-size: 12px;
    color: #95a5a6;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-tags,
.footer-bottom-tags {
    margin-bottom: 10px;
}

.footer-tags a,
.footer-bottom-tags a {
    display: inline-block;
    color: #95a5a6;
    font-size: 12px;
    margin: 2px 5px;
    padding: 2px 6px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.footer-tags a:hover,
.footer-bottom-tags a:hover {
    background: #34495e;
    color: #4092ff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-list {
        gap: 15px;
    }

    .news-cards {
        grid-template-columns: 1fr;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }

    .logo-subtext {
        font-size: 14px;
    }

    .nav-item a {
        padding: 8px 15px;
        font-size: 14px;
    }

    .news-card {
        flex-direction: column;
    }

    .news-image img {
        width: 100%;
        height: 120px;
    }
}

/* ==================== 新闻列表页样式 ==================== */

/* 页面标题 */
.page-header {
    padding: 0;
    margin-bottom: 0;
}

/* 新闻列表容器 */
.news-list-section {
    padding: 20px;
}

/* 单个新闻项 */
.news-item-full {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-item-full:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

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

/* 新闻标题 */
.news-title-large {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.news-item-full:hover .news-title-large {
    color: #4092ff;
}

/* 新闻摘要 */
.news-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: justify;
}

/* 新闻元信息 */
.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.news-date-info {
    color: #999;
}

.news-category {
    color: #999;
}

/* 分页容器 */
.pagination-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* 分页样式 */
.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.pagination li {
    display: inline-block;
}

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

.pagination a:hover {
    background: #4092ff;
    color: white;
    border-color: #4092ff;
    text-decoration: none;
}

.pagination .active span {
    background: #4092ff;
    color: white;
    border-color: #4092ff;
}

.pagination .disabled span {
    color: #999;
    background: #f5f5f5;
}

/* 响应式设计 - 列表页 */
@media (max-width: 768px) {
    .news-list-section {
        padding: 15px;
    }

    .news-item-full {
        padding: 15px 0;
    }

    .news-title-large {
        font-size: 15px;
    }

    .news-summary {
        font-size: 13px;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* ==================== 详情页样式 ==================== */

/* 文章详情容器 */
.article-detail {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 文章头部 */
.article-header {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #eee;
}

.article-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.article-date {
    color: #4092ff;
    font-weight: 500;
}

.article-category {
    background: #4092ff;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.article-views {
    color: #999;
}

/* 文章内容 */
.article-content {
    padding: 30px;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.article-content h2 {
    font-size: 22px;
    color: #333;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4092ff;
    position: relative;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: #4092ff;
}

.article-content h3 {
    font-size: 18px;
    color: #333;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 15px;
    text-align: justify;
    text-justify: inter-ideograph;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 8px;
}

/* 文章图片 */
.article-image {
    margin: 30px 0;
    text-align: center;
}

.detail-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* 文章导航 */
.article-navigation {
    display: flex;
    justify-content: space-between;
    padding: 25px 30px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    gap: 20px;
}

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

.next-article {
    text-align: right;
}

.nav-label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.nav-link {
    color: #4092ff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
}

.nav-link:hover {
    text-decoration: underline;
}

/* 相关文章 */
.related-articles {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.related-list {
    list-style: none;
    padding: 20px;
}

.related-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dotted #ddd;
}

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

.related-link {
    flex: 1;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    padding-right: 10px;
    line-height: 1.4;
}

.related-link:hover {
    color: #4092ff;
    text-decoration: underline;
}

.related-date {
    color: #999;
    font-size: 12px;
    min-width: 40px;
    text-align: right;
}

/* 响应式设计 - 详情页 */
@media (max-width: 768px) {
    .article-header {
        padding: 20px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .article-content {
        padding: 20px;
        font-size: 15px;
    }

    .article-content h2 {
        font-size: 20px;
    }

    .article-content h3 {
        font-size: 16px;
    }

    .article-navigation {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .next-article {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 20px;
    }

    .article-content {
        padding: 15px;
        font-size: 14px;
    }

    .article-content h2 {
        font-size: 18px;
    }

    .article-content h3 {
        font-size: 15px;
    }
}
