@charset "utf-8";
*{line-height:1;box-sizing:border-box;margin:0;padding:0}
html{overflow-x:hidden!important;overflow-y:auto;-webkit-tap-highlight-color:transparent;font-family:微软雅黑;}
body{min-height:100vh;background:#fff;overflow:hidden;font-family:微软雅黑;}
a{transition:all .36s;text-decoration:none}
a:hover{text-decoration:none}
a:focus{text-decoration:none;outline:0}
a:not([href]){cursor:default}
li, ol, ul{margin:0;list-style-type:none}
h1, h2, h3, h4, h5, h6, p{font-weight:400;margin:0;line-height:1}
p{word-wrap:break-word;word-break:normal}
h1{font-size:36px}
h2{font-size:30px}
h3{font-size:24px}
h4{font-size:18px}
h5{font-size:14px}
h6{font-size:12px}
img, video{max-width:100%;vertical-align:middle}
img{image-rendering:-moz-crisp-edges;image-rendering:-o-crisp-edges;image-rendering:-webkit-optimize-contrast;image-rendering:crisp-edges;-ms-interpolation-mode:nearest-neighbor}
video{background:#000;outline:0}
body, button, input, select, textarea{font-size:14px;line-height:1;margin:0;color:#333;border:0;outline:0;background:0 0}
form{width:100%}
input, textarea{-webkit-appearance:none}
input{line-height:normal;text-overflow:ellipsis}
input:focus::-webkit-input-placeholder{color:transparent}
input:focus:-moz-placeholder{color:transparent}
input:focus::-moz-placeholder{color:transparent}
input:focus:-ms-input-placeholder{color:transparent}
[tabindex="0"], input{outline:0!important}
textarea{resize:none}
label{font-weight:400;margin-bottom:0}
select::-ms-expand{display:none}
a:active, button::-moz-focus-inner, input[type=button]::-moz-focus-inner, input[type=file]>input[type=button]::-moz-focus-inner, input[type=reset]::-moz-focus-inner, input[type=submit]::-moz-focus-inner, select::-moz-focus-inner{border:0;outline:0}
a, button{cursor:pointer}
.fl {float: left;}
.fr {float: right;}

/**首页幻灯**/
.slider-container{position: relative;width: 100%; height:100vh;overflow: hidden;}
.slider{position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: flex;transition: transform 0.5s ease;}
.slide{min-width: 100%;height: 100%;position: relative;}
.slide-link{display: block;width: 100%;height: 100%;position: relative;}
.slide-link img{width: 100%;height: 100%;object-fit: cover;object-position: center;}
.slide-content{position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);text-align: center;color: white;padding: 15px;width: 90%;max-width: 800px;}
.slide-content h2{font-size: clamp(1.5rem, 4vw, 2.5rem);margin-bottom: 30px;}
.slide-content p{font-size: clamp(1.2rem, 3vw, 2rem);line-height: 1.4;}
.slide-content p span{color: #06e7d5;}
.slider-controls{position: absolute;bottom: 40px;left: 50%;transform: translateX(-50%);display: flex;align-items: center;padding: 5px 10px;z-index: 10;max-width: 95%;overflow-x: auto;white-space: nowrap;scrollbar-width: none;}
.slider-controls::-webkit-scrollbar{display: none;}
.control{padding: 6px 52px;cursor: pointer;transition: all 0.3s ease;text-align: center;color: rgba(255, 255, 255, 0.8);flex-shrink: 0;text-align: left;}
.control.active{color: #06e7d5;}
.control .chinese{font-size: clamp(16px, 3vw, 20px);line-height: 36px;}
.control .english{font-size: clamp(12px, 2vw, 14px);text-transform: uppercase;}
.separator{width: 1px;height: 24px;background-color: rgba(255, 255, 255, 0.3);margin: 0 4px;flex-shrink: 0;}
.separator2{width: 1px;height: 60px;background-color: rgba(0, 0, 0, 0.15);margin: 0 4px;flex-shrink: 0;}
/**头部**/
.header{position: fixed;top: 0;left: 0;width: 100%;padding: 25px 5%;display: flex;align-items: center;justify-content: space-between;background-color: rgba(0, 0, 0, 0.15);backdrop-filter: blur(12px);-webkit-backdrop-filter: blur(12px);transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);z-index: 1000;border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
.header.scrolled{background-color: rgba(255, 255, 255, 0.98);padding: 25px 5%;box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);border-bottom: 1px solid rgba(0, 0, 0, 0.05);}
.logo-container {position: relative;z-index: 1001;}
.logo{height: 40px;transition: all 0.3s ease;}
.logo-default {display: block;filter: brightness(0) invert(1);}
.logo-scrolled {display: none;filter: none;}
.header.scrolled .logo-default {display: none;}
.header.scrolled .logo-scrolled {display: block;}
.header.scrolled .logo{filter: none;}
.nav-container{display: flex;align-items: center;gap:100px;}
.nav{display: flex;list-style: none;}
.nav li{position: relative;margin: 0 30px;}
.nav li a{text-decoration: none;color: #fff;font-size: 16px;font-weight: 500;transition: all 0.3s ease;display: flex;align-items: center;padding: 8px 0;position: relative;}
.nav li a.cur::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -12px;
    height: 2px;
    background: #fff;
    transition: all .5s;
}
.header.scrolled .nav li a.cur::after {
    background: #3a237b;
}
.header.scrolled .nav li a{color: #333;}

.dropdown-menu{position: absolute;top: 100%;left: 50%;transform: translateX(-50%) translateY(15px);min-width: 180px;max-width: 280px;width: max-content;background-color: #fff;border-radius: 8px;box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);opacity: 0;visibility: hidden;transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);z-index: 100;padding: 12px 0;border: 1px solid rgba(0, 0, 0, 0.05);white-space: nowrap;}
.nav li:hover .dropdown-menu{opacity: 1;visibility: visible;transform: translateX(-50%) translateY(5px);}
.dropdown-menu li{margin: 0;padding: 0 20px;transition: background-color 0.2s ease; text-align:center;}
.dropdown-menu li a{color: #555;padding: 10px 0;font-size: 14px;transition: all 0.2s ease; display:block}
.dropdown-menu li:hover{background-color: #ecebeb;}
.dropdown-menu li a:hover{color: #3b247f;}

.contact{display: flex;align-items: center;gap: 25px;}
.phone{display: flex;align-items: center;color: #fff;transition: all 0.3s ease; margin-right:20px;}
.phone span{ font-size:18px;}
.header.scrolled .phone{color: #333;}
.phone i{margin-right: 8px;font-size: 20px;color: #fff;}
.header.scrolled .phone i{color: #333;}
.search-icon{color: #fff;font-size: 18px;cursor: pointer;transition: all 0.3s ease;}
.search-icon i{font-size:20px;}
.header.scrolled .search-icon{color: #333;}
.search-icon:hover{transform: scale(1.1);}

.search-container {
    position: fixed;
    top: 80px; /* 初始值，会被JS覆盖 */
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 5%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(-150%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.search-container.active {
    transform: translateY(0);
    opacity: 1;
}
.search-box {width: 100%;max-width: 800px;position: relative;margin: 10px auto;}

.search-input{width: 100%;padding: 16px 25px;padding-right: 60px;border: none;border-radius: 50px;font-size: 16px;outline: none;box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);transition: all 0.3s ease;}
.search-input:focus{box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);}
.search-submit{position: absolute;right: 5px;top: 0px;width: 50px;height: 50px;background: #3a237b;color: white;border: none;border-radius: 50%;font-size: 18px;cursor: pointer;transition: all 0.3s ease;}
.search-submit:hover{background: #6852a9;transform: scale(0.95);}
.close-search{margin-left: 20px;width: 50px;height: 50px;background: none;color: #888;border: none;border-radius: 50%;font-size: 20px;cursor: pointer;transition: all 0.3s ease;display: flex;align-items: center;justify-content: center;}
.close-search:hover{color: #333;background: #f5f5f5;}

.mobile-menu-btn{display: none;width: 40px;height: 40px;padding: 0;border: none;cursor: pointer;position: relative;z-index: 1001;}
.mobile-menu-btn span{display: block;width: 26px;height: 2px;background-color: #fff;position: absolute;left: 50%;transform: translateX(-50%);transition: all 0.3s ease;}
.mobile-menu-btn span:nth-child(1){top: 9px;}
.mobile-menu-btn span:nth-child(2){top: 17px;}
.mobile-menu-btn span:nth-child(3){top: 25px;}
.mobile-menu-btn.active span:nth-child(1){top: 19px;transform: translateX(-50%) rotate(45deg);}
.mobile-menu-btn.active span:nth-child(2){opacity: 0;}
.mobile-menu-btn.active span:nth-child(3){top: 19px;transform: translateX(-50%) rotate(-45deg);}
.header.scrolled .mobile-menu-btn span{background-color: #333;}
/* 移动端导航菜单 - 从右向左滑出*/
.mobile-nav-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;}
.mobile-nav-overlay.active{opacity: 1;visibility: visible;}
.mobile-nav{position: fixed;top: 71px;right: -100%;width: 85%;max-width: 320px;height: 100%;background: #fff;box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);z-index: 999;transition: right 0.4s ease;overflow-y: auto;padding: 20px 20px 30px;}
.mobile-nav.active{right: 0;}
.mobile-nav li{list-style: none;border-bottom: 1px solid #f0f0f0;}
.mobile-nav > li:last-child{border-bottom: none;}
.mobile-nav li a{display: flex;justify-content: space-between;align-items: center;padding: 15px 0;color: #333;text-decoration: none;font-weight: 500;}
.mobile-nav li.has-dropdown > a::after{content: '+';font-size: 18px;color: #999;transition: all 0.3s ease;}
.mobile-nav li.has-dropdown.active > a::after{content: '-';color: #0066ff;}
.mobile-dropdown-menu{max-height: 0;overflow: hidden;transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);padding-left: 15px;}
.mobile-dropdown-menu.active{max-height: 500px;}
.mobile-dropdown-menu li{border-bottom: none;}
.mobile-dropdown-menu li a{padding: 12px 0;font-size: 14px;color: #666;font-weight: normal;}
.mobile-dropdown-menu li a i{margin-right: 8px;color: #0066ff;width: 18px;text-align: center;}
/**首页产品**/
.cont_boxA{max-width: 1440px;margin: 80px auto;}
.cont_boxA .tit{text-align: center;margin-bottom:20px;}
.cont_boxA .tit h1{font-size: 36px;color: #333;margin-bottom: 25px;line-height: 36px;}
.cont_boxA .tit h1 a{color: #333;}
.cont_boxA .tit p{font-size: 16px;color: #999;max-width: 520px;margin: 0 auto;line-height: 26px;}
.cont_boxA .tabs{display: flex;width: 100%;margin-bottom: 30px;border-bottom: 1px solid #bbbbbb;overflow-x: auto;/* 允许横向滚动*/-webkit-overflow-scrolling: touch;/* iOS平滑滚动*/}
.cont_boxA .tabs .tab{cursor: pointer;white-space: nowrap;transition: all 0.3s ease;text-align: center;line-height: 60px;font-size: 18px;color: #666;height: 60px;padding:0 37px;}
.cont_boxA .tabs .tab.active{color: #000;border-bottom: 3px solid #3a237b;font-weight:bold;}
.cont_boxA .tab-content{display: none;}
.cont_boxA .tab-content.active{display: flex;flex-wrap: wrap;}
.cont_boxA .feature-column{flex: 0 0 20%;padding: 20px 20px 20px 0px;}
.cont_boxA .feature-card{background-color: #f9f9f9;border-radius: 5px;padding: 40px 20px;height: 100%;background-size: cover;background-position: center;position: relative;color: white;min-height: 300px;}
.cont_boxA .feature-card::before{content: '';position: absolute;top: 0;left: 0;right: 0;bottom: 0;background: rgba(0,0,0,0.5);border-radius: 5px;z-index: 1;}
.cont_boxA .feature-content{position: relative;z-index: 2;height: 100%;display: flex;flex-direction: column;}
.cont_boxA .feature-content h3{font-size: 20px;margin: 30px 0;}
.cont_boxA .feature-content h3 a{ color:#fff}
.cont_boxA .feature-content p{font-size: 14px;line-height: 28px;}
.cont_boxA .feature-link{display: inline-block;padding: 8px 15px;color: white;text-decoration: none;font-size: 14px;text-align: right; position:absolute; bottom:10px; right:0px;}
.cont_boxA .feature-link:hover{color: #0ce4d5;}
.cont_boxA .products-column{flex: 0 0 80%;padding: 20px 0px;}
.cont_boxA .products-grid{display: flex;flex-wrap: wrap;margin: -10px;}
.cont_boxA .product-item{flex: 0 0 calc(33.333333333% - 20px);margin: 10px;background-color: #f9f9f9;border-radius: 5px;overflow: hidden;box-shadow: 0 1px 8px rgba(0,0,0,0.1);position: relative;}
.cont_boxA .product-image{width: 100%;height: 280px;object-fit: cover;transition: all 0.3s ease;}
.cont_boxA .product-item:hover .product-image{transform: scale(1.05);box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);}
.cont_boxA .product-info{padding: 10px;}
.cont_boxA .product-info h4{font-size: 14px;color: #333;text-align: center;line-height: 25px;}
/**首页行业**/
.hy_container{position: relative;width: 100%;height: 100vh;min-height: 500px;overflow: hidden;}
.hy_slider-container{height: 100%;}
.hy_slider{position: relative;width: 100%;height: 100%;}
.hy_slide{position: absolute;top: 0;left: 0;width: 100%;height: 100%;opacity: 0;transition: opacity 1s ease-in-out;}
.hy_slide.active{opacity: 1;z-index: 1;}
.hy_slide a{display: block;width: 100%;height: 100%;}
.hy_slide img{width: 100%;height: 100%;object-fit: cover;display: block;}
.hy_slide-content{position: absolute;top: 20%;left: 50%;transform: translate(-50%, -50%);text-align: center;color: white;/**background-color: rgba(0, 0, 0, 0.6);**/padding: 30px 20px;border-radius: 8px;max-width:900px;width: 90%;pointer-events: none;}
.hy_slide-content h2{font-size: 36px;margin-bottom: 25px;}
.hy_slide-content p{font-size: 18px;line-height: 1.4;}
.hy_controls-container{position:absolute; bottom: 0px;left: 0; width: 100%; display: flex; justify-content: center; z-index: 100; padding: 10px 0;background-color: rgba(58, 35, 123, 0.6);}
.hy_controls{display: flex;padding: 5px;max-width: 95%;overflow-x: auto;white-space: nowrap;scrollbar-width: none;-ms-overflow-style: none;}
.hy_controls::-webkit-scrollbar{display: none;}
.hy_control{padding: 10px 15px;cursor: pointer;font-size:18px;color: #fff;position: relative;transition: all 0.3s ease;flex-shrink: 0;}
.hy_control:hover{color: #06e7d5;}
.hy_control.active{color: #06e7d5;font-weight: bold;}
.hy_control:not(:last-child)::after{content: "|";position: absolute;right: -2px;color: #ccc;}
/**首页优势**/
.cont_boxB{max-width: 1440px;margin: 80px auto;}
.cont_boxB .tit{text-align: center;margin-bottom: 50px;}
.cont_boxB .tit h1{font-size: 36px;color: #333;margin-bottom: 25px;line-height: 36px;}
.cont_boxB .tit p{font-size: 16px;color: #999;max-width: 520px;margin: 0 auto;line-height: 26px;}
.ys_container{display: grid;grid-template-columns: repeat(3, 1fr);grid-gap: 30px;max-width: 1440px;margin: 0 auto;}
.ys_item{position: relative;overflow: hidden;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);transition: all 0.3s ease;}
.ys_image{width: 100%;height: 100%;object-fit: cover;transition: all 0.3s ease;}
.ys_content{position: absolute;left: 0px;bottom: 0px;right: 10%;background: white;padding: 15px;}
.ys_title{font-size: 22px;font-weight: bold;margin-bottom: 5px;color: #3a237b; line-height:30px;}
.ys_desc{font-size: 16px;color: #666;line-height: 1.6;}
.ys_item:hover .ys_image {
   
    transform: scale(1.05);
    opacity: 0.9;
    transition: all 0.3s ease;
}
/**首页关于我们**/
.ab_container{position: relative;min-height: 100vh;background-image: url('../images/yd_bg.jpg');background-size: cover;background-position: center;display: flex;flex-direction: column;}
.ab_content-wrapper{position: relative;z-index: 1;max-width: 1440px;width: 100%;margin: 0 auto;padding: 80px 20px;flex: 1;display: flex;flex-direction: column;justify-content: center;}
.ab_header{text-align: center;margin-bottom:50px;}
.ab_title{font-size: 36px;margin-bottom: 25px;color:#FFF; line-height:36px;}
.ab_title a{color:#FFF;}
.ab_description{font-size: 16px;max-width: 800px;margin: 0 auto;line-height: 1.6;color:#FFF;}
.ab_content{display: flex;flex-direction: column;gap: 40px;}
.ab_text-section{max-width: 750px; margin-top:50px;}
.ab_text-section p{margin-bottom: 20px;font-size:16px;line-height: 1.7; color:#FFF;}
.ab_numbers-section{display: flex;justify-content: space-between;margin-top: 30px;flex-wrap: wrap;max-width: 650px;}
.ab_number-item{display: flex;flex-direction: column;align-items: center;flex: 1;min-width: 200px;}
.ab_circle{width: 110px;height: 110px;border-radius: 50%;border: 1px solid #fff;display: flex;align-items: center;justify-content: center;margin-bottom: 20px;position: relative;overflow: hidden;color:#0de7d6;}
.ab_number{font-size: 35px;font-weight: 700; color:#0de7d6;}
.ab_number-title{font-size:18px;text-align: center;max-width: 200px; color:#FFF}
/**首页新闻**/
.cont_boxC{max-width: 1440px;margin: 80px auto;}
.cont_boxC .tit{text-align: center;margin-bottom: 50px;}
.cont_boxC .tit h1{font-size: 36px;color: #333;margin-bottom: 25px;line-height: 36px;}
.cont_boxC .tit h1 a{color: #333;} 
.cont_boxC .tit p{font-size: 16px;color: #999;max-width: 520px;margin: 0 auto;line-height: 26px;}
.inewmain{width: 100%;margin: 0 auto;display: flex;}
.inewl{width: 62%;float: left; margin-left:3%;}
.inew-item{width: 48%;float: left;border-right: 1px solid #E5E5E5;margin-right: 2%;box-sizing: border-box;position: relative;}
.inewnb{padding: 45px 0 30px 0;width: 96%;box-sizing: border-box;border-top: 1px solid #E5E5E5;border-bottom: 1px solid #E5E5E5;transition: all .3s ease 0s;}
.inew-item .inewnb:after{content: '';width: 0px;height: 1px;background-color: #06e7d5;transition: all .3s ease 0s;position: absolute;left: 0px;bottom: 0px;width: 0px;}
.inew-item:hover .inewnb:after{width: 96%;}
.inew-item:hover .inewnb{border-bottom: 1px solid #ffffff;}
.inew-item:hover{border-right: 0;}
.inewrl{position: absolute;right: 0;width: 1px;height: 0;background: #06e7d5;top: 0;transition: all .3s ease 0s;}
.inew-item:hover .inewrl{height: 100%;}
.inew-item h3{font-size: 16px;font-weight: unset;color: #999999;}
.inew-item h2{font-weight: unset;font-size: 16px;margin: 15px 0 15px;color: #000; line-height:26px;}
.inew-item p{font-size: 16px;color: #666666;line-height: 25px;margin-bottom: 10px;display: inline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;height: auto;}
.inew-item p.nbt{display: block;width: 80px;background: url("../images/i27.png") no-repeat right;font-size: 16px;color: #999999;}
.inew-item:hover p.nbt{color: #e60012;background: url("../images/i15.png") no-repeat right;}
.inewr{width: 35%;float: left;border-bottom: 1px solid #E5E5E5;position: relative; overflow:hidden;}
.inewr img{width: 100%;border-radius: 8px; transition: transform 0.3s ease; }
.inewr img:hover {transform: scale(1.02); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);}
.inewrtxt{padding-top: .15rem;}
.inewrtxt h2{font-weight: unset;font-size: 22px; line-height:36px; color:#000; margin:10px 0;}
.inewrtxt p{font-size: 16px;color: #666666;line-height: 25px;margin-bottom: 10px;display: inline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;height: auto;}
.inewrtxt p.nbt{display: block;width: 80px;background: url("../images/i27.png") no-repeat right;font-size: 16px;color: #999999;}
.inewrtxt:hover p.nbt{color: #e60012;background: url("../image/images.png") no-repeat right;}
.inewr:after{content: '';width: 0px;height: 1px;background-color: #06e7d5;transition: all .3s ease 0s;position: absolute;left: 0px;bottom: 0px;width: 0px;}
.inewr:hover:after{width: 96%;}
/**底部**/
.container {position: relative;width: 100%;max-width: 1440px;min-width: 320px;margin: 0 auto;}
.footer{background:#000;overflow:hidden;font-size:14px;color:#fff;}
.footMain{padding:80px 20px 40px;overflow:hidden;line-height:2.2;}
.footLogo{width:13%; margin-right:10%}
.footLogo .dblogo{ width:100%;}
.footLogo .ewm{ width:60%; margin:40px 20% 10px;}
.footLogo .ewm2{ width:60%; margin:0px 20%;}
.footMenu{overflow:hidden;width:50%;display: flex;justify-content: space-between;margin-top:20px;}
.footMenu dl{float:left;}
.footMenu dt{font-size:1.143em;color:#fff;margin-bottom:15px;line-height:1.2;position: relative;}
.footMenu dd a{display:block; line-height:26px; font-size:14px;}

.footWx{width:17%;text-align:center;max-width:370px;margin-top:20px;}
.bd_form-container{max-width: 100%;margin: 0 auto;}
.bd_form-group{margin-bottom: 15px;}
.bd_form-row{display: flex;gap: 15px;}
.bd_form-col{flex: 1;}
.bd_input{width: 100%;padding:8px 10px; background:#FFF}
.bd_textarea{width: 100%;padding: 10px;height: 60px;resize: vertical;box-sizing: border-box; background:#FFF; font-size:12px; color:#999}
.bd_submit-btn{width: 100%;padding: 12px;background-color: #3a237b;color: white;border: none;cursor: pointer;font-size: 14px;}
.bd_submit-btn:hover{background-color: #6344ba;}

.footInfo{padding:20px 0px 5px;}
.footInfo ul{display:flex;justify-content:space-between;}
.footInfo li {position: relative;line-height:44px;}
.footInfo li:last-child{line-height:22px}
.footInfo li i{float:left;width:44px;height:44px;line-height:44px;color:#fff;font-style:normal;text-align:center;font-size:2em;}
.last{text-align:right;line-height:2;padding-left:0;}
.last .last_box{position: relative;width: 100%;max-width: 1440px;min-width: 320px;margin: 0 auto;border-top: 1px solid #3b3b3b;font-size:14px; line-height:30px;}
.last .last_box .fl{ margin:20px 0}
.last .last_box a{ margin-left:10px; color:#FFF;}
.last .last_box a i{ font-size:25px;}
.bd_social-icons{display: flex;justify-content: center;gap: 10px; margin:10px 0}
.bd_social-icon{width: 30px;height: 30px;color: white;display: flex;align-items: center;justify-content: center;font-size: 28px;text-decoration: none;transition: all 0.3s ease;}
.bd_social-icon:hover{transform: scale(1.1);box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);}
.footer a{color:#a3a3a3;}
.footer a:hover{color:#fff;}
/**内页公共**/
.main{width: 100%; background:#f6f6f8; overflow:hidden; padding-bottom:50px;}
.main_x{width: 100%; background:#fff; overflow:hidden; padding-bottom:50px;}
.main_a{width: 100%; background:#fff; overflow:hidden; padding-bottom:0px;}
.bgImg{background-position: center; background-size: cover; position: relative; transition: all 0.5s; display: block; width: 100%; height: 100%;}
.listWrap{overflow:hidden;padding:80px 0;}
.listBan,.mzsmBanner{height:600px;background-position: center;background-repeat: no-repeat;background-size:cover;position:relative;overflow:hidden;}
.listBan .txt{position: absolute;left:50%;top:55%;transform:translate(-50%,-50%);animation:leftPic .8s;color:#fff;max-width:1600px;margin:0 auto;width:100%;text-align:center;font-size:1.5em;text-transform: uppercase;letter-spacing:2px;line-height:1.2;font-size:2.25em;}
.listBan .txt h3{font-size:36px; margin-bottom:20px;position:relative;padding-bottom:20px;}
.listBan .txt h3::after{content:"";position:absolute;left:0;bottom:0;width:60px;height:2px;background:#fff;left:50%;margin-left:-30px;}
.listBan .txt p{ font-size:30px;}
.listBan .bgImg{transform: matrix(1, 0, 0, 1, 0, 0);-webkit-transform: matrix(1, 0, 0, 1, 0, 0);-webkit-animation: minus 8s 0s ease both infinite;-moz-animation: minus 8s 0s ease both infinite;animation: minus 8s 0s ease both infinite;animation-iteration-count: 1;-webkit-animation-iteration-count: 1;}
.listBan .hBtn{margin-top:70px;margin-right:20px;border-color:#222;color:#222;font-size:.9em;}
.listBan .hBtn:hover{border-color: #e11701;color:#fff;}

.breadCrumb{overflow:hidden;text-align:left;}
.breadCrumb p{padding:25px 0;}
.breadCrumb p a{ color:#333; font-size:14px;}

.ind_abo_tab{margin:20px auto;width:100%; overflow:hidden}
.ind_abo_tab li{float:left;}
.ind_abo_tab li a{cursor:pointer !important;line-height:40px;font-size:16px;padding:0 15px;display:block;color:#343434;border:none;float:left; height:40px;}
.ind_abo_tab li a.active, .ind_abo_tab li.active a, .ind_abo_tab li a:hover, .ind_abo_tab li a:focus{ border-bottom:3px solid #3a237b; color:#3a237b; font-weight:bold;}
.ind_abo_tab li .border{line-height:40px;padding:0 18px;color:#343434;float:left;}

.inner_nav {border-left:solid 4px #3a237b;margin:50px 0px 26px;padding-left:10px;line-height:20px;font-size:18px;color:#333;}
.inner_nav a{color:#333;}
.inner_nav a:hover{color:#3a237b;}
/**产品页**/
.image-grid{display: grid;grid-template-columns: repeat(4, 1fr);gap: 20px;margin: 0 auto;max-width: 1440px;}
.image-item{display: flex;flex-direction: column;gap: 10px;border-radius: 8px;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);background:#FFF;}
.image-wrapper{position: relative;overflow: hidden;aspect-ratio: 1/1; }
.image-wrapper img{width: 100%;height: 100%;object-fit: cover;transition: transform 0.3s ease;}
.image-title{color: #333;text-align: center;font-size: 16px;font-weight: bold;padding: 0 5px;transition: color 0.3s ease; line-height:30px; margin-bottom:20px;}
.image-item:hover img{transform: scale(1.05);}
.image-item:hover .image-title{color: #3a237b;/* 紫色文字*/}
/**分页**/
.pagination{display:table;padding-left: 0;margin: 70px auto 10px;border-radius: 4px;}
.pagination > li{display: inline;}
.pagination > li > a,
.pagination > li > span{position: relative;float: left;padding: 6px 12px;line-height: 1.42857;text-decoration: none;color: #666;background-color: #fff;border: 1px solid #ddd;margin-left:2px;}
.pagination > li:first-child > a,
.pagination > li:first-child > span{margin-left: 0;border-bottom-left-radius: 4px;border-top-left-radius: 4px;}
.pagination > li:last-child > a,
.pagination > li:last-child > span{border-bottom-right-radius: 4px;border-top-right-radius: 4px;}
.pagination > li > a:hover, .pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus{z-index: 2;color: #23527c;background-color: #eeeeee;border-color: #ddd;}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus{z-index: 3;color: #fff;background-color: #3a237b;border-color: #3a237b;cursor: default;}

/**产品详情页**/
.cp_container{max-width: 1440px;margin: 0 auto;padding: 0 15px; width:100%;}
.cp_section{padding: 0px 0;}
.cp_section2{padding: 0px 0;}
.cp_section3{padding: 0px 0 80px;}
.cp_section5{padding: 0px 0;}
.cp_section-title{text-align: center;font-size: 32px;margin-bottom: 10px;position: relative;padding-bottom: 15px;color: #222;}
.cp_section-tit{text-align: center;font-size: 26px;margin-bottom: 70px;position: relative;padding-bottom: 15px;color: #b8b8b8;text-transform: uppercase;}
.cp_section-tit2{text-align: center;font-size: 26px;margin-bottom: 0px;position: relative;padding-bottom: 15px;color: #b8b8b8;text-transform: uppercase;}
.ffys{background: #f9f9f9;padding: 80px 0;}
.ffys2{background: #ffffff;padding: 80px 0;}
.ffys3{background: #ffffff;padding: 0px 0 80px;}
/* 第一模块样式*/
.cp_hero{display: flex;flex-wrap: wrap;gap: 120px;padding: 40px 0;}
.cp_slider-container{flex: 1;min-width: 300px;height: auto;position: relative;overflow: hidden;border-radius: 8px;box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);}
.cp_slider-container img{ width:100%; height:100%;}
.cp_slide{position: absolute;width: 100%;height: 100%;opacity: 0;transition: opacity 1s ease-in-out;background-size: cover;background-position: center;}
.cp_slide.active{opacity: 1;}
.cp_slider-controls{position: absolute;bottom: 20px;left: 50%;transform: translateX(-50%);display: flex;gap: 10px;z-index: 10;}
.cp_slider-dot{width: 12px;height: 12px;border-radius: 50%;background: rgba(0, 0, 0, 0.5);cursor: pointer;transition: all 0.3s ease;}
.cp_slider-dot.active{background: #3a237b;transform: scale(1.2);}
.cp_slider-arrow{position: absolute;top: 50%;transform: translateY(-50%);width: 40px;height: 40px;background: rgba(0, 0, 0, 0.3);color: white;border: none;border-radius: 50%;font-size: 1.2rem;cursor: pointer;z-index: 10;display: flex;align-items: center;justify-content: center;transition: all 0.3s ease;}
.cp_slider-arrow:hover{background: rgba(0, 0, 0, 0.6);}
.cp_slider-prev{left: 15px;}
.cp_slider-next{right: 15px;}
.cp_hero-content{flex: 1.5;min-width: 300px;}
.cp_hero-title{font-size:34px;margin: 20px 0 40px;color: #000;}
.cp_hero-desc{margin-bottom: 30px;color: #333;font-size:16px; line-height:30px;}
.cp_btn-group{display: flex;gap: 15px;flex-wrap: wrap;}
.cp_btn{padding: 18px 0px;border-radius: 42px;font-size:22px;cursor: pointer;transition: all 0.3s ease;display: inline-flex;align-items: center;justify-content: center; width:270px; margin-bottom:20px;}
.cp_btn i{ font-size:26px; margin-right:10px}
.cp_btn-primary{background: #3e0098;color: white;border: none;}
.cp_btn-primary:hover{background: #7b34e1;}
.cp_btn-secondary{background: #fff;color: #000; border:1px solid #000; position:relative;justify-content: left; padding-left:40px;}
.cp_btn-secondary:hover{background: #000;color: #fff;}
.cp_btn-secondary i{position:absolute; right:15px;}

.cp_cs{ margin:20px 0 50px;}
.cp_cs li{ line-height:30px; font-size:14px; color:#333;background:url(../images/ii1.png) no-repeat left center; padding-left:25px;}
/* 模态框样式*/
.cp_modal{display: none;position: fixed;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.7);z-index: 100;align-items: center;justify-content: center;}
.cp_modal-content{background: white;padding: 30px;border-radius: 8px;width: 100%;max-width: 500px;position: relative;animation: cp_modalFadeIn 0.3s ease;}
@keyframes cp_modalFadeIn{from{opacity: 0;transform: translateY(-50px);}
to{opacity: 1;transform: translateY(0);}}
.cp_modal-close{position: absolute;top: 15px;right: 15px;font-size: 1.5rem;cursor: pointer;color: #666;background: none;border: none;}
.cp_modal-title{margin-bottom: 20px;text-align: center;color: #333;}
.cp_form-group{margin-bottom: 20px;}
.cp_form-group label{display: block;margin-bottom: 8px;font-weight: bold;color: #555;}
.cp_form-control{width: 100%;padding: 10px 15px;border: 1px solid #ddd;border-radius: 4px;font-size: 1rem;}
.cp_form-control:focus{border-color: #3498db;outline: none;}
.cp_submit-btn{width: 100%;padding: 12px;background: #3a237b;color: white;border: none;border-radius: 4px;font-size: 1rem;cursor: pointer;transition: background 0.3s ease;}
.cp_submit-btn:hover{background: #894ddf;}

.cp_cpyl{background: #fff; padding:0px 0px 80px;}
.cp_section-title2{text-align: left;font-size: 32px;margin-bottom: 30px;position: relative;padding-bottom: 25px;color: #222; border-bottom:1px solid #ccc;}
.cp_cpyl .cp_cpyl-grid,.cp_cpyl .cp_cpyl-grid p{ font-size:16px; line-height:30px;}
/* 第二模块样式 - 产品优势*/
.cp_advantages{background: #fff;}
.cp_advantages .cp_advantages-grid{display: grid;grid-template-columns: repeat(5, 1fr);gap: 30px;}
.cp_advantages .cp_advantage-item{padding: 20px;display:block;text-align: center;}
.cp_advantages .cp_advantage-item:hover{transform: translateY(-5px);}
.cp_advantages .cp_advantage-img{width: 96px;height: 96px;object-fit: contain;flex-shrink: 0; margin:0px auto;}
.cp_advantages .cp_advantage-item h3{font-size:20px;margin: 30px 0 0;color: #333;}

.cp_jscs{background: #fff;}
.cp_jscs .cp_advantages-grid{ overflow:hidden}
.cp_jscs .cp_advantage-item{padding: 20px;display:block;text-align: center; border-bottom:1px solid #ccc; width:33.33333%; float:left;}
.cp_jscs .cp_advantage-item h1{font-size:36px;margin: 45px 0 30px;color: #3e0098;}
.cp_jscs .cp_advantage-item h1 span{font-size:20px;}
.cp_jscs .cp_advantage-item h3{font-size:20px;margin: 5px 0 45px;color: #222;}

/* 第三模块样式 - 产品参数*/
.cp_specs{background: white;}
.cp_specs-desc{max-width: 100%;margin: 0 auto;width:100%; text-align:center;}
.cp_specs-desc img{max-width: 100%;}

.cp_specs-desc table{width: 100%;border-collapse: collapse;margin: 1rem 0;}
.cp_specs-desc table thead{display: table-header-group;/* 保持表头可见*/}
.cp_specs-desc table th,
.cp_specs-desc table td{padding: 12px 15px;text-align:center;border: 1px solid #ccc;}
.cp_specs-desc table th{background-color: #3498db;color: white;font-weight: 600;}
@media screen and (max-width: 768px){
.cp_specs-desc table{display: block;width: 100%;overflow-x: auto;-webkit-overflow-scrolling: touch;}
.cp_specs-desc table thead{display: none;}
.cp_specs-desc table tbody{display: block;width: 100%;}
.cp_specs-desc table tr, table td{}
.cp_specs-desc table td{position: relative;}
.cp_specs-desc table td::before{content: attr(data-label);position: absolute;left: 10px;top: 8px;font-weight: bold;text-align: left;color: #3498db;}
.cp_specs-desc table tr:last-child td{border-bottom: none;}}
.cp_specs-desc table.striped tbody tr:nth-child(odd){background-color: #f9f9f9;}
@media (hover: hover){.cp_specs-desc table tbody tr:hover{background-color: #f0f0f0;}}

/* 第四模块样式 - 应用行业*/
.cp_industries{background: #fff;}
.cp_industries-grid{display: grid;grid-template-columns: repeat(4, 1fr);gap: 20px;}
.cp_industry-item{text-align: center;transition: all 0.3s ease; position:relative;}
.cp_industry-item:hover{transform: translateY(-5px);box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);}
.cp_industry-img{width: 100%;margin-bottom: 15px; height:100%;}
.cp_industry-title{font-size: 16px;color: #fff; line-height:50px; position:absolute; bottom:0px; text-align:center;background-color: rgba(58, 35, 123, 0.6);left: 0;width: 100%;display: flex;justify-content: center;}
/* 第五模块样式 - 相关产品推荐*/
.cx_slider-container{position: relative;max-width: 100%;margin: 20px auto;overflow: hidden;padding: 0 0px;}
.cx_slider{display: flex;transition: transform 0.5s ease;}
.cx_slide{min-width: 25%;padding: 15px;text-align: center;flex-shrink: 0;}
.cx_slide a{border: 1px solid #ddd;border-radius: 8px;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);background: white; display:block; overflow:hidden}
.cx_slide-image-container{transition: all 0.3s ease;}
.cx_slide-image-container:hover{border-color: #ff6b6b;/* 悬停时边框变红色*/transform: scale(1.02);/* 轻微放大效果*/}
.cx_slide img{width: 100%;height: auto;border-radius: 5px;max-height: 230px;object-fit: cover;display: block;/* 移除图片底部间隙*/}
.cx_slide-title{margin: 25px 0;font-size: 16px;color: #333;padding: 0 5px;}
.cx_arrow{position: absolute;top: 50%;transform: translateY(-50%);width: 40px;height: 40px;background-color: rgba(0, 0, 0, 0.5);color: white;border: none;border-radius: 50%;font-size: 20px;cursor: pointer;z-index: 10;display: flex;align-items: center;justify-content: center;}
.cx_arrow:hover{background-color: rgba(0, 0, 0, 0.8);}
.cx_arrow-left{left: 0;}
.cx_arrow-right{right: 0;}

/**新闻**/
.xw_container{max-width: 100%;margin: 0 auto;padding: 20px 0;display: flex;flex-wrap: wrap;}
.xw_main{flex: 1;min-width: 300px;padding-right:40px;}
.xw_sidebar{width: 300px;min-width: 300px;}
.xw_tabs{display: flex;border-bottom: 1px solid #e0e0e0;margin-bottom: 20px;}
.xw_tab{padding: 10px 20px;cursor: pointer;font-size: 16px;font-weight: bold;}
.xw_tab a{color: #666;}
.xw_tab.active{border-bottom: 2px solid #3a237b;}
.xw_tab.active a{color: #3a237b;}
.xw_news_list{display: flex;flex-direction: column;gap: 15px;}
.xw_news_item{padding-bottom: 15px;border-bottom: 1px dashed #ccc;}
.xw_news_item a{display: flex;gap: 20px;text-decoration: none;color: inherit;transition: all 0.3s ease;padding: 10px;border-radius: 6px;}
.xw_news_item a:hover{background: #fff;box-shadow: 0 0 5px #bababa;}
.xw_news_item a:hover .xw_news_title{color: #3a237b;}
.xw_news_img{overflow: hidden;width: 250px;}
.xw_news_img img {display: block;height: 100%;width: 100%;transition: all 0.5s ease;}
.xw_news_item a:hover .xw_news_img img {transform: scale(1.1);}

.xw_news_content{flex: 1;display: flex;flex-direction: column;}
.xw_news_title{font-size: 16px;font-weight: bold;color: #333;margin-bottom: 8px;line-height: 1.5;transition: color 0.3s ease;}
.xw_news_time{font-size: 12px;color: #999;margin-bottom: 8px;}
.xw_news_desc{font-size: 14px;color: #666;margin-bottom: 10px;line-height: 1.7;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;}
.xw_news_btn{background: #3a237b;color: #fff;padding: 8px 20px;border-radius: 25px;border: none;font-size: 14px; width:100px; margin-top:5px;}
.xw_card{background: #fff;border-radius: 6px;box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);margin-bottom: 20px;}
.xw_card_title{font-size: 18px;font-weight: bold;color: #fff;padding: 5px 0;margin-bottom: 0px; background:#3a237b; line-height:36px; text-align:center;}
.xw_product_list{display: flex;flex-direction: column;gap: 15px;}
.xw_product_item{margin: 15px 15px 0; border-bottom:1px dotted #ccc; padding-bottom:15px;}
.xw_product_item:last-child{ border:none}
.xw_product_img{width: 100%;height: auto;object-fit: cover;border-radius: 4px;}
.xw_product_name{font-size: 16px;color: #666; text-align:center; line-height:30px;}
.xw_contact_item{align-items: center;padding:20px 15px;}
.xw_contact_text{font-size: 14px;color: #666; line-height:30px;}

.xw_box{max-width:100%;padding: 20px;background: #fff;box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);border-radius: 8px;}
.xw_header{margin-bottom: 30px;padding-bottom: 20px;border-bottom: 1px solid #eee;}
.xw_title{font-size: 24px;font-weight: bold;margin-bottom: 15px;color: #222;line-height: 1.4; margin-top:20px;}
.xw_meta{display: flex;align-items: center;font-size: 14px;color: #999;}
.xw_time{margin-right: 20px;}
.xw_source{color: #666;}
.xw_content{padding: 0 0 30px;font-size: 16px;line-height: 1.8;white-space: normal !important;}
.xw_content p{font-size: 16px;line-height: 1.8;white-space: normal !important;}
.xw_content img{max-width: 100%;height: auto;margin: 20px 0;border-radius: 4px;}
.xw_navigation{display: flex;justify-content: space-between;padding: 20px 0;border-top: 1px solid #eee;margin-top: 30px;}
.xw_nav_item{display: flex;align-items: center;max-width: 45%;padding: 10px;border-radius: 4px;transition: all 0.3s;text-decoration: none;color: #333;}
.xw_nav_item:hover{background: #f9f9f9;color: #3a237b;}

/*  行业方案 列表*/
.solutionIndex{margin-right:-40px; margin-top:20px;}
.solutionIndex li{float:left;width:50%;margin-bottom:40px;padding-right:40px;}
.solutionIndex li .pImg{position: relative;display: block;overflow: hidden;}
.solutionIndex li .txt{background:#f3f3f3;position:relative;padding:30px 5%;line-height:1.8;color:#666;z-index:2;}
.solutionIndex li .txt::after{content:"";position: absolute;left:0;bottom:0;width:100%;height:0;background:#43049d; background:linear-gradient(to top,#d9c5f6,#43049d) ;z-index:-1;transition:all .5s;}
.solutionIndex li h4{font-size:22px;margin-bottom:8px;color:#000123;white-space:nowrap;overflow:hidden;text-overflow: ellipsis;}
.solutionIndex li p{height:60px;margin-bottom:35px;overflow:hidden; line-height:24px;}
.solutionIndex li .more,.h_more{color:#43049d;width:130px;height:36px;line-height:34px;border:1px solid #43049d;display:inline-block;border-radius:20px;text-align:center;font-size:.875em;}
.solutionIndex li .more i{font-style:normal;font-family:"iconfont";margin-left:5px;}
.solutionIndex li a:hover img{transform: scale(1.1);}
.solutionIndex li a:hover .txt::after{height:100%;}
.solutionIndex li a:hover *{color:#fff;transition:all .5s;}
.solutionIndex li a:hover .more{border-color:#fff;}

.hys_container{width: 100%;max-width: 1440px;margin: 0 auto;}
.hys_section{padding: 60px 0;}
.hys_section_title{text-align: center;font-size: 32px;margin-bottom: 50px;color: #3a237b;font-weight: 600;}
.hys_bg{ background:#f6f6f8;}
.hys_bg2{background:#ffffff; padding:60px 60px;border-radius: 8px;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); margin-top:20px;}
.hys_pd{padding: 0px 0 60px;}
/* 行业概述模块*/
.hys_overview_content{margin-bottom: 30px;font-size: 16px;line-height: 1.8;color: #666;}
.hys_overview_content p{font-size: 16px;line-height: 1.8;color: #666;}
.hys_btn{display: block;width: 260px;margin: 0 auto;padding: 15px 0;background-color: #3a237b;color: white;text-align: center;text-decoration: none;border-radius: 4px;font-size: 18px;font-weight: 500;transition: background-color 0.3s;}
.hys_btn:hover{background-color: #8246d9;}
/* 应用场景模块*/
.hys_scenario_grid{display: grid;grid-template-columns: repeat(4, 1fr);gap: 20px;}
.hys_scenario_item{position: relative;border-radius: 8px;overflow: hidden;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);aspect-ratio: 1/1;}
.hys_scenario_img{width: 100%;height: 100%;object-fit: cover;}
.hys_scenario_img:hover{transform: scale(1.1);}
.hys_scenario_title{position: absolute;bottom: 0;left: 0;right: 0;background: rgba(0, 0, 0, 0.6);color: white;padding: 15px;text-align: center;font-size: 16px;}
/* 相关产品模块*/
.hys_product_grid{display: grid;grid-template-columns: repeat(4, 1fr);gap: 30px 20px;}
.hys_product_item{display: flex;flex-direction: column;align-items: center;}
.hys_product_img_wrap{width: 100%;border-radius: 8px;overflow: hidden;margin-bottom: 15px;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);aspect-ratio: 1/1;}
.hys_product_img{width: 100%;height: 100%;object-fit: cover;}
.hys_product_img:hover{transform: scale(1.1);}
.hys_product_title{font-size: 16px;font-weight: 500;text-align: center;color: #2c3e50;}

/* 联系*/
.contactBox1 .tie{color:#3a237b;font-size:32px;text-align:center;margin-bottom:40px;}
.contactBox1 ul{display:flex;justify-content:space-between;overflow:hidden;font-size:1.5em;}
.contactBox1 li{float:left;background:#efefef;width:24%;margin:0 10px;height:250px;position: relative;padding:3% 2.5%;color:#222;border-radius:10px;}
.contactBox1 li::after{content:"";position: absolute;left:0;top:0;height:3px;background:#3a237b;width:100%;transition:all .5s;transform-origin:right;transform: scale(0,1);transition: transform .5s;}
.contactBox1 li:hover::after{transform-origin:left;transform: scale(1);}
.contactBox1 li h4{font-weight:700;}
.contactBox1 li h4 span{display:block;font-size:14px;color:#767676;font-weight:400;}
.contactBox1 li p{position: absolute;bottom:40px;padding:0 10%;left:0;}
.contactBox1 li:last-child P{font-size:16px; line-height:22px}
.contactBox1 li i{font-family:"iconfont";font-style:normal;position: absolute;right:10px;bottom:20px;line-height:1;opacity:.1;font-size:8rem;color:#999;transition:all .5s;}
.contactBox1 li:hover i{color:#0ce4d5;transform:scale(.9);}
#dituContent{height:520px;border-radius:10px;overflow:hidden; margin:0px auto 60px}
.contact_box{margin:0px auto 40px;height:auto;overflow:hidden; position:relative;  width:1440px }
#allmap{margin-top:0px;width:100%;height:520px;}
/* 在线留言*/
.feedback{ margin:60px auto; overflow:hidden;}
.feedback .listTie{padding-bottom:20px;margin:40px 0;font-size:32px; position: relative; text-align:center}

.feedback .listTie::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #3a237b;
	text-align:center;
	margin-left: -30px;
}

.feedback p{width:49%;float: left;;height:60px;line-height: 60px;position: relative;padding:0 25px;margin-bottom:20px;position: relative;background:#fff;border:1px solid #ddd;}
.feedback p:nth-child(2n){float:right;}
.feedback p input{width: 100%;height: 100%;}
.feedback p select{width: 100%;height: 100%;min-height: 60px;padding: 10px 0px;border-radius: 30px; color:#777}
.feedback p select option{ width:50%;}
.feedback .tarea{width: 100%;height: 160px;padding-top: 15px;padding-bottom:15px;line-height: 1.6;}
.feedback p em{position: absolute;right:10px;font-size:1.125em;}
.feedback textarea{width: 100%;height: 100%;}
.feedback .tip{margin-bottom:20px;color:#333;clear:both;display:block;}
.feedback .tip i,.feedback p em{font-style:normal;color:#f00; line-height:inherit}
.feedback .code{clear: both;}
.feedback .code input{height: 60px;line-height: 60px;border: 1px solid #ddd;background:#fff;}
.feedback .code .c{width: 20%;padding: 0 15px;}
.feedback .code img{padding:10px;background:#eee;height:60px;}
.feedback .code .sub {background:#3a237b;width: 30%;cursor: pointer;transition: all .3s;color: #fff; margin:0 35%; font-size:18px;}
.feedback .sub:hover{background:#7940ca;}

/* 我们*/
.gy_container{max-width: 1440px;margin: 0 auto;padding: 0 15px;}
.gy_container2{max-width: 100%;margin: 0 auto;}
.gy_container3{max-width: 100%;margin: 0 auto; background-color:#f3f4f6; overflow:hidden;}
/* 统一标题样式*/
.gy_section_title{text-align: center;margin:0 auto 60px;padding-top: 60px; max-width:1440px; overflow:hidden}
.gy_section_title h2{font-size: 32px;margin-bottom: 15px;font-weight: normal; color:#3a237b}
.gy_title_underline{position: relative;height: 2px;width: 130px;background-color: #b3b3b3;margin: 20px auto;}
.gy_title_underline:after{content: '';position: absolute;left: 30%;top: -1px;height: 4px;width: 40%;background-color: #3a237b;}
.gy_section_title h3{font-size: 26px;margin-bottom: 15px;font-weight:normal; color:#b3b3b3;}
/* 公司简介模块*/
.gy_about{display: flex;flex-wrap: wrap;margin-bottom: 60px;}
.gy_about_left{flex: 1;min-width: 300px;padding-right: 100px;}
.gy_about_right{flex: 1;min-width: 300px;}
.gy_about_right img{width: 100%;height: auto;border-radius: 8px;box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);transition: transform 0.3s;}
.gy_about_right img:hover{transform: scale(1.05);}

.gy_stats{display: flex;justify-content: space-between;margin-bottom: 30px;flex-wrap: wrap; width:80%; margin-top:30px;}
.gy_stats .gy_stat_item{text-align: center;margin-bottom: 20px;}
.gy_stats .gy_stat_number{font-size: 36px;font-weight: 700;color: #3a237b;margin-bottom: 5px;line-height: 1;}
.gy_stats .gy_stat_unit{font-size: 16px;color: #666;vertical-align: bottom;}
.gy_stats .gy_stat_title{font-size: 14px;font-weight: 500; text-align:left; color:#999; line-height:22px;}
.gy_about_content h3{font-size: 24px;margin-bottom: 20px; color:#000}
.gy_about_content p{color: #333; font-size:16px; line-height:28px;}
/* 发展历程模块*/
.gy_timeline2{ display:none;}
.gy_timeline{margin-bottom: 60px;position: relative;max-width: 100%;display: inline-block;}
.gy_timeline .main-image {width: 100%;height: auto;display: block;}
.gy_timeline .icon {position: absolute;background-size: contain;background-repeat: no-repeat;cursor: pointer;transition: transform 0.3s ease;/* 移动端触摸区域扩大 */padding: 15px;margin: -15px;}
.gy_timeline .icon-1 {top: 20%; left: 8.2%;}
.gy_timeline .icon-2 {top: 35%; left: 9.8%;}
.gy_timeline .icon-4 {top: 32%; left: 20%;}
.gy_timeline .icon-5 {top: 70%; left: 18%;}
.gy_timeline .icon-6 {top: 38%; left: 33%;}
.gy_timeline .icon-7 {top: 75%; left: 35%;}
.gy_timeline .icon-8 {top: 31%; left: 40.5%;}
.gy_timeline .icon-9 {top: 49%; left: 46%;}
.gy_timeline .icon-10 {top: 21%; left: 54.5%;}
.gy_timeline .icon-11 {top: 42%; left: 55%;}
.gy_timeline .icon-12 {top: 21%; left: 73%;}
.gy_timeline .icon-13 {top: 47%; left: 71%;}
.gy_timeline .icon-14 {top: 34%; left: 86.8%;}
.gy_timeline .icon-15 {top: 62%; left: 89%;}
@media (max-width: 1900px) {
.gy_timeline .main-image {width: 88%;height: auto;}
}
@media (max-width: 1800px) {
.gy_timeline .main-image {width: 85%;height: auto;}
}
@media (max-width: 1700px) {
.gy_timeline .main-image {width: 85%;height: auto;}
}
@media (max-width: 1600px) {
.gy_timeline .main-image {width: 80%;height: auto;}
}
@media (max-width: 1500px) {
.gy_timeline .main-image {width: 70%;height: auto;}
}
@media (max-width: 1400px) {
.gy_timeline .main-image {width: 60%;height: auto;}
}
@media (max-width: 1300px) {
.gy_timeline .main-image {width: 60%;height: auto;}
}
@media (max-width: 1100px) {
.gy_timeline .main-image {width: 50%;height: auto;}
}
@media (max-width: 1000px) {
.gy_timeline .main-image {width: 40%;height: auto;}
}
@media (max-width: 768px) {
.gy_timeline{ display:none;}
.gy_timeline2{ display:block;}
}
/* 动画效果 */
.icon:hover, .icon:active {
  animation: var(--animation-type) 0.5s;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.gy_timeline img{max-width: 100%;height: auto;}
/* 荣誉与认证模块*/
.gy_honors{margin-bottom: 60px; margin-top:40px; overflow:hidden}
.gy_honor_list{display: flex;flex-wrap: wrap;justify-content: space-around;}
.gy_honor_item{width: 18%;min-width: 150px;margin-bottom: 30px;text-align: center;}
.gy_honor_item img{height: auto;margin-bottom: 15px;transition: transform 0.3s; max-width:100%;}
.gy_honor_item img:hover{transform: scale(1.1);}
.gy_honor_item h4{font-size: 16px;font-weight: 500;}
/* 证书模块*/
.gy_certificates{max-width: 1440px;margin: 0 auto 60px; overflow:hidden;}
.gy_certificate_list{display: flex;flex-wrap: wrap;justify-content: space-between;}
.gy_certificate_item{width: 23%;min-width: 150px;margin-bottom: 30px;text-align: center;padding: 20px;cursor: pointer; background-color:#fff;border-radius: 8px;box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); overflow:hidden}
.gy_certificate_item img{max-width: 100%;height: auto;transition: transform 0.3s;background-color:#f3f4f6; width:100%;}
.gy_certificate_item img:hover{transform: scale(1.05);}
.gy_certificate_item h4{font-size: 16px;font-weight: 500;margin-bottom: 5px; line-height:30px; margin-top:10px; color:#333}
.gy_certificate_name{font-size: 14px;color: #999;}
.gy_stats2{display: flex;justify-content: space-between;margin: 90px auto 60px;flex-wrap: wrap; width:80%; max-width:768px;}
.gy_stats2 .gy_stat_item{text-align: center;margin-bottom: 20px;}
.gy_stats2 .gy_stat_number{font-size: 36px;font-weight: 700;color: #3a237b;margin-bottom: 5px;line-height: 1;}
.gy_stats2 .gy_stat_unit{font-size: 16px;color: #666;vertical-align: bottom;}
.gy_stats2 .gy_stat_title{font-size: 14px;font-weight: 500; text-align:left; color:#999; line-height:22px;}
/* 全球服务模块*/
.gy_certificate_list2{ display:none;}
.gy_global{margin-bottom: 60px;position: relative;max-width: 100%;display: inline-block;}
.gy_global .main-image {width: 100%;height: auto;display: block;}
.gy_global .icon {position: absolute;background-size: contain;background-repeat: no-repeat;cursor: pointer;transition: transform 0.3s ease;/* 移动端触摸区域扩大 */padding: 15px;margin: -15px;}
.gy_global .icon-1 {top: 32%; left: 24.5%;}
.gy_global .icon-2 {top: 40%; left: 29.5%;}
.gy_global .icon-3 {top: 48%; left: 27.1%;}
.gy_global .icon-4 {top: 71%; left: 34.5%;}
.gy_global .icon-5 {top: 74%; left: 38.5%;}
.gy_global .icon-6 {top: 82.8%; left: 36%;}
.gy_global .icon-7 {top: 43%; left: 47.5%;}
.gy_global .icon-8 {top: 34%; left: 52.8%;}
.gy_global .icon-9 {top: 42%; left: 57.8%;}
.gy_global .icon-10 {top: 57%; left: 50.8%;}
.gy_global .icon-11 {top: 55%; left: 54.4%;}
.gy_global .icon-12 {top: 55%; left: 60.4%;}
.gy_global .icon-13 {top: 67.9%; left: 50.5%;}
.gy_global .icon-14 {top: 78.9%; left: 50.8%;}
.gy_global .icon-15 {top: 81.9%; left: 71.7%;}
.gy_global .icon-16 {top: 66%; left: 67.5%;}
.gy_global .icon-17 {top: 46%; left: 67%;}
.gy_global .icon-18 {top: 20.5%; left: 66.5%;}
.gy_global .icon-19 {top: 35%; left: 74.6%;}
/* 底部模块*/
.gy_footer{position: relative;margin-bottom: 0px;}
.gy_footer img{width: 100%;height: auto;}
.gy_footer_content{position: absolute;top: 40%;left: 0;width: 100%;text-align: center;color: white;padding: 0 20px;}
.gy_footer_content h2{font-size: 42px;margin-bottom: 20px;text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); font-weight:bold;}
.gy_footer_content p{max-width: 1000px;margin: 0 auto;font-size: 30px;text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); line-height:1.5;text-transform:uppercase;font-weight:bold;}
/* 图片弹窗样式*/
.gy_modal{display: none;position: fixed;z-index: 1000;left: 0;top: 0;width: 100%;height: 100%;background-color: rgba(0, 0, 0, 0.9);overflow: auto;}
.gy_modal_content{position: relative;margin: auto;display: block;max-width: 90%;max-height: 90%;top: 50%;transform: translateY(-50%);}
.gy_modal_img{display: block;max-width: 100%;height: auto;margin: 0 auto;}
.gy_close{position: absolute;top: 15px;right: 35px;color: #f1f1f1;font-size: 40px;font-weight: bold;transition: 0.3s;cursor: pointer;}
.gy_close:hover{color: #bbb;}
.gy_prev, .gy_next{position: absolute;top: 50%;width: auto;padding: 16px;margin-top: -22px;color: white;font-weight: bold;font-size: 24px;transition: 0.3s;user-select: none;cursor: pointer;}
.gy_next{right: 0;border-radius: 3px 0 0 3px;cursor: pointer;}
.gy_prev{left: 0;border-radius: 0 3px 3px 0;cursor: pointer;}
.gy_prev:hover, .gy_next:hover{background-color: rgba(0, 0, 0, 0.8);cursor: pointer;}

@media (max-width: 1900px) {
.gy_timeline .main-image,.gy_global .main-image {width: 88%;height: auto;}
}
@media (max-width: 1800px) {
.gy_timeline .main-image,.gy_global .main-image {width: 85%;height: auto;}
}
@media (max-width: 1700px) {
.gy_timeline .main-image,.gy_global .main-image {width: 85%;height: auto;}
}
@media (max-width: 1600px) {
.gy_timeline .main-image,.gy_global .main-image{width: 80%;height: auto;}
}
@media (max-width: 1500px) {
.gy_timeline .main-image,.gy_global .main-image {width: 70%;height: auto;}
}
@media (max-width: 1400px) {
.gy_timeline .main-image,.gy_global .main-image {width: 60%;height: auto;}
}
@media (max-width: 1300px) {
.gy_timeline .main-image,.gy_global .main-image {width: 60%;height: auto;}
}
@media (max-width: 1100px) {
.gy_timeline .main-image,.gy_global .main-image {width: 50%;height: auto;}
}
@media (max-width: 1000px) {
.gy_timeline .main-image,.gy_global .main-image {width: 40%;height: auto;}
}
@media (max-width: 768px) {
.gy_timeline ,.gy_certificate_list{ display:none;}
.gy_timeline2 ,.gy_certificate_list2{ display:block;}
}









