* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    color: #333333;
    overflow-x: hidden;
}
ul {
    list-style: none;
}
div,
table,
tr,
td,
img,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
i,
font,
span,
b,
dl,
dt,
dd,
form,
textarea,
input,
select,
a,
button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;outline: none;
}
a {
    color: #333333;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}
a:active,
a:hover {
    outline: 0;
    text-decoration: none
}
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.animated.infinite {
    animation-iteration-count: infinite;
}
.animated.hinge {
    animation-duration: 2s;
}
.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}
/* 头部导航样式 */
header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 999;
    background: #fff;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.none{
    text-align: center;color:#cccccc;width: 100%;margin-bottom: 50px;
}
.logo img {
    height: 70px;
}
/* 导航 + 右侧 组合靠右 */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 40px;
}
/* 桌面端导航 */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-desktop li a {
    font-size: 18px;
    color: #333;
    transition: color 0.3s;
}
.nav-desktop li a:hover {
    color: #0066cc;
}
.nav-extra {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-extra a:hover {
    color: #0066cc;
}
.nav-extra .search {
    background: #f2f2f2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-extra .search img {
    width: 45%;
}
.nav-extra .search,
.nav-extra .contact,
.nav-extra .lang {
    font-size: 14px;
    cursor: pointer;
}
.nav-extra .contact {
    background: #f2f2f2;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 20px;
    font-size: 20px;
}
.nav-extra .lang {
    padding: 5px 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #f2f2f2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
/* 移动端导航触发器 */
.nav-trigger {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
}
/* 移动端弹窗导航 */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    padding: 60px 20px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
}
.nav-mobile.active {
    transform: translateX(0);
}
.nav-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}
.nav-mobile-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}
.nav-mobile-list li {
    width: 100%;
}
.nav-mobile-list li a {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    display: inline-block;
}
.nav-mobile-extra {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.nav-mobile-extra .search{
    display: flex;align-items: column;
}
.nav-mobile-extra img{
    width: 22px;margin-right: 10px;
}
.nav-mobile-extra .contact{
     display: flex;align-items: column;
}
.nav-mobile-extra .contact img{
    width: 22px;margin-right: 10px;
}

.nav-mobile-extra>div {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
/* 遮罩层 */
.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}
.mask.active {
    display: block;
}
/* 轮播图区域 */
.w {
    max-width: 1700px;
    width: 90%;
    margin: 0 auto;
    max-height: 999999px;
}
.banner {
    z-index: 5;
    height: auto;position: relative;
}
.banner .swiper-wrapper{
    height: 100%!important;
}
.banner .swiper-slide{
    height: 100%;
}
.banner .swiper-slide img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
}
.banner .w {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 0;
    bottom: 0;
    z-index: 6;
}
.banner .swiper-slide .clear {
    width: 100%;
}
.banner .swiper-slide .clear em,
.banner .swiper-slide .clear p,
.banner .swiper-slide .clear i {
    transform: translateX(100px);
    opacity: 0;
    color: #fff;
}
.banner .swiper-slide .clear em {
    display: block;
    font-size: 66px;
    font-weight: bold;
    text-shadow: 1px 2px 0 #000;
    width: 53.55%;font-style: normal;
}
.banner .swiper-slide .clear i {
    font-size: 20px;
    margin-top: 50px;font-style: normal;
}
.banner .swiper-slide .clear i a {
    color: #fff;
    line-height: 2.9;
    padding: 0 35px;
    border: 1px solid #024bcf;
    background: #024bcf;
    transition: all 0.6s;
}
.banner .swiper-slide .clear i a:hover {
    background: none;
    color: #024bcf;
    border-radius: 30px 0 30px 0;
}
.banner .swiper-slide.swiper-slide-active .clear em,
.banner .swiper-slide.swiper-slide-active .clear p,
.banner .swiper-slide.swiper-slide-active .clear i {
    transition: all 1s ease 1s;
    transform: translateX(0);
    opacity: 1;
}
.banner .ope {
    z-index: 7;
    top: auto;
    bottom: 25px;
}
.banner .num {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.2);
}
.banner .num span.curr {
    color: #fff;
}
.banner .btns {
    margin: 0 30px;
}
.banner .swiper-button-prev {
    transform: rotateY(180deg);
    margin-right: 10px;
}
.banner .button {
    position: static;
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    background-image: url(../images/icon-1.svg);
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 0;
}
.banner .button:hover {
    background-image: url(../images/icon-2.svg);
    opacity: 1;
}
.banner .swiper-button-prev:after,
.banner .swiper-button-next:after {
    display: none;
}
.banner .button.swiper-button-disabled {
    opacity: 0.25;
}
.banner .line {
    position: relative;
    width: 120px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}
