/* ============================================================
   豫新反光服饰 - 方案1：商务深海蓝·政企稳重款
主色:#0F4C81 辅助:#3672B9 Hover:#0A3359 标题:#1F2937 正文:#4B5563
页面背景:#FFFFFF 板块背景:#F7F9FC 分割线:#DCE4EE 导航底色:#0F4C81
   ============================================================ */
/* ==================== 全局样式 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", "SimHei", Arial, sans-serif;
    font-size: 14px;
    color: #1F2937;
    line-height: 1.6;
    background-color: #F7F9FC;
}

ul, ol, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #1F2937;
    transition: all 0.3s;
}

a:hover {
    color: #0F4C81;
}

img {
    max-width: 100%;
    display: block;
    border: 0;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

/* ==================== 顶部信息栏 ==================== */
.top-bar {
    background-color: #fff;
    height: 36px;
    line-height: 36px;
    border-bottom: 1px solid #DCE4EE;
    font-size: 12px;
    color: #4B5563;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar a {
    color: #4B5563;
    font-size: 12px;
}

.top-bar a:hover {
    color: #0F4C81;
}

/* ==================== 头部 ==================== */
.header {
    background-color: #fff;
    padding: 18px 0;
    border-bottom: 3px solid #0F4C81;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo h1 {
    font-size: 20px;
    font-weight: bold;
    color: #1F2937;
    line-height: 1.2;
}

.logo h1 small {
    display: block;
    font-size: 12px;
    color: #6B7280;
    font-weight: normal;
    margin-top: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-box {
    display: flex;
    border: 1px solid #DCE4EE;
    border-radius: 3px;
    overflow: hidden;
    width: 260px;
}

.search-box input {
    flex: 1;
    height: 34px;
    line-height: 34px;
    padding: 0 12px;
    border: 0;
    outline: none;
    font-size: 13px;
    color: #4B5563;
    background: #F7F9FC;
}

.search-box input:focus {
    background: #fff;
}

.search-box button {
    width: 44px;
    height: 34px;
    border: 0;
    background-color: #0F4C81;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.search-box button:hover {
    background-color: #0A3359;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4B5563;
}

.header-tel .tel-icon {
    font-size: 20px;
    color: #0F4C81;
}

.header-tel .tel-text {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.2;
}

.header-tel .tel-num {
    font-size: 20px;
    font-weight: bold;
    color: #0F4C81;
    line-height: 1.2;
}

/* ==================== 主导航 ==================== */
.nav {
    background-color: #0F4C81;
    height: 44px;
    line-height: 44px;
}

.nav .container {
    display: flex;
    padding: 0;
}

.nav a {
    flex: 1;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    height: 44px;
    line-height: 44px;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: background 0.3s;
}

.nav a:first-child {
    border-left: 1px solid rgba(255,255,255,0.15);
}

.nav a:hover,
.nav a.active {
    background-color: #0A3359;
    color: #fff;
}

/* ==================== 轮播Banner ==================== */
.banner {
    position: relative;
    width: 100%;
    /* 1920x550 ratio = 28.65% */
    height: 0;
    padding-bottom: 28.65%;
    min-height: 280px;
    overflow: hidden;
    background: #1F2937;
}

.banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background-color: #0F4C81;
    width: 28px;
    border-radius: 6px;
}

/* 主要经营条 */
.main-business-bar {
    background: #0A3359;
    color: #fff;
    padding: 8px 0;
    font-size: 12px;
    line-height: 1.6;
}

.main-business-bar strong {
    color: #3672B9;
    margin-right: 5px;
}

/* ==================== 板块通用 ==================== */
.section {
    padding: 40px 0;
    background: #fff;
}

.section-gray {
    background: #F7F9FC;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 22px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 6px;
}

.section-title .sub-title {
    font-size: 12px;
    color: #6B7280;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==================== 品质保证 ==================== */
.quality-section {
    padding: 40px 0;
    background: #fff;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quality-item {
    text-align: center;
    padding: 20px;
}

.quality-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    border: 2px solid #0F4C81;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0F4C81;
    background: #fff;
    transition: all 0.3s ease;
}

.quality-item:hover .quality-icon {
    background: #0F4C81;
    color: #fff;
    transform: scale(1.1);
}

.quality-item h3 {
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 8px;
}

