/* 新闻列表样式 */
.newsbox {
    margin: 30px 0;
}
.newsbox ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}
.newsbox li {
    width: 32%;
    margin-bottom: 30px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.newsbox li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.fangdapic {
    height: 200px;
    overflow: hidden;
}
.fangdapic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.newsbox li:hover .fangdapic img {
    transform: scale(1.05);
}
.newsbox li a {
    display: block;
    padding: 15px;
    color: #333;
}
.newsbox li i {
    display: block;
    color: #777;
    font-size: 13px;
    margin: 8px 0 12px;
    font-family: 'Microsoft YaHei', sans-serif;
}
.newsbox li p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Source Han Sans CN', 'PingFang SC', sans-serif;
}
.jianmorehuise {
  font-size: 14px;
  color: #0080cc;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #ddd;
    color: #666;
    font-size: 12px;
    transition: all 0.3s ease;
}
.newsbox li:hover .jianmorehuise {
  color: #0066aa;
  font-size: 14px;
  color: #0080cc;
    background: #0080cc;
    color: #fff;
    border-color: #0080cc;
}
.pg-pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    list-style: none;
    padding: 0;
}
.pg-pagination li {
    margin: 0 5px;
}
.pg-pagination a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    color: #666;
}
.pg-pagination a:hover, 
.pg-pagination a.cur {
    background: #0080cc;
    color: #fff;
    border-color: #0080cc;
}

/* ====== 追加：复刻 news.html 容器结构与导航样式 ====== */
.nynavbtn {
    background: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 10px 0;
}
.nynavbtn ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nynavbtn li { list-style: none; }
.nynavbtn li a {
    display: block;
    padding: 8px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    color: #3f3a39;
    font-size: 14px;
    letter-spacing: 1px;
}
.nynavbtn li.cur a,
.nynavbtn li a:hover {
    background: #0080cc;
    color: #fff;
    border-color: #0080cc;
}

.juzhong {
    margin: 0 auto;
    text-align: center;
}

.mainbox1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.pd3 {
    padding: 30px 0;
}

.mt3 {
    margin-top: 30px;
}

.sytit.xiao h2 {
    font-size: 22px;
    font-weight: 600;
    color: #3f3a39;
    position: relative;
    text-align: center;
}
.sytit.xiao h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #c40d23;
    margin: 10px auto 0;
    transition: background-color 0.2s ease;
}
.sytit.xiao h2:hover:after {
    background: #0080cc;
}

/* 常用清除浮动 */
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

/* 详情页样式 */
.news-detail { max-width: 1200px; margin: 0 auto; padding: 20px 0; }
.news-detail .wentihotit { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.news-detail .wentihotit h2 { font-size: 2rem; line-height: 1.4; color: #333; }
.news-detail .wentihotit p span { margin-right: 15px; color: #777; font-size: 14px; }
.news-detail .wentishotxts { font-size: 16px; line-height: 1.8; color: #333; }
.news-detail .wentishotxts img { max-width: 100%; height: auto; display: block; margin: 15px auto; }
.news-detail .fanhuibtn { display: inline-block; padding: 8px 16px; border: 1px solid #ddd; color: #666; transition: all .3s; }
.news-detail .fanhuibtn:hover { background: #0080cc; color: #fff; border-color: #0080cc; }
.news-detail .shangxaca ul { display: flex; justify-content: space-between; list-style: none; padding: 0; margin: 20px 0 0; }
.news-detail .shangxaca a { color: #0080cc; }