.banner .line span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
}
.banner .line.active span {
    width: 100%;
    transition: width 8s linear;
}
.banner .tip {
    font-size: 16px;
    color: #fff;
    margin-left: 30px;
}
.comflex2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.comflex3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
/* 关于我们区域 */
/* 关于我们整体布局 - 大屏横向排列，小屏纵向排列 */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    border-bottom: 1px dashed #cccccc;
    padding-bottom: 50px;
}
/* 文字内容区域 - 占比自适应 */
.about-text {
    flex: 1;
    min-width: 320px;
    /* 小屏最小宽度，保证可读性 */
}
/* 标题样式 */
.about-title {
    font-size: 33px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    padding-left: 8px;
}
.about-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: rgba(91, 143, 63, .5);
    border-radius: 50%;
}
/* 核心标语样式 */
.about-slogan {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 25px;
}
.about-slogan span {
    color: #6b8e23;
    /* 突出文字颜色 */
}
/* 介绍文本样式 */
.about-desc {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 600px;
}
/* 按钮样式 */
.about-section .more-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #333;
    border-radius: 25px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;

}
.more-btn:hover {
    background-color: #333;
    color: #fff;
}
/* 右侧图片+数据区域 */
.about-visual {
    flex: 1;
    min-width: 320px;
}
/* 图片容器 - 响应式图片 */
.about-img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.about-img img {
    width: 100%;
    height: auto;
    display: block;
}
/* 数据统计栏 */
.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}
.stat-item {
    flex: 1;
}
.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    line-height: 1;
}
.stat-unit {
    font-size: 16px;
    color: #999;
    margin-left: 5px;vertical-align: super; 
}
.stat-desc {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.titmax {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
}
.titmax h2{
    position: relative;padding-left: 8px;color: #000;font-size: 30px;
}
.titmax h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-color: rgba(91, 143, 63, .5);
    border-radius: 50%;
}
.titmax p{
    color: rgba(153, 153, 153, 1);font-size: 20px;white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width: 70%;
}
/* 产品展示区域 */
.products {
    margin-bottom: 80px;
    border-bottom: 1px dashed #cccccc;
    padding-bottom: 50px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.product-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}
.product-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.product-item:hover h3{
    color: #0066cc;
}
.product-item:hover p{
    color: #0066cc;
}
.product-item img {
    height: 180px;
    margin: 0 auto 15px;
    object-fit: contain;
}
.product-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}
.product-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
.product-item .btn {
    display: inline-block;
    padding: 8px 15px;
    background: #0066cc;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}
.btnbox {
    text-align: center;
    margin-top: 50px;
}
/* 全部产品按钮样式 */
.all-products-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2e5724;
    /* 深绿色背景，匹配设计 */
    color: #fff;
    border: none;
    border-radius: 50px;
    /* 全圆角按钮 */
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    /* 若用a标签则清除下划线 */
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}
/* 按钮hover效果 */
.all-products-btn:hover {
    background-color: #23461b;
    /* hover加深绿色 */
}
/* 箭头图标（用文字替代，也可替换为svg/iconfont） */
.all-products-btn .arrow {
   
}
/* 领域说明文字 */
.product-domains {
   
    color: rgba(153, 153, 153,.6);
    /* 浅灰色文字 */
    font-size: 14px;
    line-height: 1.5;
}
/* 响应式适配 - 小屏幕调整 */
/* 解决方案轮播 */
.solutions {
    margin-bottom: 80px;border-bottom: 1px dashed #cccccc;padding-bottom: 50px;
}
.solution-swiper {
    padding: 20px 0 0px !important;
    overflow: hidden;margin-top: 30px;
}
.solution-item {

    overflow: hidden;
    transition: all 0.4s ease;
}
.solution-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;  border-radius: 12px;
}
.solution-item h3 {
    padding: 18px 15px;
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 1.5;display: none;
}
.solutions .swiper-slide{
 
}
.solutions  .solution-item {
  padding: 50px 0; position: relative;
}
/* 中间大图 */

.solutions .swiper-slide-active .solution-item {
  
}
.solutions .swiper-slide-active .solution-item h3{
    display: inline-block;position: absolute;top: 0;
    z-index: 99;display: flex;align-items: center;
}
.solutions .swiper-slide-active .solution-item h3 p{
    font-size: 12px;color: rgba(102, 102, 102, .5);white-space:nowrap; overflow:hidden; text-overflow:ellipsis;padding-left: 5px;
    max-width:60%;
}
/* 两边小图 + 渐变透明 */
.solutions .swiper-slide-prev .solution-item,
.solutions .swiper-slide-next .solution-item {
    transform: scale(0.95);
    opacity: 0.7;
}
.solutions .swiper-slide {
    padding: 10px 0;
}
/* 新闻卡片样式（匹配参考图） */
.news {
    margin-bottom: 50px;
}
.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
/* 新闻标题 */
.news-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
  
}
/* 分类标签容器 */
.news-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
/* 分类标签样式 */
.tab-item {
    padding: 8px 24px;
    border-radius: 25px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}
