* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 顶部导航栏 (完全继承首页样式) --- */
.header {
    background-color: #050b3c;
    color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.logo-area img {
    height: 60px;
    width: auto;
}

.logo-area span {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.contact-top {
    font-size: 18px;
    color: #ccc;
}

.nav {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 8px;
}

.nav a {
    font-size: 16px;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #4da6ff;
    font-weight: bold;
}

/* --- 顶部通栏横幅 (Banner) --- */
.page-banner {
    width: 100%;
    height: 550px;
    /* 替换为产品中心特定Banner图或沿用通用Banner */
    background: url('../image/产品中心banner.jpg') no-repeat center center/cover;
    position: relative;
}

/* --- 面包屑导航与页面标题 --- */
.breadcrumb-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 40px 0 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 40px;
}

.page-title {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.page-title h1 {
    font-size: 28px;
    color: #050446;
    font-weight: bold;
}

.page-title span {
    font-size: 14px;
    color: #050446;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}
/* 面包屑导航链接样式 */
.breadcrumb a {
    color: #666;             /* 默认保持与面包屑文字相同的灰色 */
    transition: color 0.3s;  /* 颜色过渡动画 */
}

.breadcrumb a:hover {
    color: #0055ff;          /* 鼠标放上去时变成品牌科技蓝 */
    text-decoration: underline; /* 鼠标放上去时显示下划线提示可点击 */
}


/* --- 关于我们内容区 (Content) --- */
.about-content {
    max-width: 1000px;
    /* 内容区稍微收窄，提供最高阅读舒适度 */
    margin: 0 auto;
}

.about-content img{
    max-width: 100%;
}

.company-header-title {
    text-align: center;
    font-size: 24px;
    color: #050446;
    font-weight: bold;
    margin-bottom: 30px;
}

.intro-text {
    font-size: 15px;
    color: #333;
    text-indent: 2em;
    /* 规范中文段落首行缩进 */
    margin-bottom: 30px;
    text-align: justify;
}

.section-box {
    margin-bottom: 30px;
}

.section-box h3 {
    font-size: 18px;
    color: #050446;
    font-weight: bold;
    margin-bottom: 12px;
}

.section-box p {
    font-size: 15px;
    color: #444;
    text-indent: 2em;
    margin-bottom: 10px;
    text-align: justify;
}

/* --- 底部企业实景大图 --- */
.about-image-showcase {
    margin: 60px 0 20px;
    text-align: center;
}

.about-image-showcase img {
    width: 100%;
    /* 宽度占满父容器，保证在手机端也能自适应缩放 */
    max-width: 1200px;
    /* 限制最大宽度为 900px */
    height: 400px;
    /* 固定高度为 500px */

    /* 👇 核心魔法：控制展示图片的中间部分，且防止被拉伸变形 👇 */
    object-fit: cover;
    /* 保持原图比例填充整个区域，超出的部分自动裁剪 */
    object-position: top;
    /* 确保展示的是原图正中间的位置 */

    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(5, 4, 70, 0.15);
}

/* --- 底部 (Footer) - 完全继承首页带距离与1200px渐变线样式 --- */
.footer {
    background-color: #fff;
    padding: 70px 0;
    position: relative;
    margin-top: 100px;
}

.footer::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1200px;
    height: 1px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(5, 11, 60, 0.1) 0%, rgba(5, 4, 70, 1) 50%, rgba(5, 11, 60, 0.1) 100%);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact p {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #050446;
    margin-bottom: 10px;
    font-family: monospace, sans-serif;
}

.footer-qr img {
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
    padding: 5px;
}

/* --- 响应式适配 (小屏幕) --- */
@media (max-width: 768px) {

    .header-inner,
    .breadcrumb-bar,
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .header-right {
        align-items: center;
        margin-top: 15px;
    }

    .page-title {
        justify-content: center;
    }

    .intro-text,
    .section-box p {
        text-indent: 0;
    }

    .footer-qr {
        margin-top: 20px;
    }
}


/* --- 产品截图展示区 (上半部分) --- */
.product-gallery {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.product-gallery img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    /* border-radius: 6px; */
    box-shadow: 0 5px 25px rgba(5, 4, 70, 0.12);
    border: 1px solid #eee;
}

/* --- 产品正文介绍区 (下半部分) --- */
.product-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* 核心大标题与副标题 */
.product-main-header {
    text-align: center;
    margin: 50px 0 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #050446;
}

.product-main-header h2 {
    font-size: 30px;
    color: #050446;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-main-header span {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 段落与章节 */
.section-box {
    margin-bottom: 35px;
}

.section-box h3 {
    font-size: 18px;
    color: #050446;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 4px solid #0055ff;
}

.section-box p {
    font-size: 15px;
    color: #444;
    text-indent: 2em;
    margin-bottom: 10px;
    text-align: justify;
}

/* 列表项缩进样式 */
.feature-list {
    padding-left: 2em;
    margin-bottom: 15px;
}

.feature-list li {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    list-style-type: disc;
}

/* 让功能列表前面的小圆点变成品牌深蓝色，并稍微放大 */
.feature-list li::marker {
    color: #050446;
    /* 换成科技蓝 */
    font-size: 1.2em;
    /* 稍微放大圆点 */
}

/* --- 科技感专业数据表格 --- */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0 30px;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.product-table th,
.product-table td {
    padding: 12px 18px;
    border: 1px solid #e0e0e0;
}

.product-table th {
    background-color: #050446;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
}

/* 表格斑马纹交互 */
.product-table tr:nth-child(even) {
    background-color: #f8faff;
}

.product-table tr:hover {
    background-color: #f0f5ff;
}

/* --- 底部 (Footer) - 完全继承 --- */
.footer {
    background-color: #fff;
    padding: 70px 0;
    position: relative;
    margin-top: 100px;
}

.footer::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1200px;
    height: 1px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(5, 11, 60, 0.1) 0%, rgba(5, 4, 70, 1) 50%, rgba(5, 11, 60, 0.1) 100%);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact p {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #050446;
    margin-bottom: 10px;
    font-family: monospace, sans-serif;
}

.footer-qr img {
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
    padding: 5px;
}

/* --- 响应式适配 (小屏幕) --- */
@media (max-width: 768px) {

    .header-inner,
    .breadcrumb-bar,
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .header-right {
        align-items: center;
        margin-top: 15px;
    }

    .page-title {
        justify-content: center;
    }

    .section-box p {
        text-indent: 0;
    }

    .feature-list {
        padding-left: 1.2em;
    }

    .footer-qr {
        margin-top: 20px;
    }
}

/* --- 联系我们主体内容区 --- */
.contact-content {
    max-width: 1000px;
    margin: 0 auto 80px;
    text-align: center;
}

.company-name-title {
    font-size: 22px;
    color: #050446;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* 上方双横线包裹的文本区 */
.info-box-lines {
    max-width: 650px;
    margin: 0 auto 50px;
    padding: 20px 0;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

.info-box-lines p {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    font-family: monospace, sans-serif;
    letter-spacing: 0.5px;
}

.info-box-lines p:last-child {
    margin-bottom: 0;
}

/* 下方三个并排的交互卡片网格 */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(5, 4, 70, 0.04);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(5, 4, 70, 0.1);
    border-color: #050446;
}

.card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4ff;
    border-radius: 50%;
    color: #050446;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-card h3 {
    font-size: 17px;
    color: #050446;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    word-break: break-all;
    text-align: center;
}

/* --- 底部 (Footer) - 完全继承 --- */
.footer {
    background-color: #fff;
    padding: 70px 0;
    position: relative;
    margin-top: 100px;
}

.footer::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1200px;
    height: 1px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(5, 11, 60, 0.1) 0%, rgba(5, 4, 70, 1) 50%, rgba(5, 11, 60, 0.1) 100%);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact p {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #050446;
    margin-bottom: 10px;
    font-family: monospace, sans-serif;
}

.footer-qr img {
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
    padding: 5px;
}

/* --- 响应式适配 (小屏幕) --- */
@media (max-width: 768px) {

    .header-inner,
    .breadcrumb-bar,
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .header-right {
        align-items: center;
        margin-top: 15px;
    }

    .page-title {
        justify-content: center;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-qr {
        margin-top: 20px;
    }
}

/* --- 轮播图区域 (Swiper Banner 样式适配) --- */
.hero-banner {
    width: 100%;
    height: 550px;
    position: relative;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

/* 自定义 Swiper 前后箭头颜色 */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 132, 255, 0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* 自定义 Swiper 分页器小圆点颜色 */
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.6;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #4da6ff !important;
    width: 25px;
    border-radius: 5px;
    /* 让活动的小圆点变成胶囊形状，更现代 */
    transition: width 0.3s;
}

/* --- 通用标题样式 --- */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h2 {
    font-size: 28px;
    color: #050446;
    font-weight: bold;
}

.section-title span {
    font-size: 12px;
    color: #050446;
    letter-spacing: 1px;
}

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

.section-title.light span {
    color: #4da6ff;
}

/* --- 公司介绍 (Company Profile) --- */
.company-banner-wrap {
    background-color: #050b3c;
    margin-bottom: 80px;
}

.company-box {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 320px;
}

.company-img {
    flex: 4;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.company-img img {
    max-width: 100%;
    object-fit: contain;
}

.company-text {
    flex: 6;
    color: #fff;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 2;
    text-align: justify;
}

/* --- 我们的产品 (Products) --- */
.products-section {
    background: linear-gradient(135deg, #030726 0%, #081252 100%);
    padding: 20px 0 80px;
    color: #fff;
    overflow: hidden;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 60px 0;
    gap: 60px;
}

.product-item.reverse {
    flex-direction: row-reverse;
}

.product-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-img img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(0, 132, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}

.product-info p {
    font-size: 14px;
    color: #ccc;
    line-height: 2;
    margin-bottom: 30px;
    text-align: justify;
}

.btn-enter {
    display: inline-block;
    padding: 10px 40px;
    border: 1px solid #4da6ff;
    background-color: rgba(77, 166, 255, 0.1);
    color: #fff;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-enter:hover {
    background-color: #4da6ff;
    box-shadow: 0 0 15px rgba(77, 166, 255, 0.6);
    transform: translateY(-2px);
}

.divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* --- 底部 (Footer) --- */
.footer {
    background-color: #fff;
    padding: 70px 0;
    position: relative;
    margin-top: 100px;
}

.footer::before {
    content: '';
    display: block;
    width: 100%;
    max-width: 1200px;
    height: 1px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(5, 11, 60, 0.1) 0%, rgba(5, 4, 70, 1) 50%, rgba(5, 11, 60, 0.1) 100%);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact p {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #050446;
    margin-bottom: 10px;
    font-family: monospace, sans-serif;
}

.footer-qr img {
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
    padding: 5px;
}

/* --- 响应式适配 (小屏幕) --- */
@media (max-width: 768px) {

    .header-inner,
    .company-box,
    .product-item,
    .product-item.reverse,
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .header-right {
        align-items: center;
        margin-top: 15px;
    }

    .company-text {
        padding: 30px 20px;
    }

    .product-item {
        gap: 30px;
    }

    .footer-qr {
        margin-top: 20px;
    }
}

.fenge:last-child{
    display: none;
}


.product-list-content {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;          /* 开启弹性盒模型 */
    flex-wrap: wrap;        /* 屏幕不够时自动换行 */
    gap: 30px;              /* 两个卡片之间的间距 */
}
        /* 产品卡片样式 */
        .product-card {
            width: 390px;
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(5, 4, 70, 0.05);
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(5, 4, 70, 0.12);
        }

        .product-card-img {
            width: 100%;
            height: 220px;
            background-color: #f8fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            border-bottom: 1px solid #edf2f7;
        }

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

        .product-card-footer {
            background-color: #050b3c;
            color: #fff;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .product-card-title {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .btn-detail {
            background-color: transparent;
            border: 1px solid #fff;
            color: #fff;
            padding: 5px 15px;
            /* border-radius: 4px; */
            font-size: 12px;
            transition: all 0.3s;
        }

        .btn-detail:hover {
            background-color: #4da6ff;
            border-color: #4da6ff;
        }

        /* --- 底部 (Footer) - 完全继承 --- */
        .footer {
            background-color: #fff;
            padding: 70px 0;
            position: relative;
            margin-top: 100px;
        }

        .footer::before {
            content: '';
            display: block;
            width: 100%;
            max-width: 1200px;
            height: 1px;
            margin: 0 auto;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, rgba(5, 11, 60, 0.1) 0%, rgba(5, 4, 70, 1) 50%, rgba(5, 11, 60, 0.1) 100%);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-contact p {
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 1px;
            color: #050446;
            margin-bottom: 10px;
            font-family: monospace, sans-serif;
        }

        .footer-qr img {
            width: 100px;
            height: 100px;
            border: 1px solid #eee;
            padding: 5px;
        }

        /* --- 响应式适配 (小屏幕) --- */
        @media (max-width: 768px) {
            .header-inner,
            .breadcrumb-bar,
            .footer-inner {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .header-right {
                align-items: center;
                margin-top: 15px;
            }

            .page-title {
                justify-content: center;
            }

            .product-card {
                width: 100%;
                margin: 0 auto;
            }

            .footer-qr {
                margin-top: 20px;
            }
        }

        /* 分页 */
.fenye{
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 18px auto;
    border-radius: 3px;
  }
  .pagination > li {
    display: inline;
  }
  .pagination > li > a,
  .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #444c69;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
  }
  .pagination > li:first-child > a,
  .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
  }
  .pagination > li:last-child > a,
  .pagination > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
  }
  .pagination > li > a:hover,
  .pagination > li > span:hover,
  .pagination > li > a:focus,
  .pagination > li > span:focus {
    z-index: 2;
    color: #262a3b;
    background-color: #eeeeee;
    border-color: #ddd;
  }
  .pagination > .active > a,
  .pagination > .active > span,
  .pagination > .active > a:hover,
  .pagination > .active > span:hover,
  .pagination > .active > a:focus,
  .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #444c69;
    border-color: #444c69;
    cursor: default;
  }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #777777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
  }
  .pagination-lg > li > a,
  .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 16px;
    line-height: 1.3333333;
  }
  .pagination-lg > li:first-child > a,
  .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
  }
  .pagination-lg > li:last-child > a,
  .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
  }
  .pagination-sm > li > a,
  .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
  }
  .pagination-sm > li:first-child > a,
  .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
  }
  .pagination-sm > li:last-child > a,
  .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
  }
  
  .article-prevnext {
  /*color: #666;*/
      margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 5px;
}


