/* 新增自定义样式，集中管理所有非内联样式 */

/* 关于我们主区块外边距 */
.about_i1 {
    padding: 85px 0;
}

/* 公司名称高亮 */
.company_name_hl {
    color: #124e89;
}

/* 关于我们整体大区块修复 */
.aboutflex {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 保证左右两边内容等高 */
}

/* 左侧文字与数据区 */
.aboutfl {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 右侧图片容器 */
.aboutfr {
    width: 38.2%; /* 和原来的i1tr宽度保持类似比例，可按需微调 */
    margin-left: 6%;
    display: flex;
}

.aboutfr .i1tr {
    width: 100%;
    margin-left: 0;
    margin-top: 0; /* 覆写wap属性导致的边距 */
    display: flex;
}

.aboutfr .i1tr img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

/* 数据统计容器 */
.i1b.custom_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.custom_flex .i1ba {
    width: auto;
}

/* 数据数字盒子 */
.i1ba_num_box {
    color: #114e89;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}

/* 数据数字上升箭头 */
.i1ba_num_box .arrow_up {
    font-size: 20px;
    font-weight: normal;
}

/* 数据单位 */
.i1ba_unit {
    color: #114e89;
    font-size: 16px;
    margin-left: 5px;
}

/* 分割线样式 */
.i1bline.custom_line {
    height: 50px;
    align-self: center;
    display: block;
}
.linian {
    height: 250px;
    object-fit: cover;
}
/* 兼容移动端 (wap) */
@media screen and (max-width: 991px) {
    /* 缩小整体边距 */
    .about_i1 {
        padding: 40px 0 ;
    }

    .aboutflex {
        flex-direction: column;
    }
    
    .aboutfr {
        width: 100%;
        margin-left: 0;
        margin-top: 25px;
    }
    
    .aboutfr .i1tr {
        margin-top: 0;
    }
    
    .aboutfr .i1tr img {
        min-height: auto;
    }

    /* 文字和元素的排版缩减 */
    .i1more {
        margin-top: 30px ;
    }

    .i1b.custom_flex {
        margin-top: 15px ;
        justify-content: space-between ;
        flex-wrap: nowrap ; /* 强制不换行，一排展示 */
    }

    /* 移动端下数据块改为一排4个，缩小分配宽度 */
    .custom_flex .i1ba {
        width: 25% ;
        margin-bottom: 10px;
        text-align: center;
        padding: 0 2px; /* 增加一点内边距防粘连 */
    }

    /* 大幅缩小字体，保证一排放得下4个且不挤出屏幕 */
    .i1ba_num_box {
        font-size: 16px ;
    }
    
    .i1ba_unit {
        font-size: 12px ;
        margin-left: 2px ;
    }
    
    .custom_flex .text14 {
        font-size: 11px ;
        margin-top: 5px ;
        white-space: nowrap; /* 保证文字不折行 */
        transform: scale(0.9); /* 文字如果过于拥挤，进行微缩放 */
    }

    /* 一排放4个比较拥挤，分割线继续隐藏保正干净的排版 */
    .i1bline.custom_line {
        display: none ;
    }
    .i1ba_num_box .arrow_up{
        display: none;
    }
}
/* 核心优势重构样式 */
.core-timeline-container {
    background-color: #f8f9fc;
    padding: 80px 0;
}
.core-timeline-title {
    text-align: center;
    margin-bottom: 60px;
}
.core-timeline-title .sub {
    color: #0b5fb2;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.core-timeline-title .main {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-top: 10px;
}

.core-timeline-wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
}

/* PC Item */
.core-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
    padding: 0 17px;
}




.core-timeline-top {
    position: relative;
    width: 100%;
}
.core-timeline-top:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #0072e4;
    left: 0;
    top: 50px;
    z-index: 1;
}
.core-timeline-icon {
    width: 100px;
    height: 100px;
    background: #f8f9fc;
    border: 1px solid #0b5fb2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 3;
}
.core-timeline-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.core-timeline-content .stitle {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.core-timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.core-timeline-item:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
}  



/* 移动端精致化排版（要求：不能破坏PC端布局，移动端保持视觉统一） */
@media screen and (max-width: 991px) {
    .linian {
    height: auto;
}
    .core-timeline-container {
        padding: 40px 15px;
    }
    .core-timeline-title {
        margin-bottom: 40px;
    }
    
    .core-timeline-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .core-timeline-item {
        width: 100%;
        flex-direction: row;        /* 左右排版 */
        align-items: flex-start;
        text-align: left;
        margin-bottom: 0px;
        padding: 0 0 50px 0;       /* 增加底部间距 */
    }

    /* 移动端连线：改为垂直线，并保持17px上下间隔 */
    .core-timeline-item:not(:last-child)::after {
        top: calc(60px + 17px);    /* 从图标底部+17px处开始 */
        left: 30px;                /* 出现在图标正下方 */
        width: 1px;
        height: calc(100% - 60px - 34px); /* item总高 - 图标高 - 上下间距 */
        background-color: #0b5fb2;
    }
.core-timeline-top:after {
    display: none;
}
.core-timeline-top {
    width: auto;
}
    .core-timeline-icon {
        width: 60px;
        height: 60px;
        margin: 0 20px 0 0;
        flex-shrink: 0;
    }
    
    .core-timeline-icon img {
        width: 30px;
        height: 30px;
    }
    
 
    
    .core-timeline-content .stitle {
        font-size: 18px;
        margin-bottom: 8px;
        color: #0b5fb2;
    }
    
    .core-timeline-content p {
        font-size: 13px;
    }
}


/* --------------------------------- */
/* 服务理念样式完全重构 (三卡片布局) */
/* --------------------------------- */

.ab3-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.ab3-wrap {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}
.service-card {
    flex: 1;
    background: rgb(235 230 230 / 32%);
    margin: 0 10px;
    padding: 60px 40px;
    text-align: center;
    border-bottom: 4px solid #114e89;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
/* First card / active / hover */
.service-card.active, .service-card:hover {
    background: rgba(17, 78, 137, 0.95); /* 半透明蓝色 */
    border-bottom: 4px solid #0b345d;
}
.service-card-icon {
    font-size: 40px;
    color: #114e89;
    margin-bottom: 25px;
    transition: color 0.3s;
}
.service-card.active .service-card-icon, .service-card:hover .service-card-icon {
    color: #ffffff;
}
.service-card-title {
    font-size: 28px;
    font-weight: bold;
    color: #222222;
    margin-bottom: 20px;
    transition: color 0.3s;
}
.service-card.active .service-card-title, .service-card:hover .service-card-title {
    color: #ffffff;
}
.service-card-desc {
    font-size: 15px;
    color: #444444;
    line-height: 1.8;
    transition: color 0.3s;
    text-align: center;
}
.service-card.active .service-card-desc, .service-card:hover .service-card-desc {
    color: #ffffff;
}

/* 移动端排版适配，自适应堆叠 */
@media screen and (max-width: 991px) {
    .ab3-wrap {
        flex-direction: column;
         padding: 40px 0;
    }
    .service-card {
        margin: 10px 0;
        padding: 40px 20px;
    }

}

/* --------------------------------- */
/* 发展历程样式 (横向左右轮播) */
/* --------------------------------- */
.ms-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: url(../img/about_con3_bg.jpg) no-repeat center/cover;
    background-attachment: fixed;
}
.ms-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 40, 80, 0.45); /* 稍微深一点让文字和圆圈突出 */
    z-index: 1;
}
.ms-wrap {
    position: relative;
    z-index: 2;
}

