/* 全局重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", sans-serif;
    text-decoration: none;
}

html, body {
    min-width: 1200px;
}

/* 顶部导航栏 */
.top-nav {
    background: #fff;
    position: relative;
    z-index: 100;
    font-size: 20px;
    color: #212121;
}

.nav-container {
    width: 100%;
    padding: 0 12%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-block;
    margin-top: 6px;
    margin-right: 100px;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: space-between;
    list-style: none;
    height: 80px;
    line-height: 80px;
}

.nav-menu > li {
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}
.nav-menu > li a {
    color: #212121;
}
.nav-menu > li:hover {
    color: #0671b9;
}

/* 橙色下划线效果 */
.nav-menu > li:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #edbd55;
}

.nav-menu >li .search-icon {
    display: inline-block;
    vertical-align: sub;
}

.nav-menu >li:has(.search-icon):hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
}

/* 下拉菜单 */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #03203b;
    white-space: nowrap;
}

.dropdown li {
    display: inline-block;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.dropdown li a {
    color: #fff;
    text-decoration: none;
}

.dropdown li:hover {
    /* background: #333; */
}

.nav-menu > li:hover .dropdown {
    display: block;
}

/* Banner 区域 - 公共样式 */
.banner {
    width: 100%;
    display: flex;
    color: #fff;
    text-align: center;
}

/* Banner 区域 - index页面特有 */
.index-banner {
    height: 850px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slider{ 
    width:100%; 
    height: 100%;
    margin:0 auto;  
    position:relative;
    overflow:hidden;    
}
.slider .bd{ 
    position:relative;
    z-index:0;  
}
.slider .bd li{ 
    width: 100%;
    position: relative;
    overflow:hidden; 
}
.slider .bd li img{ 
    display:block;
    width: 100%;
    height: 850px; 
    object-fit: cover; 
}

.slider .bd li .disc {
    position: absolute;
    left: 12%;
    top: 45%;
    color: #fff
}

.slider .hd{ 
    width:100%;  
    position:absolute;
    z-index:1; 
    bottom: 30px; 
    left:0; 
    height:50px; 
    line-height:30px; 
}
.slider .hd ul{ 
    text-align:center;  
}
.slider .hd ul li{ 
    cursor:pointer;
    display:inline-block; 
    width: 23%;
    height: 40px;
    font-size: 28px;
    text-align: left;
    zoom:1;  
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 20px;
}

.slider .hd ul .on{ 
    border-bottom-color: #0671b9;
    color: #0671b9;
}
.slider .timer{ 
    position:absolute; 
    z-index:1; 
    left:0; 
    bottom:0; 
    height:4px; 
    width:0; 
    background:#000; 
    filter:alpha(opacity=40);
    opacity:0.4; 
    font-size:0;
    overflow:hidden;   
}

/* Banner 区域 - list/detail页面特有 */
.list-banner, .detail-banner {
    height: 429px;
    display: flex;
    align-items: center;
    line-height: 70px;
    background: url('/static/images/list-banner.png') no-repeat center center;
}
.banner-content{
    width: 1200px;
    margin: 0 auto;
}
.list-banner h1, .detail-banner h1 {
    font-size: 30px;
    /* margin-left: 12%; */
    margin-left: 30px;
    color: #fff;
    display: inline-block;
    border-bottom: 2px solid #fff;
}

/* 面包屑导航 */
.breadcrumb {
    font-size: 12px;
    color: #818181;
    margin-bottom: 5px;
    padding: 16px;
    background-color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 50px;
    position: relative;
    top: -25px;
}

.breadcrumb-left {
    display: flex;
    align-items: center;
}

.breadcrumb .location-icon {
    display: inline-block;
    height: 15px;
    margin-right: 10px;
}

.breadcrumb a {
    color: #818181;
    text-decoration: none;
    margin: 0 10px;
}

.breadcrumb .news-tabs a {
    margin-left: 15px;
    padding: 5px 10px;
    border-radius: 3px;
}

.breadcrumb .news-tabs a.active {
    color: #0671b9;
}

/* 页脚样式 */
footer {
    width: 100%;
    background-color: #2c445c;
    color: #fff;
    font-size: 16px;
}
.footer-container {
    width: 100%;
    padding: 50px 18%;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    margin: 0 20px;
    border-right: 1px solid #34495e;
}

.footer-column-special {
    min-width: 100px;
}

.footer-column:first-child {
    margin-left: 0;
}

.footer-column:last-child {
    margin-right: 0;
    border-right: 0;
}


.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li:first-child {
    margin-bottom: 24px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: #3498db;
}

.footer-column .bold {
    font-weight: bold;
}

.footer-bottom {
    width: 100%;
    padding: 20px 30%;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    background-color: #1e3348;
    display: flex;
    justify-content: space-between;
}

/* 响应式媒体查询 */
/* @media (max-width: 1800px) {
    .about-img {
        width: 30%;
    }
}

@media (max-width: 1600px) {
    .about-img {
        width: 34%;
    }
} */


/* @media (max-width: 1400px) {
    .nav-container {
        padding: 0 2%;
    }

    .about-container {
        padding-left: 2%;
    }

    .about-title {
        padding-left: 5%;
    }

    .about-text >p {
        padding-left: 5.5%;
        padding-right: 4%;
    }

    .about-buttons {
        padding-left: 5.5%;
    }

    .about-img {
        width: 38%;
        right: 4%;
    }

    .procurement-section .container, .business-cards, .news-section .container {
        padding: 0 2%;
    }

    .business-intro-header {
        padding: 0 7%;
    }

    .footer-container {
        padding: 50px 4%;
    }

    .main-content {
        padding: 0 2%;
    }

    .main {
        padding: 0 2%;
    }

    .banner h1 {
        margin-left: 2%;
    }
} */

/* index页面特有样式 */

/* 关于信忠国 模块容器 */
.about-section {
    padding: 40px 0 0 0;
    background: #fff;
    position: relative;
}

.about-container {
    width: 100%;
    padding-left: 12%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    
}

.about-text {
    width: 55%;
    height: 550px;
}

.about-title {
    height: 125px;
    border-bottom: 1px solid #f5f5f5;
    padding-left: 10%;
    margin-bottom: 45px;
}

.about-text .about-title h2 {
    font-size: 30px;
    color: #0671b9;
    margin-bottom: 10px;
}

.about-text .about-title .subtitle {
    color: #0671b9;
    font-size: 18px;
}

.about-text >p {
    color: #343434;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 10.5%;
    /* padding-right: 8%; */
    font-size: 16px;
}

/* 按钮组 */
.about-buttons {
    padding-left: 10.5%;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.about-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #abb2ba;
    border-radius: 30px;
    background: #fff;
    color: #9ea8b2;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.about-btn.active {
    background: #0671b9;
    color: #fff;
    border-color: #0671b9;
}

.about-btn img {
    width: 18px;
    height: 18px;
}

/* 右侧图片 */
.about-img {
    width: 26%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 10%;
}

.about-img >img {
    display: inline-block;
    width: 100%;
}

/* 业务范围蓝色条 */
.business-bar {
    margin-left: 12%;
    /* padding: 20px 20px 30px 60px; */
    padding: 0 60px;
    height: 130px;
    background: #0671b9;
    color: #fff;
    box-sizing: border-box;
    
}

.business-bar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.business-bar span {
    font-size: 18px;
}


/* 政府采购区块样式 */
.procurement-section {
    background: #f6f7f9;
    padding: 80px 0 100px 0;
}

.procurement-section .container {
    width: 100%;
    padding: 0 12%;
    box-sizing: border-box;
    margin: 0 auto;
}

.procurement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.procurement-header .procurement-title {
    padding-left: 5%;
}

.procurement-header .procurement-title h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.procurement-header .procurement-title p {
    font-size: 18px;
}

.procurement-tabs {
    display: flex;
    gap: 10px;
}

.tab-btn {
    padding: 10px 30px;
    border: 1px solid #abb2ba;
    border-radius: 30px;
    color: #9ea8b2;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    background: #fff;
}

.tab-btn.active {
    background: #0671b9;
    color: #fff;
    border-color: #0671b9;
}


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

.procurement-item {
    background: #fff;
    padding: 20px 20px 10px 20px;
    border-bottom: 2px solid #fff;
    cursor: pointer;
    text-decoration: none;
}

.procurement-item:hover {
    border-bottom: 2px solid #0671b9;
}
.procurement-item:hover h4, .procurement-item:hover >div >span,.procurement-item:hover >div .more {
    /* border-bottom: 2px solid #0671b9; */
    color: #0671b9;
}

.procurement-item h4 {
    /* color: #0671b9; */
    color: #292929;
    font-size: 18px;
    margin-bottom: 10px;
}

.procurement-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;

    /* 现代浏览器 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    
    /* 备用方案 */
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-line-clamp: 2;
    
    /* 标准属性 */
    display: box;
    box-orient: vertical;
    line-clamp: 2;
    
    /* 基础属性 */
    text-overflow: ellipsis;
}


.procurement-item >div {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.procurement-item >div >span {
    /* color: #0671b9;   */
    color: #999999;
    font-size: 16px;
    margin-bottom: 8px;
}

.procurement-item >div .more {
    /* color: #0671b9; */
    color: #999999;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.procurement-item:hover >div .more >span {
    background-color: #0671b9;
}

.procurement-item >div .more >span {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 10px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    /* background-color: #0671b9; */
    background-color: #999999;
    margin-left: 6px;
}

/* 业务介绍区块整体样式 */
.business-intro {
    position: relative;
    background: url('/static/images/news-bg.png') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
}


.business-intro-header {
    width: 100%;
    padding: 0 15%;
    box-sizing: border-box;
    margin-bottom: 50px;
    color: #000;
}

.business-intro-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.business-intro-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* 三卡片横向布局 */
.business-cards {
    width: 100%;
    padding: 0 12%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.business-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 560px;
    cursor: pointer;
    background-color: burlywood;
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 卡片顶部默认显示的内容 */
.card-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #0671b9;
    z-index: 2;
}

.card-icon {
    width: 60px;
    height: 60px;
    padding: 10px;
}

.card-top h3 {
    font-size: 20px;
    font-weight: bold;
}

/* 鼠标悬停时弹出的蓝色面板 */
.card-hover {
    position: absolute;
    bottom: -75%;
    left: 0;
    width: 100%;
    height: 42%;
    background: #0671b9;
    color: #fff;
    padding: 30px 25px;
    transition: bottom 0.4s ease;
    z-index: 3;
    text-align: center;
}

.business-card:hover .card-hover {
    bottom: 0;
}

.business-card:hover .card-top {
    display: none;
}

.hover-icon {
    width: 50px;
    height: 50px;
    padding: 8px;
}

.card-hover h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.card-hover p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    text-align: left;

    /* 现代浏览器 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    
    /* 备用方案 */
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-line-clamp: 2;
    
    /* 标准属性 */
    display: box;
    box-orient: vertical;
    line-clamp: 2;
    
    /* 基础属性 */
    text-overflow: ellipsis;
}

.hover-plus {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 34px;
    font-size: 20px;
    text-decoration: none;
}

/* 新闻资讯区块整体样式 */
.news-section {
    padding: 60px 0;
    background: #f6f7f9;
}

.news-section .container {
    width: 100%;
    padding: 0 12%;
    box-sizing: border-box;
    margin: 0 auto;
}

/* 顶部标题+Tab布局 */
.news-header {
    width: 100%;
    padding: 0 0 0 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.news-header .news-title h2 {
    color: #333;
    font-size: 24px;
    margin: 0;
}

.news-header .news-title span {
    color: #000;
    font-size: 18px;
    margin: 0;
}

.news-tabs {
    display: flex;
    gap: 10px;
}


/* 内容区左右布局 */
.news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


.news-img {
    width: 100%;
    height: 316px;
    padding: 15px;
    box-sizing: border-box;
    background-color: #fff;
}

.news-img >img {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.news-featured {
    width: 100%;
    height: 114px;
    margin-top: 15px;
    background-color: #fff;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-featured h4 {
    color: #333;
    font-size: 18px;
}

.news-featured p {
    width: 100%;
    color: #666;
    font-size: 16px;
    line-height: 1.5;

    /* 现代浏览器 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    
    /* 备用方案 */
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-line-clamp: 2;
    
    /* 标准属性 */
    display: box;
    box-orient: vertical;
    line-clamp: 2;
    
    /* 基础属性 */
    text-overflow: ellipsis;
}


/* 右侧三条新闻列表 */
.news-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    border-bottom: 2px solid #eee;
    padding: 15px 15px 10px 15px;
    transition: all 0.3s ease;
    background-color: #fff;
    height: 138px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
}

.news-item:hover {
    border-color: #0671b9;
}

.news-item h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px;
}
.news-item:hover h4 {
    color: #0671b9;
}

.news-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    /* 现代浏览器 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    
    /* 备用方案 */
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-line-clamp: 2;
    
    /* 标准属性 */
    display: box;
    box-orient: vertical;
    line-clamp: 2;
    
    /* 基础属性 */
    text-overflow: ellipsis;
}