.news-container {
            width: 1200px;
            margin: 20px auto;
        }
        /* 中英标题 */
        .section-title {
            margin: 40px 0 30px;
        }
        .section-title .cn {
            font-size: 56px;
            font-weight: bold;
            color: #102044;
            display: block;
            line-height: 1.2;
        }
        .section-title .en {
            font-size: 32px;
            color: #2b4b8c;
            display: block;
            margin-top:8px;
        }

        .news-wrap {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        /* a标签重置，去掉下划线 */
        .newsbox-link {
            text-decoration: none;
            display: block;
        }
        .newsbox {
            padding: 20px;
            border: 1px solid #eeeeee;
            border-radius: 6px;
        }
        /* hover悬浮效果可选 */
        .newsbox-link:hover .newsbox {
            border-color:#ccc;
        }
        /* 标题+时间同一行，标题居左放大，时间居右灰色 */
        .newsbox .head-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom:12px;
        }
        .newsbox .title {
            font-size: 18px;
            font-weight: 500;
            color:#222;
        }
        .newsbox .tit-time {
            font-size:14px;
            color:#999;
            white-space: nowrap;
        }
        .newsbox .tit-des {
            font-size:15px;
            color:#444;
            line-height:1.6;
        }

        /* 响应式 */
        @media (max-width: 1240px) {
            .news-container {
                width: 96%;
            }
            .section-title .cn{
                font-size:42px;
            }
            .section-title .en{
                font-size:24px;
            }
        }
        @media (max-width: 640px) {
            .news-wrap {
                grid-template-columns: 1fr;
            }
            .section-title .cn{
                font-size:32px;
            }
            .section-title .en{
                font-size:18px;
            }
        }
.content img{
    max-width: 100%;
}