.quality-item p {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.6;
}

/* ==================== 新闻中心 ==================== */
.news-section {
    padding: 60px 0;
    background: #F7F9FC;
}

.news-wrapper {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.news-featured {
    flex: 0 0 50%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.news-featured-img {
    display: block;
    width: 100%;
    flex-shrink: 0;
}

.news-featured-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-featured:hover .news-featured-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-featured-content {
    padding: 18px 22px 22px;
}

.news-featured h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 12px;
    line-height: 1.5;
}

.news-featured h3:hover {
    color: #0F4C81;
}

.news-featured p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.news-featured .date {
    font-size: 13px;
    color: #6B7280;
}

.news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    gap: 18px;
    transition: box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.news-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.news-date {
    flex: 0 0 75px;
    text-align: center;
    background: #0F4C81;
    padding: 12px 10px;
    border-radius: 3px;
}

.news-date .year {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    display: block;
    line-height: 1.2;
}

.news-date .md {
    font-size: 15px;
    color: #f0f0f0;
    font-weight: bold;
    display: block;
    margin-top: 5px;
    line-height: 1.2;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-content h4 {
    font-size: 15px;
    color: #1F2937;
    margin-bottom: 8px;
    line-height: 1.5;
    font-weight: bold;
}

.news-content h4:hover {
    color: #0F4C81;
}

.news-content p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== 产品展示 ==================== */
.product-section {
    padding: 40px 0;
    background: #fff;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.product-tab {
    padding: 6px 16px;
    font-size: 13px;
    color: #4B5563;
    background: #fff;
    border: 1px solid #DCE4EE;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.product-tab.active,
.product-tab:hover {
    background: #0F4C81;
    color: #fff;
    border-color: #0F4C81;
}

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

.product-item {
    background: #fff;
    border: 1px solid #DCE4EE;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-item:hover {
    border-color: #0F4C81;
    box-shadow: 0 5px 20px rgba(15, 76, 129, 0.15);
    transform: translateY(-3px);
}

.product-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #F7F9FC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    transition: transform 0.5s;
}

.product-item:hover .product-img img {
    transform: scale(1.08);
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h4 {
    font-size: 14px;
    color: #1F2937;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.product-more-btn {
    display: inline-block;
    width: 60px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 12px;
    color: #6B7280;
    transition: all 0.3s;
}

.product-more-btn:hover {
    background: #0F4C81;
    color: #fff;
    border-color: #0F4C81;
}

/* ==================== 走进豫新 ==================== */
.about-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0F4C81 0%, #082D4F 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15,76,129,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section .section-title h2 {
    color: #fff;
}

.about-section .section-title .sub-title {
    color: rgba(255,255,255,0.5);
}

.about-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-img {
    flex: 0 0 480px;
    border: 5px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    line-height: 2;
    margin-bottom: 15px;
    text-indent: 2em;
}

.about-advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.about-advantage-item {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    padding-left: 18px;
    position: relative;
}

.about-advantage-item::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #3672B9;
    font-size: 10px;
}

.about-more-btn {
    display: inline-block;
    padding: 8px 25px;
    background: #0F4C81;
    color: #fff;
    font-size: 13px;
    border-radius: 3px;
    transition: background 0.3s;
}

.about-more-btn:hover {
    background: #0A3359;
    color: #fff;
}

/* ==================== 荣誉资质 ==================== */
.honor-section {
    padding: 40px 0;
    background: #F7F9FC;
}

.honor-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.honor-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    border-left: 4px solid #0F4C81;
    transition: all 0.3s;
}

.honor-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.honor-date {
    flex: 0 0 80px;
    text-align: center;
    background: #F7F9FC;
    padding: 12px 5px;
    border-radius: 3px;
    align-self: flex-start;
}

.honor-date .year {
    font-size: 16px;
    font-weight: bold;
    color: #4B5563;
    display: block;
    line-height: 1.2;
}

.honor-date .md {
    font-size: 14px;
    color: #0F4C81;
    font-weight: bold;
    display: block;
    margin-top: 5px;
    line-height: 1.2;
}

.honor-item:nth-child(4) .honor-date {
    background: #0A3359;
}

.honor-item:nth-child(4) .honor-date .year,
.honor-item:nth-child(4) .honor-date .md {
    color: #fff;
}

