.news-title2 {
    color: #004993;
    border-bottom: 1px solid #ddd;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 16px;
}

.news-title2 a {
    color: #004993;
}

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

.news-page2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
  	font-size: 16px;
}

.news-article2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-right: 20px;
}

.no-indent {
    text-indent: 0 !important;
}

.page-color1 {
    color: #eb0000;
}

.page-color2 {
    color: #333;
}

.return-list {
    background-color: #0a60ab;
    color: #fff;
    width: 120px;
    height: 40px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.return-list a {
    color: #fff;
    text-decoration: none;
}

/* 添加这部分样式 */
.cont-body.maximg {
    font-size: 18px;

}

.cont-tit1 {
    padding: 30px 0 20px 0;

    border-top: 1px solid #e5e5e5;

    text-align: center;
}



/* 新增内容容器，控制最大宽度 */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 优化后的内容区域样式 */
.cont-body1 {
    width: 100%;
    padding: 20px 65px 60px;
    box-sizing: border-box;
    line-height: 1.6;
    font-size: 16px;
}

/* 响应式设计 - 小屏幕调整 */
@media (max-width: 768px) {
    .content-container {
        padding: 0 15px;
    }

    .cont-body1 {
        padding: 15px 0 50px;
    }

    .banner-container {
        height: 180px;
    }

    .cont-tit1 {
        padding-top: 30px;
        font-size: 20px;
    }
}

/* 响应式设计 - 超小屏幕调整 */
@media (max-width: 480px) {
    .content-container {
        padding: 0 10px;
    }

    .cont-body1 {
        padding: 10px 0 40px;
        font-size: 15px;
    }

    .banner-container {
        height: 150px;
    }

    .cont-tit1 {
        padding-top: 20px;
        font-size: 18px;
    }
}