*{margin: 0;padding: 0;font-family: "微软雅黑";}
a{text-decoration: none;}
li{list-style: none;}
 @font-face {
        font-family: 'MyFont';
        src: url('~/web/css/Montserrat-Regular.ttf') format('truetype'); /* 后备 */
        font-weight: normal;
        font-style: normal;
        font-display: swap;  /* 优化加载体验（避免 FOIT） */
    }
body{
    font-family: 'MyFont', sans-serif;;
}
/* 新增：页面加载动画 */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.type-desc{margin-bottom: 30px;}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 新增：减少运动偏好设置 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* 首页 */
body,html{width: 100%;}
.nav-wrap{
    width: 100%;
    /* background: #e2001a; */
    border-top:1px solid #efefef;
    /* 新增：移动菜单动画 */
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.top{padding-top: 20px;}
.total-title {display: flex;align-items: center;}
.total-title .main-title{
    font-size: 16px;white-space: nowrap;
    color: #1a1a1a;
    font-weight: bold;
    letter-spacing: 2px;
    /* 新增：标题动画 */
    animation: fadeIn 1s ease-in-out;
}
.total-title .sub-title{
    color: #565656;
    font-size: 14px;
    letter-spacing: 1px;
    /* 新增：副标题动画 */
    animation: fadeIn 1.2s ease-in-out;
}

/* 新增：淡入动画 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.index-active a{
    /* background: #e2001a;  */
    color: #e2001a !important;
    font-size: 16px;
    font-weight: bold;
    /* width: 100px; */
    height: 62px;
    display: inline-block;
    /* 新增：按钮悬停效果 */
    transition: all 0.3s ease;
}
.hot-search a:hover{color: #e2001a;}
.logo{display: flex;}
.logo img{
    width: 46px;
    margin-right: 20px;
    flex: 0 0 auto;
    /* 新增：logo动画 */
    animation: floatUp 0.8s ease-out;
}
.right{display: flex;align-items: center;}
.right a{color: #e2001a;}
.right img{
    width: 30px;
    height: 30px;
    margin-right: 14px;
    /* 新增：图标悬停效果 */
    transition: transform 0.3s ease;
}
.right img:hover {
    transform: scale(1.1);
}
.nav-wrap{display: flex;align-items: center;max-width: 1200px;margin: 0 auto;
justify-content: space-between;

}
.nav-list{width: 70%;}
.nav-wrap .nav-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    box-sizing: border-box;padding: 0 70px 0 40px;
}
.top{max-width: 1200px;margin: 0 auto;}
.logo-tel{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}
.nav-wrap .nav-list a{
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* width: 80px; */
    /* 新增：导航链接动画 */
    position: relative;
    transition: all 0.3s ease;
    height: 50px;
}
/* 新增：导航链接下划线动画 */
.nav-wrap .nav-list a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #e2001a;
    transition: all 0.3s ease;
}

.nav-wrap .nav-list a:hover:after {
    width: 100%;
    left: 0;
}

.swiper {
    width: 100%;
    height: 1000px;
    overflow: hidden;border-top: 3px solid #e2001a;
}  
.swiper-slide img{height: 100%;
display: flex;
justify-content: center;
overflow: hidden;
}
.center-wrap{width: 1200px;margin: 0 auto;}

/* 内容 */
.search-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px 0 50px;
    /* 新增：搜索区域动画 */
    animation: floatUp 0.8s ease-out;
}