.news-item >div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-item >div >span {
    color: #999999;
    font-size: 16px;
}
.news-item:hover >div .more, .news-item:hover >div >span {
    color: #0671b9;
}
.news-item:hover >div .more >span {
    background-color: #0671b9;
}
.news-item >div .more {
    color: #999999;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.news-item >div .more >span {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 10px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: #999999;
    margin-left: 6px;
}

/* list页面特有样式 */

/* 全局基础样式 */
.main-content {
    width: 1200px;
    /* padding: 0 12%; */
    margin: 0 auto;
}

/* 首条新闻 */
.list-news-featured {
    display: flex;
    margin-bottom: 30px;
    background-color: #f9f9f9;
}

.list-news-featured .news-image {
    width: 48%;
}

.list-news-featured .news-image >img {
    display: inline-block;
    width: 100%;
    height: auto;
}

.list-news-featured .news-featured-content {
    width: 52%;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}

.news-featured-content .news-date {
    display: block;
    color: #999;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: right;

}

.news-featured-content .news-title {
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.news-featured-content .line {
    display: inline-block;
    width: 100px;
    height: 2px;
    background-color: #0671b9;
    margin: 15px 0;
}

.news-featured-content .news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 18px;
}

.news-featured-content .more {
    color: #0671b9;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 30px;
}

