
@import "/style/font/Poppins/Poppins.css";
@import "/style/font/Merriweather/Merriweather.css";


body {
    margin: 0;
    padding: 0;
    font-family: "Poppin";
    font-size: 12px;
}

.bodywidth {
    width: 1400px;
    margin: auto;


}

.left {
    float: left;
}

.right {
    float: right;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.top {
    background: #1375B7;
    padding: 10px 0;
}

.top .bodywidth {
    display: flex;
    /* 核心：左右布局 */
    justify-content: space-between;
    /* 左右分开 */
    align-items: center;
    /* 垂直居中 */
}

.top .name {

    background: url('/style/cn_style/home.jpg') no-repeat left center;


}

.top .hotline {
    background: url('/style/cn_style/tel.jpg') no-repeat left center;

}

.top .name ul,
.top .hotline ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.top .name li,
.hotline li {
    display: inline-block;
}

/* 链接样式 */
.top .name a,
.top .hotline a {
    display: block;
    color: #fff;
    text-indent: 20px;
    line-height: 18px;

}

.top .hotline a {
    text-indent: 30px;
}

.header {
    padding: 20px 0;
    display: flex;
    /* 核心：左右布局 */
    justify-content: space-between;
    /* 左右分开 */
    align-items: center;
    overflow: visible;
    z-index: 9999;
    /* 垂直居中 */
}

.header .logo {
    background: url('/style/cn_style/logo.jpg') no-repeat left center;

    color: #1374B7;
    font-size: 26px;
    text-indent: 70px;
}

.header .logo span {
    display: block;
    font-size: 16px;
    color: #858585;
    font-family: 'Poppin';
}
.header .name ul li{
    line-height: 70px;
    height: 70px;
}
/* 主导航样式 */
.nav .MainNav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    position: relative;
    z-index: 999;
}

/* 一级菜单 */
.nav .MainNav > li {
    position: relative;
    padding: 14px 22px;
    transition: all 0.3s ease;
    border-radius: 6px;
}
.nav .MainNav > li > a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

/* 二级菜单 —— 更大、更稳、更立体 */
.nav .MainNav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px; /* 更宽 */
    background: #fff;
    padding: 15px 0;
    margin: 5px 0 0;
    list-style: none;
    display: none;

    /* 立体 + 大气 */
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.13);
    border: none;
    
    /* 延迟消失 → 解决太活、乱跑、消失问题 */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 二级菜单选项 */
.nav .MainNav li ul li {
    padding: 12px 25px;
    transition: all 0.25s ease;
    border-radius: 6px;
    margin: 2px 10px;
}
.nav .MainNav li ul li a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    white-space: nowrap;
}

/* 鼠标移上显示二级（更稳） */
.nav .MainNav li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* 一级菜单 hover */
.nav .MainNav > li:hover {
    background: #1375B7;
}
.nav .MainNav > li:hover > a {
    color: #fff;
}

/* 二级菜单 hover 效果 */
.nav .MainNav li ul li:hover {
    background: #f0f7ff;
    padding-left: 32px;
}
.nav .MainNav li ul li:hover a {
    color: #1375B7;
    font-weight: 500;
}

 
.banner {
    clear: both;
    overflow: hidden;
}

.cpzsindex {
    overflow: hidden;
    padding: 20px 0;
    clear: both;
}

/* 标题容器：立体美观核心 */
.cpzsindex>.title {
    position: relative;
    font-size: 28px;
    color: #1374B7;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;

    /* 立体阴影效果 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1),
        2px 2px 4px rgba(0, 0, 0, 0.08);


}

/* 中文副标题 */
.cpzsindex>.title span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    color: #666;


}

/* 底部立体装饰线（让标题更精致） */
.cpzsindex>.title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #1375B7, #1375B7);
    border-radius: 2px;

    /* 线条立体阴影 */
    box-shadow: 0 2px 4px rgba(26, 35, 126, 0.2);
}

/* 可选：hover 轻微动效，更高级 */
.cpzsindex>.title:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


.cpzsindex .cpzs1 {
    width: 260px;
}