/* 新增：上浮动画 */
@keyframes floatUp {
    from { 
        transform: translateY(30px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}
.nav-list li{position: relative;}
.second-menu{background: #fff;position: absolute;z-index: 9999;
border-radius: 4px;box-sizing: border-box;padding: 14px 16px;width: 180px;
left: 50%;transform: translateX(-50%);box-shadow: 0 3px 5px #dbdbdb;top: 50px;
display: none;
}
.second-menu a{line-height: 46px;}
.second-menu a:hover{box-shadow: none !important;color: #e2001a;}
.search-wrap{
    display: flex;
    align-items: center;
    border: 1px solid #a2a2a2;
    width: 70%;
    border-radius: 4px;
    /* 新增：搜索框聚焦效果 */
    transition: box-shadow 0.3s ease;
}
.search-wrap:focus-within {
    box-shadow: 0 0 0 2px rgba(10, 31, 146, 0.2);
}
.second::after{display: none;}
.search-wrap img{
    width: 20px;
    margin: 0 14px;
}
.search-wrap button{
    white-space: nowrap;
    background: #e2001a;
    color: #fff;
    border: none;
    height: 42px;
    padding: 0 24px;
    font-size: 14px;
    /* 新增：按钮动画 */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.search-wrap button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 31, 146, 0.3);
}
/* 新增：按钮涟漪效果 */
.search-wrap button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.search-wrap button:hover:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.search-wrap input{
    height: 42px;
    border: none;
    width: 100%;
    outline: none;
    font-size: 14px;
    color: #1a1a1a;
}
.hot-search{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-top: 22px;
}
.hot-search a{
    color: #1a1a1a;
    justify-content: space-between;
    padding: 0 18px;
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    /* 新增：热门搜索链接动画 */
    position: relative;
    transition: color 0.3s ease;
}
/* 新增：热门搜索下划线动画 */
.hot-search a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.hot-search a:hover:after {
    width: 100%;
}

.index-title{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 60px 0 40px;
    /* 新增：标题区域动画 */
    animation: fadeIn 1s ease-in-out;
}
.product-list{display: flex;flex-wrap: wrap;justify-content: space-around;}
.product-llist-item{
    width: 28%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 1);
    border: 1px solid #E9EAEE;
    box-sizing: border-box;
    padding: 30px 0;
    margin-right: 16px;
    border-radius: 14px;
    /* 新增：产品卡片动画 */
    transition: all 0.3s ease;
    margin-bottom: 30px;
    /* opacity: 0; */
    transform: translateY(30px);
    box-shadow: 0 4px 10px #cccccc;
}
.product-llist-item:nth-of-type(4n){margin-right: 0;}
/* 新增：滚动动画类 */
.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}
.cp-swiper h2{position: absolute;font-size: 46px;
left: 50%;top: 50%;letter-spacing: 2px;transform: translate(-50%,-50%);
color: #fff;
}
.cp-swiper{position: relative;}
.product-llist-item .img{
    width: 270px;
    height: 250px;
    overflow: hidden;
    /* 新增：图片容器动画 */
    transition: all 0.3s ease;
}
.product-llist-item img{
    width: 100%;
    /* 新增：图片悬停动画 */
    transition: transform 0.5s ease;
}
.product-llist-item:hover img {
    transform: scale(1.05);
}
.product-llist-item {
    color: #e2001a;
    font-size: 20px;
    font-weight: 500;
}
.product-llist-item:hover{ 
    box-shadow: 0 0 20px 6px rgba(0, 0, 0, .06);
    color: #e2001a;
    font-weight: bold;
    /* 新增：悬停上浮效果 */
    transform: translateY(-5px);
}