.tab-item.active {
    background: #2b6348;
    color: #fff;
    border-color: #2b6348;
}
/* Swiper容器样式 */
.news-swiper {
    position: relative;
    margin-bottom: 30px;
}
/* 新闻卡片样式 */
.news-card {
    padding: 0px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}
/* 日期文字样式 */
.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}
/* 新闻标题样式 */
.news-title {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;margin-top: 10px;min-height: 60px;

  
}
.news-card:hover .news-title{
     color: #0066cc;
}
.news-title  p{
        display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/* 新闻图片样式 */
.news-card a {
    width: 100%;
    height: 200px !important;
    border-radius: 0 0 5px 5px;
    overflow: hidden;display: flex;align-items:flex-end
}
.news-card a img{
   width: 100%;
    height: 80%;
    object-fit: cover;
    /* 保持图片比例，填充容器 */
    display: block;border-radius: 0 0 5px 5px; 
}
.news-card:hover a img{
     height: 100%;margin-top: 0;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 保持图片比例，填充容器 */
    display: block;border-radius: 0 0 5px 5px;
}
.news-content{
    padding: 0 15px;
}
/* 分页控制器样式（自定义） */
.news-swiper-page .swiper-pagination-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;width: calc(100% - 180px);
}
.news-swiper-page .swiper-pagination-custom .swiper-btn-prev{
    background-image:url(../images/left1.png);background-position: center center;background-repeat: no-repeat;
    background-size: 30% auto;
}
.news-swiper-page .swiper-pagination-custom .swiper-btn-next{
    background-image:url(../images/right.png);background-position: center center;background-repeat: no-repeat;
    background-size: 30% auto;
}
/* 左右箭头按钮 */
.news-swiper-page {
    display: flex;
    align-items: center;
    justify-content:
}
.news-swiper-page .swiper-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2e5724;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.news-swiper-page .swiper-btn:hover {
    background-color: #23461b;
}
/* 页码显示 */
.news-swiper-page .swiper-page-num {
    font-size: 16px;
    color: #333;
}
/* 分隔线 */
.news-swiper-page .swiper-divider {
    flex: 1;
    height: 1px;
    background-color: #eee;
    max-width: 100%;
}
/* 了解更多按钮 */
.news-swiper-page .more-btn {
    display: inline-block;
    background-color: #2e5724;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;


    
}
.news-swiper-page .more-btn:hover {
    background-color: #23461b;
}

/* 页脚样式 */
footer {
    padding: 60px 0 30px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-logo {
    flex: 0 0 20%;
}
.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}
.footer-contact {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.footer-qrcode {
    display: flex;
    gap: 20px;
}
.footer-qrcode img {
    width: 80px;
    height: 80px;
}
/* ====================== 修改2：页脚右侧导航 靠右对齐 ====================== */
.footer-links {
    flex: 0 0 75%;
    display: flex;
    justify-content: flex-end;
    /* 整体靠右 */
    gap: 60px;
}
.footer-column {
    flex: 1;
    min-width: 130px;
    max-width: 180px;
    text-align: right;
    /* 文字右对齐 */
}
.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-column ul li a:hover {
    color: #0066cc;
}
/* ====================================================================== */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #999;
}
/* 底部容器样式 */
.footer-container {
    max-width: 1700px;
    /* 主体最大宽度1700px */
    margin: 0 auto;
    /* 水平居中 */
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    /* 响应式换行 */
    justify-content: space-between;
    /* 右侧导航靠右 */
    align-items: flex-start;
}
/* 左侧品牌信息 */
.footer-brand {
    flex: 0 0 auto;
    margin-right: 40px;
    margin-bottom: 20px;
}
.footer-brand .logo {
    width: 120px;
    margin-bottom: 20px;
}
.footer-brand .contact-info {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.footer-brand .qrcode-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.footer-brand .qrcode {
    width: 80px;
    height: 80px;
    border: 1px solid #eee;
}
/* 右侧导航区域 */
.footer-nav {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    /* 导航整体靠右 */
    gap: 80px;
    /* 导航列之间的间距 */
}
.nav-column {
    margin-bottom: 20px;
}
.nav-column h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}
.nav-column ul {
    list-style: none;
}
.nav-column ul li {
    margin-bottom: 10px;
}
.nav-column ul li a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-column ul li a:hover {
    color: #0066cc;
}
/* 底部版权栏 */
.footer-copyright {
    max-width: 1700px;
    margin: 0 auto;
    padding: 20px;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.copyright-left {
    flex: 0 0 auto;
}
.copyright-right {
    flex: 0 0 auto;
}
.copyright-right a {
    color: #999;
    text-decoration: none;
    margin-left: 10px;
}
/* 主体容器 */
.abo-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}
/* 顶部banner */
.abo-top-banner {
    width: 100%;
    height: 700px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
}
.abo-top-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.abo-top-banner p {
    font-size: 20px;
}
/* 关于我们模块 */
.abo-about {
    padding: 80px 0;
}
.abo-about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
.abo-about-text {
    flex: 1;
    max-width: 700px;
}
.abo-about-text h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.5;
}
.abo-about-text .desc p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}
.abo-about-stats {
    flex: 0 0 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.abo-stat-item {
    text-align: center;
}
.abo-stat-item .abo-number {
    font-size: 48px;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 5px;
}
.abo-stat-item .abo-label {
    font-size: 14px;
    color: #666;
}
.abo-about-img {
    width: 100%;
    height: 300px;
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
}
.abo-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 企业价值观模块 - 通屏设计 */
.abo-values {
    width: 100%;
    padding: 0px 0;
    margin: 0px 0;
}
.abo-values-header {
    text-align: center;
    margin-bottom: 60px;
}
.abo-values-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}
.abo-values-header p {
    font-size: 16px;
    color: #666;
}
.abo-values-content {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    position: relative;margin-top: 50px;
}
/* 背景遮罩，提升文字可读性 */
.abo-values-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.abo-value-item {
    text-align: center;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 20%;
}
.abo-value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.abo-value-item p {
    font-size: 14px;
    max-width: 200px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
/* 发展历程模块 - 复刻设计图样式 */
.abo-timeline {
    padding: 0px 0;
    position: relative;
}
/* 发展历程标题区 */
.abo-timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}
.abo-timeline-title {
    font-size: 32px;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-left: 20px;
}
/* 标题左侧绿色小原点 */
.abo-timeline-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #849e48;
    /* 设计图绿色 */
}
.abo-timeline-subtitle {
    font-size: 16px;
    color: #999;
    line-height: 1.5;
    max-width: 600px;
}
/* 内容轮播核心容器 */
.abo-timeline-slider {
    width: 100%;
    position: relative;
    padding: 0 80px;margin-top: 50px;
    /* 给左右箭头留空间 */
}
/* 左右箭头样式 - 复刻设计图圆形箭头 */
.abo-timeline-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}
.abo-timeline-arrow:hover {
    border-color: #849e48;
    color: #849e48;
}
.abo-timeline-prev {
    left: 0;
}
.abo-timeline-next {
    right: 0;
}
.abo-timeline-prev:after,
.abo-timeline-next:after {
    display: none;
}
/* 轮播内容项样式 */
.abo-timeline-slide {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}
/* 轮播图片容器 - 圆角设计 */
.abo-timeline-img {
    flex: 0 0 500px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}