.honor-content {
    flex: 1;
}

.honor-content h4 {
    font-size: 15px;
    color: #1F2937;
    margin-bottom: 8px;
    font-weight: bold;
}

.honor-content h4:hover {
    color: #0F4C81;
}

.honor-content p {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.8;
}

/* ==================== 反光材料 ==================== */
.material-section {
    padding: 40px 0;
    background: #fff;
}

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

.material-item {
    background: #F7F9FC;
    border: 1px solid #DCE4EE;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
    text-align: center;
}

.material-item:hover {
    border-color: #0F4C81;
    box-shadow: 0 5px 15px rgba(15,76,129,0.1);
}

.material-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 15px;
}

.material-img img {
    max-height: 100%;
    max-width: 100%;
    transition: transform 0.5s;
}

.material-item:hover .material-img img {
    transform: scale(1.1);
}

.material-info {
    padding: 12px;
    background: #F7F9FC;
    text-align: center;
}

.material-info h4 {
    font-size: 13px;
    color: #1F2937;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
}

.material-more-btn {
    display: inline-block;
    width: auto;
    padding: 4px 12px;
    line-height: 20px;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    color: #1F2937;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.material-more-btn:hover,
.material-item:hover .material-more-btn {
    display: inline-block;
    width: auto;
    padding: 4px 12px;
    line-height: 20px;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    color: #1F2937;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

/* ==================== 友情链接 ==================== */
.friend-link {
    display: none;
}

.friend-link .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.friend-link-label {
    font-size: 13px;
    color: #4B5563;
    font-weight: bold;
    flex-shrink: 0;
}

.friend-link-content {
    flex: 1;
    font-size: 12px;
    color: #6B7280;
    line-height: 2;
}

.friend-link-content a {
    color: #4B5563;
    margin-right: 15px;
    font-size: 12px;
}

.friend-link-content a:hover {
    color: #0F4C81;
}

/* ==================== 页脚 ==================== */
.footer {
    background: #0A3359;
    color: rgba(255,255,255,0.7);
    padding-top: 25px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: center;
}

.footer-contact {
    display: flex;
    gap: 50px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.footer-contact-item .icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.footer-contact-item .text {
    line-height: 1.4;
}

.footer-contact-item strong {
    color: #fff;
    font-size: 15px;
}

.footer-qr {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-qr .qr-img {
    width: 80px;
    height: 80px;
    background: #fff;
    padding: 5px;
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #4B5563;
}

.footer-bottom {
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

/* ==================== 返回顶部 ==================== */
.back-to-top {
    display: none;
}

/* ==================== 内页通用 ==================== */
/* 页面Banner 1900x320 */
.page-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.page-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.breadcrumb {
    padding: 12px 0;
    background: #F7F9FC;
    font-size: 13px;
    color: #6B7280;
    border-bottom: 1px solid #DCE4EE;
}

.breadcrumb a {
    color: #4B5563;
}

.breadcrumb a:hover {
    color: #0F4C81;
}

.page-main {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

/* 左侧栏 */
.page-sidebar {
    flex: 0 0 240px;
}

.sidebar-box {
    background: #fff;
    border: 1px solid #DCE4EE;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.sidebar-title {
    padding: 14px 20px;
    background: #0F4C81;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.sidebar-nav li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #1F2937;
    transition: all 0.3s;
}

.sidebar-nav li:last-child a {
    border-bottom: 0;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    background: #EBF2FA;
    color: #0F4C81;
    padding-left: 25px;
}

.sidebar-contact {
    padding: 20px;
    text-align: center;
}

.sidebar-contact .tel-big {
    font-size: 24px;
    font-weight: bold;
    color: #0F4C81;
    margin: 10px 0;
}

.sidebar-contact p {
    font-size: 12px;
    color: #4B5563;
    line-height: 2;
}

/* 主内容 */
.page-content {
    flex: 1;
    background: #fff;
    border: 1px solid #DCE4EE;
    border-radius: 4px;
    padding: 25px 30px;
    min-height: 500px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #DCE4EE;
}

.pagination a,
.pagination span {
    padding: 6px 12px;
    border: 1px solid #DCE4EE;
    font-size: 13px;
    color: #4B5563;
    border-radius: 2px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination .current {
    background: #0F4C81;
    color: #fff;
    border-color: #0F4C81;
}

.pagination .active {
    background: #0F4C81;
    color: #fff;
    border-color: #0F4C81;
}

.pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
}

.pagination .page-info {
    border: none;
    color: #6B7280;
}

/* 详情页 */
.detail-title {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #DCE4EE;
    margin-bottom: 25px;
}

.detail-title h1 {
    font-size: 22px;
    color: #1F2937;
    margin-bottom: 10px;
    font-weight: bold;
}

.detail-meta {
    font-size: 12px;
    color: #6B7280;
}

.detail-meta span {
    margin: 0 10px;
}

.detail-body {
    font-size: 14px;
    color: #1F2937;
    line-height: 2;
}

.detail-body p {
    margin-bottom: 15px;
    text-indent: 2em;
}

.detail-body img {
    max-width: 100%;
    margin: 15px auto;
    border-radius: 4px;
}

.detail-near {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #DCE4EE;
    font-size: 13px;
}

.detail-near p {
    margin-bottom: 8px;
    color: #4B5563;
}

.detail-near a {
    color: #1F2937;
}

.detail-near a:hover {
    color: #0F4C81;
}

/* 留言表单 */
.message-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #1F2937;
    font-weight: 500;
}

.form-group label .required {
    color: #0F4C81;
    margin-right: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #DCE4EE;
    border-radius: 3px;
    font-size: 14px;
    color: #1F2937;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0F4C81;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit button {
    padding: 10px 40px;
    background: #0F4C81;
    color: #fff;
    border: 0;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit button:hover {
    background: #0A3359;
}

/* ==================== 荣誉资质详情页 ==================== */
.honor-page-content {
    padding: 40px 0;
    background: #fff;
}

.honor-detail-item {
    max-width: 900px;
    margin: 0 auto 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #DCE4EE;
}

.honor-detail-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.honor-detail-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 15px;
}

.honor-detail-meta {
    text-align: center;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #DCE4EE;
}

.honor-detail-meta span {
    margin: 0 15px;
}

.honor-detail-body {
    text-align: center;
}

.honor-detail-img {
    max-width: 500px;
    margin: 0 auto 25px;
}

.honor-detail-img img {
    width: 100%;
    height: auto;
}

.honor-detail-body p {
    font-size: 14px;
    color: #4B5563;
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    text-indent: 2em;
}

.honor-detail-nav {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #DCE4EE;
    font-size: 13px;
}

.honor-nav-prev,
.honor-nav-next {
    padding: 10px 15px;
    background: #F7F9FC;
    margin-bottom: 8px;
    border-radius: 3px;
    color: #4B5563;
}

.honor-nav-prev a,
.honor-nav-next a {
    color: #1F2937;
}

.honor-nav-prev a:hover,
.honor-nav-next a:hover {
    color: #0F4C81;
}

/* ==================== 内页全宽布局 ==================== */
.page-header-title {
    text-align: center;
    padding: 35px 0 25px;
    background: #fff;
}

.page-header-title h2 {
    font-size: 26px;
    color: #0F4C81;
    font-weight: bold;
    margin-bottom: 6px;
}

.page-header-title p {
    font-size: 13px;
    color: #6B7280;
    letter-spacing: 1px;
}

.page-main-full {
    padding: 30px 0 40px;
    background: #fff;
}
/* 荣誉资质网格 */
.honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.honor-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.honor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.honor-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #F7F9FC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.honor-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.honor-card-info {
    padding: 15px 20px 20px;
    text-align: center;
}

.honor-card-info h4 {
    font-size: 15px;
    color: #1F2937;
    margin-bottom: 8px;
    font-weight: 600;
}

.honor-card-info a {
    color: #0F4C81;
    font-size: 13px;
    text-decoration: none;
}

.honor-card-info a:hover {
    text-decoration: underline;
}

.honor-card-title {
    text-align: center;
    font-size: 15px;
    color: #1F2937;
    margin-bottom: 8px;
    font-weight: 600;
    padding: 0 10px;
}

.honor-card-link {
    display: block;
    text-align: center;
    color: #1F2937;
    font-size: 13px;
    text-decoration: none;
}

.honor-card-link:hover {
    color: #0F4C81;
    text-decoration: none;
}


.honor-pagination {
    text-align: center;
    padding: 20px 0;
    color: #4B5563;
    font-size: 14px;
}



/* 走进豫新/内页 左图右文 */
.about-intro {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.about-intro-img {
    flex: 0 0 420px;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
}

.about-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.9;
    color: #4B5563;
}

.about-intro-text p {
    margin-bottom: 10px;
}

.about-intro-text strong {
    color: #1F2937;
}

/* 经营范围条 */
.about-business-scope {
    background: #F7F9FC;
    padding: 18px 25px;
    border-radius: 4px;
    font-size: 14px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* 推荐产品 */
.recommended-section {
    padding: 40px 0;
    background: #F7F9FC;
}

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

.product-grid .product-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #DCE4EE;
    transition: box-shadow 0.3s;
}

.product-grid .product-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-grid .product-img {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F7F9FC;
}

.product-grid .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s;
}

.product-grid .product-item:hover .product-img img {
    transform: scale(1.05);
}

.product-grid .product-info {
    padding: 12px 15px 15px;
    text-align: center;
}

.product-grid .product-info h4 {
    font-size: 14px;
    color: #1F2937;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-grid .product-more-btn {
    display: inline-block;
    width: 36px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #DCE4EE;
    border-radius: 3px;
    color: #6B7280;
    font-size: 14px;
    transition: all 0.3s;
}

.product-grid .product-more-btn:hover {
    background: #0F4C81;
    border-color: #0F4C81;
    color: #fff;
}

/* 留言表单 */
.message-form-section {
    margin-top: 20px;
}

.message-form {
    max-width: 700px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.form-group {
    flex: 1;
    margin-bottom: 18px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #1F2937;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #DCE4EE;
    border-radius: 4px;
    font-size: 14px;
    color: #1F2937;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0F4C81;
}

.form-submit-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #0F4C81;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: #0A3359;
}

/* ==================== 产品中心页面 ==================== */
.category-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    border: 1px solid #DCE4EE;
    border-radius: 4px;
    overflow: hidden;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
}

.tab-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #F7F9FC;
    color: #4B5563;
    font-size: 20px;
    cursor: pointer;
    border: none;
    border-right: 1px solid #DCE4EE;
    flex-shrink: 0;
    text-decoration: none;
    transition: background 0.3s;
}

.tab-arrow:last-child {
    border-right: none;
    border-left: 1px solid #DCE4EE;
}

.tab-arrow:hover {
    background: #e8e8e8;
    color: #1F2937;
}

.tab {
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    color: #1F2937;
    text-decoration: none;
    white-space: nowrap;
    border-right: 1px solid #DCE4EE;
    transition: all 0.3s;
    cursor: pointer;
}

.tab:last-of-type {
    border-right: none;
}

.tab:hover,
.tab.active {
    background: #0F4C81;
    color: #fff;
}

/* 产品网格 3列 */
.product-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: #fff;
    border: 1px solid #DCE4EE;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card-img {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #F7F9FC;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
}

