/* ==================== 容器样式 ==================== */

/* ✅ 限制最大宽度，保证内容居中 */
#news-overview,
.news-container {
    max-width: 1400px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
}

/* ==================== 新闻概览样式 ==================== */

#news-overview {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.overview-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.overview-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-right: 40px;
}

.overview-text p {
    margin-bottom: 20px;
}

.overview-list {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}

.overview-list li {
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.overview-list li i {
    color: #002FA7;
    margin-right: 10px;
}

.overview-image {
    flex: 1;
    text-align: center;
}

.overview-image img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.overview-image img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ==================== 新闻标题样式 ==================== */

.news-section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: left;
    color: #002FA7;
    margin: 20px 0 30px;
    padding-left: 15px;
}

.news-stylish-heading {
    font-family: 'Cormorant SC', cursive;
    font-size: 3.2em;
    font-weight: 700;
    color: #013DC4;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
    animation: fadeInText 1.2s ease-in-out 0.5s forwards;
}

/* ==================== 背景模块样式 ==================== */

.news-bg-wrapper {
    background: #ffffff; /* 统一白色背景 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 柔和的阴影 */
    border-radius: 16px; /* 圆角风格，保持一致 */
    padding: 40px 20px; /* 内边距，给内容留出空间 */
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

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

.news-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
}

.news-item {
    width: 100%;
    max-width: 320px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.news-item img {
    width: 100%;
    height: auto;
    display: block;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002FA7;
}

.news-meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.news-meta span {
    display: block;
    margin-bottom: 5px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #0056d3;
    text-decoration: none;
    font-weight: bold;
}

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

/* ==================== 新闻统计信息样式 ==================== */

.news-status-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.status-item {
    text-align: center;
    flex: 1;
}

.status-icon {
    font-size: 48px;
    color: #0056d3; /* 使用主题蓝色 */
    margin-bottom: 10px;
}

.status-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #002FA7; /* 更深的主题蓝 */
    margin-bottom: 5px;
}

.status-item p {
    font-size: 16px;
    font-weight: bold;
    color: #555; /* 较深的灰色字体 */
    margin: 0;
}

/* ==================== 分类新闻样式 ==================== */

.category-title {
    font-size: 24px;
    font-weight: bold;
    color: #002FA7;
    margin-bottom: 20px;
    text-align: center;
}

.category-news-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* 新闻项样式已在前面定义，此处无需重复 */