/* 新闻二级页面样式 */
.news-modules {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-module {
    width: calc(50% - 15px); /* 增加宽度，减小间距至30px */
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* 第三个卡片独占一行
.news-module:nth-child(3) {
    width: 100%;
} */

.news-module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* 增加高度 */
    border-bottom: 1px solid #e0e0e0;
}

.news-module-title {
    font-size: 20px; /* 增大标题字体 */
    font-weight: bold;
    position: relative;
    padding-left: 12px;
    color: #333;
}

.news-module-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px; /* 增加高度 */
    background-color: #0066cc;
}

/* 其他样式保持不变 */
.news-module-more {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.news-module-content {
    padding: 15px;
}

/* 其余样式保持不变 */
.news-module-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-module-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
    position: relative;
    padding-left: 15px;
}

.news-module-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0066cc;
}

.news-module-list li:last-child {
    border-bottom: none;
}

.news-module-list li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
}

.news-module-list li a:hover {
    color: #0066cc;
}

.news-module-list li span {
    color: #999;
    font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-module {
        width: 100%;
    }
}