/* 新闻详情页面样式 */
.page {
    max-width: 1920px;
    margin: 0 auto;
    padding: 30px 250px;
}

.tits {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #002d72;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #002d72;
}

.time {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    display: block;
}

.content {
    /* background-color: #fff; */
    /* padding: 30px; */
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.con {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    text-align: center;
}

.con p {
    margin-bottom: 20px;
}

.con img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

.paging {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.paging .left {
    float: left;
}

.paging .left a {
    color: #666;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.paging .left a:hover {
    color: #002d72;
    text-decoration: none;
}

.return-list {
    float: right;
    background-color: #666;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.return-list:hover {
    background-color: #002d72;
}

/* 清除浮动 */
.f-cb::after {
    content: '';
    display: block;
    clear: both;
}