.abo-timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 轮播文字区域 */
.abo-timeline-text-wrap {
    flex: 1;
    min-width: 300px;
}
/* 大字号年份 - 复刻设计图绿色+超大字号 */
.abo-timeline-year {
    font-size: 120px;
    font-weight: bold;
    color: #849e48;
    line-height: 1;
    margin-bottom: 20px;
}
.abo-timeline-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
}
/* 底部时间轴样式 - 复刻设计图 */
.abo-timeline-bottom-nav {
    width: 100%;
    margin-top: 60px;
    position: relative;
}
/* 时间轴横线 */
.abo-timeline-line {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e5e5e5;
}
/* 时间轴年份容器 */
.abo-timeline-years {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
/* 时间轴年份项 */
.abo-timeline-year-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
/* 时间轴圆点 */
.abo-timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s;
}
/* 选中圆点样式 - 外圈+绿色内圈 */
.abo-timeline-dot.active {
    background-color: #849e48;
    width: 12px;
    height: 12px;
}
.abo-timeline-dot.active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 1px solid #849e48;
    border-radius: 50%;
}
/* 时间轴年份文字 */
.abo-timeline-year-text {
    font-size: 14px;
    color: #999;
    transition: all 0.3s;
}
.abo-timeline-year-item.active .abo-timeline-year-text {
    color: #849e48;
    font-weight: bold;
}
/* 联系我们模块 */
.abo-contact {
    width: 100%;
    height: 400px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 40px 0;
    position: relative;border-radius: 30px;overflow: hidden;margin-top:110px;
}
.abo-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.abo-contact-content {
    z-index: 2;
}
.abo-contact-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
}
.abo-contact-content p {
    font-size: 28px;
    margin-bottom: 30px;
}
.abo-contact .btns{
    display: flex;justify-content: center;
}
.abo-contact-btn {
    display: flex;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-size: 16px;border: 1px solid #ffffff;
    align-items: center;
}
.abo-contact-btn:hover {
    background-color: #1f4880;
}
.abo-contact-btn  i {
     
}