.news-featured-content .more >span {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 8px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: #0671b9;
    margin-left: 6px;
}

/* 新闻样式 */
.news-list {
    margin-bottom: 30px;
    min-height: 500px;
}

.list-news-item {
    display: flex;
    padding: 20px;
    height: 180px;
    box-sizing: border-box;
}

.list-news-item:nth-child(odd) {
    background-color: #f8f8f8;
}

.list-news-content .news-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.list-news-content {
    color: #666;
}
.list-news-item:hover .list-news-content {
    color: #fff;
}
.list-news-content .news-excerpt  {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;

     /* 现代浏览器 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    
    /* 备用方案 */
    display: -moz-box;
    -moz-box-orient: vertical;
    -moz-line-clamp: 2;
    
    /* 标准属性 */
    display: box;
    box-orient: vertical;
    line-clamp: 2;
    
    /* 基础属性 */
    text-overflow: ellipsis;
}

.list-news-content .more {
    color: #343434;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.list-news-content .more >span {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 6px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: #343434;
    margin-left: 6px;
}

.list-news-item .news-date {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #343434;
}

.list-news-item .news-date .day {
    font-size: 24px;
    font-weight: bold;
    color: #343434;
    display: block;
}

.list-news-item:hover {
    background-color: #2980b9;
    color: #fff;
}