.cpzsindex>.cpzs1>.title {
    background: #1375B7;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    color: #FFFFFF;
    padding-left: 20px;

}

.cpzsindex .cpzs1 .title span {
    font-size: 14px;
}

.cpzsindex .cpzs1 ul {
    border: 1px #e5e7eb solid;

    background: #fff;

    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* 一级菜单基础样式 */
.cpzsindex .cpzs1 ul li {

    background: #fff;
    transition: all 0.25s ease;
}
/* 第一个默认 = hover 样式 */
.cpzsindex .cpzs1 ul li:first-child,
.cpzsindex .cpzs1 ul li:hover {
    background: #e6f0fb;
    box-shadow: 0 2px 6px rgba(19, 117, 183, 0.12);
}

.cpzsindex .cpzs1 ul li a {
    display: block;
    color: #333;
    font-size: 16px;
    height:47px;
    line-height: 47px;
    background: transparent;
    border: none;
    padding-left: 18px;
    padding-right: 45px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    border-radius: 6px;
}

/* 精致右箭头 */
.cpzsindex .cpzs1 ul li a::after {
    content: '›';
    position: absolute;
    right: 16px;
    top: 40%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #b0b8c4;
    font-weight: 400;
    transition: all 0.3s ease;
}
.cpzsindex .cpzs1 ul li.open > a::after {
    transform: translateY(-50%) rotate(90deg);
    color: #1375B7;
}

.cpzsindex .cpzs1 ul li:first-child a {
    border: none;
}

.cpzsindex .cpzs1 ul.ProdMenu > li > a{
    display: none;
}
.cpzsindex .cpzs1 ul.Column {
    list-style: none;
    padding: 0;
}
.cpzsindex .cpzs1 > ul {
    border: none;
    box-shadow: none;
}
.cpzsindex .cpzs1 ul ul ul{
    border: none;
    box-shadow: none;
}

/* ====================================== */
/* 🔥 二级菜单 默认就是蓝色背景 + 蓝色加粗字体 */
/* ====================================== */
.cpzsindex .cpzs1 ul.Column li {
    margin: 8px 6px;
    background: #eee; /* 二级默认蓝色背景 */
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}
.cpzsindex .cpzs1 ul.Column li a {
    text-decoration: none;
    color: #1375B7 !important; /* 白色字体更高级 */
    font-weight: bold; /* 默认加粗 */
    padding-left: 22px;
    background: transparent;
}

/* 二级选中状态 */
.cpzsindex .cpzs1 ul.Column li.active {
    background: #1375B7;
}
.cpzsindex .cpzs1 ul.Column li.active a {
    color: #fff !important;
}

/* 二级hover 加深蓝色 */
.cpzsindex .cpzs1 ul.Column li a:hover{
    color: #fff !important;
    font-weight: bold;
    background: #1375B7;
    border-radius: 6px;
}

/* 三级菜单缩进 */
.cpzsindex .cpzs1 ul ul li a {
    padding-left: 32px;
}
.cpzsindex .cpzs1 ul ul ul li a {
    padding-left: 48px;
}

.cpzsindex .cpzs1 ul.ProdMenu ul ul{
    display: none;
}



.cpzsindex .right {
    width: 1100px;
}

.cpzsindex .right ul {
    /* 清除默认列表样式 */
    list-style: none;
    padding: 0;
    margin: 0;

    /* 核心：弹性布局，自动换行 */
    display: flex;
    flex-wrap: wrap;

    /* 横向间距（可自行调整） */
    gap: 20px;
}

.cpzsindex .right ul li {
    width: calc(32% - 10px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* 3D 效果必须加 */
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.4s ease;
}

/* 鼠标悬浮：3D左右翻转 + 上浮 + 立体阴影 */
.cpzsindex .right ul li:hover {
    transform: translateY(-6px) rotateY(10deg);
    box-shadow: 0 12px 24px rgba(19, 116, 183, 0.25);
}


.cpzsindex .right ul li .image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.cpzsindex .right ul li .image img {
    width: 100%;
    height: 280px; /* 固定高度更美观 */
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* 图片同时轻微放大，更立体 */
.cpzsindex .right ul li:hover .image img {
    transform: scale(1.06);
}
.cpzsindex .right ul li .name {

    /* 让文字居中 */
    text-align: center;
    /* 绝对定位 */
    position: absolute;
    /* 距离底部 */
    bottom: 20px;
    /* 关键：宽度占满父元素，才能居中 */
    width: 100%;
    /* 可选样式 */
    color: #fff;
    font-size: 16px;
}

.cpzsindex .right ul li a .name {
    color: #333;
}

.cpzsindex .right ul li a:hover .name {
    color: #1374B7;
}

.gsjjindex {
    overflow: hidden;
    background: url('/style/cn_style/gsjjbg.jpg') no-repeat center top;
    height: 630px;
}

/* 外层容器基础样式 */
.gsjjindex {
    margin: 40px auto 0;
    padding: 40px 0 0;
    overflow: hidden;
    clear: both;
}

/* 标题容器：立体美观核心 */
.gsjjindex .title {
    position: relative;
    font-size: 28px;
    color: #1374B7;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;


    /* 立体阴影效果 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1),
        2px 2px 4px rgba(0, 0, 0, 0.08);
}



/* 中文副标题 */
.gsjjindex .title span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    color: #666;


}

/* 底部立体装饰线（让标题更精致） */
.gsjjindex .title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #1375B7, #1375B7);
    border-radius: 2px;

    /* 线条立体阴影 */
    box-shadow: 0 2px 4px rgba(26, 35, 126, 0.2);
}

/* 可选：hover 轻微动效，更高级 */
.gsjjindex .title:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.gsjjindex ul li{
    position: relative;
    height: 370px;
}
/* logo区域加渐变遮罩+缩放动效 */
.gsjjindex ul li .logo {
    position: absolute;
    width: 50%;
    left: 0;
    top: 0;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}
.gsjjindex ul li .logo img{

    object-fit: cover;
    transition: transform 0.4s ease;
}
.gsjjindex ul li:hover .logo img{
    transform: scale(1.06);
}

/* 正文字体优化配色 */
.gsjjindex ul li .cont {
    position: absolute;
    width: 50%;
    top: 60px;
    left: 0;
    font-size: 16px;
    line-height: 180%;
    color: #555;

}


.gsjjindex ul li .more {
    position: absolute;
    width: 50%;
    left: 0px;
    bottom: 0px;
}
.gsjjindex ul li .more a{
    display: block;
    padding: 12px 0;
    background: #fff;
    border: 1px solid #eee;
    width: 120px;
    text-align: center;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.gsjjindex ul li .more a:hover{
    background: #1374B7;
    color: #fff;
    border-color: #1374B7;
    box-shadow: 0 4px 12px rgba(19, 117, 183, 0.25);
    transform: translateY(-2px);
}
.gsjjindex ul li .more a:hover{

}
.gsjjindex ul li .image {
    position: absolute;
    width: 45%;
    top: 30px;
    right: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.gsjjindex ul li .image img{
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.gsjjindex ul li:hover .image img {
    transform: scale(1.04);
}
.qywhindex{
    background: url('/style/cn_style/whbg.jpg') no-repeat center bottom;
    min-height: 620px;
}

/* 标题容器：立体美观核心 */
.qywhindex .title {
    position: relative;
    font-size: 28px;
    color: #1374B7;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;


    /* 立体阴影效果 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1),
        2px 2px 4px rgba(0, 0, 0, 0.08);
}



/* 中文副标题 */
.qywhindex .title span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    color: #666;


}

/* 底部立体装饰线（让标题更精致） */
.qywhindex .title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #1375B7, #1375B7);
    border-radius: 2px;

    /* 线条立体阴影 */
    box-shadow: 0 2px 4px rgba(26, 35, 126, 0.2);
}

/* 可选：hover 轻微动效，更高级 */
.qywhindex .title:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
.qywhindex ul{
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.qywhindex ul li{
    width: calc(32% - 10px);
    box-sizing: border-box;
    background-color: #fff;
    min-height: 440px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}
/* 悬浮立体上浮+加深阴影 */
.qywhindex ul li:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(19, 115, 183, 0.15);
}

.qywhindex ul li .image{
    text-align: center;
    padding-top: 25px;
    overflow: hidden;
}
.qywhindex ul li .image img{
    transition: transform 0.4s ease;
    border-radius: 8px;
}
.qywhindex ul li:hover .image img{
    transform: scale(1.05);
}

.qywhindex ul li .name{
    padding: 15px 25px 10px;
}
.qywhindex ul li .name a{
    font-size: 20px;
    color: #1373B7;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.qywhindex ul li:hover .name a{
    color: #0d5a91;
}

.qywhindex ul li .cont{
    padding: 0 25px 25px;
    line-height: 1.7;
}
.qywhindex ul li .cont a{
    color: #666666;
    font-size: 14px;
    text-decoration: none;
}
.xwzxindex{
    padding: 40px 0 ;
    }
/* 标题容器：立体美观核心 */
.xwzxindex .title {
    position: relative;
    font-size: 28px;
    color: #1374B7;
    text-align: center;

    padding-bottom: 15px;


    /* 立体阴影效果 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1),
        2px 2px 4px rgba(0, 0, 0, 0.08);
}



/* 中文副标题 */
.xwzxindex .title span {
    display: block;
    font-size: 16px;
    font-weight: normal;
    color: #666;



}

/* 底部立体装饰线（让标题更精致） */
.xwzxindex .title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #1375B7, #1375B7);
    border-radius: 2px;

    /* 线条立体阴影 */
    box-shadow: 0 2px 4px rgba(26, 35, 126, 0.2);
}

/* 可选：hover 轻微动效，更高级 */
.xwzxindex .title:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.xwzxindex ul {
    list-style: none;
    padding: 30px 0 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

/* 卡片主体：立体圆角 + 阴影 */
.xwzxindex ul li {
    width: calc(24.5% - 10px);
    box-sizing: border-box;
    background: #ffffff;
    min-height: 440px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 25px;
}

/* 鼠标悬浮：立体上浮 + 阴影加深 */
.xwzxindex ul li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(19, 115, 183, 0.14);
}

/* 图片容器（如果有图片）：圆角 + 缩放动效 */
.xwzxindex ul li .Image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}
.xwzxindex ul li .Image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.xwzxindex ul li:hover .image img {
    transform: scale(1.05);
}

/* 标题 */
.xwzxindex ul li .Name {
    padding: 0 0 12px;
}
.xwzxindex ul li .Name a {
    font-size: 20px;
    color: #1373B7;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}
.xwzxindex ul li .Name a.ColName{
    display: none;
}
.xwzxindex ul li .Name a:hover {
    color: #0d5a91;
}

/* 内容简介 */
.xwzxindex ul li .Desc {
    font-size: 14px;
    padding: 0;
    line-height: 1.7;
    color: #666;
}
.xwzxindex ul li .Desc a {
    color: #888;
    text-decoration: none;
}
.xwzxindex ul li .Time{
    display: none;
}
.footer{
    overflow: hidden;

    clear: both;
}
.footer .f1 {
    overflow: hidden;
    clear: both;
    background: #333333;
    overflow: hidden;
    padding: 50px 0;
    border-top: 5px #1375B7 solid;
}
.footer .f1 .title{
    font-size: 30px;
    color: #fff;
}
.footer .f1 .title span{
    color: #CCC;
    font-size: 16px;
}

.footer .f1 {
    color: #fff;
}
.footer .f1  p{
    line-height: 200%;
    font-size: 16px;
    padding: 15px 0;
}
.footer .f1  p strong{
    font-weight: normal;
    font-size: 20px;
}
.footer .right{

}
.footer .right p {
    text-align: center;   /* 文字居中 */
    margin: 0;
    color: #666;
  }
  .footer  .right p img {
    display: block;       /* 让图片单独占一行 */
    margin: 0 auto ;  /* 图片水平居中 + 下边距 */
    padding: 0;
  }



.footer .f2{
    background: #000;
    padding: 15px 0;
    color: #ccc;
    overflow: hidden;
}
.neiyecont{
    padding: 40px 0;
    overflow: hidden;
}
.neiyecont1{
    width: 260px;
}

.neiyecont1_1{
    font-size: 18px;

    border-bottom: 1px #EEE solid;
}

.neiyecont1_1 .title {
    background: #1375B7;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    color: #FFFFFF;
    padding-left: 20px;

}

.neiyecont1_1 .title span {
    font-size: 14px;
}

.neiyecont1_1 ul {
    border: 1px #e5e7eb solid;
    background: #ffffff;

    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* 一级菜单基础样式 */
.neiyecont1_1 ul li {
 

    background: #eef2f8;
    transition: all 0.25s ease;
}
/* 第一个默认 = hover 样式 */
.neiyecont1_1 ul li:first-child,
.neiyecont1_1 ul li:hover {
    background: #e6f0fb;
    box-shadow: 0 2px 6px rgba(19, 117, 183, 0.12);
}

.neiyecont1_1 ul li a {
    display: block;
    color: #333;
    font-size: 16px;
    height: 52px;
    line-height: 52px;
    background: transparent;
    border: none;
    padding-left: 18px;
    padding-right: 45px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    border-radius: 6px;
}

/* 右侧精致箭头 */
.neiyecont1_1 ul li a::after {
    content: '›';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #b0b8c4;
    font-weight: 400;
    transition: all 0.3s ease;
}
/* 展开箭头旋转 */
.neiyecont1_1 ul li.open > a::after {
    transform: translateY(-50%) rotate(90deg);
    color: #1375B7;
}

.neiyecont1_1 ul li:first-child a {
    border: none;
}

.neiyecont1_1 ul.ProdMenu > li > a{
    display: none;
}
.neiyecont1_1 ul li li:first-child a {
    border: none;
}
.neiyecont1_1 ul.ProdMenu > li > ul{
    border:none;  
}
.neiyecont1_1 ul.ProdMenu > li > ul.Column ul.Products{
    display: none;
}

.neiyecont1_1 ul.Column {
    list-style: none;
    padding: 0;
}

/* ======================== */
/* 二级菜单 样式（你要的效果） */
/* ======================== */
.neiyecont1_1 ul.Column li {
    margin: 8px 6px;
    background: #EEE; /* 二级默认背景色 #EEE */
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(19, 117, 183, 0.12);
}
.neiyecont1_1 ul.Column li a {
    text-decoration: none;
    color: #1375B7; /* 二级字体蓝色 */
    font-weight: bold;
    padding-left: 32px;
    background: transparent;
}

/* 选中状态 */
.neiyecont1_1 ul.Column li.active {
    background: #1375B7;
}
.neiyecont1_1 ul.Column li.active a {
    color: #fff;
}

/* hover 效果 */
.neiyecont1_1 ul.Column li a:hover{
    color: #1375B7;
    background: #dce9f5;
    border-radius: 6px;
}

/* 三级菜单缩进 */
.neiyecont1_1 ul ul li a {
    padding-left: 32px;
}
.neiyecont1_1 ul ul ul li a {
    padding-left: 48px;
}


.neiyecont1_2{
    margin-top: 20px;
    border: 1px #EEE solid;
}

.neiyecont1_2 .title {
    background: #1375B7;
    height: 70px;
    line-height: 70px;
    font-size: 22px;
    color: #FFFFFF;
    padding-left: 20px;

}

.neiyecont1_2 .title span {
    font-size: 14px;
}

.neiyecont1_2 p{
    padding: 0 10px;
    font-size: 14px;
    line-height: 160%;
    color: #666;
}
.neiyecont1_2 p strong{
    font-size: 16px;
    color: #1375B7;
}
.neiyecont2{
    width: 1100px;
}
.neiyecont2_1{
    font-size: 10px;
    padding: 20px 0;
    border-bottom: 1px #EEE solid;
    font-size: 18px;
}

.neiyecont2_2{
    margin: 30px auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 12px;
    /* 立体多层阴影 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 
                0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    min-height: 700px;

}
.Content.lxwm{
    padding: 20px;
}
.Content.lxwm p{
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
/* 通用信息卡片样式 独立区块 */
.Content.lxwm p br{
    display: none;
}
.Content.lxwm p strong{
    width: 100%;
    text-align: center;
    font-size: 22px;
    color: #1967d2;
    padding: 12px 0;
    background: #f5f9ff;
    border-radius: 8px;
    box-shadow: 0 3px 10px #e0e8f5;
    margin-bottom: 15px;
}
/* 单个信息盒子 */
.Content.lxwm p span{
    flex: 1;
    min-width: 260px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f3f8;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    transition: 0.2s all;
}
/* 悬浮立体效果 */
.Content.lxwm p span:hover{
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}



  
  /* 公司简介文字样式 */
  .Content .gsjj p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-indent: 2em; /* 首行缩进 */
    margin-bottom: 18px;
    letter-spacing: 0.5px;
  }
  
  /* 图片列表：横向排列3个 */
  .Content .gsjj ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* 图片间距 */
    justify-content: space-between;
  }
  
  /* 每个图片项占 31% 宽度，正好一排3个 */
  .Content .gsjj ul li {
    width: 31%;
    margin: 0;
  }
  
  /* 图片容器：立体卡片效果 */
  .Content .gsjj ul li a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  /* 图片自适应 */
  .Content .gsjj ul li img {
    width: 100%;
    height: 220px;
    object-fit: cover; /* 不变形裁剪 */
    display: block;
  }
  
  /* 鼠标悬浮：立体上浮效果 */
  .Content .gsjj ul li a:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

  .Content .gsjj p b {
    font-size: 18px;
    color: #2c3e50;
    /* 企业蓝 专业稳重 */
    font-weight: 700;
    display: inline-block;
    margin-bottom: 6px;
    padding: 4px 10px;
    background: #f5f7fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

/* 换行后内容缩进，更整齐 */
.Content .gsjj p br+span,
.Content .gsjj p {
    text-indent: 0;
    padding-left: 2px;
}

/* 企业文化图片居中、美观、自适应 */
.Content .gsjj p[align="center"] {
    text-align: center !important;
    margin: 35px 0 20px !important;
}

.Content .gsjj p[align="center"] img {
    max-width: 90%;
    height: auto;

    /* 立体阴影 */
    border: none !important;
    outline: none;
}

/* 新闻列表外层容器 */
.NoColumn.Article {
 
}

/* 列表清除默认样式 */
.NoColumn.Article .List {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 每个新闻项 独占一排 + 卡片立体效果 */
.NoColumn.Article .List li {
  position: relative;
  width: 100%; /* 占满整行 */
 
  margin-bottom: 15px; /* 项与项之间间距 */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #f1f1f1;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* 鼠标悬浮效果 */
.NoColumn.Article .List li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 标题样式 */
.NoColumn.Article .List .Name a {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
}
.NoColumn.Article .List .Name a:hover {
  color: #1375B7;
}

/* 时间样式 */
.NoColumn.Article .List .Time {
  font-size: 13px;
  color: #999;
  margin: 8px 0;
}

/* 简介样式 */
.NoColumn.Article .List .Desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 10px 0;
}

/* 详细信息按钮 */
.NoColumn.Article .List .Details a {
  display: inline-block;
  font-size: 14px;
  color: #1375B7;
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid #1375B7;
  border-radius: 4px;
  margin-top: 8px;
}
.NoColumn.Article  .List/* 新闻列表外层容器 */
.NoColumn.Article {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 15px;
}

/* 新闻列表 ul 清除默认样式 */
.NoColumn.Article  ul.List {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* 新闻卡片基础样式 */
.NoColumn.Article  ul.List li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* 卡片悬浮动效 */
.NoColumn.Article   ul.List li:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* 图片区域 */
.NoColumn.Article  ul.List .Image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.NoColumn.Article  ul.List .Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* 图片悬浮放大 */
.NoColumn.Article  ul.List li:hover .Image img {
  transform: scale(1.05);
}

/* 内容内边距 */
.NoColumn.Article  ul.List .ColName,
.NoColumn.Article  ul.List .Name,
.NoColumn.Article  ul.List .Time,
.NoColumn.Article  ul.List .Desc,
.NoColumn.Article  ul.List .Details {
  padding: 0 18px;
}

/* 分类标签 */
.NoColumn.Article   ul.List .ColName a {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  background: #1375B7;
  padding: 3px 10px;
  border-radius: 4px;
  margin: 12px 0px 6px;
  text-decoration: none;
}

/* 标题 */
.NoColumn.Article  ul.List .Name a {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 6px 0 10px;
}

.NoColumn.Article  ul.List .Name a:hover {
  color: #1375B7;
}

/* 时间 */
.NoColumn.Article  ul.List .Time {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

/* 简介 */
.NoColumn.Article  ul.List .Desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

/* 详情按钮 */
.NoColumn.Article  ul.List .Details a {
  display: inline-block;
  font-size: 14px;
  color: #1375B7;
  text-decoration: none;
  margin: 0 0px 18px;
  padding: 4px 10px;

}

.NoColumn.Article  ul.List .Details a:hover {
  border-color: #1375B7;
}


  /* 产品列表外层容器 */
.NoColumn.Product {

  }
  
  /* 产品分类导航 */
  .ProdTagSelect {
    margin-bottom: 25px;
    font-size: 15px;
  }
  
  /* 分页说明文字 */
  .NoColumn.Product .PageInfo {
    text-align: right;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
  }
  
  /* 产品列表核心：一排3个 */
  .NoColumn.Product .List {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px; /* 产品间距 */
    justify-content: flex-start;
  }
  
  /* 每个产品项：宽度32%，正好一排3个 */
  .NoColumn.Product .List  li {
    width: calc(33.333% - 18px);

    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f5f5f5;
    overflow: hidden;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 20px;
  }
  
  /* 悬浮立体上浮效果 */
  .NoColumn.Product .List  li:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);
  }
  
  /* 产品图片 */
  .NoColumn.Product .List  .Image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    padding-top: 20px;
  }
  .NoColumn.Product .List  .Image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 图片不变形，完整显示 */
    display: block;

  }
  
  /* 产品分类名称 */
  .NoColumn.Product .List  .ColName a {
    display: inline-block;
    font-size: 13px;
    color: #999;
    margin: 12px 0 5px;
    text-decoration: none;
  }
  .NoColumn.Product .List  .ColName a:hover {
    color: #1375B7;
  }
  
  /* 产品型号名称 */
  .NoColumn.Product .List  .Name a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    margin-bottom: 10px;
  }
  .NoColumn.Product .List  .Name a:hover {
    color: #1375B7;
  }
  
  /* 详细信息按钮 */
  .NoColumn.Product .List .Details a {
    display: inline-block;
    font-size: 14px;
    color: #1375B7;
    padding: 6px 15px;
    border: 1px solid #1375B7;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
  }
  .NoColumn.Product .List  .Details a:hover {
    background: #1375B7;
    color: #fff;
  }
  
  /* 分页样式美化 */
  .Pagination {
    text-align: center;
    margin-top: 40px;
  }
  .Pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
  }
  .Pagination a.now {
    background: #1375B7;
    color: #fff;
    border-color: #1375B7;
  }
  .Pagination a:hover {
    background: #f5f5f5;
  }
  .Detail.Product .Name{
    display: none;
  }
  .Detail.Product .Images{
    display: none;
  }
  /* 返回按钮容器 */
.Back {
    text-align: center;
    margin: 40px 0 20px;
  }
  
  /* 返回按钮样式 */
  .Back a {
    display: inline-block;
    padding: 10px 28px;
    font-size: 15px;
    color: #fff;
    background-color: #1375B7;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(52, 152, 219, 0.2);
  }
  
  /* 鼠标悬浮效果 */
  .Back a:hover {
    background-color: #1375B7;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
  }
  .Detail.Article > .Name{
    display: none;
  }
  .Detail.Article >  .From{
    color: #666;
    text-align: right;
  }
  .Content p{
    font-size: 16px;
    line-height: 200%;
    color: #555;
  }