/* 产品搜索栏 */
.product-search {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}
.product-search input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px 0 0 20px;
    outline: none;
    width: 200px;
    font-size: 14px;
}
.product-search button {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 20px 20px 0;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}
.product-search button:hover {
    background-color: #f5f5f5;
}
/* 产品列表样式 */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.product-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s;
}
.product-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.product-img {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}
.product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-btn {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid rgba(51, 51, 51, 1);
    border-radius: 20px;
    color: rgba(51, 51, 51, 1);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
     background-image:url(../images/arrow2.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: auto 50%;padding-right: 30px;
    
}
.product-btn:hover {
    background-color: rgba(55, 87, 37, 1);
    border: 1px solid rgba(55, 87, 37, 1);
    color: #fff;
    background-image:url(../images/active.png); background-size: auto 30%;
}
.product-btn.highlight {
    background-color: #009966;
    border-color: #009966;
    color: #fff;
}
.product-btn.highlight:hover {
    background-color: #008050;
}
/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}
.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #375725;
    background-color: #375725;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}
.pagination-btn:hover {
    background-color: #375725;
}
.pagination-btn img {
    width: 16px;
    height: 16px;
}
.pagination-num {
    font-size: 16px;
    color: #333;
}
/* 顶部Banner区域 */
.product-banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: #fff;
    margin-bottom: 60px;
}
.banner-title {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 600;
}
.banner-path {
    font-size: 16px;
    opacity: 0.9;
}
/* 产品详情主区域 */
.product-detail {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}
/* 产品头部（标题+图片+介绍） */
.product-header {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.product-main-title {
    width: 100%;
    font-size: 32px;
    margin-bottom: 30px;
    color: #222;
    font-weight: 600;
}
.product-img-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}
.product-info-box {
    flex: 1.5;
    min-width: 300px;
}
.info-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
    border-left: 4px solid #0066cc;
    padding-left: 10px;
    margin-top: 20px;
}
.info-title:first-child {
    margin-top: 0;
}
.product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.tech-params {
    display: block;

    font-size: 14px;
    color: #666;line-height: 2;
}
.param-item {
    display: block;
}
.param-label {
    width: 90px;
    color: #888;
}
/* 产品特性模块 */
.product-feature {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #eee;
}
.feature-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #222;
    display: flex;
    align-items: center;
}
.feature-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #0066cc;
    color: #fff;
    text-align: center;
    line-height: 28px;
    margin-right: 10px;
    font-size: 14px;
}
.feature-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}
.feature-text {
    flex: 2;
    min-width: 300px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.feature-img-box {
    flex: 1;
    width: 100%;
    text-align: center;margin-top: 15px;text-align: center;
    justify-content: center;
}
.feature-img {
    max-width: 50%;display: inline-block;

}
/* 标题样式 */
.service-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 40px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}
.service-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #009966;
    border-radius: 2px;
}
/* 服务卡片网格 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
/* 服务卡片样式 */
.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}
.service-card:hover .card-img {
    filter: brightness(0.9);
}
/* 卡片文字内容 */
.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #fff;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}
.card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}
.card-desc {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    max-width: 80%;
    opacity: 0.9;
    margin-bottom: 20px;
}
.card-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.card-btn:hover {
    background-color: #fff;
    color: #009966;
}
/* 通用标题样式 */
.section-title {
    font-size: 24px;
    color: #222;
    margin-bottom: 40px;
    font-weight: 500;
    position: relative;
    padding-left: 16px;
}
.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #006633;
    border-radius: 2px;
}
/* 分隔线 */
.divider {
    height: 1px;
    background-color: #eee;
    margin: 60px 0;
}
/* 联系方式模块 */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.contact-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    background: #FBFBFB;
}
.contact-icon::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #eee;
     background: #F3F3F3;
}
.icon-inner {
    font-size: 24px;
    color: #006633;
    z-index: 1;background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;border-radius: 50%;width: 60px;height: 60px;
}
.icon-inner  img{
    width: 50%;
}