.index-title h3{font-size: 30px;color: #1a1a1a;}
.index-title p{font-size: 14px;color: #565656;margin-top: 6px;}

.applicationv-list{display: flex;flex-wrap: wrap;}
.application-llist-item{
    width: 48%;
    cursor: pointer;
    box-shadow: 0 -2px 10px -2px rgba(0, 0, 0, .10);
    margin-bottom: 30px;
    /* 新增：应用卡片动画 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}
.application-llist-item.animate {
    opacity: 1;
    transform: translateY(0);
}
.application-llist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.applicatin-txt{
    height: 100px;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 14px 16px;
    overflow: hidden;
    font-size: 24px;
    color: #1a1a1a;
    font-weight: bold;
}
.applicatin-txt span{
    width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.applicatin-txt button{
    background: #e2001a;
    display: block;
    float: right;
    cursor: pointer;
    position: relative;
    text-align: center;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid #e6e6e6;
    height: 40px;
    line-height: 40px;
    background: #fff;
    width: 120px;
    float: right;
    /* 新增：按钮动画 */
    transition: all 0.3s ease;
}
.applicatin-txt button:hover {
    background: #e2001a;
    color: #fff;
}
.technology-info{
    box-sizing: border-box;
    padding: 18px 16px;
}
.index-technology{margin-bottom: 80px;}
.technology-image-item p {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制显示的行数为3 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
}
.technology-info h4{font-size: 16px;}
.technology-info span{
    color: #565656;
    font-size: 12px;
    margin-bottom: 6px;
    display: inline-block;
}
.technology-list{
    margin-left: 30px;
    height: 350px;
    display: flex;
    flex-direction: column;
    width: 28%;
    margin-left: 2%;
}
.technology-llist-item{
    padding: 10px 0;
    display: block;
    /* 新增：技术列表项动画 */
    transition: all 0.3s ease;
}
.technology-llist-item:hover {
    transform: translateX(5px);
}
.technology-llist-item:first-of-type{padding-top: 0;}
.technology-llist-item p{
    font-size: 16px;
    color: #1a1a1a;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.technology-llist-item span{font-size: 12px;color: #565656;}
.application-llist-item:nth-of-type(2n){margin-left: 4%;}
.application-llist-item img{width: 100% !important;height: auto !important;}
.technology-image-wap{display: flex;width: 70%;}
.technology-image-item{
    width: 48%;
    cursor: pointer;
    /* 新增：技术图片项动画 */
    transition: all 0.3s ease;
}
.technology-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.technology-image-item:first-of-type{margin-right: 4%;}
.technology-image-wap img{width: 100% !important;height: auto !important;}
.technology-image-wap a{color: #1a1a1a;}
.technology-image-item{background: #f8f8f8;}
.technology-content{display: flex;align-items:center;width: 100%;}

/* 底部 */
.footer{
    background: #1f2021;
    color: #efefef;
    padding: 30px 0 20px;
}
.footer-left{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.footer-left-info{width: 80%;}
.footer a{color: #efefef;}
.footer-wrap{
    width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}
.wx-code{
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 新增：二维码动画 */
    transition: all 0.3s ease;
}
.wx-code:hover {
    transform: translateY(-5px);
}
.wx-code img{
    width: 100%;
    margin-bottom: 10px;
}
.company-info{
    display: flex;
    flex-direction: column;
    line-height: 28px;
    border-top: 1px solid #565656;
    padding-top: 12px;
    font-size: 13px;
}
.footer-menu-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.footer-menu-list span{
    width: 1px;
    height: 16px;
    background: #fff;
}
.footer p{
    text-align: center;
    color: #efefef;
    font-size: 13px;
    border-top: 1px solid #565656;
    padding-top: 20px;
    margin-top: 16px;
}

.swiper-slide{position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.banner-txt{
    position: absolute;
    bottom: 0;
    width: 50%;
    font-family: monospace;
    box-sizing: border-box;
    background: rgba(0, 0, 0, .06);
    padding: 40px 30px;
    color: #fff;
    /* 新增：轮播图文字动画 */
    opacity: 0;
    transition: all 0.8s ease;
}
.swiper-slide-active .banner-txt {
    opacity: 1;
}
.banner-txt a{
    background: #e2001a;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 60px;
    font-size: 16px;
    margin-top: 14px;
    display: inline-block;
    cursor: pointer;
    /* 新增：轮播图按钮动画 */
    transition: all 0.3s ease;
}
.banner-txt a:hover {
    background: #e2001a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 31, 146, 0.3);
}
.banner-txt h2{
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-size: 28px;
    /* 新增：标题动画 */
    animation: fadeIn 0.8s ease-out 0.3s both;
}
.banner-txt p{
    font-size: 18px;
    line-height: 34px;
    /* 新增：描述动画 */
    animation: fadeIn 0.8s ease-out 0.6s both;
}
.banner-left{
    text-align: right;
    left: 0;
    /* 新增：左侧文字动画 */
    transform: translateX(-30px);
}
.banner-right{
    right: 0;
    /* 新增：右侧文字动画 */
    transform: translateX(30px);
}
.swiper-slide-active .banner-left,
.swiper-slide-active .banner-right {
    transform: translateX(0);
}
.switch{white-space: nowrap;}
/* 关于我们 */
.about-content{
    font-size: 15px;
    text-indent: 18px;
    margin-top: 16px;
    color: #565656;
    line-height: 26px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
.right-menu{display: none;}
.wap-switch{display: none;}

/* 新增：移动菜单动画 */
.right-menu span {
    display: block;
    width: 24px;
    height: 6px;
    border-bottom: 3px solid #252c3e;
    transition: all .6s;
    transform-origin: 50% 50%;
}
.banner-title{font-size: 30px;color: #fff;
position: absolute;font-weight: 600;left: 50%;
transform: translateX(-50%);letter-spacing: 2px;top: 24px;

}
/* 叉号状态 */
.right-menu.active span:nth-child(1) {
    transform: translate(4px, 9px) rotate(45deg);
}

.right-menu.active span:nth-child(2) {
    opacity: 0;
}

.right-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 新增：移动菜单项动画 */
.nav-list li {
    /* opacity: 0; */
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-list li:nth-child(1) { transition-delay: 0.1s; }
.nav-list li:nth-child(2) { transition-delay: 0.2s; }
.nav-list li:nth-child(3) { transition-delay: 0.3s; }
.nav-list li:nth-child(4) { transition-delay: 0.4s; }
.nav-list li:nth-child(5) { transition-delay: 0.5s; }

.menuactive .nav-list li {
    opacity: 1;
    transform: translateX(0);
}
.nav-wrap{padding: 10px 0;position: relative;z-index: 10;}
.pc-search{width: 22px;}
.top{display: none;}
/* 手机版响应式样式 */
@media (max-width: 768px) {
    .nav-wrap{display: block !important;}
    .wap-switch{align-items: center;}
    .pc-search{display: none;}
    .pc-logo{display: none;}
    .top{display: block;}
   .banner-title{font-size: 18px;color: #fff;
        position: absolute;font-weight: 600;left: 50%;
        transform: translateX(-50%);letter-spacing: 2px;top: 0px;

    }
    .menuactive .logo{display: none;}
            /* 新增：移动端动画优化 */
    .banner-txt {
        width: 50% !important;
        padding: 20px;
    }
    
    .banner-txt p {
        font-size: 14px;
        line-height: 26px;
    }
    
    .banner-txt h2 {
        font-size: 22px;
        margin-bottom: 16px !important;
    }
    
    .banner-txt a {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .application-llist-item img {
        width: 100% !important;
    }
    
    .switch {
        width: 100%; 
        margin-left: 0 !important;
        display: flex !important;
        align-items: center;flex-wrap: nowrap;
    }
     .switch2{display: none !important;}
    .switch a {
        border-bottom: 0 !important;
        width: auto !important; 
        margin: 0 8px;
    }
    
    /* 导航栏 */
    .company-info section {
        display: flex;
        flex-direction: column;
    }
    
    .right-menu {
        display: block;
    }
    
    .container {
        padding-top: 70px;
    }
    
    .index-swiper {
        height: 100% !important;
    }
    
    .index-swiper img {
        width: auto;
        height: 100%;
    }
    
    .main-title {
        font-size: 18px !important;
    }
    
    .logo {
        align-items: center;
        padding-top: 12px;
    }
    
    .logo img {
        width: 40px;
    }
    
    .right {
        display: none;
    }
    
    .company-info section span:first-of-type {
        font-size: 18px;
    }
    
    .company-info section span:last-of-type {
        font-size: 15px;
        white-space: wrap;
        width: 94%;
        color: #C6C8CC;
    }
    
    .logo-tel {
        padding-bottom: 12px;
    }
    
    .top {
        position: fixed;
        top: 0;
        background: #fff;
        z-index: 10000;
    }
    
    .footer-wrap {
        position: relative;
    }
    
    .footer p {
        width: 92%;
    }
    
    .wx-code {
        width: 72px;
        position: absolute;
        bottom: 100px;
        right: 30px;
    }
    
    .nav-wrap .nav-list a {
        justify-content: flex-start !important;
        line-height: 32px !important;height: 32px !important;
    }
    .nav-wrap{align-items: flex-start !important;}
    .nav-list li, .nav-list li a {
        width: 100%;
        text-align: left;
    }
    
    .nav-list li {
        /* padding: 14px 0; */
    }
    .second-menu{display: block;position: static;transform: translateX(0);
    box-shadow: none;padding: 0 14px !important;
    }
    .second-menu a{color: #565656 !important;}
    .nav-list {
        align-items: flex-start !important;
        box-sizing: border-box;
        padding: 12px 20px !important;
    }
    
    .wx-code span {
        font-size: 14px !important;
    }
    
    .nav-wrap {
        position: fixed;
        width: 50%;
        top: 68px;
        right: -400px;
        z-index: 10000;
        background: #fff;
        height: 100%;
        transition: .6s;
    }
    
    .nav-wrap .nav-list {
        height: auto;
        flex-direction: column;
        padding: 10px 0;
    }
    
    .parameter-content img {
        width: 90% !important;
    }
    
    .swiper-slide {
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    
    .swiper-slide img {
        height: 100%;
        width: auto !important;
    }
    
    .footer-menu-list {
        display: none;
    }
    
    .nav-wrap .nav-list a {
        width: 100%;
        border-bottom: 1px solid #efefef;
    }
    
    .nav-list li a {
        padding: 12px 10px !important;
    }
    
    .index-active a {
        width: 100%;
        height: auto;
    }
    
    .right {
        margin-top: 10px;
    }
    
    /* 轮播图 */
    .swiper {
        height: 400px;
    }
    
    /* 搜索框 */
    .search-wrap {
        width: 100%;
    }
    
    .hot-search {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 15px;
        font-size: 14px !important;
    }
    
    .hot-search a {
        font-size: 14px !important;
    }
    
    .hot-search a {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    /* 产品列表 */
    .product-llist-item {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .product-llist-item .img {
        width: 100%;
        height: auto;
    }
    
    /* 应用列表 */
    .application-llist-item {
        width: 100%;
        margin-left: 0 !important;
    }
    
    .applicatin-txt {
        height: auto;
        font-size: 18px;
        padding: 10px;
    }
    
    /* 技术内容 */
    .technology-content {
        flex-direction: column;
    }
    
    .technology-image-wap {
        width: 100%;
        flex-direction: column;
    }
    
    .technology-image-item {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    .technology-list {
        width: 100%;
        margin-left: 0;
        height: auto;
    }
    
    /* 底部 */
    .footer-wrap {
        width: 93%;
        padding: 0 15px;
    }
    
    .footer-left {
        flex-direction: column;
    }
    
    .footer-left-info {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-menu-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-menu-list a {
        margin: 5px 10px;
    }
    
    .footer-menu-list span {
        display: none;
    }
    
    .logo-tel .logo {
        width: 80% !important;
    }
    
    /* 通用调整 */
    .center-wrap, .top, .nav-list {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .menuactive {
        right: 0 !important;
    }
    
    .index-title h3 {
        font-size: 24px;
    }
    
    .position-list .position-item {
        width: 100%;
        margin-right: 0 !important;
        margin-top: 30px;
    }
    
    .index-title {
        margin: 30px 0 20px;
    }
    
    .detail-content p {
        font-size: 15px !important;
    }
    
    .js-detail-title h2 {
        font-size: 20px !important;
        text-align: center;
    }
    
    .js-detail-title div {
        flex-direction: column;
        align-items: center;
    }
    
    .js-detail-title div span {
        margin-bottom: 4px !important;
    }
    
    .map-img {}
    
    .contact-info {
        margin-right: 0 !important;
        width: 100% !important;
        margin-bottom: 30px;
    }
    
    .bmap-container {
        width: 100% !important;
    }
    
    .map {
        flex-direction: column;
    }
    
    .down_list_item p {
        font-size: 16px !important;
    }
    
    .link_load {
        width: 110px !important; 
        line-height: 34px !important;
    }
    
    .informarion-wrap {
        flex-direction: column;
    }
    
    .informarion-wrap p {
        margin-right: 0;
        width: 100% !important;
        padding: 20px 20px !important;
    }
    
    .cp-content {
        flex-direction: column;
    }
    
    .cp-content .cp-menu {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        flex-direction: row !important;
    }
    
    .cp-content .cp-menu a {
        width: 48%;
        font-size: 14px;
        text-align: center;
    }
    
    .cp-content .cp-menu a:nth-of-type(2n) {
        margin-left: 4%;
    }
    .product-llist-item{margin-right: 0 !important;}
}

/* 平板设备响应式样式 */
@media (min-width: 769px) and (max-width: 1024px) {
    .right-menu span {
        display: block;
        width: 0.48rem;
        height: 0.08rem;
        border-bottom: 0.07rem solid #252c3e;
        transition: all .6s;
        transform-origin: 50% 50%;
    }
    
    .product-llist-item {
        width: 50%;
    }
    
    .technology-image-wap {
        flex-direction: column;
    }
    
    .technology-image-item {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    .technology-content {
        flex-direction: column;
    }
    
    .technology-list {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}