@charset "utf-8";
/* Banner 视频样式 */
.banner {
    position: relative;
    width: 100%;
    height: 500px; /* 可自行修改高度 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* 整体容器 */
.machine-gallery {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* 上方大图区域 */
.gallery-main {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.gallery-main img {
    max-width: 55%;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.gallery-info {
    flex: 1;
    min-width: 300px;
}
.gallery-eng {
    color: #666;
    font-size: 14px;
    letter-spacing: 1px;
}
.gallery-title {
    font-size: 28px;
    margin: 10px 0 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.gallery-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #2a5c7e;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
}

/* 下方缩略图容器：横向滚动 */
.gallery-thumbs {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scrollbar-width: thin;
}
/* 隐藏默认滚动条美化 */
.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}
.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}
.thumbs-wrapper {
    display: flex;
    gap: 20px;
    min-width: max-content;
}
.thumb-item {
    width: 220px;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 8px;
    transition: 0.2s;
}
.thumb-item.active {
    border-color: #2a5c7e;
}
.thumb-item img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}
.thumb-item p {
    font-size: 13px;
    margin: 8px 0 0;
    text-align: center;
    color: #333;
    line-height: 1.4;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .gallery-main {
        flex-direction: column;
        text-align: center;
    }
    .gallery-main img {
        max-width: 100%;
    }
    .thumb-item {
        width: 160px;
    }
    .thumb-item img {
        height: 110px;
    }
}
.gallery-btn{ margin-top:25px}




.search-trigger {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}
.search-trigger .fa-search {
    font-size: 22px;
    color: #222;
    transition: color 0.25s ease;
}
.search-trigger::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #2a5c7e;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px;
    transition: width 0.3s ease;
}
.search-trigger:hover .fa-search {
    color: #2a5c7e;
}
.search-trigger:hover::after {
    width: 70%;
}

/* 搜索弹窗极简商务改版 */
.search-popup {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.search-popup.show {
    opacity: 1;
    visibility: visible;
}
.close-search {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 32px;
    color: #222;
    cursor: pointer;
    transition: color 0.25s;
}
.close-search:hover {
    color: #2a5c7e;
}
.search-input {
    width: min(720px, 90vw);
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    padding: 14px 0;
    font-size: 22px;
    color: #222;
    outline: none;
    transition: border-color 0.3s; background:#FFFFFF
}
.search-input:focus {
    border-color: #2a5c7e;
}
.search-input::placeholder {
    color: #999;
}

.biaodan{ width:60%}





.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.search-popup.show {
    display: flex;
}
.search-popup.show {
    display: flex;
}
.search-input {
    width:100%;
    padding: 24px 32px;
    font-size: 22px;
    border: none;
    outline: none;
    border-radius: 60px;
}
.close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    color: white;
    font-size: 36px;
    cursor: pointer;
}


.text-center {
    text-align: center;
}

/* Banner 更大气 */
.banner {
    height: 850px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 6%;
    color: white;
}
.banner h2 {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}
.banner p {
    font-size: 20px;
    opacity: 0.9;
}

/* 标题更大 */
h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}
h4 {
    font-size: 20px;
    font-weight: 600;
}

/* 卡片布局间距加大 */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; /* 加大间距 */
    margin-top: 60px;
}
.card {
    padding: 45px 30px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.06);
    text-align: center;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
}