/* 覆盖服务理念的标题样式，针对深色背景设为白色文字 */
.ms-section .abtitle b {
    color: #ffffff;
    font-size: 32px;
}
.ms-section .abtitle i::before {
    display: none; /* 如果有其他伪类线，可选地去掉 */
}

.ms-timeline-container {
    padding: 40px 0;
    position: relative;
    margin-top: 45px;
}
.ms-line {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
    transform: translateY(-50%);
}
.ms-swiper {
    position: relative;
    z-index: 2;
    height: 380px;
    overflow: hidden;
    width: 100%;
}
.ms-slide {
    position: relative;
    height: 100%;
}
.ms-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 310px;
    background: rgba(255, 255, 255, 0.95);
    padding:  20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}
.ms-year {
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin-bottom: 12px;
    display: inline-block;
}
.ms-text {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.top-slide .ms-card {
    bottom: calc(50% + 30px);
}
.bottom-slide .ms-card {
    top: calc(50% + 30px);
}

.ms-dot {
    position: absolute;
    left: 50%;
    margin-left: -92px;
    transform: translateY(-50%);
    top: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
}
/* 圆 (时间轴上的点) */
.ms-dot {
    width: 15px ;
    height: 15px ;
    background: #fff;
    border-radius: 50% ;
    box-shadow: none ;
    box-sizing: content-box;
        border: 2px solid #ffffff;
}
/* 导航按钮 */
.ms-prev, .ms-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    outline: none;
    width: 30px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.ms-prev:hover, .ms-next:hover {
    color: #fff;
}
.ms-prev { left: 0px; }
.ms-next { right: 0px; }

@media screen and (min-width: 1300px) {
    .ms-prev { left: -30px; }
    .ms-next { right: -30px; }
}

/* 移动端适配：转化为直列时间轴 */
@media screen and (max-width: 991px) {
    .ms-section { padding: 40px 0; }
    .ms-timeline-container { padding: 30px 0 0; margin-top: 10px; }
    
    /* 强力解除原Swiper水平滑动属性 */
    .ms-swiper {
        height: 380px !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        width: 100% !important;
        padding-right: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .ms-swiper .swiper-wrapper {
        display: block !important;
        transform: none !important;
        width: 100% !important;
        position: relative !important;
        height: auto !important;
    }
    .ms-swiper .swiper-slide {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 25px;
        position: relative;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* 隐藏所有水平导航元素组件 */
    .ms-line { display: none ; }
    .ms-prev, .ms-next { display: none ; }

    /* 虚拟垂直轴标线 (基于主题蓝) */
    .ms-swiper .swiper-wrapper::before {
        content: '';
        position: absolute;
        top: 8px;
        bottom: 0;
        left: 8px;
        width: 2px;
        background: #ffffff;
        z-index: 1;
    }

    /* 垂直卡片化处理 (废除盒子和阴影) */
    .ms-card { 
        padding: 0 0 0 30px ; 
        width: 100% ; 
        max-width: none ; 
        left: 0 ; 
        transform: none ; 
        position: relative ; 
        background: transparent ; 
        box-shadow: none ; 
        border-radius: 0 ;
    }
    .top-slide .ms-card, .bottom-slide .ms-card { 
        bottom: auto ; 
        top: auto ; 
    }
    .top-slide .ms-card::after, .bottom-slide .ms-card::after {
        display: none ; /* 不在移动端展示倒三角 */
    }
    
    /* 文本细节排版重筑以匹配视觉稿 */
    .ms-card .ms-year { 
        font-size: 18px; 
        margin-bottom: 8px; 
        color: #ffffff; 
        display: block; 
    }
    .ms-card .ms-text { 
        font-size: 13px; 
        color: #ffffff; 
        padding-left: 0 ; 
        border-left: none ;
        max-height: none ; /* 手机端完全展现内容,释放滚动条 */
        overflow: visible ;
    }
    
    /* 圆点(Timeline Nodes) 重新定向到垂直轴上 */
.ms-dot {
        position: absolute ;
        left: 9px ;
        top: 4px ;
        margin-left: -8px ;
        transform: none ;
        width: 13px ;
        height: 13px ;
        background: #ffffff ;
        border: 2px solid rgba(17, 78, 137, 0.2) ;
        border-radius: 50% ;
        box-sizing: content-box ;
        z-index: 2 ;
        box-shadow: none ;
    }
    .ms-section .abtitle b {
    font-size: 22px;
}

}

/* 倒三角 / 正三角 */
.top-slide .ms-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%; 
    border-top: 10px solid rgba(255, 255, 255, 0.95);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.bottom-slide .ms-card::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 20%;
    border-bottom: 10px solid rgba(255, 255, 255, 0.95);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

/* 文本内容超出滚动轴 */
.ms-text {
    max-height: 80px;
    overflow-y: auto;
    padding-right: 5px;
}
/* 美化滚动条 */
.ms-text::-webkit-scrollbar {
    width: 2px;
}
.ms-text::-webkit-scrollbar-track {
    background: #9999996e;
    background-color: #9999996e;
}

.ms-text::-webkit-scrollbar-thumb {
     background: rgb(17 78 137 / 81%);
    border-radius: 1px;
}
.ms-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #114e89;
}
.ms-card:hover .ms-year,
.ms-card:hover .ms-text {
    color: #fff;        
}
.top-slide .ms-card:hover::after {
    border-top-color: #114e89;
    border-bottom-color: #114e89;
}
.bottom-slide .ms-card:hover::after {
    border-top-color: #114e89;
    border-bottom-color: #114e89;
}
.ms-slide:hover .ms-dot {
       background: #114e89;
}



/* Swiper边界时的不可点击状态样式 */
.ms-prev.swiper-button-disabled,
.ms-next.swiper-button-disabled {
    opacity: 0.35 ;
    cursor: auto ;
    pointer-events: none ;
}

@media screen and (max-width: 991px) {
    .ms-card:hover {
    box-shadow: none;
    background: unset;
}
.ms-slide:hover .ms-dot {
       background: #ffffff;
}

}

/* --------------------------------- */
/* 荣誉资质样式 */
/* --------------------------------- */
.honor-section {
    background-color: #f8f9fc;
}
.honor-container {
    padding: 0 80px;
    margin-top: 85px;
}
.honor-card {
    background: #fff;
    padding: 10px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    text-align: center;
}
.honor-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* 原生 Swiper 按钮统一样式 */
.swiper-button-prev.honor-prev, .swiper-button-next.honor-next {
    width: 50px;
    height: 50px;
    background-color: #114e89; /* 品牌蓝 */
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 柔和阴影添加立体感 */
    transition: all 0.3s;
    margin-top: 0; 
    
    /* 缩小原生白色箭头SVG并在圆形内居中 */
    background-size: 16px auto !important; 
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.swiper-button-prev.honor-prev:hover, .swiper-button-next.honor-next:hover {
    background-color: #0c3a68; /* Hover 深蓝 */
}

/* 覆盖Swiper默认左右距为0（由container padding流出空间） */
.swiper-button-prev.honor-prev {
    left: 0;
}
.swiper-button-next.honor-next {
    right: 0;
}

/* 荣誉资质名称样式 */
.honor-img-box {
    width: 100%;
    overflow: hidden;
    background: #fdfdfd;
}
.honor-name {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 综合移动端适配 (容器缩放、字体缩放、按钮缩放) */
@media screen and (max-width: 991px) {
    .honor-section {
        padding: 40px 0;
    }
    .honor-container {
        padding: 0 35px;
        margin-top: 45px;
    }
    .honor-name {
        font-size: 14px;
        margin-top: 10px;
    }
    
    /* 移动端按钮自适应减小 */
    .swiper-button-prev.honor-prev, .swiper-button-next.honor-next {
        width: 32px;
        height: 32px;
        background-size: 10px auto !important; /* 移动端箭头等比减小 */
    }
    .swiper-button-prev.honor-prev { left: -5px; }
    .swiper-button-next.honor-next { right: -5px; }
}

/* --------------------------------- */
/* 企业风采样式 (精准还原截图) */
/* --------------------------------- */
.style-section {
    background-color: #fff;
}
.style-container {
    padding: 0 50px; /* 留给外侧左右箭头的空间 */
    margin-top: 60px;

}

/* 保证卡片被包含及层叠覆盖时不被裁切 */
.style-swiper { width: 100%; padding: 40px 0 60px 0 !important; overflow: hidden !important; }

/* 固定卡片合理尺寸 */




.style-img-box {
    width: 100%;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* 加点底阴影突出3D层叠质感 */
}
.style-img-box img {
    width: 100%;
    object-fit: contain;
    display: block;
}

/* --- 分页器浮动在图底 --- */
.style-swiper .style-pagination {
    position: absolute;
    bottom: 20px; /* 紧贴图片底缘下方 */
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}
.style-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #bbb;
    opacity: 0.8;
    margin: 0 4px !important;
    transition: all 0.3s;
}
.style-pagination .swiper-pagination-bullet-active {
    background: #114e89; /* 红点 */
    opacity: 1;
}

/* --- 侧边红线箭头 --- */
.style-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px; /* 大号极简箭头 */
    color: #114e89;  /* 红色 */
    cursor: pointer;
    z-index: 20;
    transition: opacity 0.3s;
}
.style-nav-btn:hover {
    opacity: 0.7;
}
.style-prev-red { left: 0; }
.style-next-red { right: 0; }

/* --- 移动端适配 --- */
@media screen and (max-width: 991px) {
    .style-container {
        padding: 0 10px;
        margin-top: 30px;
    }
    .style-swiper { width: 100%; padding: 40px 0 60px 0 !important; overflow: hidden !important; }
    


    .style-nav-btn {
        display: none !important;
    }
}
/* --------------------------------- */
/* 企业风采样式 (精准还原截图) */
/* --------------------------------- */
.style-section {
    background-color: #fff;
}
.style-container {
    padding: 0 50px; /* 留给外侧左右箭头的空间 */
    margin-top: 60px;
}

/* 保证卡片被包含及层叠覆盖时不被裁切 */
.style-swiper { width: 100%; padding: 40px 0 60px 0 !important; overflow: hidden !important; }

/* 固定卡片合理尺寸 */




.style-img-box {
    width: 100%;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* 加点底阴影突出3D层叠质感 */
}
.style-img-box img {
    width: 100%;
    object-fit: contain;
    display: block;
}

/* --- 分页器浮动在图底 --- */
.style-swiper .style-pagination {
    position: absolute;
    bottom: 20px; /* 紧贴图片底缘下方 */
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}
.style-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #bbb;
    opacity: 0.8;
    margin: 0 4px !important;
    transition: all 0.3s;
}
.style-pagination .swiper-pagination-bullet-active {
    background: #114e89; /* 红点 */
    opacity: 1;
}

/* --- 侧边红线箭头 --- */
.style-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px; /* 大号极简箭头 */
    cursor: pointer;
    z-index: 20;
    transition: opacity 0.3s;
}
.style-nav-btn:hover {
    opacity: 0.7;
}
.style-prev-red { left: 0; }
.style-next-red { right: 0; }