.product-card-info h4 {
    font-size: 14px;
    color: #1F2937;
    font-weight: 500;
    margin-bottom: 10px;
    flex: none;
}

.product-card-info a {
    color: #1F2937;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.product-card-info a:hover {
    color: #0F4C81;
    text-decoration: none;
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 28px;
    border: 1px solid #DCE4EE;
    border-radius: 3px;
    color: #6B7280;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 10px;
}

.product-card-btn:hover {
    background: #0F4C81;
    color: #fff;
    border-color: #0F4C81;
}

/* ==================== 新闻中心页面 ==================== */
.news-list-page {
    margin-bottom: 40px;
}

.news-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 20px;
    background: #fff;
    border: 1px solid #DCE4EE;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s;
}

.news-list-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.news-date-box {
    flex-shrink: 0;
    width: 70px;
    background: #0F4C81;
    border-radius: 4px;
    text-align: center;
    padding: 10px 8px;
    color: #fff;
}

.news-date-year {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
}

.news-date-day {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.news-list-content {
    flex: 1;
    min-width: 0;
}

.news-list-content h3 {
    font-size: 16px;
    color: #0F4C81;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-list-content h3 a {
    color: #0F4C81;
    text-decoration: none;
    transition: color 0.3s;
}

.news-list-content h3 a:hover {
    color: #0F4C81;
}

.news-list-content p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== 响应式 ==================== */
@media (max-width: 1240px) {
    .container {
        width: 96%;
        padding: 0 2%;
    }

    .quality-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .material-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .news-featured {
    flex: 0 0 50%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

    .about-img {
        flex: 0 0 45%;
    }
}

@media (max-width: 960px) {
    .container {
        width: 94%;
        padding: 0 3%;
    }

    .banner {
        padding-bottom: 32%;
        min-height: 220px;
    }

    .about-intro {
        flex-direction: column;
    }

    .about-intro-img {
        flex: none;
        width: 100%;
        height: 250px;
    }

    .product-grid,
    .product-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-list-item {
        flex-direction: column;
        gap: 12px;
    }

    .news-date-box {
        width: 60px;
        padding: 8px 6px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .material-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-wrapper {
        flex-direction: column;
    }

    .news-featured {
    flex: 0 0 50%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

    .about-wrapper {
        flex-direction: column;
    }

    .about-img {
        flex: none;
        width: 100%;
    }

    .page-main {
        flex-direction: column;
    }

    .page-sidebar {
        flex: none;
        width: 100%;
    }

    .nav a {
        font-size: 14px;
    }

    .header .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .footer-contact {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .banner {
        height: 200px;
    }

    .nav {
        height: auto;
    }

    .nav .container {
        flex-wrap: wrap;
    }

    .nav a {
        flex: 0 0 25%;
        font-size: 13px;
        height: 40px;
        line-height: 40px;
        border-right: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .logo h1 {
        font-size: 16px;
    }

    .logo h1 small {
        font-size: 10px;
    }

    .search-box {
        width: 180px;
    }

    .header-tel .tel-num {
        font-size: 16px;
    }

    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .quality-item {
        padding: 10px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-img {
        height: 150px;
    }

    .material-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .section {
        padding: 25px 0;
    }

    .honor-item {
        flex-direction: column;
        gap: 10px;
    }

    .honor-date {
        flex: none;
        align-self: flex-start;
    }

    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }

    .page-content {
        padding: 20px 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .product-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card-img {
        height: 150px;
    }

    .tab-item {
        padding: 8px 12px;
        font-size: 13px;
    }

    .news-list-item {
        padding: 15px 12px;
    }

    .news-date-box {
        width: 55px;
    }

    .news-date-year {
        font-size: 18px;
    }

    /* 移动端新闻中心：纵向堆叠，修复图文错位 */
    .news-layout {
        flex-direction: column;
        gap: 15px;
    }

    .news-featured {
        flex: none;
        width: 100%;
    }

    .news-featured-img img {
        height: 180px;
    }

    .news-featured-content {
        padding: 15px 16px 18px;
    }

    .news-featured-content h3 {
        font-size: 15px;
        line-height: 1.6;
    }

    .news-list-side {
        flex: none;
        width: 100%;
    }

    .news-side-item {
        padding: 12px;
        gap: 12px;
    }

    .news-date-box {
        flex: 0 0 58px;
        padding: 10px 6px;
    }

    .news-date-box .year {
        font-size: 18px;
    }

    .news-date-box .day {
        font-size: 12px;
    }

    .news-side-content h4 {
        font-size: 14px;
        line-height: 1.5;
    }

    .news-side-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    /* 移动端走进豫新：隐藏推荐产品板块 */
    .about-page .recommended-section {
        display: none;
    }
}

/* ===== 产品详情页新布局 ===== */
.category-tabs-wrapper {
    background: #fff;
    border-bottom: 1px solid #DCE4EE;
    padding: 20px 0;
}

.category-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #DCE4EE;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.tab-arrow:hover {
    background: #F7F9FC;
    border-color: #0F4C81;
    color: #0F4C81;
}

.tab-scroll {
    display: flex;
    gap: 0;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
}

.tab-scroll::-webkit-scrollbar {
    display: none;
}

.tab-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #1F2937;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.tab-item:hover,
.tab-item.active {
    background: #0F4C81;
    color: #fff;
    border-color: #0F4C81;
}

/* 产品详情页面 */
.product-detail-page {
    padding: 40px 0;
}

.product-detail-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #DCE4EE;
}

.product-detail-image {
    flex: 0 0 400px;
    border: 1px solid #DCE4EE;
    padding: 20px;
    background: #F7F9FC;
}

.product-detail-image img {
    width: 100%;
    display: block;
}

.product-detail-main {
    flex: 1;
}

.product-title {
    font-size: 28px;
    color: #0F4C81;
    margin-bottom: 20px;
    font-weight: bold;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #4B5563;
}

.price-label {
    color: #4B5563;
}

.inquiry-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #EBF2FA;
    border: 1px solid #B8D4F0;
    color: #3672B9;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.inquiry-btn:hover {
    background: #3672B9;
    color: #fff;
    border-color: #3672B9;
}

.product-brief {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.8;
    padding: 15px;
    background: #F7F9FC;
    border-radius: 4px;
}

.product-brief strong {
    color: #1F2937;
}

.product-detail-body {
    background: #fff;
}

.product-detail-body h3 {
    font-size: 18px;
    color: #0F4C81;
    margin: 30px 0 15px;
    padding-left: 12px;
    border-left: 4px solid #0F4C81;
}

.product-detail-body h3:first-child {
    margin-top: 0;
}

.product-detail-body ul {
    margin: 15px 0;
    padding-left: 2em;
}

.product-detail-body ul li {
    list-style: disc;
    line-height: 2;
    color: #4B5563;
    font-size: 14px;
}

.product-detail-body p {
    line-height: 2;
    color: #4B5563;
    margin-bottom: 12px;
    text-indent: 2em;
    font-size: 14px;
}

/* 响应式 */
@media (max-width: 960px) {
    .product-detail-layout {
        flex-direction: column;
    }
    
    .product-detail-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== 荣誉详情页新布局 ===== */
.honor-detail-page {
    padding: 40px 0;
    min-height: 600px;
}

.honor-detail-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DCE4EE;
}

.honor-detail-header h1 {
    font-size: 28px;
    color: #0F4C81;
    margin-bottom: 15px;
}

.honor-detail-meta {
    font-size: 14px;
    color: #6B7280;
}

.honor-detail-meta span {
    margin: 0 10px;
}

.honor-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.honor-detail-image {
    margin-bottom: 30px;
    text-align: center;
}

.honor-detail-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #DCE4EE;
    padding: 10px;
    background: #fff;
}

.honor-detail-text {
    font-size: 15px;
    line-height: 2;
    color: #4B5563;
    text-indent: 2em;
}

.honor-detail-nav {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #DCE4EE;
}

.honor-detail-nav .prev-link,
.honor-detail-nav .next-link {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #F7F9FC;
    font-size: 14px;
}

.honor-detail-nav .prev-link span,
.honor-detail-nav .next-link span {
    color: #4B5563;
}

.honor-detail-nav a {
    color: #0F4C81;
    text-decoration: none;
}

.honor-detail-nav a:hover {
    color: #0F4C81;
}

/* ===== 反光材料详情页新布局 ===== */
.material-detail-page {
    padding: 40px 0;
    min-height: 600px;
}

.material-detail-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DCE4EE;
}

.material-detail-header h1 {
    font-size: 28px;
    color: #0F4C81;
    margin-bottom: 15px;
}

.material-detail-meta {
    font-size: 14px;
    color: #6B7280;
}

.material-detail-meta span {
    margin: 0 10px;
}

.material-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.material-detail-image {
    margin-bottom: 30px;
    text-align: center;
}

.material-detail-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #DCE4EE;
    padding: 10px;
    background: #fff;
}

.material-detail-text {
    font-size: 15px;
    line-height: 2;
    color: #4B5563;
    text-indent: 2em;
}

.material-detail-nav {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #DCE4EE;
}

.material-detail-nav .prev-link,
.material-detail-nav .next-link {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #F7F9FC;
    font-size: 14px;
}

.material-detail-nav .prev-link span,
.material-detail-nav .next-link span {
    color: #4B5563;
}

.material-detail-nav a {
    color: #0F4C81;
    text-decoration: none;
}

.material-detail-nav a:hover {
    color: #0F4C81;
}

/* ===== 新底部样式（深蓝色） ===== */
.footer-new {
    background: #0A3359;
    color: #fff;
    padding: 30px 0 15px;
    margin-top: 40px;
}

.footer-new .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-new-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-new-info {
    display: flex;
    gap: 60px;
    flex: 1;
}

.footer-new-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.footer-new-item .icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.footer-new-item .label {
    color: rgba(255,255,255,0.7);
    margin-right: 8px;
}

.footer-new-item .value {
    color: #fff;
    font-weight: bold;
}

.footer-new-item .value.phone {
    font-size: 20px;
}

.footer-new-qr {
    text-align: center;
}

.footer-new-qr .qr-box {
    width: 100px;
    height: 100px;
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
}

.footer-new-qr .qr-box img {
    width: 100%;
    height: 100%;
}

.footer-new-qr .qr-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.footer-new-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-new-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-new-bottom a:hover {
    color: #fff;
}

@media (max-width: 960px) {
    .footer-new-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
    
    .footer-new-info {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===== 新闻中心新布局 ===== */
.news-featured-new {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.news-featured-img-new {
    display: block;
    width: 100%;
}

.news-featured-img-new img {
    width: 100%;
    height: 244px;
    object-fit: cover;
    display: block;
}

.news-featured-content-new {
    padding: 25px 30px 30px;
}

.news-featured-content-new h3 {
    font-size: 20px;
    color: #0F4C81;
    margin-bottom: 15px;
    line-height: 1.5;
}

.news-featured-content-new h3 a {
    color: inherit;
    text-decoration: none;
}

.news-featured-content-new h3 a:hover {
    color: #0F4C81;
}

.news-featured-content-new p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.news-featured-content-new .date {
    font-size: 13px;
    color: #6B7280;
}

/* ===== 新闻中心两栏布局 ===== */
.news-layout {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.news-featured {
    flex: 0 0 50%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.news-featured-img {
    display: block;
    width: 100%;
    flex-shrink: 0;
}

.news-featured-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.news-featured-content {
    padding: 18px 22px 22px;
}

.news-featured-content h3 {
    font-size: 17px;
    color: #0F4C81;
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-featured-content h3 a {
    color: inherit;
    text-decoration: none;
}

.news-featured-content h3 a:hover {
    color: #0F4C81;
}

.news-featured-content p {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured-content .date {
    font-size: 13px;
    color: #6B7280;
}

.news-list-side {
    flex: 0 0 calc(50% - 30px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-side-item {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.news-date-box {
    flex: 0 0 70px;
    background: #0F4C81;
    color: #fff;
    text-align: center;
    padding: 12px 8px;
    border-radius: 4px;
}

.news-date-box.active {
    background: #0F4C81;
}

.news-date-box .year {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
}

.news-date-box .day {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 4px;
}

.news-side-content {
    flex: 1;
}

.news-side-content h4 {
    font-size: 15px;
    color: #0F4C81;
    margin-bottom: 8px;
    line-height: 1.5;
}

.news-side-content h4 a {
    color: inherit;
    text-decoration: none;
}

.news-side-content h4 a:hover {
    color: #0F4C81;
}

.news-side-content p {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 960px) {
    .news-layout {
    display: flex;
    gap: 30px;
    align-items: stretch;
}
    
    .news-featured,
    .news-list-side {
    flex: 0 0 calc(50% - 30px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
}


/* 反光材料详情页样式 */
.material-detail-page {
    padding: 40px 0;
}

.material-detail-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DCE4EE;
}

.material-detail-header h1 {
    font-size: 28px;
    color: #0F4C81;
    margin-bottom: 15px;
    font-weight: 600;
}

.material-detail-meta {
    color: #6B7280;
    font-size: 14px;
}

.material-detail-meta span {
    margin: 0 15px;
}

.material-detail-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.material-detail-image {
    flex: 0 0 45%;
}

.material-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.material-detail-text {
    flex: 1;
    padding: 20px 0;
}

.material-detail-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #4B5563;
    text-indent: 2em;
}

.material-detail-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #DCE4EE;
}

.material-detail-nav .prev-link,
.material-detail-nav .next-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #F7F9FC;
    border-radius: 4px;
    font-size: 14px;
    color: #4B5563;
}

.material-detail-nav .prev-link span:first-child,
.material-detail-nav .next-link span:first-child {
    color: #6B7280;
    margin-right: 10px;
}

.material-detail-nav a {
    color: #0F4C81;
    text-decoration: none;
}

.material-detail-nav a:hover {
    color: #0F4C81;
}


/* === 方案1配色修正 === */
body { background-color: #FFFFFF; }