.bg-gray { background: #f8f8f8; }
.bg-primary { background: #ff5500; color: white; }


.section{width:100%;padding:0;background:#fff;}
.container{width:100%;max-width:90%;margin:0 auto;}

.product-wrap{width:100%;}
.product-header{padding:19px 20px;position:relative; margin-top:50px; text-align:center}
.product-header h2{font-size:42px;margin-bottom:20px;font-weight:600;}
.product-header .split{width:100%;height:1px;background:#fff;margin:25px 0;opacity:0.6;}
.product-header p{font-size:18px;line-height:1.7;}

/* 右上角箭头 */
.product-arrows{position:absolute;top:50%;right:30px;transform:translateY(-50%);display:flex;gap:12px;}
.arrow{width:50px;height:50px;border-radius:50%;background:#fff;color:#2a5c7e;border:none;font-size:20px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:0.2s;}
.arrow:hover{background: #E9F7FE;}

/* 主体布局 */
.product-body{display:flex;width:100%;}

/* 左侧菜单 */
.product-nav{width:280px;background:#f5f5f5;}
.nav-item{padding:24px 30px;font-size:20px;cursor:pointer;transition:0.2s;}
.nav-item.active{background:#2a5c7e;color:#fff;border-left-color:#fff;}
.nav-item:hover:not(.active){background:#e8e8e8;}

/* 右侧产品 */
.product-content{flex:1;overflow:hidden;position:relative;}
.product-slider{display:flex;transition:transform 0.4s ease;    border-left: 1px solid #eee; margin-top:25px; }
.product-item{min-width:25%;padding:20px;border-right:1px solid #eee;border-top:1px solid #eee;border-bottom:1px solid #eee; padding-bottom:0px}
.product-item img{width:100%;height:260px;object-fit:cover;background:#ddd;}
.product-item h4{font-size:20px;margin-bottom:15px;color:#222; text-align:center}
.product-item p{font-size:15px;color:#666;line-height:1.6;}

/* 自适应 */
@media(max-width:992px){
.product-body{flex-direction:column;}
.product-nav{width:100%;display:flex;overflow-x:auto;}
.nav-item{min-width:220px;padding:18px 20px;font-size:18px;}
.product-item{min-width:50%;}
}
@media(max-width:576px){
.product-item{min-width:100%;}
.product-header h2{font-size:28px;}
.product-arrows{position:relative;top:auto;right:auto;transform:none;margin-top:20px;justify-content:center;display:flex;}
}


.service-title-box {
    text-align: center;
    margin-bottom: 60px;
}
.service-title-box h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 600;
}
.service-title-box p {
    font-size: 18px;
    color: #666;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}
.service-card {
    background: #f8f9fa;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
}
.service-card i {
    font-size: 42px;
    color: #2a5c7e;
    margin-bottom: 20px;
}
.service-card h4 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.service-card p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.7;
}

/* 自适应适配 */
@media(max-width:992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:576px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-title-box h2 {
        font-size: 30px;
    }
}


/* 关于我们 背景模块 */
.about-banner {
    width: 100%;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("/style/images/bg1.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 60px 0;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* 左侧文字区域 */
.about-left h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 600;
}
.about-left .line {
    width: 80px;
    height: 3px;
    background: #2a5c7e;
    margin-bottom: 30px;
}
.about-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}
.about-left .view-more {
    display: inline-block;
    padding: 14px 32px;
    background: #2a5c7e;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}
.about-left .view-more:hover {
    background: #007733;
}

/* 右侧数字统计区 2行3列 */
.about-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stat-item {
    text-align: center;
    padding: 25px 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}
.stat-item i {
    font-size: 30px;
    margin-bottom: 15px;
    opacity: 0.9;
}
.stat-item .num {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 8px;
}
.stat-item .text {
    font-size: 14px;
    opacity: 0.85;
}

/* 自适应 */
@media(max-width:992px){
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-right {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-left h2 {
        font-size: 32px;
    }
}
@media(max-width:576px){
    .about-right {
        grid-template-columns: 1fr;
    }
    .stat-item .num {
        font-size: 32px;
    }
}
.section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}

.news-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.news-title h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}
.news-title .divider {
    width: 100%;
    height: 1px;
    background: #222;
    margin-bottom: 20px;
}
.news-title p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}
.news-arrows {
    display: flex;
    gap: 12px;
}
.news-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2a5c7e;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 轮播结构 */
.news-slider-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.news-slider {
    display: flex;
    transition: transform 0.4s ease !important;
}
.news-card {
    min-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* 正常状态：灰色背景 */
.news-inner {
    background: #f5f5f5 !important;
    padding: 35px 25px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease; color:#EFEFEF
}

/* 背景图 + 蓝色遮罩（默认隐藏） */
.news-inner::before { background:#DFDFDF;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    transition: all 0.4s ease;
}
.news-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 100, 180, 1);
    opacity: 1;
    z-index: 1;
    transition: all 0.4s ease;
}
.news-inner:hover::after { content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 100, 180, 0.5);
    opacity: 0;
    z-index: 1;
    transition: all 0.4s ease;
}

/* 🔥 鼠标悬停才显示：背景图 + 蓝色遮罩 */
.news-card:hover .news-inner::before {
    opacity: 1;
}
.news-card:hover .news-inner::after {
    opacity: 1;
}
.news-card:hover .news-inner {
    background: transparent !important;
}

/* 文字悬浮变白 */
.news-card h4,
.news-card .intro,
.news-card .date-ym {
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}
.news-card:hover h4,
.news-card:hover .intro,
.news-card:hover .date-ym,
.news-card:hover .date-day {
    color: #fff !important;
}

.date-day {
    font-size: 72px;
    font-weight: bold;
    line-height: 1;
    color: #E7F8FE;
}
.news-card .line {
    width: 100%;
    height: 1px;
    background: #ccc;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}
.news-date {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

/* 自适应 */
@media (max-width:992px) {
    .news-card { min-width: 50%; }
}
@media (max-width:576px) {
    .news-card { min-width: 100%; }
    .news-top { flex-direction: column; align-items: flex-start; gap:20px; }
}
.footer-section {
    width: 100%;
    background: #1a1a20;
    color: #ffffff;
    padding: 70px 0 30px;
    border-top: 1px solid #333;
}
.footer-container {
    width: 1500px;
    max-width: 92%;
    margin: 0 auto;
}
.footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h3 {
    font-size: 22px;
    color: #888;
    margin-bottom: 25px;
    font-weight: 500;
}
.footer-col p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}
.footer-qrcode {
    width: 110px;
    height: 110px;
    margin-bottom: 25px;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.footer-social a {
    width: 32px;
    height: 32px;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 18px;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
}
.footer-col ul li a:hover {
    opacity: 1;
}
/* 底部版权栏 */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #888;
}

/* 自适应 */
@media (max-width:992px) {
    .footer-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:576px) {
    .footer-row {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
.news-banner {
    width: 100%;
    height: 320px;
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), url('/style/images/banner2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-banner h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
}


.page-banner {
    width: 100%;
    height: 320px;
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), url('/style/images/a1.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-banner h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
}



.breadcrumb {
    background: #f8f8f8;
    padding: 18px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}
.breadcrumb a {
    color: #666;
}



/* 文章列表 - 左图右文 */
.news-item {
    display: flex;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #eee;
    gap: 30px;
    transition: all 0.3s ease;
    border-radius: 6px;
}
/* 🔥 鼠标悬浮整行变蓝 */
.news-item:hover {
    background-color:#2a5c7e;
}
/* 🔥 鼠标悬浮所有文字变白 */
.news-item:hover .news-date,
.news-item:hover h3 a,
.news-item:hover p,
.news-item:hover .read-more {
    color: #fff !important;
}
.news-item:hover .read-more {
    border-color: #fff;
}

/* 左侧缩略图 */
.news-thumb {
    min-width: 220px;
    max-width: 220px;
}
.news-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
/* 右侧内容 */
.news-content {
    flex: 1;
}

/* 文章日期样式 */
.news-date {
    font-size: 14px;
    color: #E7F8FE;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.news-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
.news-content h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}
.news-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    transition: color 0.3s;
}
.read-more {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

/* 分页 */
.pagination {
    text-align: center;
    padding: 30px 0;
}
.pagination a, .pagination span {
    padding: 10px 16px;
    border: 1px solid #ddd;
    margin: 0 4px;
    text-decoration: none;
}
.pagination .current {
    background: #014291;
    color: #fff;
    border-color: #4a7c42;
}

@media (max-width:768px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .news-thumb {
        min-width: 100%;
        max-width: 100%;
    }
}
.screen-reader-text{ display:none}
.news-detail-banner {
    width: 100%;
    height: 320px;
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)), url('/style/images/banner10.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-detail-banner h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    margin: 0;
}





/* 文章头部信息 */
.news-header {
    margin-bottom: 30px;
}
.news-header h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
}
.news-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.inquire-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 20px;
}
/* 分享按钮 */
.share-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.share-icons a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    font-size: 14px;
}

/* 文章正文 */
.news-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
.news-content p {
    margin-bottom: 20px;
}
.news-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
}

@media (max-width:768px) {
    .news-detail-banner h1 {
        font-size: 32px;
    }
    .news-header h2 {
        font-size: 22px;
    }
}
.pt-100{ padding-top:50px; padding-bottom:50px}
.procudt-content h3{background: #0066cc;
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 20px; font-size:16px; font-weight:normal; margin-top:25px}
	.pageNavi{ padding-bottom:25px}
	
.nav-item{ display:inline}	
.article-tags a {
    display: inline-block;
    padding: 4px 10px;
    margin: 3px 5px 3px 0;
    background: #f0f4f9;
    color: #2563eb;
    border-radius: 99px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
}
.article-tags a:hover {
    background:#2a5c7e;
    color: #fff;
}
.tag {
    margin: 15px 0;
}

.shu{border-radius: 50%; border:2px solid #FFFFFF; padding:5px; width:50px; height:50px; margin:0px auto; line-height:40px; font-size:22px; color: #FFFFFF; margin-bottom:25px; font-weight:bold}


/* 鼠标悬浮显示背景图 */
.news-inner:hover {
  background-image: attr(data-bg url);
}
.share-icons a{
    background: #2a5c7e;
    color: #fff!important;
}
.news-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.news-title {
    text-align: center;
    flex: 1; /* 占满中间区域，实现文字整体居中 */
}
.news-title h2,
.news-title p,
.news-title .divider {
    margin-left: auto;
    margin-right: auto;
}
.news-inner a{ color:#FFFFFF}
.p60{ padding-left:60px}


/* 外层容器清除默认边距 */
.pic8 {
    margin: 40px 0;
}

/* 相关文章标题栏 仿蓝色分类标题 */
.crp-list-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2a5c7e;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: normal;
}

/* 列表容器 = 对应 product-grid 网格布局 */
.crp-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0 0 40px 0;
    padding: 0;
    list-style: none;
}

/* 单个列表项 = 对应 product-card 卡片样式 + 入场动画 */
.crp-list-item {
    border: 1px solid #eee;
    padding: 15px;
    position: relative;
    /* 入场动画 */
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
/* JS 添加上该类名后显示卡片 */
.crp-list-item.card-show {
    opacity: 1;
    transform: translateY(0);
}

/* 图片区域 = product-img */
.crp-list-item-image {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}
.crp-list-item-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 标题 = product-title */
.crp-list-item-title {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}
.crp-list-item-title a {
    color: #333;
    text-decoration: none;
}
.crp-list-item-title a:hover {
    color: #2a5c7e;
}

/* 无图条目微调间距 */
.crp-list-item:not(.crp-list-item-has-image) {
    display: flex;
    align-items: center;
}
.product-title{ text-align:center}

/* 响应式：平板2列，手机1列 */
@media (max-width: 992px) {
    .crp-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .crp-list {
        grid-template-columns: 1fr;
    }
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.service-card {
    min-height: 320px;
    padding: 30px;
    color: #fff;
    border-radius: 8px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* 初始状态：左移+透明 */
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.5s ease-out;
}
/* 动画激活状态 */
.service-card.show {
    opacity: 1;
    transform: translateX(0);
}
/* 四张卡片独立背景图+蓝色半透明遮罩 */
.service-card:nth-child(1) {
    background-image: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.8)), url(/style/images/01.webp);
}
.service-card:nth-child(2) {
    background-image: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.8)), url(/style/images/02.webp);
}
.service-card:nth-child(3) {
    background-image: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.8)), url(/style/images/03.webp);
}
.service-card:nth-child(4) {
    background-image: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.8)), url(/style/images/04.webp);
}
.shu {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
}
.service-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.p_list{ text-align:left}


.news-wrap {
    display: grid;
    grid-template-columns: 70% 28%;
    gap: 2%;
}
.news-main {
    width: 100%;
}
.news-sidebar {
    width: 100%;
}
.sidebar-box {
    background: #f8f9fa;
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 6px;
}
.sidebar-box h3 {
    font-size: 18px;
    color: #222;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.sidebar-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sidebar-box li {
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}
.sidebar-box li:last-child {
    border-bottom: none;
}
.sidebar-box a {
    color: #333;
    text-decoration: none;
}
.sidebar-box a:hover {
    color: #2a5c7e;
}

.news-header{
    padding:0px 0 25px;
    border-bottom:1px solid #eee;
    opacity:0;
    transform:translateY(80px);
    transition:opacity 0.6s ease-out, transform 0.6s ease-out;
}
.news-header.head-show{
    opacity:1;
    transform:translateY(0);
}
.news-header h2{
    font-size:32px;
    color:#222;
    margin:0 0 12px;
    line-height:1.4;
}
.news-meta{
    font-size:14px;
    color:#888;
    margin-bottom:20px;
}
.share-icons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}
.share-icons a{
    width:38px;
    height:38px;
    border:1px solid #2a5c7e;
    color:#2a5c7e;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:4px;
    transition:all 0.3s;
    text-decoration:none;
}
.share-icons a:hover{
    background:#2a5c7e;
    color:#fff;
}

.tag{
    padding:15px 0;
    border-top:1px solid #eee;
    font-size:15px;
    color:#666;
    opacity:0;
    transform:translateY(50px);
    transition:opacity 0.6s ease-out 0.25s, transform 0.6s ease-out 0.25s;
}
.tag.tag-show{
    opacity:1;
    transform:translateY(0);
}
.tag a{
    color:#2a5c7e;
    border:1px solid #2a5c7e;
    padding:4px 10px;
    margin:0 6px;
    text-decoration:none;
    border-radius:3px;
}
.tag a:hover{
    background:#2a5c7e;
    color:#fff;
}
.pageNavi{
    margin:40px 0 60px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    opacity:0;
    transform:translateY(50px);
    transition:opacity 0.6s ease-out 0.35s, transform 0.6s ease-out 0.35s;
}
.pageNavi.nav-show{
    opacity:1;
    transform:translateY(0);
}
.pageleft{
    text-align:left;
    padding:16px;
   
    transition:border-color 0.3s;
}
.pageright{
    text-align: left;
    padding:16px;

    transition:border-color 0.3s;
}
.pageleft:hover,.pageright:hover{
    border-color:#2a5c7e;
}
.pageNavi a{
    color:#333;
    text-decoration:none;
}
.pageNavi a:hover{
    color:#2a5c7e;
}

/* 移动端适配：侧边栏换到下方 */
@media(max-width:992px){
    .news-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media(max-width:768px){
    .pageNavi{
        grid-template-columns:1fr;
    }
    .news-header h2{
        font-size:24px;
    }
}
.news-container{
    padding:40px 0 60px;
}
.news-item{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:30px;
    padding:30px 0;
    border-bottom:1px solid #eee;
    opacity:0;
    transform:translateY(80px);
    transition:opacity 0.6s ease-out, transform 0.6s ease-out;
}
.news-item.news-show{
    opacity:1;
    transform:translateY(0);
}
.news-thumb img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:6px;
}
.news-date{
    font-size:14px;
    color:#999;
    margin-bottom:10px;
}
.news-content h3{
    font-size:22px;
    margin:0 0 12px;
}
.news-content h3 a{
    color:#222;
    text-decoration:none;
    transition:color 0.25s;
}
.news-content h3 a:hover{
    color:#2a5c7e;
}
.news-content p{
    font-size:15px;
    line-height:1.7;
    color:#666;
    margin:0 0 18px;
}
.read-more{
    display:inline-block;
    padding:9px 22px;
    border:1px solid #2a5c7e;
    color:#2a5c7e;
    text-decoration:none;
    font-size:14px;
    transition:all 0.3s;
}
.read-more:hover{
    background:#2a5c7e;
    color:#fff;
}
.section {
    opacity: 0;
    transform: translateY(120px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section.show-animate {
    opacity: 1;
    transform: translateY(0);
}
@media(max-width:768px){
    .news-item{
        grid-template-columns:1fr;
    }
    .news-thumb img{
        height:220px;
    }
}