/* --- 移动端适配 --- */
@media screen and (max-width: 991px) {
    .style-container {
        padding: 0 10px;
        margin-top: 30px;
    }
    .style-swiper { width: 100%; padding: 40px 0 60px 0 !important; overflow: hidden !important; }
    


    .style-nav-btn {
        display: none !important;
    }
}


/* 企业风采异形轮播微调 */
.style-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 40px; /* Leave space for arrows */
}
.style-swiper { width: 100%; padding: 40px 0 60px 0 !important; overflow: hidden !important; }




@media (max-width: 768px) {
    .style-container {
    padding: 0;
    margin-top: 0;
}


}

/* 图片标题重叠文字(悬浮在图片上) */
.style-img-box {
    position: relative; /* 确保子元素可以绝对定位 */
    overflow: hidden; /* 防止圆角或其他溢出 */
}
.style-img-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* 半透明纯黑背景，保证文字清晰 */
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    letter-spacing: 1px;
    z-index: 10;
    pointer-events: none; /* 防止遮挡图片的可能点击事件 */
}

/* --------------------------------- */

/* ========================================================= */
/*               Native Contact Page Styles                  */
/* ========================================================= */
.contact-page-section { padding-bottom: 80px; }
.contact-box { flex-wrap: nowrap; justify-content: space-between; align-items: stretch; margin: 80px 0; }
.contact-info { background: #f9f9f9; padding: 50px 40px; border: 1px solid #ececec; box-sizing: border-box; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin-bottom: 25px; font-size: 16px; color: #555; display: flex; align-items: flex-start; }
.contact-list li:last-child { margin-bottom: 0; }
.contact-list .fa { color: #114e89; width: 35px; text-align: center; }
.contact-list .fa-phone { font-size: 22px; padding-top: 2px; }
.contact-list .fa-mobile { font-size: 28px; }
.contact-list .fa-envelope, .contact-list .fa-envelope-o { font-size: 18px; padding-top: 4px; }
.contact-list .fa-map-marker { font-size: 24px; padding-top: 0px; }
.contact-list span { line-height: 1.6; }

.contact-qr { margin-top: 35px; padding-top: 35px; border-top: 1px dashed #ddd; gap: 40px; }
.contact-qr .qr-item { text-align: center; }
.contact-qr img { width: 120px; height: 120px; border: 1px solid #eee; padding: 5px; background: #fff; display: block; }
.contact-qr p { margin-top: 12px; font-size: 15px; color: #666; margin-bottom: 0; }

.contact-map { background: #fdfdfd; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid #ececec; margin-left: 30px; box-sizing: border-box; min-height: 480px; }
.contact-map .fa-map-o { font-size: 60px; color: #dcdcdc; margin-bottom: 20px; }
.contact-map .map-title { font-size: 18px; color: #999; margin: 0; }
.contact-map .map-desc { font-size: 14px; color: #bbb; margin-top: 10px; margin-bottom: 0; }

.contact-network { background: #f9f9f9; border: 1px solid #ececec;     height: auto; display: flex; justify-content: center; align-items: center; margin: 80px 0; }
.contact-network p { font-size: 20px; color: #999; letter-spacing: 2px; }

.contact-form-box { padding: 50px; background: #f9f9f9; border: 1px solid #ececec; margin-top: 80px; }
.my-input-row { display: flex; justify-content: space-between; margin-bottom: 25px; }
.my-input-box { width: 48.5%; }
.my-input-box input, .my-textarea { width: 100%; padding: 15px; border: 1px solid #ddd; outline: none; box-sizing: border-box; font-size: 15px; font-family: inherit; transition: border 0.3s; }
.my-input-box input:focus, .my-textarea:focus { border: 1px solid #114e89; }
.my-textarea { resize: vertical; margin-bottom: 30px; }
.submit-btn-wrap { text-align: center; }
.submit-btn { width: 220px; height: 50px; background: #114e89; color: #fff; border: none; font-size: 18px; cursor: pointer; letter-spacing: 2px; font-weight: normal; transition: background 0.3s; }
.submit-btn:hover { background: #0b3660; }

@media(max-width: 768px) {
    .my-input-row { flex-direction: column; gap: 25px; margin-bottom: 0; }
    .my-input-box { width: 100%; margin-bottom: 25px; }
    .contact-box.disflex { flex-direction: column; margin: 40px 0; }
   .contact-map.flex1 {
        margin-left: 0;
        margin-top: 30px;
        min-height: auto !important;
        width: 100%;
        height: auto;
    }
.contact-map img {
    width: 100%;
}
    .contact-info { padding: 30px 20px; }
    .contact-form-box { padding: 30px 20px; margin-top: 40px; }
 .contact-network {
        margin: 40px 0;
        height: auto;
    }
.contact-network img {
    width: 100%;
}
    .contact-page-section {
    margin-top: 20px;
}
}


/* ========================================================= */
/*             news-product.html Migrated Styles             */
/* ========================================================= */
/* 分页样式适配品牌色 */
.page {
    margin: 60px 0 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.page a, .page span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 42px;
    height: 42px;
    padding: 0 15px;
    border: 1px solid #eaeaea;
    color: #666;
    background: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
}
.page a:hover, .page .active {
    color: #fff;
    background: #114e89;
    border-color: #114e89;
}
.page .disabled {
    color: #ccc;
    background: #f9f9f9;
    cursor: not-allowed;
}

.level-1-tabs {
                    display: flex;
                    justify-content: flex-start;
                    flex-wrap: wrap;
                    gap: 20px;
                    margin-bottom: 40px;
                }
.level-1-tabs .tab-item {
    padding: 10px 20px;
    background: #fff;
    color: #555;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}
                .level-1-tabs .tab-item.active, .level-1-tabs .tab-item:hover {
                    background: #114e89;
                    color: #fff;
                    border-color: #114e89;
                }
                .pdnav-pane { display: none; }
                .pdnav-pane.active { display: block; }
                /* 为了避免箭头重叠 */
                .level-2-wrapper .swiper-button-next,
                .level-2-wrapper .swiper-button-prev {
                    z-index: 10;
                }
                
                /* 移动端自适应：让一级标签在小屏幕下变为可横向滚动的流畅排列，不换行，不拥挤 */
                @media (max-width: 768px) {
                    .level-1-tabs {
                        flex-wrap: nowrap;
                        overflow-x: auto;
                        -webkit-overflow-scrolling: touch;
                        gap: 10px;
                        margin-bottom: 25px;
                        padding-bottom: 5px;
                    }
                    .level-1-tabs::-webkit-scrollbar {
                        display: none; /* 隐藏滚动条 */
                    }
                    .level-1-tabs .tab-item {
                        padding: 10px 20px;
                        font-size: 15px;
                        flex-shrink: 0;
                        white-space: nowrap;
                    }
                }

.solutionpimd {
    padding-top: 20px;
}
.solution-title {
    padding-top: 20px;
}
.solutionimg {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #E6E6E6;
}

/* ========================================================= */
/*               Standard Detail Page (.contents)            */
/* ========================================================= */
.contents {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    word-wrap: break-word;
}
.contents p {
    margin-bottom: 1em;
}
.contents p:last-child {
    margin-bottom: 0;
}
.contents img {
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 15px auto;
    border-radius: 4px;
}
.contents h1, .contents h2, .contents h3, .contents h4, .contents h5, .contents h6 {
    color: #222;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.4;
}
.contents h1 { font-size: 26px; }
.contents h2 { font-size: 22px; border-bottom: 1px solid #ebebeb; padding-bottom: 10px; }
.contents h3 { font-size: 20px; }
.contents h4 { font-size: 18px; }

.contents ul, .contents ol {
    padding-left: 2em;
    margin-bottom: 1em;
}
.contents ul {
    list-style-type: disc;
}
.contents ol {
    list-style-type: decimal;
}
.contents li {
    margin-bottom: 0.5em;
}
.contents a {
    color: #114e89;
    text-decoration: underline;
}
.contents table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}
.contents table th, .contents table td {
    border: 1px solid #ddd;
    padding: 10px 15px;
    text-align: left;
}
.contents table th {
    background-color: #f8f9fa;
    font-weight: bold;
}
.contents blockquote {
    margin: 1em 0;
    padding: 15px 20px;
    border-left: 4px solid #114e89;
    background-color: #f4f6f9;
    color: #555;
    font-style: italic;
}
.contents code {
    background: #f4f4f4;
    padding: 2px 4px;
    border-radius: 3px;
    color: #c7254e;
    font-family: Consolas, Monaco, monospace;
}
  @media (max-width: 768px) {
    #lmd {
    padding-top: 20px;
}
.solutionimg {
    border-right: none;
}
    }

/* ========================================================= */
/*               case-list.html Styles                       */
/* ========================================================= */
.case-list-section {
    padding: 60px 0;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    margin-top: 30px;
}
.case-item {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s;
    box-sizing: border-box;
    text-decoration: none;
}
.case-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #114e89;
    transform: translateY(-5px);
}
.case-img-box {
    width: 100%;
    aspect-ratio: 4/3; /* Adjust based on actual image sizes, 4:3 is standard */
    overflow: hidden;
}
.case-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.case-item:hover .case-img-box img {
    transform: scale(1.08); /* slight zoom on hover */
}
.case-info {
    padding: 15px 10px;
    border-top: 1px solid #f1f1f1;
}
.case-title {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    margin: 0;
    transition: color 0.3s;
}
.case-item:hover .case-title {
    color: #114e89;
}

/* 响应式调整 */
@media screen and (max-width: 1024px) {
    .case-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 10px;
    }
    .case-info {
        padding: 12px 5px;
    }
    .case-title {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .case-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ========================================================= */
/*               info-hzal.html Case Detail Page             */
/* ========================================================= */
.case-detail-page {
    padding: 36px 0 90px;
}
.case-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0 42px;
    color: #777;
    font-size: 14px;
}
.case-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.case-breadcrumb a:hover,
.case-breadcrumb em {
    color: #114e89;
    font-style: normal;
}
.case-breadcrumb span {
    color: #bbb;
}
.case-breadcrumb .fa-home {
    color: #114e89;
    font-size: 15px;
    margin-right: 2px;
}
.case-detail-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}
.case-side {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 10px 28px rgba(17, 78, 137, 0.08);
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.case-side-title {
    min-height: 64px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: #114e89;
    border-radius: 0;
    box-sizing: border-box;
}
.case-side-title span {
    font-size: 18px;
}
.case-side-title .fa {
    width: 44px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.28);
    font-size: 22px;
}
.case-side-link {
    min-height: 52px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #555;
    font-size: 15px;
    text-decoration: none;
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    transition: all 0.3s;
}
.case-side-link:last-child {
    border-bottom: none;
}
.case-side-link .fa {
    color: #444;
    font-size: 19px;
}
.case-side-link:hover,
.case-side-link.active {
    color: #114e89;
}
.case-side-link:hover .fa,
.case-side-link.active .fa {
    color: #114e89;
}
.case-main {
    min-width: 0;
}
.case-detail-title {
    margin: 0 0 52px;
    color: #222;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
}
.case-tab-nav {
    display: flex;
    align-items: center;
    gap: 66px;
    border-bottom: 1px solid #bad0ee;
    margin-bottom: 42px;
}
.case-tab-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 22px;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}
.case-tab-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 4px;
    border-radius: 4px;
    background: #347ae5;
    transition: width 0.3s;
}
.case-tab-nav a.active,
.case-tab-nav a:hover {
    color: #1b72f2;
}
.case-tab-nav a.active::after,
.case-tab-nav a:hover::after {
    width: 100%;
}
.case-tab-nav .fa {
    font-size: 25px;
}
.case-section {
    scroll-margin-top: 110px;
    margin-bottom: 64px;
}
.case-section h2 {
    margin: 0 0 22px;
    color: #347ae5;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}
.case-section p {
    margin: 0 0 14px;
    color: #444;
    font-size: 17px;
    line-height: 1.9;
}
.case-section p a {
    color: #004dff;
    text-decoration: none;
}
.case-section p a:hover {
    text-decoration: underline;
}
.case-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.case-product-card {
    display: flex;
    flex-direction: column;
    min-height: 360px;
    background: #fff;
    border: 1px solid #edf1f7;
    box-shadow: 0 10px 24px rgba(20, 53, 91, 0.06);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.case-product-card:hover {
    transform: translateY(-6px);
    border-color: #c9dcf7;
    box-shadow: 0 16px 32px rgba(20, 53, 91, 0.12);
}
.case-product-img {
    height: 198px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #edf1f7;
    box-sizing: border-box;
}
.case-product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.case-product-card:hover .case-product-img img {
    transform: scale(1.04);
}
.case-product-info {
    position: relative;
    flex: 1;
    padding: 22px 22px 28px;
}
.case-product-info h3 {
    min-height: 52px;
    margin: 0 0 12px;
    color: #101820;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
}
.case-product-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.case-product-info span {
    position: absolute;
    right: 20px;
    bottom: 14px;
    color: #ff1111;
    font-size: 28px;
    line-height: 1;
}

@media screen and (max-width: 1200px) {
    .case-detail-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 30px;
    }
    .case-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media screen and (max-width: 991px) {
    .md.case-list-section {
    padding: 20px 0;
}

    .case-detail-page {
        padding: 24px 0 55px;
    }
    .case-breadcrumb {
        padding: 10px 0 28px;
    }
    .case-detail-layout {
        display: block;
    }
    .case-side {
        position: static;
        margin-bottom: 32px;
        border-radius: 0;
    }
    .case-side-title {
        min-height: 54px;
        border-radius: 0;
        padding: 0 18px;
    }
    .case-side-link {
        min-height: 46px;
        padding: 0 18px;
    }
    .case-detail-title {
        margin-bottom: 30px;
        font-size: 22px;
    }
    .case-tab-nav {
        gap: 28px;
        overflow-x: auto;
        padding-bottom: 1px;
        margin-bottom: 30px;
        -webkit-overflow-scrolling: touch;
    }
    .case-tab-nav::-webkit-scrollbar {
        display: none;
    }
    .case-tab-nav a {
        flex: 0 0 auto;
        padding-bottom: 16px;
        font-size: 18px;
    }
    .case-section {
        margin-bottom: 42px;
    }
    .case-section p {
        font-size: 15px;
    }
    .case-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}
@media screen and (max-width: 560px) {
    .case-product-grid {
        grid-template-columns: 1fr;
    }
    .case-product-card {
        min-height: auto;
    }
    .case-product-img {
        height: 180px;
    }
    .case-product-info h3 {
        min-height: auto;
        font-size: 18px;
    }
}

/* ========================================================= */
/*             list-technology.html Technology List          */
/* ========================================================= */
.tech-platform-page .case-detail-title {
    margin-bottom: 30px;
}
.tech-platform-page .case-side-link.active {
    background: #d8e9fb;
    color: #126dd9;
}
.tech-platform-page .case-side-link.active .fa {
    color: #126dd9;
}
.tech-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.tech-list-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 34px;
    align-items: center;
    padding: 34px 32px;
    background: #fff;
    border: 1px solid #edf1f7;
    box-shadow: 0 10px 24px rgba(20, 53, 91, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.tech-list-item:hover {
    transform: translateY(-4px);
    border-color: #c9dcf7;
    box-shadow: 0 16px 32px rgba(20, 53, 91, 0.1);
}
.tech-list-content h2 {
    margin: 0 0 18px;
    color: #222;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
}
.tech-list-item.active .tech-list-content h2,
.tech-list-item:hover .tech-list-content h2 {
    color: #114e89;
}
.tech-list-content p {
    margin: 0;
    color: #5b6572;
    font-size: 15px;
    line-height: 2.05;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tech-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    height: 38px;
    margin-top: 22px;
    padding: 0 18px;
    border: 1px solid #526271;
    border-radius: 4px;
    color: #526271;
    font-size: 15px;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s;
}
.tech-more:hover {
    color: #fff;
    background: #114e89;
    border-color: #114e89;
}
.tech-list-visual {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech-visual {
    position: relative;
    width: 240px;
    height: 130px;
    color: #344152;
}
.tech-visual-ultra .liquid-box {
    position: absolute;
    left: 72px;
    top: 0;
    width: 112px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #75cfd0;
}
.tech-visual-ultra .liquid-box strong {
    font-size: 28px;
    line-height: 1;
}
.tech-visual-ultra .liquid-box em {
    margin-top: 14px;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
}
.tech-visual-ultra .liquid-box b {
    position: absolute;
    left: 18px;
    right: 10px;
    top: 66px;
    height: 1px;
    background: #24313e;
}
.tech-visual-ultra .liquid-box b::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #24313e;
    border-right: 1px solid #24313e;
    transform: rotate(45deg);
}
.tech-visual-ultra .sensor {
    position: absolute;
    top: 42px;
    width: 28px;
    height: 44px;
    border-radius: 3px;
    background: #87909a;
}
.tech-visual-ultra .sensor::before,
.tech-visual-ultra .sensor::after {
    content: "";
    position: absolute;
    top: 16px;
    width: 28px;
    height: 12px;
    background: repeating-linear-gradient(90deg, #6d747c 0, #6d747c 3px, #9aa2aa 3px, #9aa2aa 6px);
}
.tech-visual-ultra .sensor-left {
    left: 38px;
}
.tech-visual-ultra .sensor-left::before {
    left: -30px;
}
.tech-visual-ultra .sensor-right {
    right: 28px;
}
.tech-visual-ultra .sensor-right::after {
    right: -30px;
}
.tech-visual-ultra .signal {
    position: absolute;
    top: 35px;
    color: #4f7dbf;
    font-size: 13px;
    font-weight: 700;
}
.tech-visual-ultra .signal-left {
    left: 0;
}
.tech-visual-ultra .signal-right {
    right: 0;
}
.tech-visual-flow {
    border-bottom: 1px solid #9ba4ad;
}
.tech-visual-flow i {
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 82px;
    background: #9ba4ad;
}
.tech-visual-flow i:nth-child(1) { left: 40px; }
.tech-visual-flow i:nth-child(2) { left: 108px; }
.tech-visual-flow i:nth-child(3) { right: 42px; }
.tech-visual-flow span {
    position: absolute;
    bottom: 0;
    width: 44px;
    height: 18px;
    border: 1px solid #9ba4ad;
    border-bottom: none;
}
.tech-visual-flow span:nth-child(4) { left: 18px; }
.tech-visual-flow span:nth-child(5) { left: 86px; }
.tech-visual-flow span:nth-child(6) { right: 20px; }
.tech-visual-flow b {
    position: absolute;
    width: 62px;
    height: 1px;
    background: #9ba4ad;
}
.tech-visual-flow b:nth-child(7) {
    right: 22px;
    top: 48px;
}
.tech-visual-flow b:nth-child(8) {
    right: 82px;
    top: 82px;
    transform: rotate(90deg);
}
.tech-visual-titrate .bottle {
    position: absolute;
    left: 82px;
    bottom: 0;
    width: 76px;
    height: 72px;
    border: 2px solid #9ba4ad;
    border-radius: 0 0 12px 12px;
}
.tech-visual-titrate .bottle::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 32px;
    background: #d7eef1;
}
.tech-visual-titrate .drop {
    position: absolute;
    left: 116px;
    top: 18px;
    width: 8px;
    height: 26px;
    border-radius: 8px 8px 10px 10px;
    background: #114e89;
}
.tech-visual-titrate span {
    position: absolute;
    left: 121px;
    top: 42px;
    width: 1px;
    height: 34px;
    background: #114e89;
}
.tech-visual-titrate b {
    position: absolute;
    left: 78px;
    top: 4px;
    width: 86px;
    height: 1px;
    background: #9ba4ad;
}
.tech-visual-electrode i {
    position: absolute;
    left: 108px;
    top: 0;
    width: 22px;
    height: 88px;
    border: 2px solid #8d98a3;
    background: #f7fafc;
}
.tech-visual-electrode span {
    position: absolute;
    left: 70px;
    bottom: 0;
    width: 100px;
    height: 58px;
    border: 2px solid #9ba4ad;
    border-top: none;
}
.tech-visual-electrode b {
    position: absolute;
    left: 74px;
    right: 74px;
    bottom: 0;
    height: 28px;
    background: #d7eef1;
}
.tech-visual-electrode em {
    position: absolute;
    left: 50px;
    top: 38px;
    width: 140px;
    height: 1px;
    background: #114e89;
}
.tech-visual-electrode em::before,
.tech-visual-electrode em::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 9px;
    height: 9px;
    border-top: 1px solid #114e89;
    border-right: 1px solid #114e89;
}
.tech-visual-electrode em::before {
    left: 0;
    transform: rotate(-135deg);
}
.tech-visual-electrode em::after {
    right: 0;
    transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
    .tech-list-item {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 26px 20px;
    }
    .tech-list-visual {
        order: -1;
        min-height: 120px;
    }
    .tech-list-content h2 {
        font-size: 18px;
    }
    .tech-list-content p {
        font-size: 14px;
        line-height: 1.9;
        -webkit-line-clamp: 4;
    }
}
@media screen and (max-width: 560px) {
    .tech-list {
        gap: 18px;
    }
    .tech-list-item {
        padding: 24px 16px;
    }
    .tech-visual {
        transform: scale(0.86);
        transform-origin: center;
    }
}

/* ========================================================= */
/*             info-technology.html Application Detail       */
/* ========================================================= */
.app-detail-page .case-tab-nav {
    margin-bottom: 40px;
}
.app-intro-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 38px;
    align-items: center;
    padding: 34px 32px;
    background: #fff;
    border: 1px solid #edf1f7;
    box-shadow: 0 10px 24px rgba(20, 53, 91, 0.05);
}
.app-intro-text p {
    margin: 0 0 16px;
    color: #444;
    font-size: 16px;
    line-height: 1.95;
}
.app-intro-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.app-intro-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    color: #114e89;
    background: #eef6ff;
    border: 1px solid #d3e6fb;
    font-size: 14px;
}
.app-intro-visual {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fbff;
    border: 1px solid #eef2f7;
}
.app-product-grid .case-product-card {
    min-height: 340px;
}

@media screen and (max-width: 991px) {
    .app-intro-card {
        grid-template-columns: 1fr;
        padding: 26px 20px;
    }
    .app-intro-visual {
        order: -1;
        min-height: 140px;
    }
    .app-intro-text p {
        font-size: 15px;
        line-height: 1.9;
    }
}
@media screen and (max-width: 560px) {
    .app-intro-card {
        padding: 24px 16px;
    }
    .app-intro-points span {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ========================================================= */
/*                  index.html Product Megamenu              */
/* ========================================================= */
.head_pc .head .wrap {
    position: relative;
}
.head_pc .nav .megamenu2 {
    position: static;
}
.head_pc .nav .megamenu2 .navhide {
    width: min(1560px, calc(100vw - 40px)) !important;
    left: 50%;
    transform: translateX(-50%);
    padding: 26px 34px;
    box-sizing: border-box;
}
.head_pc .nav .megamenu2 .navhbox {
    width: 100%;
    justify-content: space-between;
    gap: 28px;
}
.head_pc .nav .megamenu2 .navhbox_item {
    width: auto !important;
    min-width: 0;
    padding: 0 !important;
    box-sizing: border-box;
}
.head_pc .nav .megamenu2 .navhbox_item:nth-child(1) {
    flex: 0 0 calc(34% - 19px);
    min-width: 0 !important;
}
.head_pc .nav .megamenu2 .navhbox_item:nth-child(2) {
    flex: 0 0 calc(43% - 19px);
}
.head_pc .nav .megamenu2 .navhbox_item:nth-child(3) {
    flex: 0 0 calc(23% - 19px);
}
.head_pc .nav .megamenu2 .navhbox_item ul.navhbox_three {
    gap: 18px 24px;
}
.head_pc .nav .megamenu2 .navhbox_item ul.navhbox_three li {
    width: calc(50% - 12px);
    min-width: 0;
}
.head_pc .nav .megamenu2 .navhbox_item ul.navhbox_three li span.navathree {
    display: block;
    height: auto;
    margin-right: 0;
    align-items: initial;
    white-space: normal;
}
.head_pc .nav .megamenu2 .navhbox_item ul.navhbox_three li span.navathree a {
    white-space: nowrap;
}

@media screen and (max-width: 1280px) {
    .head_pc .nav .megamenu2 .navhide {
        width: calc(100vw - 40px) !important;
        padding: 24px;
    }
    .head_pc .nav .megamenu2 .navhbox {
        gap: 28px;
    }
}

.solutionimg img {
    width: 100% !important;
    height: auto !important;
}


.Textcontent {
    margin: 0 auto;
    color: #1e2a3a;
}

/* 段落 */
.Textcontent p {
    margin-bottom: 1rem;
    color: #2c3e44;
}

/* 标题 */
.Textcontent h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #0b3b5f;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2c7da0;
}

.Textcontent h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0b3b5f;
    margin: 1.8rem 0 1rem;
    padding-left: 0.75rem;
    border-left: 4px solid #2c7da0;
}

.Textcontent h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f5068;
    margin: 1.5rem 0 0.8rem;
}

.Textcontent h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c6280;
    margin: 1.2rem 0 0.6rem;
}

/* 粗体 */
.Textcontent strong {
    font-weight: 600;
    color: #1f6392;
}

/* 列表 */
.Textcontent ul,
.Textcontent ol {
    margin: 0.75rem 0 1rem 1.8rem;
}

.Textcontent li {
    margin: 0.4rem 0;
}

/* 表格 - 通用干净样式 */
.Textcontent table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    background-color: #fff;
}

.Textcontent th,
.Textcontent td {
    border: 1px solid #d4dee5;
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}

.Textcontent th {
    background-color: #eef3fa;
    font-weight: 600;
    color: #0e4b6e;
}

/* 表格隔行变色 */
.Textcontent tr:nth-child(even) {
    background-color: #f8fafc;
}

/* 图片 */
.Textcontent img {
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}

/* 链接 */
.Textcontent a {
    color: #2c7da0;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.Textcontent a:hover {
    border-bottom-color: #2c7da0;
}

/* 引用块 */
.Textcontent blockquote {
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    border-left: 4px solid #2c7da0;
    background-color: #f5f9fc;
    color: #2c3e44;
}

/* 代码/内联代码 */
.Textcontent code {
    background-color: #f0f2f5;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: monospace;
}

/* 分割线 */
.Textcontent hr {
    margin: 1.5rem 0;
    border: none;
    height: 1px;
    background-color: #d4dee5;
}

/* 图片居中 */
.Textcontent p:has(img) {
    text-align: center;
}

/* 响应式 */
@media (max-width: 768px) {
    .Textcontent {
        padding: 0;
        margin: 0;
    }


    .Textcontent h1 {
        font-size: 1.6rem;
    }

    .Textcontent h2 {
        font-size: 1.3rem;
    }

    .Textcontent h3 {
        font-size: 1.15rem;
    }

    .Textcontent th,
    .Textcontent td {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    /* 移动端表格可横向滚动 */
    .Textcontent table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}



/* ========================================================= */
/*                  index.html Product Center                */
/* ========================================================= */
.product-accordion-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.product-nav-group {
    border: 0;
    background: transparent;
}
.product-nav-group-title,
.product-nav-item {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    transition: 0.25s;
    -webkit-appearance: none;
    appearance: none;
}
.product-nav-group-title {
    min-height: 60px;
    padding: 0 20px 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}
.product-nav-group-title span,
.product-nav-item span {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    text-align: left;
}
.product-nav-group-title img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex: 0 0 24px;
    filter: grayscale(100%) brightness(500%);
    transition: 0.25s;
}
.product-nav-item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex: 0 0 24px;
    filter: grayscale(100%) brightness(500%);
    transition: 0.25s;
}
.product-nav-group-title i {
    transition: 0.25s;
}
.product-nav-group:not(.open) .product-nav-group-title i {
    transform: rotate(-90deg);
}
.product-nav-group.open .product-nav-group-title,
.product-nav-group-title.active {
    background: #fff;
    color: #114e89;
}
.product-nav-group.open .product-nav-group-title img,
.product-nav-group-title.active img,
.product-nav-group-title:hover img {
    filter: inherit;
}
.product-nav-group-list {
    border-top: 0;
}
.product-nav-item {
    min-height: 48px;
    padding: 0 20px 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.45;
}
.product-nav-item + .product-nav-item {
    border-top: 0;
}
.product-nav-item i {
    opacity: 0;
    transition: 0.25s;
}
.product-nav-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.product-nav-item.active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-weight: bold;
}
.product-nav-item:hover.active {
    background: rgba(255, 255, 255, 0.12);
}
.product-nav-group-title:hover {
    background: #fff;
    color: #114e89;
}
.product-nav-item.active i {
    opacity: 1;
}
.product-home-panels .i2ra h2 {
    font-size: 22px;
    font-weight: bold;
}

@media screen and (max-width: 1200px) {
    .product-nav-group-title {
        font-size: 17px;
        padding-left: 36px;
    }
    .product-nav-item {
        padding-left: 36px;
        font-size: 15px;
    }
}
@media screen and (max-width: 991px) {
    .product-accordion-nav {
        gap: 0;
    }
    .product-nav-group-title {
        min-height: 52px;
        padding-left: 28px;
    }
    .product-nav-item {
        min-height: 48px;
        padding-left: 28px;
    }
    .product-home-panels,
    .product-home-panels .tab_content_li,
    .product-home-panels .tab_content_li > .disflex {
        height: auto;
    }
    .product-home-panels .i2ra {
        min-height: 240px;
        height: auto;
        padding: 22px 16px;
        box-sizing: border-box;
    }
    .product-home-panels .i2raimg {
        min-height: 150px;
    }
}
@media screen and (max-width: 560px) {
    .product-nav-group-title {
        min-height: 50px;
        padding-left: 20px;
        padding-right: 54px;
        font-size: 16px;
    }
    .product-nav-item {
        min-height: 46px;
        padding-left: 20px;
        padding-right: 54px;
        font-size: 14px;
    }
    .product-nav-group-title img {
        max-width: 22px;
        max-height: 22px;
    }
    .product-home-panels .i2ra {
        min-height: 220px;
        padding: 20px 12px;
    }
    .product-home-panels .i2raimg {
        min-height: 135px;
    }
    .product-home-panels .i2ra h2 {
        font-size: 18px;
    }
}


.aboutimgmax img {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .rightslidekf {
        display: none;
    }
.aboutimgmax img {
    width: 100%;
}
}



/* ========================================================= */
/*                       page.html Ops Service               */
/* ========================================================= */
.ops-page {
    background: #fff;
}
.ops-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(17, 78, 137, 0.88), rgba(17, 78, 137, 0.2)), url("../img/20220724185637_61850_1a17779f.jpg") no-repeat center;
    background-size: cover;
}
.ops-hero-text {
    max-width: 680px;
    color: #fff;
}
.ops-hero-text p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.ops-hero-text h1 {
    margin: 0;
    color: #fff;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}
.ops-hero-text span {
    display: block;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.8;
}
.ops-breadcrumb {
    padding: 26px 0 8px;
}
.ops-section-title {
    margin-bottom: 36px;
}
.ops-section-title p {
    margin: 0 0 10px;
    color: #114e89;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ops-section-title h2 {
    margin: 0;
    color: #222;
    font-size: 30px;
    line-height: 1.35;
    font-weight: 700;
}
.ops-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 54px;
    align-items: center;
}
.ops-overview-copy {
    padding: 42px 46px;
    background: #f8fbff;
    border-left: 4px solid #114e89;
    box-sizing: border-box;
}
.ops-overview-copy h3 {
    margin: 0 0 18px;
    color: #222;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 700;
}
.ops-overview-copy p {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 2;
}
.ops-overview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.ops-overview-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    color: #114e89;
    background: #fff;
    border: 1px solid #d9e7f7;
    font-size: 14px;
}
.ops-overview-image {
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 78, 137, 0.12);
}
.ops-overview-image img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
}
.ops-service {
    background: #f7f9fc;
}
.ops-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.ops-service-card {
    min-height: 260px;
    padding: 34px 28px;
    background: #fff;
    border: 1px solid #edf1f7;
    box-shadow: 0 10px 24px rgba(20, 53, 91, 0.05);
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ops-service-card:hover {
    transform: translateY(-6px);
    border-color: #c9dcf7;
    box-shadow: 0 16px 34px rgba(20, 53, 91, 0.12);
}
.ops-service-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 26px;
    color: #fff;
    background: #114e89;
    font-size: 24px;
}
.ops-service-card h3 {
    margin: 0 0 14px;
    color: #222;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}
.ops-service-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}
.ops-process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #dbe5f2;
    border-left: 1px solid #dbe5f2;
}
.ops-process-item {
    min-height: 230px;
    padding: 32px 28px;
    border-right: 1px solid #dbe5f2;
    border-bottom: 1px solid #dbe5f2;
    box-sizing: border-box;
    position: relative;
}
.ops-process-item b {
    display: block;
    margin-bottom: 28px;
    color: #114e89;
    font-size: 34px;
    line-height: 1;
}
.ops-process-item h3 {
    margin: 0 0 12px;
    color: #222;
    font-size: 20px;
    font-weight: 700;
}
.ops-process-item p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.85;
}
.ops-support {
    padding-top: 0;
}
.ops-support-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 42px 48px;
    color: #fff;
    background: #114e89;
}
.ops-support-box p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ops-support-box h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;
}
.ops-support-box span {
    display: block;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.9;
}
.ops-support-box a {
    flex: 0 0 auto;
    min-width: 160px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #114e89;
    background: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}