.contact-label {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;color: #006633;
}
.contact-value {
    font-size: 14px;
    color: #006633;
}
/* 企业分布模块 */
.branch-tabs {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 8px 24px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-btn.active {
    background-color: #006633;
    color: #fff;
    border-color: #006633;
}
.branch-map {
    width: 100%;
    height: 400px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.map-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
}
.map-info {
    flex: 1;
    min-width: 300px;
    z-index: 1;
}
.map-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}
.map-detail {
    font-size: 14px;
    color: #666;
    line-height: 2;
}
.map-img {
    flex: 2;
    height: 100%;
   
    background-size: cover;
    opacity: 0.8;
}
/* 企业招聘模块 */
.job-list {
    width: 100%;
    border-collapse: collapse;margin-bottom: 30px;
}
.job-item-header {
    color: #fff;
}
.job-item-header td {
    padding: 16px 12px;
    font-size: 14px;
    font-weight: 500;
}
.job-item-body {
    border: 1px solid #eee;
}
.job-item-body td {
    padding: 20px 12px;
    font-size: 14px;
}
.job-collapse-header {
    background-color: #f9f9f9;
    cursor: pointer;
}
.job-collapse-header.on td{
    color:#ffffff;
}
.job-collapse-header td {
    padding: 12px;
    color: #333;
    font-size: 14px;
 
    border-top: none;
}
.job-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.job-desc-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}
.job-desc-list {
    list-style-position: inside;
    color: #666;
    line-height: 1.8;
}
.collapse-icon {
    float: right;
    font-size: 16px;
}
.news-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;margin-top: 30px;
}
.news-card-list:hover  h3 {
    color: #0066cc;
}
/* 新闻卡片样式 */
.news-card-list {
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background-color: #fff;box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.news-card-list:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}
.news-meta-list {
    font-size: 14px;
    color: rgba(102, 102, 102, 1);
    margin-bottom: 8px;
    padding: 16px 16px 0;
}
.news-title-text-list {
    font-size: 18px;
color: rgba(51, 51, 51, 1);
    line-height: 1.5;
    margin-bottom: 12px;
    padding: 0 16px;
    min-height: 80px;

}
.news-title-text-list p{
        display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-img-list {

    object-fit: cover;
    margin-top: 8px;
    height: 70%;width: 100%;
}
.news-card-list .box{
        width: 100%;
    height: 180px;overflow: hidden;
    display: flex;align-items: flex-end; 
}
.news-card-list:hover .box img{
    height: 100%;
}
/* 容器样式 - 最大宽度1700px，响应式居中 */
.xw-container {
    max-width: 1700px;
    margin: 0 auto;
    width: 100%;
}
/* 顶部banner样式 */
.xw-banner {
    width: 100%;
    height: 280px;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 0 20px;
}
.xw-banner .container {
    height: 100%;
    display: flex;
    align-items: center;
}
.xw-banner__title {
    font-size: 36px;
    font-weight: bold;
}
.xw-banner__path {
    font-size: 14px;
    margin-top: 20px;
}
/* 新闻内容主体样式 */
.xw-news {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.xw-news__header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}
.xw-news__title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}
.xw-news__meta {
    font-size: 14px;
    color: #999;
}
.xw-news__meta span {
    margin: 0 8px;
}
/* 新闻内容段落样式 */
.xw-news__content {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}
.xw-news__content p {
    margin-bottom: 25px;
}
.xw-news__content img{
    display: inline-block;
}
/* 新闻图片样式 - 响应式 */
.xw-news__img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* 标题样式 */
.fw-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    padding-left: 20px;
}
.fw-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #00b42a;
    /* 绿色小标识 */
    border-radius: 2px;
}
/* 解决方案卡片网格布局 */
.fw-card-grid {
    display: grid;
    /* 大屏3列，自动适配间距 */
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}
/* 卡片样式 */
.fw-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* 保持图片比例 */
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
}
/* 卡片hover动效 */
.fw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
/* 卡片背景图 */
.fw-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 图片自适应填充，不拉伸 */
}
/* 卡片文字层（居中+半透明背景） */
.fw-card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    color: #fff;
    padding: 20px;
    text-align: center;
}
/* 卡片标题 */
.fw-card__title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    z-index: 1;
}
/* 卡片描述（仅环境方案显示） */
.fw-card__desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    z-index: 1;
    opacity: 0.9;display: none;
}
/* 查看详情按钮 */
.fw-card__btn {
    display: none;
    padding: 8px 20px;
    border: 1px solid #fff;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    z-index: 1;
    transition: background-color 0.3s ease;
        background-image:url(../images/icojt.png);
  background-repeat: no-repeat;
  background-position: right 15px center;background-size: auto 50% ;padding-right: 40px;
    
}
.fw-card__btn:hover {
  background-color: rgba(55, 87, 37, 1);
    border: 1px solid rgba(55, 87, 37, 1);
    color: #fff;
}
.fw-card:hover .fw-card__desc{
    display: inline-block;
}
.fw-card:hover .fw-card__btn{
    display: inline-block;
}