.list-news-item:hover .news-title {
    color: #fff;
}

.list-news-item:hover .news-excerpt {
    color: #ecf0f1;
}

.list-news-item:hover .more {
    color: #fff;
}

.list-news-item:hover .more >span {
    background-color: #fff;
    color: #2980b9;
}
.list-news-item:hover .news-date {
    color: #fff;
}
.list-news-item:hover .news-date .day {
    color: #fff;
}

.pagination {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #666;
  margin-bottom: 50px;
}

.page-first,
.page-prev,
.page-next,
.page-last,
.page-item {
  display: inline-block;
  min-width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  margin: 0 2px;
  border: 1px solid #cccccc;
  background-color: #fff;
  box-sizing: border-box;
  color: #999999;
}

.page-item.active {
  background-color: #31ace4;
  color: #fff;
  border-color: #31ace2;
}

.disabled {
  color: #e5dfdf;
  border-color: #dfdfdf;
}

.page-first,
.page-prev,
.page-next,
.page-last {
    padding: 0 8px;
}

/* detail页面特有样式 */

/* 全局基础样式 */
.main {
    width: 100%;
    padding: 0 12%;
    margin: 0 auto;
}

/* 新闻 */
.detail-main-content .news-title {
    font-size: 28px;
    text-align: center;
    font-weight: normal;
    margin: 30px 0 10px;
    color: #222;
    text-align: center;   
}
.detail-main-content .detail-content {
    line-height: 40px;
    margin-bottom: 50px;
    width: 90%;
    margin: 0 auto;
    min-height: 500px;
}
.detail-main-content img{
    max-width: 80%;
    display: block;
    margin: 0 auto;
}
.detail-main-content .news-subtitle {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

/* 新闻正文 */
.detail-main-content .news-content {
    margin-bottom: 40px;
    font-size: 16px;
    color: #666;
}

.detail-main-content .news-content p {
    margin-bottom: 20px;
    text-indent: 2em; /* 首行缩进2字符 */
}

.detail-main-content .news-content h3 {
    font-size: 16px;
    margin: 30px 0 15px;
    font-weight: normal;
}

.detail-main-content .news-content h4 {
    font-size: 16px;
    margin: 25px 0 10px;
    font-weight: normal;
}

/* 新闻配图 */
.detail-main-content .news-img {
    text-align: center;
    margin: 30px 0;
}

.detail-main-content .news-img img {
    max-width: 50%;
    height: auto;
    border: none;
}

/* 新闻分页 */
.news-pagination {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    padding: 20px 0 40px 0;
}

.news-pagination >p >span:first-child {
    margin-top: 5px;
    margin-right: 5px;
}

.news-pagination >p {
    max-width: 260px;
    display: flex;
    cursor: pointer;
}

.news-pagination >p:hover {
    color: #3498db;
}