.ops-support-box a:hover {
    background: #e9f2ff;
}

@media screen and (max-width: 1200px) {
    .ops-overview-grid {
        grid-template-columns: minmax(0, 1fr) 360px;
        gap: 34px;
    }
    .ops-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media screen and (max-width: 991px) {
    .ops-hero {
        min-height: 300px;
    }
    .ops-hero-text h1 {
        font-size: 36px;
    }
    .ops-hero-text span {
        font-size: 17px;
    }
    .ops-overview-grid {
        grid-template-columns: 1fr;
    }
    .ops-overview-image {
        order: -1;
    }
    .ops-process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ops-support-box {
        display: block;
        padding: 34px 28px;
    }
    .ops-support-box a {
        margin-top: 24px;
    }
}
@media screen and (max-width: 560px) {
    .ops-hero {
        min-height: 250px;
    }
    .ops-hero-text p {
        font-size: 13px;
    }
    .ops-hero-text h1 {
        font-size: 30px;
    }
    .ops-hero-text span {
        margin-top: 16px;
        font-size: 15px;
    }
    .ops-section-title {
        margin-bottom: 24px;
    }
    .ops-section-title h2 {
        font-size: 24px;
    }
    .ops-overview-copy {
        padding: 28px 22px;
    }
    .ops-overview-copy h3 {
        font-size: 20px;
    }
    .ops-overview-copy p {
        font-size: 15px;
    }
    .ops-overview-image img {
        height: 220px;
    }
    .ops-service-grid,
    .ops-process-list {
        grid-template-columns: 1fr;
    }
    .ops-service-card {
        min-height: auto;
        padding: 28px 22px;
    }
    .ops-process-item {
        min-height: auto;
        padding: 28px 22px;
    }
    .ops-support-box {
        padding: 30px 22px;
    }
    .ops-support-box h2 {
        font-size: 24px;
    }
    .ops-support-box a {
        width: 100%;
    }
.hotsearch p, .hotsearch p a {
    font-size: 12px;
}

.hotsearch {
    padding: 30px 0;
}
}

/* 首页产品中心：修复部分卡片标题被图片挤掉 */
.i2r .i2ra{
    justify-content: space-between;
}

.i2r .i2raimg{
    flex: 1 1 auto;
    min-height: 0;
}

.i2r .i2raimg img{
    width: auto;
    max-width: 80%;
    max-height: 300px;
    object-fit: contain;
}

.i2r .i2ra p{
    width: 100%;
    height: 32px;
    line-height: 32px;
    margin-top: 15px;
    flex-shrink: 0;
}




/* 表格核心样式 */
.pi2r table {
  width: 100%;

  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-size: 14px;

}

/* 单元格通用样式 */
.pi2r td,
.pi2r th {
  padding: 12px 10px;
  border: 1px solid #e0e4e8;
  vertical-align: middle;
  text-align: center;
  word-break: break-word;      /* 长单词/数字换行 */
  white-space: normal;         /* 允许换行 */
}

/* 表头/第一列加粗标识 (如果需要让第一列明显) */
.pi2r td:first-child,
.pi2r th:first-child {
  background-color: #f8f9fc;
  font-weight: 600;
}

/* 标题行 (若表头有tr.firstRow) */
.pi2r .firstRow th,
.pi2r .firstRow td {
  background-color: #f1f5f9;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* 统一强调样式 */
.pi2r strong {
  color: #1e466e;
  font-weight: 600;
}

/* 描述性段落或列表样式 (标配/选配附件区域) */
.pi2r p {
  margin: 0.5rem 0;
  line-height: 1.45;
}

.pi2r p:first-child {
  margin-top: 0;
}

.pi2r p:last-child {
  margin-bottom: 0;
}

/* 标配 / 选配附件列表区域样式 (保持整洁) */
.pi2r p[style*="margin-left:28px"],
.pi2r div:has(p[style*="margin-left:28px"]) p,
.pi2r p:not([class]) {
  text-align: left;
  margin-left: 0;
}

/* 使附件列表项在窄屏可读 */
.pi2r p {
  text-indent: 0;
}

/* 统一处理span内嵌样式保证可读 */
.pi2r span {
  max-width: 100%;
  display: inline-block;
}

/* 针对移动设备优化 */
@media (max-width: 768px) {
  .pi2r td,
  .pi2r th {
    padding: 8px 6px;
    font-size: 12px;
  }
  
  /* 保持表格内的小文字不拥挤 */
  .pi2r span[style*="font-size: 16px"] {
    font-size: 13px !important;
  }
  
  .pi2r strong span {
    font-size: 13px !important;
  }
}

/* 对于超宽屏可保持舒适比例 */
@media (min-width: 1200px) {
  .pi2r table {
    font-size: 15px;
  }
  .pi2r td,
  .pi2r th {
    padding: 14px 12px;
  }
.mp.mp3 .pi2r img {
    width: 100% !important;
    height: auto !important;
}
.pi2r table {
  width: 100%;
  min-width: 600px; /* 保证宽屏时占满，窄屏时触发滚动 */
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  overflow-x: auto;
}
}