/* 搜索弹窗样式 */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.search-modal.active {
    display: flex;
}
.search-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}
.search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}
.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 21px;
}
.search-btn {
    width: 100%;
    padding: 12px;
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
/* 响应式适配 */
/* 平板端 */
@media (max-width: 1200px) {
    .fw-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .fw-card-grid {
        gap: 20px;
    }
    .fw-card__title {
        font-size: 20px;
    }
    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-stats {
        justify-content: center;
    }
    .footer-links {
        gap: 30px;
    }
    .footer-nav {
        gap: 40px;
    }
    .abo-top-banner h1 {
        font-size: 36px;
    }
    .abo-values-content {
        height: auto;
        flex-direction: column;
        padding: 0px 0px;
        gap: 0px;
        width: 100%;
    }
    .abo-value-item {
        width: 100%;
        height: 200px;
    }
    .abo-timeline-slide {
        gap: 30px;
    }
    .abo-timeline-year {
        font-size: 80px;
    }
    .abo-timeline-img {
        flex: 0 0 400px;
        height: 250px;
    }
    .nav-extra {
        gap: 10px;
    }
    .nav-extra .search {
        width: 35px;
        height: 35px;
    }
    .nav-extra .search,
    .nav-extra .contact,
    .nav-extra .lang {
        font-size: 13px;
        cursor: pointer;
    }
    .nav-extra .contact {
        justify-content: center;
        height: 35px;
        padding: 0 20px;
        font-size: 16px;
    }
    .nav-extra .lang {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .banner-title {
        font-size: 36px;
    }
    .product-header {
        gap: 30px;
    }
    .service-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }
    .service-card {
        height: 280px;
    }
    .card-title {
        font-size: 20px;
    }
    .branch-map {
        height: 350px;
    }
    .map-content {
        padding: 20px;
    }
    .news-grid-list {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    .news-title-list {
        font-size: 24px;
    }
    .xw-banner__title {
        font-size: 30px;
    }
    .xw-news__title {
        font-size: 24px;
    }
    .news-title {
        font-size: 16px;
    }
    .news-img {
        height: 180px;
    }
    .nav-desktop {
        gap: 20px;
    }
    .nav-desktop li a {
        font-size: 14px;
        color: #333;
        transition: color 0.3s;
    }
}
@media (max-width: 992px) {
    .nav-right-group {
        display: none;
    }
    .nav-trigger {
        display: flex;
    }
    .banner-text h1 {
        font-size: 36px;
    }
    .section-title {
        font-size: 24px;
    }
}
/* 响应式适配 - 小屏幕调整样式 */
@media (max-width: 768px) {
    header {
    padding: 5px 0;

}
.logo img {
    height:50px;
}
    .banner {
        height: 350px;
    }
    .banner-text h1 {
        font-size: 28px;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    .news-list {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    .banner .swiper-slide .clear em {
        font-size: 20px;
        font-weight: bold;
        width: 100%
    }
    .banner .swiper-slide .clear i {
        font-size: 14px;
    }
    .banner .swiper-slide .clear i a {
        color: #fff;
        line-height: 2.3;
        padding: 0 25px;
    }
    .service-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .service-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
    .service-card {
        height: 250px;
    }
    .card-title {
        font-size: 18px;
    }
    .card-desc {
        font-size: 13px;
        max-width: 90%;
    }
    .abo-top-banner {
        height: 350px;
    }
    .abo-top-banner h1 {
        font-size: 28px;
    }
    .abo-top-banner p {
        font-size: 16px;
    }
    .abo-about {
        padding: 40px 0;
    }
    .abo-about-stats {
        width: 100%;
    }
    .abo-timeline-header {
        flex-direction: column;
        gap: 20px;
    }
    .abo-timeline-slider {
        padding: 0 60px;
    }
    .abo-timeline-slide {
        flex-direction: column;
        text-align: center;
    }
    .abo-timeline-img {
        flex: 0 0 100%;
        height: 200px;
    }
    .abo-timeline-year {
        font-size: 60px;
    }
.abo-contact {
    height: 300px;
}
    
    .abo-contact-content h2 {
        font-size: 28px;
    }
    .footer-nav {
        justify-content: flex-start;
        gap: 40px;
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links {
        justify-content: flex-start;
        text-align: left;
        width: 100%;
    }
    .news-card {
        padding: 15px;
    }
    .news-date {
        font-size: 12px;
    }
    .news-title {
       
        margin-bottom: 15px;font-weight: bold;
    }
    .news-img {
        height: 150px;
    }
    .news-swiper-page .swiper-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .news-swiper-page .more-btn {
        padding: 8px 20px;
        font-size: 12px;
        margin: 0 auto;
        display: flex;
    }
    .news-swiper-page .swiper-pagination-custom {
        flex-wrap: wrap;
    }
    .all-products-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
    .product-domains {
        font-size: 13px;
        padding: 0 10px;
        /* 小屏增加左右内边距，避免文字溢出 */
        line-height: 1.6;
    }

    .stat-number {
        font-size: 36px;
    }
    .stats {}
    .product-list {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    .product-search {
        justify-content: center;
    }
    .product-banner {
        height: 200px;
        padding-left: 30px;
    }
    .banner-title {
        font-size: 28px;
    }
    .product-detail {
        padding: 20px;
    }
    .product-main-title {
        font-size: 26px;
    }
    .tech-params {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .contact-wrapper {
        gap: 20px;
    }

    .branch-tabs {
        justify-content: center;
    }
    .branch-map {
        height: auto;
    }
    .map-content {
        flex-direction: column;
    }
    .map-info {
        margin-bottom: 20px;
    }
    .map-img {
        width: 100%;
        height: 200px;
    }
    .job-content {
        grid-template-columns: 1fr;
    }
    .news-grid-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    .news-title-list {
        font-size: 22px;
        text-align: center;
    }
    .news-img-list {
        height: 150px;
    }
    .xw-banner {
        height: 150px;
    }
    .xw-banner__title {
        font-size: 24px;
        top: 30px;
    }
    .xw-banner__path {
        font-size: 12px;
    }
    .xw-news {
        padding: 20px 15px;
    }
    .xw-news__title {
        font-size: 20px;
    }
    .xw-news__content {
        font-size: 14px;
    }
    .fw-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .fw-card-grid {
        grid-template-columns: 1fr;
        /* 手机端单列显示 */
        gap: 16px;width: 100%;
    }
    .fw-card__title {
        font-size: 18px;
    }
    .fw-card__desc {
        font-size: 13px;
    }
    .about-slogan {
        font-size: 18px;
   
    }
    .about-title{
        font-size: 25px;
    }
.titmax h2{
font-size: 25px;
}

.titmax p{
    color: rgba(153, 153, 153, 1);font-size: 16px;
} 

.abo-contact-content h2 {
    font-size: 26px;
}
.abo-contact-content p {
    font-size: 18px;
}
  #jobTable {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }   
    
}
@media (max-width: 576px) {
    .banner {
        height: 280px;
    }
    .banner-text h1 {
        font-size: 24px;
    }
    .products-grid,
    .news-list {
        grid-template-columns: 1fr;
    }
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    .titmax{
        display: block;
    }
.titmax h2{
font-size: 25px;
}

.titmax p{
font-size: 12px;max-width: 100%;margin-top: 10px;
}  
  .abo-contact {
    height: 300px;border-radius: 15px;
}  
 .banner .swiper-slide .clear em {
    font-size: 36px;
  
} 
.about-slogan {
    font-size:16px;

}
.about-section .more-btn {

    padding: 6px 20px;
    font-size: 12px;

}
 .stat-unit {
    font-size: 12px;

} 
.all-products-btn {
    padding: 7px 16px;
    font-size: 12px;
}
.all-products-btn .arrow {

}
.abo-about-text{
    margin-bottom: 30px;
}

.abo-about-text h2 p{
    font-size: 18px;
    

}
.abo-about-text  p {
    font-size: 13px;line-height: 1.8;

}
.news-card a img{
   width: 100%;
    height: 100%;

}
.about-section{
      gap: 20px;
}
.about-text,.about-visual{
    width: 100%;min-width:100%;
}
    
}
@media (max-width: 480px) {
    
    
.logo img {
    height:30px;
}
.titmax {
    margin-top: 50px;
}
.abo-timeline{
    margin-bottom: 80px;
}
.titmax h2{
font-size: 18px;
}
.abo-about-content{
    display: block;
}
.abo-about {
    padding: 0px 0;
}
.abo-values{
    margin: 0;padding: 0;
}

    .abo-container {
        padding: 0 10px;
    }
    .abo-about-img {
        height: 200px;
    }
    .abo-timeline-slider {
        padding: 0 40px;
    }
    .abo-timeline-arrow {
        width: 30px;
        height: 30px;
    }
    .abo-timeline-year {
        font-size: 48px;
    }
    .product-list {
        grid-template-columns: 1fr;
    }
    .product-banner {
        height: 150px;
        padding-left: 20px;
    }
    .banner-title {
        font-size: 22px;
    }
    .banner-path {
        font-size: 14px;
    }
    .feature-content {
        gap: 20px;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        height: 220px;
    }
    .contact-label {
        font-size: 16px;
    }
    .tab-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
    .map-title {
        font-size: 18px;
    }
    .job-item-header td,
    .job-collapse-header td {
        padding: 10px 8px;
        font-size: 13px;
    }
    .news-grid-list {
        grid-template-columns: 1fr;
    }
    .news-img-list {
        height: 200px;
    }
    .xw-banner {
        height: 120px;
    }
    .xw-banner__title {
        font-size: 20px;
        top: 25px;
    }
    .xw-news__meta {
        font-size: 12px;
    }
    .xw-news__meta span {
        margin: 0 4px;
    }
.abo-contact{
    height: 200px;margin-bottom: 0px;margin-top: 0;
}
.abo-contact-content h2 {
    font-size: 26px;
    margin-bottom: 20px;
}
.abo-contact-content p {
    font-size: 4px;

}

.abo-contact-btn {
    padding: 5px 15px;
    font-size: 12px;
}
.abo-contact-btn  i {
    
  width: 17px;height: 17px;
}
    .footer-container{
        display: block;padding: 0 20px;
        
    }
    .footer-nav {
        justify-content: flex-start;
        gap: 20px;
        width: 100%;
    }
    .product-domains {

    font-size: 12px;
}
.solution-swiper{
    margin: 0;
}

.news-tabs {
    gap: 10px;
}
/* 分类标签样式 */
.tab-item {
    padding: 8px 24px;
    font-size: 13px;
}
.footer-nav {
    /* 导航整体靠右 */
    gap: 20px;
    /* 导航列之间的间距 */
}
.nav-column{
    width: 45%;
}


}