/*===================== 重置样式 START =====================*/
@charset "utf-8";
html,body,h1,h2,h3,h4,h5,h6,p,dl,dd,dt,th,td,select,ul,ol,li,form,input,textarea,fieldset,legend,img{margin:0;padding:0;}
h1,h2,h3,h4,h5,h6{font-weight:300;}
li{list-style:none;}
a{text-decoration:none;background:transparent;outline:none;color:#000;display:block;-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
a:hover,.tran,.pub_button .pb_bg,.header .nav ul li,.header .call,.header .logo img{-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
.wot{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.upp{text-transform:uppercase;}
.middle_box{display:table;width:100%;height:100%;}
.juzhong{ width:100%;}
.middle_box .middle{display:table-cell;vertical-align:middle;width:100%;text-align:center;}
img{border:0;vertical-align:middle;max-width:100%;display:block; }
table{border-collapse:collapse;border-spacing:0; width:100%;}
input,textarea{-webkit-user-modify:read-write-plaintext-only;outline-style:none;border:none;font-size:14px;}
input::-moz-placeholder,textarea::-moz-placeholder{color:#000;}
input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#000;}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#000;}
html::-webkit-scrollbar{width:5px;height:5px;background-color:#fff;}
html::-webkit-scrollbar-track{border-radius:0;background-color:#fff;}
html::-webkit-scrollbar-thumb{border-radius:50px;width:5px;height:5px;background-color:#e05a12;}
textarea{resize:none;overflow:auto;}
input{padding-top:0;padding-bottom:0;}
select,input{vertical-align:middle;}
.w1400{ width:1400px; margin:auto;}
select,input,textarea{font-size:14px;margin:0;}
.clear{zoom:1; clear:both;}
.clear:after{content:"";display:block;height:0;visibility:hidden;clear:both;}
.clear::before,.clear::after{content:"";display:table;}
.clear::after{clear:both;}
.fl{float:left;}
.fr{float:right;}
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent;}
body{font-family:\5FAE\8F6F\96C5\9ED1,"Microsoft YaHei";font-size:16px;color:#333;background-color:#fff;word-break:break-all;word-wrap:break-word;text-align:justify;}
.error3{display:none!important;}
html,body{max-width:1920px;margin:0 auto;}
.clearfix{ clear:both;}


.baizi  a:link {
color:#ffffff;
text-decoration: none;

} 
.baizi  a:visited {
color:#ffffff;
text-decoration: none;
} 
.baizi  a:hover {
color:#ffe400;
text-decoration: none;
} 

/*===================== 重置样式 END =====================*/

/*===================== 公用样式 START =====================*/

/*banner*/

.banner-container {
            position: relative;
            width: 100%;
            height: 904px;
            overflow: hidden; /* 裁剪图片缩放/缩小的超出/空白部分 */
        }

        /* 轮播项 - 核心修改：切换时的缩小淡出+淡入恢复效果 */
        .banner-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(0.95); /* 未激活时：缩小到0.95倍（切换淡出的基础状态） */
            /* 合并过渡：透明度+缩放，保证切换时缩小+淡出同步，流畅无卡顿 */
            transition: opacity 1s ease-in-out, transform 1s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding: 0 20px;
            z-index: 1; /* 未激活项层级低 */
        }

        /* 激活的轮播项：淡入显示+恢复原尺寸，层级提高避免遮挡 */
        .banner-item.active {
            opacity: 1;
            transform: scale(1); /* 激活时：恢复1倍原尺寸，配合过渡实现淡入放大感 */
            z-index: 2; /* 激活项层级高，显示在最上层 */
        }

        /* 标题和副标题样式 - 保留轻微过渡，防止文字抖动 */
        .banner-title {
            font-size: 55px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
        }

        .banner-subtitle {
            font-size: 31px;
            max-width: 800px;
            line-height: 1.6;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
        }

        /* 指示器 */
        .banner-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10; /* 最高层级，不被遮挡 */
        }

        .indicator {
            width: 42px;
            height: 5px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .indicator.active {
            background: #fff;
        }

        /* 左右切换箭头样式 */
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 70px;
            height: 70px;
            border-radius: 50%; border:1px #FFFFFF solid;
            cursor: pointer;
            z-index: 10; /* 最高层级，始终可点击 */
            transition: all 0.3s ease;
            user-select: none; /* 禁止选中箭头文字 */
			display: flex;
    justify-content: center; /* 辅助水平居中，配合margin:auto更稳妥 */
    align-items: center;
        }
		.banner-arrow img {
            width: 30px; height:auto;  margin:auto
        }
		
        .banner-arrow.prev {
            left: 40px;
        }
        .banner-arrow.next {
            right: 40px;
        }
        .banner-arrow:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: translateY(-50%) scale(1.05);
        }
        .banner-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }
/*头部*/

.header{height:115px; width:100%;transition: .5s;z-index:9999; position:absolute;  }
.header .inner{height:115px;position:relative;width:80%;margin:0 auto; }
.header .logo{float:left; margin-top:25px;}
.header .logo img{ height:66px;}

.header .nav{width:70%; float:left; position:relative; right:-12%;}
.header .nav ul li{float:left;width:14.2%;height:115px;line-height:115px;text-align:center;}
.header .nav ul li a{color:#fff;position:relative;z-index:1;font-size:18px;}
.header .nav ul li i{position:absolute;width:100%;height:0;background-color:#1853e0;left:0;top:0;z-index:-1;-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
.header .nav ul li em{font-style:normal;position:absolute;width:0;height:110px;background-color:#1853e0;left:0;bottom:0;z-index:-1;-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
.header .nav ul li a:hover i,.header .nav ul li a.active i{height:100%;}
.header .nav ul li a:hover,.header .nav ul li a.active{color:#fff;}
.header .nav ul li a:hover em,.header .nav ul li:hover a em,.header .nav ul li a.active em{width:100%;}

.header .nav ul li ul{background: #1c3e8f;width: 150%;display: none; border:10px }
.header .nav ul li ul li{float: none;width: 100%;position: relative;line-height: 50px;height: 50px; text-align:left;  }
.header .nav ul li ul li::after{

content: ""; /* 必须有content属性才能使::after生效 */
  position: absolute;
  right: 5%; /* 将图标定位到li的右侧 */
  top: 50%; /* 垂直居中图标 */
  transform: translateY(-50%); /* 进一步确保图标垂直居中 */
  width: 16px; /* 图标宽度 */
  height: 16px; /* 图标高度 */
  background-image: url(../../images/icon11.png); /* 图标路径 */
  background-size: contain; /* 保持图标比例 */
  background-repeat: no-repeat; 
  }
.header .nav ul li ul li a{font-size: 17px; padding:0 10px; border-bottom:1px #536ba2 solid; color:#bfcbe7}
.header .nav ul li ul li a:hover,.header .nav ul li ul li:hover>a{color: #fff; text-indent:15px}
.header .nav ul li ul li ul{position: absolute;left: 100%;width: 100%;display: none;top: 0}
.header .nav ul li ul li ul li::after { display:none}
.header .nav ul li:hover>ul{display: block;}
.header .nav ul li ul li:hover ul {display: block;}




.nav-search-btn {
            width: 40px;
            height: 40px; float:right; padding-top:37px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        /* 展开的搜索框区域 */
        .search-bar {
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08); position: absolute;   top: 115px; left: 0; width: 100%; z-index: 9998; 
        }
        .search-bar.active {
            display: flex; 
        }
        .search-input-wrapper {
            position: relative;
            width: 70%;
            max-width: 800px;
            display: flex;
            align-items: center;
        }
        .search-input-wrapper::before { background-image: url(../images/sea.png);
            position: absolute;
            left: 15px;
            color: #c6c6c6;
            font-size: 16px;
        }
        .search-input {
            width: 100%;
            height: 44px;
            padding: 0 15px 0 25px;
            border-radius: 22px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s; color: #CCCCCC
        }

        .search-input:focus {
            border-color: #40A9FF;
        }
        .close-search-btn {
            margin-left: 20px;
            width: 32px;
            height: 32px;
            border: none;
            background: transparent;
            color: #999;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .close-search-btn:hover {
            color: #333;
        }

.header:hover{ background: linear-gradient(to right, #1c3e8f, #088f9e); }



.header .call{ float:right;height:70px;background: url(../images/call.png) 0 center no-repeat;padding-left:60px;line-height:70px; margin-top:25px; background-size:45px;  }
.header .call p{font-size:19px;color:#313030; line-height:1.2; font-weight:normal; }
.header .call h3{font-size:36px;color:#e50304;font-family:impact;  line-height:1.2; margin-top:2px }

.header.bg{z-index:9999999;background: linear-gradient(to right, #1c3e8f, #088f9e); height:80px; z-index:9999; position:fixed;}
.header.bg .inner{height:80px}
.header.bg .logo {margin-top:12px;}
.header.bg .logo img{height:55px;}
.header.bg .nav{right:-8%;}
.header.bg .nav ul li{height:80px;line-height:80px}
.header.bg .nav-search-btn{padding-top:19px;}

.header.bg .nav ul li ul li{line-height: 40px;height: 40px; text-align:left;  }
.header.bg .nav ul li ul li a{font-size: 15px; }

.header.bg .call{margin-top:5px}
.header.bg .call p{font-size:16px;line-height:1.2; font-weight:normal; margin-top:2px;}
.header.bg .call h3{font-size:32px;font-family:impact;  line-height:1.2; margin-top:2px }




@media(max-width:1855px){

.header .inner{height:120px;position:relative;width:98%;margin:0 auto;}
.header .logo{float:left; margin-top:30px;}
.header .logo img{ height:65px;}

.header .nav{width:60%; float:left; position:relative; right:-5%;}

.topt{ float:left; width:40px; height:40px; background-color:#eb0909; margin-left:15%; border-radius:50%; margin-top:34px}

.header .call p{font-size:16px; line-height:1.2; font-weight:normal; margin-top:8px;}
.header .call h3{font-size:30px;font-family:impact;  line-height:1.2; margin-top:5px }
}




@media(max-width:1500px){

.header .nav{width:52%; float:left; position:relative; right:-2%;}

}




#overlay{position:absolute;top:0;right:0;left:0;bottom:0;background:url(vdian.png);opacity:0.7;filter:alpha(opacity=70);  /* 针对 IE8 以及更早的版本 */}
.head{z-index:10000;margin:0 auto;width:100%;position:relative;top:0px;left:0px;}


.section_one .bannerbg {width:100%;height:100%;display:block;position:absolute;z-index:2;background:url(../images/banner_bg.png) repeat center;}


.section_one{overflow: hidden;}


.section_one .vidbacking-active-body-back{position:relative;z-index:1;width:120%;height:120%;top:0%;left:-10%;overflow:hidden;opacity:1;transition:2s opacity;}
.section_one .vidbacking-active-block-back{position:absolute;min-width:100%;min-height:100%;height:auto;width:auto;z-index:4;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);}
.section_one .vidbacking{display:none;}

#container{overflow:hidden;position:relative;top:0;left:0;right:0;bottom:0;}
.topbg{position:absolute;width:100%;height:100%;display:block;z-index:8;}
#background_video{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);object-fit:cover;height:100%!important;width:100%!important;}
#video_cover{width:100%;height:100%; background:url(../../images/video_cover.jpg);background-size:cover;background-position:center;}




/* 导航和底部 */
/* .header.bg .logo img{height:86px;} */
.header .product_son{display:none;position:absolute;left:0;top:160px;text-align:center;width:100%;padding:20px;height:auto;background-color:rgba(0,0,0,0.5);z-index:999;}
.header .product_son .auto{width:100%;margin:0 auto;}
.header .product_son .item{display:inline-block;width:11%;margin:1%;}
.header .product_son .item p{font-size:16px;color:#fff;height:40px;line-height:40px;}
.header .product_son .item:hover .pb_bg{transform:scaleY(1);-webkit-transform:scaleY(1);transform-origin:left 0;-webkit-transform-origin:left 0;visibility:visible\9;}
.banner .swiper-button-next,.banner .swiper-button-prev{width:59px;height:59px;}
.swiper-pagination-bullet-active{background-color:#e05a12!important;border-color:#e05a12!important;}
.pub_button{position:relative;z-index:1;}
.pub_button .pb_bg{position:absolute;left:0;top:0;width:100%;height:100%;background-color:#cf1101;-webkit-transition:transform 0.5s 0s cubic-bezier(0.36,0.01,0.29,0.99);transition:transform 0.5s 0s cubic-bezier(0.36,0.01,0.29,0.99);transform-origin:left 100%;-webkit-transform-origin:left 100%;transform:scaleY(0);-webkit-transform:scaleY(0);visibility:hidden\9;z-index:-1;}
.pub_button:hover .pb_bg,.pub_button.active .pb_bg{transform:scaleY(1);-webkit-transform:scaleY(1);transform-origin:left 0;-webkit-transform-origin:left 0;visibility:visible\9;}
.footer{padding:40px 0;overflow:hidden;background-color:#1baf45;}
.footer .auto{width:90%;margin:0 auto;}
.footer .a_list{width:560px;padding-top:50px;margin-left:100px;margin-right:100px;}
.footer .a_list a{float:left;font-size:18px;color:#fff;width:33.33%;margin-bottom:16px;}
.footer .a_list a:hover{color:#e05a12;}
.footer .contac h2{color:#fff;font-weight:bold;font-size:20px;margin:10px 0;}
.footer .text{font-size:16px;line-height:26px;color:#fff;}
.footer .ewm{width:146px;text-align:center;}
.footer .ewm img{margin:0 auto;}
.footer .ewm p{font-size:14px;color:#fff;margin-top:10px;}
.copyright{height:106px;line-height:106px;color:#fff;background-color:#767676;font-size:17px;text-align:center;border-top:1px solid rgba(255,255,255,0.5);}
.copyright img{display:inline-block;margin:0 10px 4px;}
.copyright a{display:inline-block;margin:0 10px;color:#fff;}


#bg{display:none;position:fixed;width:100%;height:100%;left:0;top:0;background-color:rgba(0,0,0,0.65);z-index:99999999;}
#bg .alert_video{width:900px;height:517px;position:absolute;left:50%;top:50%;margin:-250px 0 0 -450px;}
#bg .alert_video video{width:100%;height:100%;display:block;}
#bg .close{cursor:pointer;width:38px;height:38px;background:url(../images/close.png) center/100% no-repeat;position:absolute;right:-48px;top:10px;}
#bg .close:hover{transform:rotate(90deg);-ms-transform:rotate(90deg);-webkit-transform:rotate(90deg);}

/*===================== 公用样式 END =====================*/

/*===================== 首页 START =====================*/


.oh{overflow:hidden;}



.firstRow img {display: inline-block; margin: auto;}
@media (max-width:1601px){
	.f_48{font-size: 38px !important;}
	.f_48{font-size: 18px !important;}
}
@media (max-width:1210px){
	.f_48{font-size: 24px !important;}
	.f_48{font-size: 18px !important;}
}
.section_one{overflow: hidden;}
.f_48{ font-size:48px; }
.f_18{ font-size:18px; }



/*产品展示*/
.yscp{ width:100%; height:auto; padding:95px 0; overflow:hidden; background: linear-gradient(to top, #f6f9fe, #fff); }
.yscp1{ width:85%; margin:auto}
.yscp1_1{ width:80%; float:left}
.yscp1_1 span{ font-size:52px; font-family:Arial; color:#1c3e8f; font-weight:900; text-transform:uppercase}
.yscp1_1 h3{ font-size:35px; color:#222222; }
.yscp1_1 p{ font-size:21px; color:#505050; }


.yscp1_2{ width:10%; float: right; animation: sss 2s infinite alternate linear; padding-top:60px}

@keyframes sss {
	0%{
		transform: translateY(0);
	}
	100%{
		transform: translateY(-20px);
	}
}
@keyframes sss1 {
	0%{
		transform: translateY(0);
	}
	100%{
		transform: translateY(-5px);
	}
}
@keyframes sss2 {
	0%{
		transform: translateY(-5px);
	}
	100%{
		transform: translateY(0);
	}
}

.yscp2{ width:92%; margin:70px 0; height:auto; overflow:hidden; float: right}


/* 引入Swiper基础样式（如果本地没有，需引入CDN） */
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css">

.product-swiper-box {
  position: relative;
  width: 100%;
  max-width: 1440px; /* 限制最大宽度，适配大屏 */
  margin: 0 auto;
}

.product-swiper {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

/* 修复选择器错误：补充 . */
.product-swiper .mySwiper-pro {
  width: 100%;
}

.product-swiper .mySwiper-pro .swiper-wrapper {
  align-items: center; /* 垂直居中，优化缩放效果 */
}

.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide {
  position: relative;
  transform: scale(0.85); /* 微调初始缩放，减少视觉差 */
  transition: all 0.5s ease; /* 缓动动画更丝滑 */
  transform-origin: center center; /* 改为中心缩放，避免偏移 */
  opacity: 0.8; /* 非激活项降低透明度 */
  pointer-events: none; /* 非激活项不可点击 */
}

/* 移除固定尺寸的伪元素，改为百分比适配 */
.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  background: #e3edfd;
  left: 45%;
  top: 60%;
  transform: translate(-50%, -50%); /* 居中伪元素 */
  border-radius:30px 130px 30px 30px;
  z-index: -1;
}

.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide .slide-img {
  position: relative;
  border-radius: 30px 130px 30px 30px;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: 500px; /* 固定图片容器高度，统一显示 */
}

.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide .slide-img img {
  filter: brightness(0.6);
  width: 100%;
  height: 100%;
  object-fit: cover; /* 图片自适应容器，不拉伸 */
}

/* 伪元素改为百分比适配 */
.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide .slide-img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #E3EDFD;
  border-radius:30px 130px 30px 30px;
  position: absolute;
  bottom: -10px;
  left: -10px;
  z-index: -2;
}

.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide .slide-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 文字居中 */
  color: #ffffff80;
  font-size: 20px;
  z-index: 1;
  text-align: center; /* 文字居中显示 */
  transition: all 0.5s ease;
}

/* 激活项样式优化 */
.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto; /* 激活项可点击 */
}

.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide-active::after {
  box-shadow: 0 0 40px 5px rgba(3, 53, 126, 0.17);
}

.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide-active .slide-img img {
  filter: none;
}

.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide-active .slide-img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
   background: linear-gradient(to top, #1d3e8c, transparent);
  z-index: 2;
  border-radius:30px 130px 30px 30px;
}

.product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide-active .slide-text {
  top: 80%;
  transform: translate(-50%, 0); /* 调整激活态文字位置 */
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 500; /* 加粗突出 */
}





/* 响应式适配小屏 */
@media (max-width: 767px) {
  .product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide .slide-text {
    font-size: 16px;
  }
  .product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide-active .slide-text {
    font-size: 20px;
  }
  .product-swiper .mySwiper-pro .swiper-wrapper .swiper-slide .slide-img {
    height: 200px;
  }
}


.yspx{ width:96%; margin:auto}
.yspx h3{ font-size:42px; color:#282828; font-weight:bold; text-align:center}
.yspx p{ font-size:24px; color:#474646;  text-align:center; padding-top:10px}

.vr-box { width:80%; margin:auto  }
#certify .index-title {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px; text-align: center
}
#certify .swiper-container {
  padding-top: 150px;
}
#certify .swiper-slide {
  width: 750px;
  border-radius: 30px;
  flex-direction: column;
  padding:4% ;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
  opacity: 0 !important; height:auto; margin-bottom:50px; background-color:#FFFFFF;
}
#certify .swiper-slide.swiper-slide-prev,
#certify .swiper-slide.swiper-slide-next {
  opacity: 0.5 !important;
}
#certify .swiper-slide .summary {
  text-align:center; line-height:2
}
#certify .swiper-slide .number.swiper-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 15px solid #1c3e8f;
  overflow: hidden;
 margin:auto; margin-top:-150px;
}
#certify .swiper-slide img {
  box-shadow: none;
}
#certify .swiper-slide.swiper-slide-active {
  opacity: 10 !important;
}
#certify .swiper-slide.swiper-slide-active .number.swiper-img {
  border-color: #1c3e8f;
}
#certify .swiper-slide.swiper-slide-active .tip .item .item-icon {
  background: #1c3e8f;
}
#certify .tip {
  width: 100%;
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
}
#certify .tip .item {
  display: flex;
  width: auto;
  align-items: center;
}
#certify .tip .item .item-icon {
  background: #bbbbbb;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  line-height: 55px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#certify .tip .item .item-icon img {
  width: auto;
  height: auto;
}
#certify .tip .item .item-title {
  font-size: 18px;
  color: #000;
  margin-left: 10px;
}


.yskp{ width:96%; margin:60px auto 20px}
.yskp h3{ font-size:42px; color:#282828; font-weight:bold; text-align:center}
.yskp p{ font-size:24px; color:#474646;  text-align:center; padding-top:10px}

.my-carousel {
            position: relative;
            width: 100%;
            height: auto;
            margin: 0 auto;
            overflow: hidden;
            box-sizing: border-box;
        }
        /* 图片容器 */
        .my-carousel-wrapper {
            position: relative;
            width: 70%;
            height: 100%; 
            margin: auto;
        }
        /* 图片列表 - 修改为相对定位，配合露边效果 */
        .my-carousel-list {
            display: flex;
            width: fit-content; /* 关键：让列表宽度自适应内容 */
            height: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
            transition: transform 0.5s ease;
            position: relative; /* 确保定位正确 */
        }
        /* 单张图片项（包含图片和文字）- 调整宽度适配露边 */
        .my-carousel-item {
            flex: 0 0 calc(100% - 10px); /* 图片宽度减去两侧露边的总宽度 */
            width: calc(100% - 10px);
            height: 100%;
            position: relative; /* 为文字定位提供参考 */
            margin: 0 10px; /* 左右间距，形成露边效果 */
            box-sizing: border-box;
        }
        .my-carousel-item img {
            width: 100%;
            height: auto; /* 固定高度，避免图片变形 */
            object-fit: cover;
        }
        /* 图片文字说明样式 */
        .carousel-text {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            padding: 35px 20px;
            background: linear-gradient(to top, #1d3e8c, transparent);
            color: #fff;
            font-size: 14px;
            box-sizing: border-box;
        }
        .carousel-text h3 {
            margin: 0 0 8px 0;
            font-size: 28px;
        }
        .carousel-text p {
            margin: 0;
            line-height: 1.5; font-size:18px
        }
        /* 左右箭头 - 调整位置适配露边效果 */
        .my-carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            pointer-events: auto;
            /* 调整箭头位置到露边区域 */
            margin: 0 -10px;
            display: flex;
            align-items: center;
            justify-content: center; background-color: rgba(0,0,0,0.5);
        }
        .my-carousel-arrow.prev {
            left: 0; /* 调整箭头位置 */
        }
        .my-carousel-arrow.next {
            right: 0; /* 调整箭头位置 */
        }
        /* 禁用默认点击事件覆盖 */
        .my-carousel * {
            box-sizing: border-box;
        }
		
		
	
.lbb{margin:0 auto; width:100%;   display: flex;  flex-wrap: wrap; justify-content: center; }
.lbb a{  display: flex;  flex-wrap: wrap; justify-content: center; font-size:20px; color:#fff; line-height:50px;  width:15.6%;  font-weight:normal; float:left; text-align:center;
 box-sizing: border-box;  float:left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; border-bottom: none; margin:3px 0.5%;  border-radius:40px; background-color:#044fc1   }
.lbb a:hover{  background-color:#e00000; color:#fff;  transition:all .5s ease;    }
.lbb a h3{ font-size:20px; color:#fff;}
.lbb a:hover h3{ color: #fff;  }
	

/* 产品展示 */
.oh{ width:96%; margin:auto}

#top_scroll{height:820px;overflow:hidden;max-width:100%;margin:30px auto 10px; }
#top_scroll ul li{float:left;width:24%;margin:0.5%;}
#top_scroll ul li .img,#scroll_one ul li .img{overflow:hidden; border:1px #CCCCCC solid }
#top_scroll ul li img,#scroll_one ul li img{-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
#top_scroll ul li:hover img,#scroll_one ul li:hover img{-webkit-transform:scale(1.2,1.2);-moz-transform:scale(1.2,1.2);-o-transform:scale(1.2,1.2);-ms-transform:scale(1.2,1.2);transform:scale(1.2,1.2);}
#top_scroll ul li h3{color:#000!important;font-size:18px;padding:10px; line-height:30px; text-align:center  }
#top_scroll ul li .call{height:20px;line-height:20px;color:#6a6a6a;padding:0 10px 10px;border-bottom:1px solid #CCCCCC; }
#top_scroll ul li .call i{display:inline-block;vertical-align:top;width:20px;height:20px;margin-right:10px;background: url(../images/t1.png) center/100% no-repeat;}
#top_scroll ul li:hover h3{ background-color:#0041cc; color:#FFFFFF!important;}
#top_scroll ul li:hover .call { background-color:#0041cc; color:#FFFFFF}




.ysfa{ width:85%; margin:95px auto; height:auto; overflow:hidden}
.ysfa1{ width:80%; float:left}
.ysfa1 h3{ font-size:42px; color:#1c3e8f; font-weight:bold; margin-bottom:15px}
.ysfa1 span{ font-size:36px; color:#2f2f2f; font-weight:bold;}
.ysfa1 p{ font-size:24px; color:#2f2f2f;  margin-top:10px}

.ysfa2{ width:12%; float: right}
.ysfa2 a{ width:90%; height:50px; border:1px #CCCCCC solid; margin:40px auto 0; border-radius:50px; font-size:18px; text-align:center; line-height:50px}

.cplb{width: 100%;height: 844px;background-color: #1f993b;}
.app-w {position: relative;max-width: 1920px;margin: 0 auto;}
.app-w .app-con li {position: relative;width: 100%;height: 844px;}
.app-w .app-con li:nth-child(1){background: url(../images/f1.jpg) no-repeat top center;background-size: cover;}
.app-w .app-con li:nth-child(2){background: url(../images/f2.jpg) no-repeat top center;background-size: cover;}
.app-w .app-con li:nth-child(3){background: url(../images/f3.jpg) no-repeat top center;background-size: cover;}
.app-w .app-con li:nth-child(4){background: url(../images/f4.jpg) no-repeat top center;background-size: cover;}
.app-w .app-con li:nth-child(5){background: url(../images/f5.jpg) no-repeat top center;background-size: cover;}
.app-w .app-con li:nth-child(6){background: url(../images/f6.jpg) no-repeat top center;background-size: cover;}
.app-w .app-con li:nth-child(7){background: url(../images/f7.jpg) no-repeat top center;background-size: cover;}
.app-w .app-con li:nth-child(8){background: url(../images/f8.jpg) no-repeat top center;background-size: cover;}



.app-w .lb .fk{width:30%;height:auto;margin-top: 200px;padding:20px 1%; margin-left:8%}
.app-w .lb .fk h4{font-size: 48px;color: #fff;padding-top: 20px;font-weight: 700;}
.app-w .lb .fk p{font-size: 18px;color: #fff;line-height: 32px;padding:15px 0;}
.app-w .lb .fk a{width:150px;height: 45px;line-height: 45px; background-color:#1c3e8f; border-radius: 50px;color: #fff;text-align: center;font-size: 16px;}

.app-w .lf {
  position: absolute; 
  top:15%;
  z-index: 1; 
  right:5%; 
  width:30%;
}


.app-w .lf .page{
  width: 100%;
  margin: 0 auto;
}
.app-w .lf .page .app-tab{
  width: auto;
  margin: 0 auto;
}

/* 关键修改：调整swiper-wrapper和slide的布局，实现一行两个 */
.app-w .lf .page .app-tab .swiper-wrapper {
  width: 100%!important; /* 恢复100%宽度，让子元素能分行 */
  display: flex;
  flex-wrap: wrap; /* 允许换行 */
  margin: 0;
  padding: 0;
}
.app-w .lf .page .app-tab .swiper-slide {
  width: 45%!important; /* 每个slide占50%，实现一行两个 */
  float: left; /* 取消float，用flex布局 */
  list-style: none; /* 去掉默认列表样式 */
  box-sizing: border-box; /* 避免padding/border撑大宽度 */
  padding: 0 1%; /* 可选：增加左右间距，避免内容挤在一起 */
  margin-bottom: 55px; /* 可选：增加上下间距 */
}

/* 核心：让图片左、文字右排列 */
.app-w .lf .item-content {
  display: flex; /* 弹性布局实现横向排列 */
  align-items: center; /* 垂直居中对齐 */
  gap: 20px; /* 图片和文字之间的间距，可调整 */
  width: fit-content;
}

.app-w .lf ul li img {
  border-radius:50%; 
  border:10px solid rgba(255, 255, 255, 0.2);
  display: block; /* 避免图片底部留白 */
  max-width: 80px; /* 限制图片宽度，可根据需求调整 */
  height: auto; /* 保持图片比例 */
  object-fit: cover; float:left; margin-right:10px

}
.app-w .lf li p {
  font-size: 18px;
  line-height: 80px; /* 调整行高，适配垂直居中 */
  color: #919191;
  margin: 0; /* 去掉默认margin，避免间距混乱 */
  white-space: nowrap; /* 防止文字换行 */
  overflow: hidden;
      text-overflow: ellipsis;
}

.app-w .lf ul li:hover img {
transition:all .2s ease; transform: scaleX(1.1) scaleY(1.1);    border:10px solid rgba(28, 62, 143, 1.0);
}

.app-w .lf ul li:hover p { font-size:20px; color:#FFFFFF; transition:all .2s ease; transition: all 0.5s;
}



.al{width:100%;margin:0px auto; height: auto; margin-top:45px; }
.muma{position:relative;width:86%;margin:auto;}
.sc666{padding:20px 0;}
.ss666.swiper-slide{background-position:center;background-size:cover;width:600px;height:450px;border:3px solid #fff;box-shadow:0 0 5px #969696;}
.ss666.swiper-slide a{ display:block;}

.more2{ width:280px; height:51px; display:block; margin-top:30px; margin:auto; }
.more2 a{ width:280px; height:51px;  color:#ffffff; font-size:17px; background-color:#006de6; font-family:Arial, Helvetica, sans-serif; text-align:center; display:block; text-align:center; border-radius:60px; line-height:51px; transition:all .2s ease; margin-top:12px; }
.more2 a:hover{ width:280px; height:51px; background-color:#ffc000; color:#000; font-size:17px;transition:all .2s ease; display:block;}


#demoy{ overflow:hidden;height:355px;width:99%; margin:auto; color:#336699; }
#demoy1 ul,#demo2 ul{ display:block;width:3760px; overflow:hidden}
#demoy1 ul li{width:410px; height:350px;margin:8px 10px; float:left}
#demoy1 ul li a h3,#demo2 ul li a h3{width:410px;height:300px ; overflow:hidden;}
#demoy1 ul li a h3 img,#demo2 ul li a h3 img{width:410px;transition:all .5s ease; height:300px;}
#demoy1 ul li a h3:hover img,#demo2 ul li a h3:hover img{transform: scaleX(1.1) scaleY(1.1);}
#demoy1 ul li a ol,#demo2 ul li a ol{ text-align:center; height:50px; line-height:50px;transition:all .5s ease;   position:relative; color: #666666; font-size:19px; background-color: #efefef }
#demoy1 ul li a:hover ol,#demo2 ul li a:hover ol{ }
#demoy2 ul li{width:410px;height:350px;margin:8px 10px;}



/*新闻*/
.ysxw{ width:96%; height:auto; overflow:hidden; margin:70px auto 20px}
.ysxw h3{ font-size:48px; color:#2b2b2b; text-align:center; margin-bottom:10px}
.ysxw p{ width:40px; height:4px; background-color:#1c3e8f; margin:auto}

.nav-container {  margin:auto;
            padding: 20px 1%; display:block; width: 100%; max-width: 700px; 
        }

        /* 导航列表 */
        .nav-list {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 70px; /* 选项之间的间距 */
			justify-content: center;
			 margin: 0;
    padding: 0;
        }

        /* 导航项 */
        .nav-item {
            display: flex;
            align-items: center;
            cursor: pointer;
            color: #333; /* 文字颜色 */
            font-size: 20px; /* 文字大小 */
            transition: all 0.2s ease;
        }
		.nav-item a{
            color: #424242; /* 文字颜色 */
        }

        /* 自定义单选框样式 */
        .nav-radio {
            appearance: none; /* 清除默认样式 */
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border: 1px solid #ccc; /* 边框颜色 */
            border-radius: 50%; /* 圆形 */
            margin-right: 8px; /* 图标和文字间距 */
            position: relative;
            cursor: pointer;
        }

        /* 可选：选中状态样式（如果需要） */
        .nav-radio:checked {
            border-color: #0066cc;
        }

        /* 可选：选中后内部圆点（如果需要） */
        .nav-radio:checked::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #0066cc;
        }

        /* 鼠标悬浮效果 */
        .nav-item:hover a {
            color: #002a8b;
        }

        .nav-item:hover .nav-radio {
            border-color: #0066cc;
        }


.juzhong{ margin:auto}
.xwz{ width:90%; margin:auto; margin-top:40px;}
.xwzz{ width:66%; }
.xwyy{ width:34%;}

.xinwen_news_you{width:100%; margin:auto; }
.xinwen_news_you li{ width:44%; display:inline-block; overflow:hidden;  float:left; margin-right:2%; background-color:#edf4ff; padding:1.8%; border-radius:10px;}
.xinwen_news_you li{ line-height:28px;}
.xinwen_news_you li:hover{ }
.xinwen_news_you img{ width:100%; margin:auto; margin-bottom:30px; border-radius:10px;}
.xinwen_news_you h4 a{ color:#121212; font-size:19px; line-height:2; font-weight:normal;    }
.xinwen_news_you em{ font-size:16px; line-height:2.1; display:block;  overflow:hidden; color:#6b6b6b; font-style:normal; height: 70px; margin-top:10px; }

.xinwen_news_you span{ font-size:18px; line-height:2.2; display:block;  overflow:hidden; color:#535353; font-family:Arial, Helvetica, sans-serif; margin-bottom:20px;  }
.xinwen_news_you span h5{ font-size:53px; line-height:1.2;  color:#116295; font-weight:600; float:left;font-family:Arial, Helvetica, sans-serif;  }



.xwyy1{width:100%; margin:auto; }
.xwyy1 li{ width:90%; display:inline-block; overflow:hidden;   background-color:#edf4ff; padding:5%; border-radius:10px; }
.xwyy1 li{ line-height:28px; margin-bottom:20px;}
.xwyy1 li:hover{ }
.xwyy1 img{  margin:auto; margin-top:24px; margin-bottom:30px;}
.xwyy1 h4 a{ color:#464646; font-size:19px; line-height:2; font-weight:normal;  }
.xwyy1 h4 {  }

.xwyy1 em{ font-size:16px; line-height:1.9; display:block; height:38px;  overflow:hidden; color:#6b6b6b; font-style:normal; margin-top:7px; }

.xwyy1 span{ font-size:18px; line-height:2.2; display:block;  overflow:hidden; color:#535353; font-family:Arial, Helvetica, sans-serif; margin-bottom:9px;  }
.xwyy1 span h5{ font-size:53px; line-height:1.2;  color:#116295; font-weight:600; float:left;font-family:Arial, Helvetica, sans-serif;  }




/*简介*/
.ysjj{ width:100%; height:auto; margin:auto;  background: linear-gradient(to top, #edf4ff, #fff); padding:90px 0; }
.ysjj1{ width:1400px; margin:auto; height:auto; overflow:hidden }
.ysjj1_1{ width:100%; height:auto; overflow:hidden; margin-bottom:30px}
.ysjj1_1 span{ font-size:136px; color:#f1f3f6; font-family:Arial; font-weight:900; text-transform:uppercase; text-align:center; display:block}
.ysjj1_1 h3{ font-size:48px; color:#323232;  font-weight: bold; text-align:center; margin-top:-80px }
.ysjj1_1 p{ width:60px; height:4px; background-color:#1c3e8f; border-radius:30px; margin:20px auto 0 }

.ysjj1_2{ width:98%; margin:auto; font-size:17px; line-height:40px; color:#676666}
.ysjj1_2 p{  font-size:17px; line-height:40px; color:#676666}

.ysjj1_3{ width:170px; height:50px; background-color:#1c3e8f; margin:auto; border-radius:50px; font-size:18px; text-align:center; line-height:50px; color:#FFFFFF}
.ysjj1_3 a{ font-size:18px; text-align:center; line-height:50px; color:#FFFFFF}



/*数字变化*/
.about_type{ height: auto; padding-top:50px; }
.about_type ul{width:100%;margin:0 auto; text-align:center}
.about_type h2{font-size:21px;color:#303030;margin-top:0; font-weight:normal;  }
.about_type em{font-size:60px;color:#1c3e8f;font-family: Arial, Helvetica, sans-serif; font-weight:600; font-style:normal;  }
.about_type li{width:24%;display:inline-block;margin-bottom:15px;box-sizing:border-box;    }
.about_type li p{color:#303030; font-size:20px;  line-height:1.5; }



#demoya{ overflow:hidden;height:440px;width:94%; margin:auto; color:#336699; }
#demoy1a ul,#demo2 ul{ display:block;width:6285px; overflow:hidden}
#demoy1a ul li{width:450px; height:430px;margin:8px 10px; float:left}
#demoy1a ul li a h3,#demo2 ul li a h3{width:450px;height:390px ; overflow:hidden;}
#demoy1a ul li a h3 img,#demo2 ul li a h3 img{width:450px;transition:all .5s ease; height:390px;}
#demoy1a ul li a h3:hover img,#demo2 ul li a h3:hover img{transform: scaleX(1.1) scaleY(1.1);}
#demoy1a ul li a ol,#demo2 ul li a ol{ text-align:center; height:50px; line-height:50px;transition:all .5s ease;   position:relative; color: #666666; font-size:19px;}
#demoy1a ul li a:hover ol,#demo2 ul li a:hover ol{ }
#demoy2a ul li{width:450px;height:430px;margin:8px 10px;}


/* 内页简介 */
.cpzd{ margin:0 auto;   text-align:center; margin-bottom:30px; }
.cpzd a{display:block; font-size:16px; color:#ffffff; background-color:#e05a12; line-height:2.7; width: auto; padding:0px 40px; overflow:hidden; display:inline; text-align:center;   font-weight:normal;  display:inline-block; 
 margin:2px 5px;  }
.cpzd a:hover{  color:#FFFFFF;   background-color:#e68508;   }
.cpzd a:nth-child(1){background-color:#e68508;  }


.nysp{ width:60%; margin:auto}
.nysp iframe{ width:100%; height:600px }



.footr{ width:100%; background-color: #062a7f; padding:50px 0px;  height:auto; overflow:hidden;}
.footrr{ width:93%;  margin:auto; height:auto; overflow:hidden }

.footr1{  width:13%; }
.footr1 h3{ color:#FFFFFF; font-size:21px; line-height:2;  font-weight:normal; }

.footr2{  width:12%; }
.footr2 h3{ color:#FFFFFF; font-size:21px; line-height:2;  font-weight:normal; }

.footr3{  width:13%; }
.footr3 h3{ color:#FFFFFF; font-size:21px; line-height:2;  font-weight:normal; }

.footr4{  width:12%; }
.footr4 h3{ color:#FFFFFF; font-size:21px; line-height:2;  font-weight:normal; }

.footr5{  width:12%; }
.footr5 h3{ color:#FFFFFF; font-size:21px; line-height:2;  font-weight:normal; }

.footr6{  width:12%; }
.footr6 h3{ color:#FFFFFF; font-size:21px; line-height:2;  font-weight:normal; }


.footr7{  width:22.8%; padding-left:3%; border-left:1px #445e9b solid }
.footr7 h3{ color:#FFFFFF; font-size:21px; line-height:2;  font-weight:normal; }
.footr7_1{ width:100%}
.footr7_2{ width:100%; margin:20px auto; height:auto; overflow:hidden}
.footr7_2 ul li{ width:100%; margin:10px 0}
.footr7_2 ul li img{ float:left; margin-right:10px}
.footr7_2 ul li p{ font-size:16px; color:#edf4ff; line-height:24px}


.footr21{margin-top:20px;}
.footr21 a:hover{ color:#ffde00;}
.footr21 a{ color:#aeb7cb; display:block;  line-height:2.0;  font-size:16px; }
.footr21 p{ color:#aeb7cb; display:block;  line-height:2.0;  font-size:16px;}


.footr22{margin-top:20px; width:70%}
.footr22 a:hover{ color:#ffde00;}
.footr22 a{ width:40%; height:33px; border:1px #FFFFFF solid; float:left; margin:5px;  color:#fff; display:block;  line-height:33px;  font-size:17px; text-align:center }
.footr22 a h3{  color:#fff; display:block;  line-height:33px;  font-size:17px; }





.foootr7{ width:100%; height:auto; background-color:#062a7f; padding:10px 0px; border-top:1px #445e9b solid   }
.foootr7_1  { margin:auto; }
.foootr7_1 p { width:100%; line-height:45px; color:#c0c0c0; font-size:16px; text-align:center;  }
.foootr7_1 img { margin:auto; display:inline;   }
.foootr7_1 a{ display:inline-block;}



/* 校企合作 */
.xqhz{ width:98%; margin:30px auto}
.xqhz_1{ font-size:42px; text-align:center; font-weight:bold; padding:10px 0}
.xqhz_2{ width:70%; margin:35px auto 70px; height:auto; overflow:hidden}
.xqhz_21{ width:11.5%; float:left; margin:0 0.5%; float:left }
.xqhz_21_1{ background-image:url(../images/hz1.png); width:100px; height:100px; margin:auto }
.xqhz_21 p{ font-size:16px; margin-top:15px; text-align:center }
.xqhz_21:hover .xqhz_21_1{background-image:url(../images/hz1_1.png); }

.xqhz_22{ width:11.5%; float:left; margin:0 0.5%; float:left }
.xqhz_22_1{ background-image:url(../images/hz2.png); width:100px; height:100px; margin:auto }
.xqhz_22 p{ font-size:16px; margin-top:15px; text-align:center }
.xqhz_22:hover .xqhz_22_1{background-image:url(../images/hz2_1.png); }


.xqhz_23{ width:11.5%; float:left; margin:0 0.5%; float:left }
.xqhz_23_1{ background-image:url(../images/hz3.png); width:100px; height:100px; margin:auto }
.xqhz_23 p{ font-size:16px; margin-top:15px; text-align:center }
.xqhz_23:hover .xqhz_23_1{background-image:url(../images/hz3_1.png); }

.xqhz_24{ width:11.5%; float:left; margin:0 0.5%; float:left }
.xqhz_24_1{ background-image:url(../images/hz4.png); width:100px; height:100px; margin:auto }
.xqhz_24 p{ font-size:16px; margin-top:15px; text-align:center }
.xqhz_24:hover .xqhz_24_1{background-image:url(../images/hz4_1.png); }


.xqhz_25{ width:11.5%; float:left; margin:0 0.5%; float:left }
.xqhz_25_1{ background-image:url(../images/hz5.png); width:100px; height:100px; margin:auto }
.xqhz_25 p{ font-size:16px; margin-top:15px; text-align:center }
.xqhz_25:hover .xqhz_25_1{background-image:url(../images/hz5_1.png); }


.xqhz_26{ width:11.5%; float:left; margin:0 0.5%; float:left }
.xqhz_26_1{ background-image:url(../images/hz6.png); width:100px; height:100px; margin:auto }
.xqhz_26 p{ font-size:16px; margin-top:15px; text-align:center }
.xqhz_26:hover .xqhz_26_1{background-image:url(../images/hz6_1.png); }


.xqhz_27{ width:11.5%; float:left; margin:0 0.5%; float:left }
.xqhz_27_1{ background-image:url(../images/hz7.png); width:100px; height:100px; margin:auto }
.xqhz_27 p{ font-size:16px; margin-top:15px; text-align:center }
.xqhz_27:hover .xqhz_27_1{background-image:url(../images/hz7_1.png); }



.xqhz_28{ width:11.5%; float:left; margin:0 0.5%; float:left }
.xqhz_28_1{ background-image:url(../images/hz8.png); width:100px; height:100px; margin:auto }
.xqhz_28 p{ font-size:16px; margin-top:15px; text-align:center }
.xqhz_28:hover .xqhz_28_1{background-image:url(../images/hz8_1.png); }


.xqhz1{ width:100%; margin:40px auto; padding:40px 0; background-color:#f1f6fc; height:auto; overflow:hidden}
.xqhz1 h3{ font-size:42px; text-align:center; font-weight:bold; padding:10px 0}
.xqhz1 img{ margin:20px auto}


.xqhz2{ width:100%; margin:auto; padding:50px 0; height:auto; overflow:hidden; background: linear-gradient(to right, #1c3e8f, #088f9e);}
.xqhz2_1 p{ font-size:90px; color: rgba(216, 226, 248, 0.3); text-align:center; text-transform:uppercase; font-weight:bold}
.xqhz2_1 h3{font-size:42px; text-align:center; font-weight:bold; color:#FFFFFF; margin-top:-60px; margin-bottom:40px}


/* 轮播容器 */
        .carousel-container {
            width: 100%;
            max-width: 1200px;
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); margin:auto
        }

        /* 轮播内容 wrapper */
        .carousel-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        /* 单个轮播项 */
        .carousel-item {
            min-width: 100%;
            display: flex;
            background: #f8fafc;
        }

        /* 左侧图片区 */
        .carousel-image {
            flex: 0 0 55%;
            position: relative;
            overflow: hidden;
        }

        .carousel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 右侧内容区 */
        .carousel-content {
            flex: 1;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            background: #f1f5f9;
            background-image: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(255,255,255,0.05) 10px,
                    rgba(255,255,255,0.05) 20px
                );
        }

        /* 序号样式 */
        .carousel-number {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #dc2626;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
            z-index: 2;
        }

        .carousel-number::before {
            content: '';
            position: absolute;
            width: 96px;
            height: 96px;
            border-radius: 50%;
            border: 2px solid rgba(220, 38, 38, 0.2);
            z-index: -1;
        }

        /* 标题和描述 */
        .carousel-title {
            font-size: 26px;
            color: #1e40af;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .carousel-desc {
            font-size: 15px;
            color: #475569;
            line-height: 1.8;
        }

        /* 左右箭头 */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #334155;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-arrow:hover {
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .carousel-arrow.prev {
            left: 20px;
        }

        .carousel-arrow.next {
            right: 20px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .carousel-item {
                flex-direction: column;
            }
            .carousel-image {
                flex: 0 0 250px;
            }
            .carousel-content {
                padding: 40px 24px;
            }
            .carousel-number {
                width: 60px;
                height: 60px;
                font-size: 22px;
                top: 20px;
                right: 20px;
            }
            .carousel-title {
                font-size: 22px;
            }
        }


.xqhz3{ width:98%; margin:60px auto; height:auto; overflow:hidden}
.xqhz3_1{ width:100%; margin:auto; font-size:42px; text-align:center; font-weight:bold; padding:10px 0}

.xqhz3_2{ width:85%; margin:30px auto; height:auto; overflow:hidden}
.xqhz3_21{ float:left; width:50%;}
.xqhz3_21 img{ border-radius:40px 100px 40px 40px}

.xqhz3_22{ width:45%; float:right; padding-top:30px}
.xqhz3_22 ul li{ font-size:18px; color:#66666; margin-bottom:40px; padding: 10px 0 10px 50px; background: url(../images/teachers-1.png) no-repeat center left;
    background-size: 30px;}


.xqhz4{ width:98%; margin:60px auto;  height:auto; overflow:hidden}
.xqhz4_1{width:100%; margin:auto; font-size:42px; text-align:center; font-weight:bold; padding:10px 0}

.xqhz4_2{ width:85%; margin:30px auto; height:auto; overflow:hidden}
.xqhz4_21{ width:51%; float:left}
.xqhz4_21 ul li{ font-size:24px; color:#FFFFFF; background: #b9d5ff; border-radius: 40px; padding: 15px 2%; text-align: center; margin-bottom: 40px;}

.xqhz4_22{ width:45%; float:  right}

.xqhz4_3{ width:80%; margin:auto}
.xqhz4_3 img{ margin:auto}


.xqhz5{width:98%; margin:60px auto;  height:auto; overflow:hidden}
.xqhz5_1{width:100%;}
.xqhz5_1 h3{font-size:42px; text-align:center; font-weight:bold; padding:10px 0}
.xqhz5_1 p{font-size:18px; text-align:center;  color:#666666}

.xqhz5_2{ width:75%; margin:30px auto}


.xqhz6{width:80%; margin:60px auto;  height:auto; overflow:hidden}
.xqhz6 h3{font-size:42px; text-align:center; font-weight:bold; padding:10px 0}
.xqhz6 ul{ width:100%; margin:40px auto; height:auto; overflow:hidden}
.xqhz6 ul li{ width:31%; margin:10px 1%; float:left; overflow:hidden }
.xqhz6 ul li img{  border-radius:30px}
.xqhz6 ul li:hover img{ transform: scaleX(1.1) scaleY(1.1);transition:all .5s ease;  }


/* 定制化培训 */
.dzpx{ width:96%; margin:60px auto; height: auto; overflow:hidden}
.dzpx_1{ width:100%; margin:auto}
.dzpx_1 h3{ font-size:48px; text-align:center; font-weight:bold}
.dzpx_1 h3 span{ font-size:48px; text-align:center; font-weight:bold; color:#1c3e8f}
.dzpx_1 h4{ font-size:36px; text-align:center; font-weight:bold}

.dzpx_2{ width:75%; margin:30px auto}
.dzpx_21{ width:50%; float:left}
.dzpx_21_1{ font-size:38px; font-weight:bold; margin-top:30px}
.dzpx_21_2{ width:100%; margin:30px 0; font-size:18px; color:#666666; line-height:2}
.dzpx_21_2 p{font-size:18px; color:#666666; line-height:2}

.dzpx_21_3{ width:180px; height:45px; background-color:#1c3e8f; border-radius:40px; font-size:18px; text-align:center; line-height:45px; color:#FFFFFF}
.dzpx_21_3 a{ font-size:18px; text-align:center; line-height:45px; color:#FFFFFF}

.dzpx_22{ width:45%; float: right}
.dzpx_22 ul li{ width:48%; float:left; margin:10px 1%}


.dzpx1{ width:100%; margin:50px auto; height:auto; overflow:hidden; padding:60px 0; background-color:#e0e7f3}
.dzpx1_1{ width:96%; margin:auto;}
.dzpx1_1 h3{ font-size:48px; text-align:center; font-weight:bold; color:#1c3e8f}
.dzpx1_1 h4{ font-size:36px; text-align:center; font-weight:bold}


.dzpx1_2{width:75%; margin:40px auto; height:auto; overflow:hidden}

.dzpx1_21{ width:42%; float:left}

.dzpx1_22{ width:54%; float:right}
.dzpx1_22_1{ width:100%; font-size:18px; color:#666666; line-height:2}
.dzpx1_22_1 p{ font-size:18px; color:#666666; line-height:2}

.dzpx1_22_2{width:180px; height:45px; background-color:#1c3e8f; border-radius:40px; font-size:18px; text-align:center; line-height:45px; color:#FFFFFF; margin-top:40px}
.dzpx1_22_2 a{ font-size:18px; text-align:center; line-height:45px; color:#FFFFFF; }


.dzpx2{ width:100%; margin:50px auto; height:auto; overflow:hidden; padding:60px 0; }
.dzpx2_1{ width:96%; margin:auto;}
.dzpx2_1 h3{ font-size:48px; text-align:center; font-weight:bold; color:#1c3e8f}
.dzpx2_1 h4{ font-size:36px; text-align:center; font-weight:bold}


.dzpx2_2{width:75%; margin:40px auto; height:auto; overflow:hidden}

.dzpx2_21{ width:42%; float: right}

.dzpx2_22{ width:54%; float: left}
.dzpx2_22_1{ width:100%; font-size:18px; color:#666666; line-height:2; margin-top:40px}
.dzpx2_22_1 p{ font-size:18px; color:#666666; line-height:2}

.dzpx2_22_2{width:180px; height:45px; background-color:#1c3e8f; border-radius:40px; font-size:18px; text-align:center; line-height:45px; color:#FFFFFF; margin-top:40px}
.dzpx2_22_2 a{ font-size:18px; text-align:center; line-height:45px; color:#FFFFFF; }

.dzpx2_22_3{font-size:38px; font-weight:bold; margin-top:170px}



.dzpx3{ width:100%; margin:50px auto; height:auto; overflow:hidden; padding:60px 0; background-color:#e0e7f3}
.dzpx3_1{ width:96%; margin:auto;}
.dzpx3_1 h3{ font-size:48px; text-align:center; font-weight:bold; color:#1c3e8f}
.dzpx3_1 h4{ font-size:36px; text-align:center; font-weight:bold}


.dzpx3_2{width:75%; margin:40px auto; height:auto; overflow:hidden}

.dzpx3_2 ul li{ width:31%; margin:15px 1%; float:left}
.dzpx3_2 ul li h3{ font-size:22px; line-height:2.5; text-align:center}
.dzpx3_2 ul li p{ width:80px; height:35px; background-color:#1c3e8f; margin:auto; font-size:16px; line-height:35px; text-align:center; color:#FFFFFF}


.dzpx4{ width:100%; margin:50px auto; height:auto; overflow:hidden; padding:60px 0; }
.dzpx4_1{ width:96%; margin:auto;}
.dzpx4_1 h3{ font-size:48px; text-align:center; font-weight:bold; color:#1c3e8f}
.dzpx4_1 h4{ font-size:36px; text-align:center; font-weight:bold}


.dzpx4_2{width:75%; margin:40px auto; height:auto; overflow:hidden}
.dzpx4_2 ul li{ width:47.8%; margin:15px 1%; float:left; border:1px #CCCCCC solid; padding-bottom:30px}
.dzpx4_2 ul li h3{ font-size:22px; line-height:2.5; width:90%; margin:auto }
.dzpx4_2 ul li p{ font-size:16px; line-height:1.7; width:90%; margin:auto; height:60px; overflow:hidden }
.dzpx4_2 ul li a{ width:100px; height:35px; background-color:#1c3e8f; font-size:16px; line-height:35px; text-align:center; color:#FFFFFF; margin-left:5%; margin-top:20px}


/* 无人机考证 */
.zzpx{width:100%; margin:50px auto; height:auto; overflow:hidden; }
.zzpx_1{ width:100%; margin:auto; font-size:42px; text-align:center; font-weight:bold; padding:10px 0}

.zzpx_2{ width:80%; margin:30px auto}
.zzpx_2 ul {
    list-style: none; /* 清除默认列表样式，可选 */
    padding: 0; /* 清除默认内边距 */
    margin: 0; /* 清除默认外边距 */
    display: flex; /* 启用flex布局 */
    gap: 4.5%; /* 替代li的margin，控制li之间的间距 */
}
.zzpx_2 ul li{ width:28%;background-color:#f3f7fe; padding:30px 2%;  box-sizing: border-box;}

.zzpx_2 ul li h3 {
    color: #fff; background: linear-gradient(to right, #1c3e8f, #088f9e); padding:15px 1%; margin:0 auto 30px; text-align:center; font-size:24px; font-weight:bold
}
.zzpx_2 ul li p {
    line-height: 1.8;
    color: #475569;
}


.zzpx1{width:100%; margin:50px auto; height:auto; overflow:hidden; }
.zzpx1_1{ width:100%; margin:auto; font-size:42px; text-align:center; font-weight:bold; padding:10px 0}
.zzpx1_2{ width:80%; margin:30px auto}
.zzpx1_2 ul li{ width:43%;background-color:#f3f7fe; padding:30px 2%; margin:10px 1.5%; float:left}
.zzpx1_2 ul li img{ width:35%; float:right; border-radius:30px}
.zzpx1_2 ul li h3{ width:55%; float: left;}
.zzpx1_2 ul li h3 span{ font-size:24px; line-height:2}
.zzpx1_2 ul li h3 p{ font-size:16px; line-height:1.7; color:#888}


.zzpx2{width:100%; margin:50px auto; height:auto; overflow:hidden;}
.zzpx2_1{ width:100%; margin:auto; font-size:42px; text-align:center; font-weight:bold; padding:10px 0}

.zzpx2_2{ width:75%; margin:30px auto; height:auto; overflow:hidden;}

.zzpx2_21{ width:40%; float:left; height:auto; overflow:hidden; padding:30px 2%; border-radius:40px 100px 40px 40px;  background-color:#e0e7f3}

.zzpx2_22{ width:45%; float: right; padding-top:60px}
.zzpx2_22 span{ width:80px; height:80px; background-color:#FF0000; border-radius:50%; display:block; float:right; font-size:40px; text-align:center; color:#FFFFFF; font-weight:bold; line-height:80px;}
.zzpx2_22 h3{ font-size:28px; text-align:right; font-weight:bold; line-height:3; margin-top:20px}
.zzpx2_22 p{ font-size:18px; text-align:right; line-height:1.8; margin-top:10px}

.zzpx2_3{width:75%; margin:70px auto; height:auto; overflow:hidden; padding:60px 17.5%; background-color:#e0e7f3}

.zzpx2_31{ width:42%; float: left; padding-top:60px}
.zzpx2_31 span{ width:80px; height:80px; background-color:#FF0000; border-radius:50%; display:block;  font-size:40px; text-align:center; color:#FFFFFF; font-weight:bold; line-height:80px;}
.zzpx2_31 h3{ font-size:28px;  font-weight:bold; line-height:3; margin-top:20px}
.zzpx2_31 p{ font-size:18px;  line-height:1.8; margin-top:10px}

.zzpx2_32{ width:55%; float: right; height:auto; overflow:hidden;border-radius:150px 40px 40px 40px; }
.zzpx2_32 img{ width:100%;  }


.zzpx3{width:100%; margin:50px auto; height:auto; overflow:hidden;}
.zzpx3_1{ width:80%; margin:auto}
.zzpx3_1 h3{ font-size:48px; text-align:center; font-weight:bold; color:#1c3e8f; margin-bottom:30px}
.zzpx3_1 p{ font-size:18px; text-align:center; line-height:1.7 }

.zzpx3_2{ width:80%; margin:30px auto}
.zzpx3_2 ul li{ width:31%; float:left; margin:0 1%}
.zzpx3_2 ul li img{ border-radius:30px}

.zzpx4{width:100%; margin:50px auto; height:auto; overflow:hidden;}
.zzpx4_1 p{font-size:90px; color: rgba(216, 226, 248, 0.3); text-align:center; text-transform:uppercase; font-weight:bold}
.zzpx4_1 h3{font-size:48px; text-align:center; font-weight:bold; color:#1c3e8f; margin-bottom:30px; margin-top:-60px}

.zzpx4_2{ width:75%; margin:30px auto}
.zzpx4_2 ul li{ width:31%; float:left; margin:15px 1%}
.zzpx4_2 ul li p{ width:100%; height:60px; text-align:center; font-size:20px; color:#FFFFFF; line-height:60px; background-color:#1c3e8f}





.nyyy{ width:1460px; margin:15px auto; font-size:18px; line-height:40px; background-color:#f2f6fd; padding:10px 20px; }
.nyyy p{ font-size:18px; line-height:40px; }


@-webkit-keyframes loadRotate{
	from{-webkit-transform:rotateZ(0deg);}
	to{-webkit-transform:rotateZ(360deg);}
}
@keyframes loadRotate{
	from{transform:rotateZ(0deg);}
	to{transform:rotateZ(360deg);}
}
.cppic{-webkit-animation:loadRotate 10s linear infinite;-webkit-animation-fill-mode:both;animation:loadRotate 10s linear infinite;	/*动画从头到尾的速度是相同的  liner*/	/*指定动画应该播放无限次（永远）*/
animation-fill-mode:both;	/*动画结束前和结束后都应用该属性 animation-fill-mode:both; */}





/*===================== 首页 END =====================*/

/* ========================= 内页 START ========================= */

/* ===================== 产品列表页 ===================== */
#list{margin:30px 0;}
#list .auto,#news_article,#article,.position_now .auto,#nyba .black .auto{width:1500px;margin:0 auto;}
@media(max-width:1505px){
	#list .auto,#news_article,#article,.position_now .auto,#nyba .black .auto{width:1200px;}
	
	
}
.showlist{width:100%;/* float:left; */}

/*.showlist div *{width:100%;}*/
.showlist li{width:98%;margin:0 auto 10px;overflow:hidden;position:relative;-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;  }
.showlist .wrap_box{float:left;}
.showlist .button{width:60%;color:#fff;margin:0px auto;padding:0px;}
#showdata{display:none;}
#loaddata{text-align:center;}
.showlist li .img{overflow:hidden;  }

/*.product_list_one .showlist, .product_list_two .showlist, .product_list_three .showlist{display: none;}
.product_list_one #showdata, .product_list_two #showdata, .product_list_three #showdata{display: block !important;}*/

/*.product_list_one .item, .product_list_two .item, .product_list_three .item{float: left;width:32.33%;margin:0 0.5% 30px;}*/
.product_list_one .item .img,.product_list_two .item .img{position:relative;overflow:hidden; }
.product_list_one .item img,.product_list_two .item img,.product_list_two .item strong,.product_list_three .item em{-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
.product_list_one .item:hover img,.product_list_two .item:hover img{-webkit-transform:scale(1.2,1.2);-moz-transform:scale(1.2,1.2);-o-transform:scale(1.2,1.2);-ms-transform:scale(1.2,1.2);transform:scale(1.2,1.2);}

.product_list_one img{ border:1px #dfdcdc solid; width:99%!important }
/* 样式一 */
.product_list_one .item .info{padding:20px;}
.product_list_one .item strong{display:block;width:95%;font-weight: normal;font-size:18px; text-align:center}
.product_list_one .item .line2{width:100%;height:2px;transform-origin:100%;-webkit-transform-origin:100%;-webkit-transition:-webkit-transform .7s cubic-bezier(0.165,0.84,0.44,1);transition:-webkit-transform .7s cubic-bezier(0.165,0.84,0.44,1);transition:transform .7s cubic-bezier(0.165,0.84,0.44,1);transition:transform .7s cubic-bezier(0.165,0.84,0.44,1),-webkit-transform .7s cubic-bezier(0.165,0.84,0.44,1);transform:scaleX(0);-webkit-transform:scaleX(0);visibility:hidden\9;background-color:#129f41;}
.product_list_one .item p{display:block;width:95%;font-weight: normal;font-size:14px; text-align:center; line-height:20px; margin-top:10px; color: #999999; height:60px;  overflow: hidden; text-overflow: ellipsis; white-space: normal; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;  }
.product_list_one .item:hover .line2{transform:scaleX(1);-webkit-transform:scaleX(1);-moz-transform:scaleX(1);transform-origin:0;-webkit-transform-origin:0;visibility:visible\9;}
.product_list_one .item:hover .info{}
.product_list_one .item h4{ width:100px; height:40px; background-color: rgba(0, 0, 0, .04); font-size:16px; text-align:center; line-height:40px; border-radius:40px; margin:10px auto}
.product_list_one .item:hover strong{border-right:1px solid #f1f1f1;}

/* 样式一 */

/* 样式二 */
.product_list_two .item .info{padding:0 30px 20px;background-color:#f6f7f7;}
.product_list_two .item .info strong,.product_list_three .item .info strong{display:block;color:#555;font-size:18px;font-weight:100;padding-top:30px;}
.product_list_two .item .line1{width:0%;height:1px;margin-top:8px;}
.product_list_two .item .info p,.product_list_three .item .info p{color:#868585;font-size:14px;line-height:26px;height:52px;overflow:hidden;margin-top:8px;}
.product_list_two .item .line2{display:none;}
.product_list_two .item:hover{box-shadow:0px 18px 25px rgba(0,0,0,0.08);background-color:#fff;}
.product_list_two .item:hover strong{color:#e05a12;transform:translateY(-10px);-moz-transform:translateY(-10px);-o-transform:translateY(-10px);-ms-transform:translateY(-10px);-webkit-transform:translateY(-10px);}
.product_list_two .item:hover .line1{width:100%;height:1px;background-color:#e05a12;}
.product_list_two .item:hover p{transform:translateY(10px);-moz-transform:translateY(10px);-o-transform:translateY(10px);-ms-transform:translateY(10px);-webkit-transform:translateY(10px);}

/* 样式二 */

/* 样式三 */
.product_list_three .item .info strong{padding:0;}
.product_list_three .item{padding-bottom:20px;border-radius:6px;overflow:hidden;background-color:#f9f9f9;  }
.product_list_three .item .info{padding:15px;}
.product_list_three .item em{font-style:normal;float:right;width:10px;height:3px;background-color:#e05a12;margin:0px 15px 0 0;}
.product_list_three .item:hover em{width:30px;}
.product_list_three .item:hover{box-shadow:0px 18px 25px rgba(0,0,0,0.08);background-color:#fff;}

/* 样式三 */

/* 产品内页图 */
.product_article .img1{display:none;}
.product_article .title{overflow:hidden;padding:10px 0 0;}
.product_article .title h1{text-align:center;font-size:22px;color:#333;}
.product_article .title .time{display:block;height:30px;line-height:30px;text-align:center;margin:14px 0 0;font-size:14px;color:#999;}
.product_article .title .time img{display:inline-block;height:18px;margin-top:-2px;margin-right:10px;}
.product_article .title .share{text-align:center;height:24px;line-height:24px;margin-top:10px;}
.product_article .title .share span{display:inline-block;vertical-align:top;}
.product_article .title .bdsharebuttonbox{display:inline-block!important;vertical-align:top;}

/* 产品内页图 */

/* ===================== 产品列表页 ===================== */

/* ===================== 产品 详情页 ===================== */

.img_big_box{width:54%;float:left; }
.img_big_box .img_box{height:400px;border:1px solid #f1f1f1;border-radius:5px;position:relative;border-bottom:none;}
.img_big_box .img_box img{max-width:99%;max-height:99%;border-radius:5px;position:absolute;left:0;top:0;right:0;bottom:0;margin:auto;}
.img_big_box .small_box{border:1px solid #f1f1f1;border-radius:5px;text-align:center;}
.img_big_box .small_box img{max-height:80px;display:inline-block;margin:10px 5px;border:1px solid #fff;}
.img_big_box .small_box img.active{border-color:#e05a12;}
.info_big_box{width:42%;float:right;height:440px; background-color:#f6f7f5; padding:2% }
.info_big_box h1{color:#444;line-height:36px;font-weight:bold;font-size:26px;margin-top:60px;}
.info_big_box .info_1{margin:30px 0 0;}
.info_big_box .info_1 .dh{color:#555;min-height:40px;line-height:40px;cursor:help;margin-bottom:10px;}
.info_big_box .info_1 .dh img{float:left;width:30px;margin-top:5px;}
.info_big_box .info_1 .dh span{float:right;width:89%;font-size:18px;color:#555;letter-spacing:0px;line-height:40px;}
.info_big_box .info_1 .dh span.num{font-family:impact;font-size:26px;letter-spacing:2px;}
.info_big_box .info_1 .dh span.num a{color:#555;}
.info_big_box .info_2{padding:10px;}
.info_big_box .share{height:24px;line-height:24px;margin:20px 0;}
.info_big_box .share span{font-size:16px;color:#555;}
.bdshare-button-style0-24 a,.bdshare-button-style0-24 .bds_more{margin:0 6px 0 0!important;}

.info_big_box h1{color:#222;line-height:46px;font-weight:bold;font-size:26px;margin-top:30px}
.info_big_box .hx{border-top: 1px dashed #c4c5c2;border-bottom: 1px dashed #c4c5c2;padding: 5px 0;}
.info_big_box p{font-size: 16px;color: #a8a8a8; line-height: 30px;margin-top: 4px;font-weight: 400;}
.info_big_box em{color: #333;font-size: 25px;line-height: 36px;display: block;padding-top: 20px;}

.swtfw{width: 100%;}
.swtbox{margin-top:45px;overflow: hidden;}
.swtbox a{text-align:center;float:left;display:block}
.swtbox .btn1{width:35%;height:58px; background-color:#0058db; font-size:24px;color:#ffffff;font-weight:bold;line-height:58px;box-shadow:0 6px 5px rgba(249,90,23,0.4);transition:all linear 0.3s;}
.swtbox .btn1:hover{background:#E70012;box-shadow:0 6px 5px rgba(60,151,170,0.4)}
.swtbox .btn3{width:35%;height:58px; background-color:#E70012; font-size:24px;color:#ffffff;font-weight:bold;line-height:58px;box-shadow:0 6px 5px rgba(249,90,23,0.4);transition:all linear 0.3s; margin-left:10px}
.swtbox .btn1:hover{background:#0058db;box-shadow:0 6px 5px rgba(60,151,170,0.4)}

.swtbox .btn2{width:55%;height:58px;background:#edf1fa;border:1px dashed #112a50;font-size:16px;color:#343434;line-height:58px;margin-left:38px}
.swtbox .btn2 span{font-size:24px;color:#E70012;font-weight:bold;vertical-align:top}
.fwby{margin-top:30px}
.fwby p{background:url(../images/cppage1_dh.png) left center no-repeat;background-size:15px;padding-left:22px;font-size:18px;color:#6c6c6d;line-height:17px;float:left;margin-left:26px}
.fwby p a{font-size:18px;color:#6c6c6d;}
.fwby p:first-child{margin-left:0}
.fwtime{width: 100%;margin-top: 30px;display: flex;}
.fwtime p{font-size:16px;color:#696969;padding-top:30px;}
.fwtime .p1{background:url(../images/cppage1_60s.png) left top no-repeat;margin-right:2%}
.fwtime .p2{background:url(../images/cppage1_30m.png) left top no-repeat;margin-right:2%}
.fwtime .p3{background:url(../images/cppage1_24h.png) left top no-repeat}
.yanse{background-color: #edf1fa;padding:25px 20px;font-size:17px;line-height:35px;}



/*.info_big_box .info_2 .ewm{margin-right:20px;}
.info_big_box .info_2 img{width:130px;border:1px solid #f2f2f2;padding:2px;}
.info_big_box .info_2 strong{display: block;font-size:14px;height:30px;line-height:30px;color:#333;text-align: center;}
.info_big_box .info_2 .but a{margin-top:26px;width:160px;height:36px;line-height:36px;text-align: center;position: relative;z-index:1;border:1px solid #f2f2f2;color:#666;}
.info_big_box .info_2 .but a.a1:hover, .info_big_box .info_2 .but a.a2:hover{color:#fff;}*/
.info_big_box .info_3 span{display:inline-block;padding:8px 0;line-height:24px;color:#555;cursor:help;font-size:12px;}
.info_big_box .info_3 span img{display:inline-block;height:20px;margin-bottom:3px;margin-right:6px;}
.xgcp_title{padding:10px;background-color:#fafafa;margin:30px 0 0;}
.xgcp_title h3{color:#cf1101;border-left:2px solid #cf1101;padding-left:20px;height:30px;line-height:30px;font-weight:bold;font-size:20px;}
.article_content{font-size:16px;line-height:220%;color:#333;padding-top:30px;}
.article_box{padding-top:30px;}
.article_box img,.article_content img,.article_content a{display:inline-block;}
.article_box p,.article_content p{margin-bottom:14px;}
.article_box p,.article_content p img{ padding:10px 1% }
#xgcp ul li{float:left;text-align:center;width:23%;margin:1%;}
#xgcp ul li strong{display:block;height:36px;color:#333;font-size:16px;font-weight:100;line-height:36px;text-align:center;}
#xgcp ul li:hover strong{color:#fff;}
#xgcp ul li:hover .pb_bg{transform:scaleY(1);-webkit-transform:scaleY(1);transform-origin:left 0;-webkit-transform-origin:left 0;visibility:visible\9;}
.pagenum{border-top:1px solid #DCDCDC;margin-top:30px;text-align:center;}
.pagenum a{display:inline-block;color:#666;margin:20px 20px 0;width:120px;height:30px;line-height:30px;border:1px solid #e05a12;border-radius:60px;font-size:0px;}
.pagenum span{font-size:16px;color:#e05a12;}
.pagenum a:hover{background-color:#e05a12;}
.pagenum a:hover span{color:#fff;}

/* ===================== 产品 详情页 ===================== */

/* ===================== 内页 Banner 图 ===================== */
#nyba{height:400px;position:relative;overflow:hidden;background-color:rgba(0,0,0,0.3);background-position:top center;background-repeat:no-repeat; }
.fade_text{text-transform:uppercase;margin-top:1%;text-align:center;font-size:0;}
.fade_text span{color:#313131;display:inline-block;}
.fade_text .cn{height: auto;overflow:hidden;}
.fade_text .cn span{font-size:32px;}
.fade_text .en{height:40px;line-height:40px;font-size:30px;overflow:hidden;}
.fade_text .line{width:60px;height:3px;background-color:#828282;margin:10px auto;}
.arrow_down{position:absolute;left:50%;margin-left:-4px;bottom:20px;overflow:hidden;width:8px;}
.arrow_down .line{display:block;width:1px;height:40px;margin:0 3px;background:#fff;}
.arrow_down .aw{display:block;width:100%;height:5px;margin-top:3px;background:url('../../images/aw.png') no-repeat;}
.arrow_down .lg{-webkit-animation:long 1.5s linear alternate infinite;animation:long 1.5s linear alternate infinite;}
@-webkit-keyframes long{
	from{-webkit-transform:translateY(-30px);transform:translateY(-30px);}
	to{-webkit-transform:translateY(0);transform:translateY(0);}
}
@keyframes long{
	from{-webkit-transform:translateY(-30px);transform:translateY(-30px);}
	to{-webkit-transform:translateY(0);transform:translateY(0);}
}
.son_list{position:absolute;height:50px;width:100%;bottom:10px;left:0;text-align:center;}
.son_list a{display:inline-block;width:140px;padding:0 5px;height:50px;color:#333;background-color:#fff;font-size:16px;text-align:center;line-height:50px;position:relative;z-index:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.son_list a i{background-color:#e05a12;position:absolute;left:50%;top:50%;margin:-100px 0 0 -100px;z-index:-1;width:200px;height:200px;border-radius:50%;transform:scale(0);-webkit-transform:scale(0);-moz-transform:scale(0);-o-transform:scale(0);-ms-transform:scale(0);}
.son_list a:hover i,.son_list a.active i{transform:scale(1);-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);}
.son_list a:hover,.son_list a.active{color:#fff;}

/* ===================== 内页 Banner 图 ===================== */

/* ===================== 面包屑导航 ===================== */
.position_now{height:60px;line-height:60px;font-size:14px;background-color:#f1f1f1;}
.position_now a{display:inline-block;color:#707070;}
.position_now .fl{color:#707070;}
.position_now .fl img{height:20px;margin-top:-4px;display:inline-block;margin-right:8px;}
.position_now .fr{font-family:impact;color:#e05a12;font-size:22px; display: none;}
.position_now .fr img{height:26px;display:inline-block;margin-right:8px;vertical-align:middle;}
.position_now .fr strong{font-weight:100;}

/* ===================== 面包屑导航 ===================== */

/* ===================== 新闻页面 ===================== */

/* 新闻样式 1 */
.news_one .news_box li{margin-bottom:20px;}
.news_one .news_box li .img{width:20%;overflow:hidden;float:left;border-radius:8px;position:relative; height:260px }
.news_one .news_box li .img img{-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
.news_one .news_box li .img .bg{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,0);}
.news_one .news_box li .img .bg i{opacity:0;position:absolute;left:50%;top:50%;margin:-15px 0 0 -50px;width:30px;height:30px;background:url(../../images/news_arrow.png) center/100% no-repeat;}
.news_one .news_box li .info{width:78%;float:right;padding-top:50px;}
.news_one .news_box li .info h3{font-weight:bold;font-size:18px;color:#333;}
.news_one .news_box li .info .time{color:#777;font-size:14px;padding:20px 0;}
.news_one .news_box li .info .line{width:100%;height:1px;background-color:#e5e9ef;margin-bottom:20px;}
.news_one .news_box li .info .line i{display:block;width:0%;height:1px;background-color:#e05a12;}
.news_one .news_box li .info p{color:#999;font-size:16px;line-height:26px;height:52px;overflow:hidden;}
.news_one .news_box li:hover .line i{width:100%;}
.news_one .news_box li:hover h3{color:#e05a12;}
.news_one .news_box li:hover .bg{background:rgba(0,0,0,0.55);}
.news_one .news_box li:hover .bg i{opacity:1;margin:-15px 0 0 -15px;}
.news_article_box .left_fixed{position:fixed;left:0;top:0;width:30%;height:100%;z-index:-1;}
.news_article_box .left_fixed .text{padding:35% 0 0 25%;}
.news_article_box .left_fixed h6{font-size:70px;color:#cf1101;opacity:0.5;font-style:italic;font-family:impact;}
.news_article_box .left_fixed h5{font-size:16px;color:#333;margin-top:30px;}
.news_article_box .left_fixed .return{margin-top:40px;font-size:14px;color:#666;}
.news_article_box .left_fixed .return:after{content:'';}
.news_article_box .right_article{float:right;width:70%;background-color:#f5f5f5;overflow:hidden;}
.news_article_box .inner_content{padding:30px 50px;}
.news_article_box .h1_title{padding:70px 40px;background-color:#E5E5E5;line-height:1.5; margin-top:110px;}
.news_article_box .h1_title h1{font-size:28px;color:#333;margin-bottom:20px;}
.news_article_box .h1_title .time img{height:20px;display:inline-block;margin:-4px 10px 0 0;}
.news_article_box .h1_title .time span{color:#777;font-size:16px;}
.page_list{text-align:center;}
.page_list b{font-size:0;}
.page_list b a,.page_list b font{display:inline-block;font-weight:100;color:#999;font-size:16px;margin:0 5px;border:1px solid #e5e9ef;width:40px;height:40px;line-height:40px;border-radius:6px;text-align:center;}
.page_list b font{background-color:#e05a12;color:#fff;border-color:#e05a12;}
.page_list_span1{display:none;}

/* 新闻样式 1 */

/* 新闻样式 2 */
.news_two .news_box li{float:left;width:31.33%;margin:1%;overflow:hidden;-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
.news_two .news_box li a{padding:20px;background-color:#f3f3f3;position:relative;}
.news_two .news_box li .time strong{font-size:50px;color:#e05a12;display:inline-block;font-family:"SimHei";position:relative;}
.news_two .news_box li .time strong::after{content:'';position:absolute;left:0;top:30px;width:0px;background-color:#e05a12;height:2px;-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
.news_two .news_box li .time span{font-size:12px;color:#333;display:block;font-family:"SimHei";}
.news_two .news_box li h3{color:#333;font-size:18px;line-height:26px;height:52px;overflow:hidden;margin:15px 0 10px;}
.pc .news_two .news_box li:hover h3{color:#e05a12;}
.news_two .news_box li p{font-size:14px;color:#666;line-height:22px;height:44px;overflow:hidden;margin-bottom:10px;}
.news_two .news_box li i{position:absolute;background-color:#e05a12;}
.news_two .news_box li i.i1{width:0px;height:2px;top:20px;right:20px;}
.news_two .news_box li i.i2{width:2px;height:0px;top:20px;right:20px;}
.pc .news_two .news_box li:hover i.i1{width:30px;}
.pc .news_two .news_box li:hover i.i2{height:30px;}
.pc .news_two .news_box li:hover{box-shadow:0px 18px 25px rgba(0,0,0,0.08);}
.pc .news_two .news_box li:hover strong::after{width:100%;}
.fixed_body{display:none;position:fixed;width:100%;height:100%;background:rgba(255,255,255,0.8);left:-30%;top:0;z-index:9999;}
.fixed_body .fixed_article{display:none;position:fixed;width:1200px;height:800px;top:50%;right:20%;margin:-400px -600px 0 0;background-color:#fff;z-index:99999;box-shadow:0px 0 25px rgba(0,0,0,0.08);}
.fixed_body .fixed_article .fb_close{position:absolute;right:0;top:0;width:60px;height:60px;cursor:pointer;background-color:#e05a12;}
.fixed_body .fixed_article .fb_close i{display:block;margin:10px auto 0;width:40px;height:40px;background:url(../../images/jia.png) center center/80% no-repeat;}
.fixed_body .fixed_article .fb_close:hover i{transform:rotate(45deg);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);}
.fixed_body .fixed_article iframe{border:none;width:100%;height:100%;display:block;}
@media(max-width:1505px){
	.fixed_body .fixed_article{width:1000px;margin-right:-500px;}
}

/* 新闻样式 2 */

/* ===================== 新闻页面 ===================== */

/* ===================== 产品页 左侧 导航 ===================== */
#list .left_side{width:280px;}
#list .left_side .box_one,#list .left_side .box_two{width:260px;background-color:#0058db;padding:10px 10px;}
#list .left_side .box_one .title{text-align:center;margin-bottom:20px;}
#list .left_side .box_one .title h3{color:#fff;font-weight:bold;font-size:30px;margin:20px 0 10px 0;}
#list .left_side .box_one .title p{color:#fff;font-size:16px;}
#list .left_side .box_one ul li{line-height:50px;background-color:#fff;margin-bottom:5px;text-align:left;}
#list .left_side .box_one ul li a{position:relative;z-index:1;overflow:hidden;height:50px;}
#list .left_side .box_one ul li span,#list .left_side .box_one ul li em{position:absolute;display:block;width:95%;height:100%;padding-left:5%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
#list .left_side .box_one ul li span{left:0;top:0;background-color:#fff;}
#list .left_side .box_one ul li em{right:-100%;top:0;background-color:#d70404;color:#fff; font-style:normal;}
#list .left_side .box_one ul li a:hover span,#list .left_side .box_one ul li a.active span{top:100%;}
#list .left_side .box_one ul li a:hover em,#list .left_side .box_one ul li a.active em{right:0;}
#list .left_side .box_one ul li .son_nav{border-top:1px solid #e05a12;}
#list .left_side .box_one ul li .son_nav a{background:none;height:40px;line-height:40px;position:relative;}
#list .left_side .box_one ul li .son_nav a::after{content:'';position:absolute;left:20px;top:20px;width:8px;height:1px;background-color:#e05a12;}
#list .left_side .box_one ul li .son_nav a:hover::after,#list .left_side .box_one ul li .son_nav a.active::after{background-color:#fff;}
#list .left_side .box_one ul li .son_nav span{padding-left:40px;}
#list .left_side .box_two{margin-top:10px;padding:20px 10px;}
#list .left_side .box_two p{font-size:16px;color:#fff;line-height:30px;}
#list .left_side .box_two strong{color:#fff;font-size:30px;display:block;margin-bottom:10px;font-family:impact;font-weight:100;}
#list .left_side .box_two .more{height:36px;line-height:36px;background-color:#fff;margin-top:10px;width:200px;color:#333;text-align:center;}
#list .left_side .box_two .more i{background-color:#ff1730;}
#list .left_side .box_two .more:hover{color:#fff;}
#list .right_side.fr{width:1200px;}
@media(max-width:1505px){
	#list .right_side.fr{width:900px;}
	.jjfa-b a>p{font-size:23px;}


	

	
/*底部*/

.xfoot{ width:96%; margin:auto; height:auto;  padding:60px 0px; }
.xfoot1{ width:34%;}
.xfoot1 img{}
.xfoot2{ display:none;}
.xxfoot2{ display:none;}


.xfoot4{ width:33%;}
.xfoot4 p{font-size:16px; color:#575757; line-height:2.2;}

.xfoot5{ width:33%;}

	
}

/* ===================== 产品页 左侧 导航 ===================== */

/* ===================== 全局搜索框 ===================== */
.form_box{display:none;border:1px solid #f1f1f1;border-radius:5px;margin-bottom:20px;}
.form_box .sf{margin:0 auto;text-align:center;font-size:0;}
.form_box .an{display:inline-block;border:1px solid #f1f1f1;background-color:#fff;color:#333;height:40px;border-radius:8px;margin:10px 5px;font-size:16px;line-height:40px;padding:0px 15px;outline:none;}
.form_box .an{vertical-align:bottom;}
.form_box .an:hover{border-color:#e05a12;}
.form_box .inp{height:38px;vertical-align:bottom;}
.form_box .submit{width:80px;cursor:pointer;}

/* ===================== 全局搜索框 ===================== */

/* ===================== 在线留言 ===================== */
.form_box_box{width:1200px;margin:40px auto;padding:60px 0;box-shadow:0px 20px 80px rgba(76,76,76,0.1);}
ul.fs{width:1000px;margin:0 auto;}
ul.fs input,ul.fs textarea{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-transition:0.8s;-o-transition:0.8s;-ms-transition:0.8s;-moz-transition:0.8s;transition:0.8s;}
ul.fs .box1 li{float:left;width:320px;margin-right:20px;}
ul.fs .box1 li:nth-of-type(3){margin:0;}
ul.fs .box1 li input{border:1px solid #e1e7ee;width:100%;height:50px;padding:10px;color:#999;}
ul.fs li input:hover{border-color:#e05a12;}
ul.fs .box1 li input::-webkit-input-placeholder,ul.fs li.textarea textarea::-webkit-input-placeholder,ul.fs li.yzm input::-webkit-input-placeholder{color:#999;}
ul.fs .box1 li input:-moz-placeholder,ul.fs li.textarea textarea:-moz-placeholder,ul.fs li.yzm input:-moz-placeholder{color:#999;}
ul.fs .box1 li input:-ms-input-placeholder,ul.fs li.textarea textarea:-ms-input-placeholder,ul.fs li.yzm input:-ms-input-placeholder{color:#999;}
ul.fs li.textarea textarea{width:100%;height:150px;border:1px solid #e1e7ee;padding:10px;margin:20px 0;color:#999;}
ul.fs li.textarea textarea:hover{border-color:#e05a12;}
ul.fs li.radio{text-align:center;}
ul.fs li.radio label{margin:0 10px;}
ul.fs li.yzm{text-align:center;margin:20px 0;}
ul.fs li.yzm img{display:inline-block;height:20px;}
ul.fs li.yzm input{border-bottom:1px solid #e1e7ee;width:200px;height:50px;padding:10px;color:#999;}
ul.fs li.yzm input:hover{border-color:#e05a12;}
ul.fs li.submit input{height:50px;margin:0 auto;display:block;cursor:pointer;width:200px;border-radius:50px;background-color:#e05a12;font-size:16px;color:#fff;}

/* ===================== 在线留言 ===================== */

/* ===================== 联系我们 地图 ===================== */
#allmap{height:500px;padding-top:100px;}
#allmap img{max-width:none!important;}

/* ===================== 联系我们 地图 ===================== */

/* ===================== 回到顶部 ===================== */
.go_top{display:none;background:url(../../m/images/top.png) center center/50% no-repeat;width:40px;height:40px;cursor:pointer;text-align:center;background-color:#e05a12;border-radius:50%;position:fixed;right:6px;bottom:100px;z-index:99999999999;}

/* ===================== 回到顶部 ===================== */
.firstRow img{display:inline-block;}

/* ================================ 内页 END ================================ */

/*===================== 响应式代码 START =====================*/



@media(max-width:1800px){

	.footer .auto{width:1300px;}
	.footer .a_list{margin:0 50px;width:440px;}
	.footer .a_list a{width:50%;}
}






@media(max-width: 1640px){

.footrr{ width:98%; margin:auto; padding:40px 0px; height:auto; overflow:hidden }

	
}



@media(max-width: 1590px){

.rdcp{width:100%; height:763px; background-image: url(../images/rd_01.jpg);  background-position:center; background-repeat:no-repeat;}
.rdcp_1{ width:90%; margin:auto; padding-top:70px}


.rdjj_1{ width:60%; margin-left:10%; padding-top:50px}



.w90{width: 90%;margin: 0 auto;}

/*简介*/
.jj{ width:95%; margin:50px auto 10px; height:auto; overflow:hidden; padding:50px 2.5% 100px;  background: linear-gradient(to bottom, #fff, #dadada);}

.jj1{ width:48%; float:left}
.jj1_1 h3{ font-size:40px; color:#474747; padding-top:15px; font-weight:bold }

.jj2{ width:48%; float: right; height:auto; overflow:hidden ;}


.xwz{ width:90%; margin:auto; margin-top:20px;}
	
}

@media(max-width: 1500px){
.nyyy{ width:94%; margin:15px auto; font-size:18px; line-height:40px; background-color:#f2f6fd; padding:10px 2%; }
.nyyy p{ font-size:18px; line-height:40px; }
}


@media(max-width: 1490px){

.w90{width: 90%;margin: 0 auto;}



}


@media(max-width: 1440px){

.header .nav ul li a{font-size:17px;}

.top1{ float:left; width:20%;}
.header .call{ display:none}

.header .nav{ float:right; width:68%; right:1%}
.topt{ margin-left:1%; float:right }


}


@media(max-width:1400px){

 

.index3 .right li div p{margin-top:6px;font-size: 12px;text-transform: uppercase;}
 
 
 
.oh {margin-top:5px;}




	.footer .auto{width:1200px;}
	#top_scroll{max-width:100%;}
	.so_banner .swiper-slide{width:1000px;}
	.so_banner .swiper-button-next{right:-500px;}
	.so_banner .swiper-button-prev{left:-500px;}
	.footer .a_list{width:370px;}
	.footer .ewm{width:110px;margin-top:20px;}
	
	
	
	
	
	.foot-bg1{ max-width:97%; height: auto; margin:auto; padding-top:10px; }
	

}





.header .menu_box{display:none;}
.header .menu_box{float:right;width:24px;height:54px;position:relative;}
.header .nav_button{position:absolute;right:0px;top:26px;vertical-align:middle;width:24px;height:2px;cursor:pointer;background-color:#e05a12;-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
.header .nav_button::after,.header .nav_button::before{content:'';width:24px;height:2px;position:absolute;z-index:99999999;right:0;background-color:#e05a12;-webkit-transition:0.5s;-o-transition:0.5s;-ms-transition:0.5s;-moz-transition:0.5s;transition:0.5s;}
.header .nav_button::after{top:9px;}
.header .nav_button::before{top:-9px;}
.header .menu_box.on .nav_button{width:0;}
.header .menu_box.on .nav_button::before{-webkit-transform:translateY(9px) rotate(45deg);-ms-transform:translateY(9px) rotate(45deg);transform:translateY(9px) rotate(45deg);}
.header .menu_box.on .nav_button::after{-webkit-transform:translateY(-9px) rotate(-45deg);-ms-transform:translateY(-9px) rotate(-45deg);transform:translateY(-9px) rotate(-45deg);}
#close{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.5);z-index:999;}
.wap_son{display:none;padding:0 13px;margin-bottom:20px;}
.wap_son a{width:48%;height:36px;line-height:36px;font-size:16px;color:#fff;text-align:center;margin:3px 1%;float:left;background-color:#0058db;}
.fixed_footer{display:none;}
.fixed_footer{display:none;background-color:#e60202;height:50px;position:fixed;bottom:30px;left:50%;margin-left:-46%;z-index:999;width:92%;border-radius:10px;}




@media (min-width:640px){
	.fixed_footer{width:640px!important;left:50%;margin-left:-320px;}
}

.fixed_footer a{float:left;width:33.33%;text-align:center;}
.fixed_footer img{display:inline-block;height:24px;margin:5px 0 0;}
.fixed_footer strong{color:#fff;font-size:12px;display:block;height:20px;line-height:20px;}
.wap_show{display:none;}




@media(max-width:1265px){
.footr_1{ width:95%; margin:auto;}

.footr22{margin-top:20px; width:90%}


}

@media(max-width:1250px){

.dxxw{  margin:10px auto}
.xwyy1 li{ width:98%; display:inline-block; overflow:hidden;  border-radius:10px; padding:10px 0 ; margin: 10px 1% 0 1%;}
.xwyy1 li{ margin-bottom:5px;}
.xwyy1 span h5{ font-size:53px; line-height:1.2;  color:#fff;  font-family:Impact; width:100%; text-align:center; padding-top:15px  }

.xwyy1 span{ display:none }

.gxxw1{ width:100%; margin:20px auto; height:auto; overflow:hidden; display: flex; }
.gxxw1_1{ display:none}

.gxxw1_2{ width:98%; float: none; background-color:#f3f3f3; margin:auto}



}

@media(max-width:1210px){
	html,body{margin:0 auto!important;}
	.product_list_two .item .info p,.product_list_three .item .info p,.header .call,.banner .swiper-button-next,.banner .swiper-button-prev,.news_two .news_box li p,.position_now .fr,.arrow_down,#list 
	.left_side,.news_one .news_box li .img .bg,.news_article_box .left_fixed,#none,.pc_show,.section_one .son, .ysbt h3 span{display:none;}
	.header .menu_box,.fixed_footer,.wap_son,.wap_show{display:block;}
	#list .auto,#news_article,#article,.position_now .auto,#nyba .black .auto, .section_five .item_box{width:auto;padding:0 15px;}
	.pub_title{padding:24px 0;}
	.pub_title h4{font-size: 30px;}
	.pub_title p{font-size: 16px;}
	.header,.header.bg{height:60px;  top:0px;  background-color:#fff;box-shadow: 0 0 10px rgba(0,0,0,0.3)}
	.top1{margin-top: 0px; background:none;}
	.top2 h1{ font-size:24px;  margin-left:5px; margin-top:8px; color:#2b2b2b }
    .top2 p{ font-size:10px;  margin-left:7px; color:#2b2b2b; letter-spacing:1px}
    .top3{ width:24%; height:auto; margin-top:-13px }
.dxtb{ display:none}
.header{ position:fixed; top:0px; z-index:9999}
	.header_height{height:60px;}
	.header .inner{padding:5px 10px;width:auto;height:54px; }
	.header .logo{width:auto;height:auto; margin-top:0;}
	.header .logo img,.header.bg .logo img{height:40px;margin:0;width:auto; margin-top:5px}
	.header .nav{position:fixed;width:280px;height:327px;overflow:auto;padding:20px 0;top:50%;left:50%;margin:-163px 0 0 -140px;z-index:9999999999!important;background-color:#fff;box-shadow:0 0 10px #f1f1f1;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);}
	.header .nav ul li{display:block;width:90%;margin:0 auto;height:40px;line-height:40px;border-bottom:1px solid #f9f9f9;}
	.header .nav ul li:last-child{border:none;}
	.header .nav ul li a,.header.bg .nav ul li a{height:40px;line-height:40px;color:#333;}
	.header .nav ul li em{ display:none}
.header .nav ul li a:hover,.header .nav ul li a.active{color:#333;}
.header.bg .nav ul li{ height:40px;line-height:40px;}
.header.bg .nav ul li a:hover,.header.bg .nav ul li a.active{color:#333;}
.header .nav ul li i{ display:none}
	.product_son{display:none!important;}
	.copyright{height:auto;line-height:40px;}
	.xl2{ display:none!important;}
	
.header.bg .logo {margin-top:3px;}	
.header.bg .logo img{height:35px;}
.header.bg .top2 h1{margin-top:10px; font-size:20px}

	
	



/*产品展示*/

.rdcp{width:100%; height: auto; background-image: url(../images/rd_01.jpg);  background-position:center; background-repeat:no-repeat; padding:30px 0; overflow: hidden}
.rdcp_1{ width:96%; margin:auto; padding-top:10px}
.rdcp1{ width:96%; float: none; margin:auto}
.rdcp1 img{ width:45%; height:auto; margin:auto}
.rdcp1 h3{ font-size:25px; color:#212121; font-weight:bold; padding:10px 0; text-align:center}
.rdcp1 h3 span{ font-size:25px; color:#002bb8; font-weight:bold; }
.rdcp1 p{ font-size:18px; color:#383838; text-align:center }

.rdcp2{ display:none}

.rdcp3{ width:100%; margin:20px auto}
		
.lbb{margin:auto; width:100%;  text-align:center;  display:block  }
.lbb a{ display: inline-block; font-size:18px; color:#fff; line-height:40px;  width:31.5%;  font-weight:normal; float:left; text-align:center;
 box-sizing: border-box;  float:left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; border-bottom: none; margin:3px 0.5%; border:0px #CCCCCC solid; border-radius:40px; background-color:#0058db  }
.lbb a:hover{  background-color:#db0000; color:#fff;  transition:all .5s ease;    }
.lbb a h3{ font-size:18px; color:#fff;}
.lbb a:hover h3{ color: #fff;  }


.rdt{width:100%; height:252px; background-image: url(../images/rd_03.jpg);  background-position:center; background-repeat:no-repeat;}
.rdt1{ width:80%; margin:auto; padding-top:30px}
.rdt1 img{ margin:auto; height:50px;}
.rdt1 h3{ font-size:25px; text-align:center; font-weight:bold; color:#FFFFFF; padding:10px 0}
.rdt1 a{ width:125px; height:35px; background-color:#e20000; margin:10px auto 0; font-size:16px; text-align:center;  color:#FFFFFF; line-height:35px; border-radius:30px}





/*简介*/
.rdjj_1{ width:80%; margin-left:0%; padding-top:50px; margin:auto}
.rdjj1 p{ width:215px; height:46px; background-color:#eb0000; border-radius:30px; font-size:27px; text-align:center; line-height:46px; color:#FFFFFF; font-weight:bold; text-transform:uppercase }
.rdjj1 h3{ font-size:25px;  font-weight:bold; padding:15px 0 10px 0 }
.rdjj1 span{ font-size:18px; color:#0944da }



/*数字变化*/
.about_type{ height: auto; padding-top:20px }
.about_type ul{width:100%;margin:0 auto;}
.about_type h2{font-size:18px;margin-top:0; font-weight:normal; }
.about_type em{font-size:40px;font-family: Arial, Helvetica, sans-serif; font-weight:600;text-align:center; font-style:normal;  }
.about_type li{width:31%;display:inline-block;margin-bottom:15px;box-sizing:border-box;  }
.about_type li p{font-size:20px;  line-height:1.5; }


.rdys{width:100%; height:560px; background-image: url(../images/rd_06.jpg);  background-position:center; background-repeat:no-repeat;}
.rdys1{ width:98%; margin:auto; padding-top:40px;}
.rdys1 h3{ font-size:25px; color:#FFFFFF; text-align:center; font-weight:bold}
.rdys1 p{ font-size:18px; color:#FFFFFF; text-align:center; padding-top:10px}

.rdys2{ width:96%; margin:30px auto 0}
.rdys2 ul li{ width:22.5%; border:1px #CCCCCC solid; margin:0 1%; float:left; background-color:#FFFFFF; padding-bottom:30px; height:320px}
.rdys2 ul li img{ width:100%; height:auto}
.rdys2 ul li .rdys2_1 img{ width: auto; height:80px; margin:-30px auto 0; transition:all 1s;}
.rdys2 ul li h3{ width: 96%; margin:10px auto 10px; font-size:20px; color:#383838; font-weight:bold; text-align:center}
.rdys2 ul li p{ width: 96%; margin:auto; font-size:16px; color:#5f5f5f; text-align:center; line-height:1.5}
.rdys2 ul li:hover .rdys2_1 img{  transform:rotate(360deg);}





.nyyy{  font-size:16px; line-height:1.9;  }
.nyyy p{ font-size:16px; line-height:1.9; }



.rdsb{ width:98%; margin:20px auto}
.rdsb h3{ font-size:25px; color:#292929; font-weight:bold; text-align:center}
.rdsb h3 span{ font-size:25px; color:#ea0000; font-weight:bold; text-align:center}
.rdsb p{ font-size:16px; color:#393939; text-align:center}

.rdsb1{ width:96%; margin:10px auto}




/*新闻*/


.xwz{ width:98%; margin:auto; margin-top:20px;}
.xwzz{ display:none}
.xwyy{ width:100%;}

.footr1{  width:35%;}
.footr3{  width:20%; }
.footr4{  width:25%; }
.footr5{  width:20%; }
.footr2{ display:none}



.nysp{ width:96%; margin:auto}
.nysp iframe{ width:100%; height: 550px }




#top_scroll{ height:700px;}



#list .right_side.fr{width:96%;}

.w90{width: 90%;margin: 0 auto;}





@media(max-width:1090px){



.ykt{width:100%; height:321px; background-image: url(../images/yd_02.jpg);  background-position:center; background-repeat:no-repeat; margin-top:30px}

.ykt1{ width:95%; float:right; padding-top:45px}
.ykt1_1{ width:100%; }
.ykt1_1 img{ width:40%; }
.ykt1_1 h3{  font-size:25px; color:#ffffff; font-weight:bold; padding-top:10px }

.ykt1_2{ width:100%; padding-top:20px}
.ykt1_2 p{ width:210px; height:35px; background-color:#e40000; float:left; font-size:20px; text-align:center; line-height:35px; color:#FFFFFF}
.ykt1_2 img{ width:25px;  float:left; margin-left:10px; padding-top:5px}
.ykt1_2 h3{  float:left; margin-left:20px; font-size:35px; line-height:35px; color:#edf50b; font-family:impact}



/* 基地 */
.hbjd{ width:100%; background:url(../images/hb_4.png) center no-repeat; height:800px; margin-top:10px }
.hbjd1{ width:100%; margin:auto; padding-top:40px;}
.hbjd1 span{ font-size:60px; text-align:center; font-family:Arial; font-weight:800; text-transform:uppercase; color:#7ac994; display:block}
.hbjd1 h3{ font-size:36px; text-align:center;  font-weight:800;  color:#fff; }
.hbjd1 p{ font-size:22px; text-align:center; color:#fff; line-height:3 }

.al{width:100%;margin:180px auto 0; }

.muma{position:relative;width:100%;margin:auto;} 
.sc666{padding:20px 0;}
.ss666.swiper-slide{background-position:center;background-size:cover;width:500px;height:375px;border-radius:8px;border:5px solid #fff;}
.ss666.swiper-slide a{ display:block;}




	





/*案例*/

.ykcf{ width:98%; margin:10px auto}
#demoy{ overflow:hidden;height:225px;width:94%; margin:auto; color:#336699; padding-top:10px;}
#demoy1 ul,#demo2 ul{ display:block;width:6285px; overflow:hidden}
#demoy1 ul li{width:250px; height:204px;margin:8px 10px; float:left}
#demoy1 ul li a h3,#demo2 ul li a h3{width:250px;height:188px ; overflow:hidden;}
#demoy1 ul li a h3 img,#demo2 ul li a h3 img{width:250px;transition:all .5s ease; height:188px;}
#demoy1 ul li a h3:hover img,#demo2 ul li a h3:hover img{transform: scaleX(1.1) scaleY(1.1);}
#demoy1 ul li a ol,#demo2 ul li a ol{ text-align:center; height:35px; line-height:35px;transition:all .5s ease;  background: rgba(45,45,45,0.7); position:relative; top:-35px; color: #ffffff; font-size:15px;}
#demoy1 ul li a:hover ol,#demo2 ul li a:hover ol{ }
#demoy2 ul li{width:250px;height:204px;margin:8px 10px;}


#demoya{ overflow:hidden;height:225px;width:94%; margin:auto; color:#336699; padding-top:10px;}
#demoy1a ul,#demo2 ul{ display:block;width:6285px; overflow:hidden}
#demoy1a ul li{width:250px; height:204px;margin:8px 10px; float:left}
#demoy1a ul li a h3,#demo2 ul li a h3{width:250px;height:188px ; overflow:hidden;}
#demoy1a ul li a h3 img,#demo2 ul li a h3 img{width:250px;transition:all .5s ease; height:188px;}
#demoy1a ul li a h3:hover img,#demo2 ul li a h3:hover img{transform: scaleX(1.1) scaleY(1.1);}
#demoy1a ul li a ol,#demo2 ul li a ol{ text-align:center; height:35px; line-height:35px;transition:all .5s ease;  background: rgba(45,45,45,0.7); position:relative; top:-35px; color: #ffffff; font-size:15px;}
#demoy1a ul li a:hover ol,#demo2 ul li a:hover ol{ }
#demoy2a ul li{width:250px;height:204px;margin:8px 10px;}


/*新闻*/
.xwbt{ margin-top:20px;}
.xwbt p{font-size:25px;color:#242424; text-transform:uppercase;  line-height:2; font-weight:600; text-align:center;}
.xwbt span{font-size:15px;color:#4c4c4c; text-transform:uppercase;  line-height:1.6; display:block;  text-align:center;}


.xyxw2_1 h3 span{ font-size:46px; color:#323232; font-family:Arial; font-weight:900; font-style:italic; margin-top:5px}
.xyxw2_1{ width:41%; float:left; padding-right:3%; height:520px; border-right:1px #CCCCCC solid}
.xyxw2_2{ width:52%; float:right}
	

.lmxw{ width:96%; padding:20px 2% 50px 2%; height:auto; overflow:hidden; background-image: linear-gradient(to bottom, #fff, #d4e9bf);}


/* 产品展示 */

#top_scroll{margin:20px auto;}
#top_scroll ul li{width:49%;}
#top_scroll ul li h3{font-size:15px;}
#top_scroll ul li .call{font-size:11px;}
#top_scroll ul li .call i{margin-right:2px;}
	


	
/*底部*/

	
	.position_now .fl{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:100%;}
	#allmap{height:260px;}
	#nyba{height:160px; background-size:cover!important;}
	.fade_text{margin-top:50px;}
	.fade_text .cn{line-height:40px;height:40px;}
	.fade_text .cn span{font-size:30px;}
	.fade_text .en{font-size:16px;}
	.fade_text .line{margin:10px auto;}
	.form_box_box,ul.fs{width:100%;}
	.form_box_box{margin:0;padding:20px 0;box-shadow:none;}
	ul.fs .box1 li{float:none;width:100%;margin-bottom:20px;}
	.showlist li{margin-bottom:10px;}
	.product_list_one .item:hover strong{border:none;}
	.product_list_one .item .info{padding:10px 5px;background:none!important;}
	.product_list_one .item strong{font-size:14px;width:100%;}
	.product_list_two .item .info strong,.product_list_three .item .info strong{padding-top:10px;font-size:14px;}
	.product_list_two .item .info,.product_list_three .item .info{padding:10px 5px;}
	.product_list_three .item{padding-bottom:5px;}
	#list .right_side{float:none!important;width:100%!important;}
	.news_one .news_box li .img,.news_one .news_box li .info{float:none!important;width:100%;}
	.news_one .news_box li .img{ display:none}
	.news_one .news_box li .info{padding-top:20px;height:auto;}
	.news_one .news_box li .info .time{padding:10px 0;}
	.news_one .news_box li .info .line{margin-bottom:6px;}
	.news_one .news_box li:hover .info{padding-top:20px;}
	.news_one .news_box li .info p{font-size:14px;}
	.son_list{height:40px;}
	.son_list a{height:40px;line-height:40px;width:100px;font-size:14px;padding:0;}
	.news_article_box .right_article{width:100%;float:none;background-color:#fff;}
	.news_article_box .inner_content,.news_article_box .h1_title{padding:20px;}
	
	.news_article_box .h1_title{ margin:0px !important;}
	.news_two .news_box li{width:49%;margin:0.5%;}
	.news_two .news_box li a{padding:8px;}
	.news_two .news_box li .time strong{font-size:30px;}
	.fixed_body .fixed_article{width:90%;height:500px;margin:-250px -45% 0 0;}
	.fixed_body .fixed_article .fb_close{top:auto;bottom:0;width:50px;height:50px;}
	.fixed_body .fixed_article .fb_close i{margin-top:5px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);}
	.info_big_box{width:98%;height:auto;}
	.img_big_box{width:98%;float: none; }
    .img_big_box .img_box{ height:300px!important; overflow:hidden }

	.info_big_box h1{margin-top:0;font-size:20px;}
	.info_big_box .info_1{margin-top:10px;}
	.info_big_box .share{margin:0 0 10px 0;}
	.tabbox .content,.section_four .img2,.section_four .img1,.section_two .txt:after, .info_big_box .info_1 .dh:nth-of-type(2),.info_big_box .info_1 .dh:nth-of-type(3),.info_big_box .info_3{display:none;}
	.xgcp_title{margin-top:10px;}
	.footer .auto,.section_two .auto{width:auto;padding:0 12px;}
	.so_banner .swiper-slide{width:80%;}
	.so_banner .swiper-button-prev{left:-40%;}
	.so_banner .swiper-button-next{right:-40%;}
	.so_banner .swiper-button-next:after{width:28px;height:28px;background-size:100%;margin-top:-14px;}
	.so_banner .swiper-button-prev:before{width:28px;height:28px;background-size:100%;margin-top:-14px;}
	

.swtbox .btn1{width:35%;height:38px; background-color:#0058db; font-size:20px;color:#ffffff;font-weight:bold;line-height:38px;box-shadow:0 6px 5px rgba(249,90,23,0.4);transition:all linear 0.3s;}
.swtbox .btn3{width:35%;height:38px; background-color:#E70012; font-size:20px;color:#ffffff;font-weight:bold;line-height:38px;box-shadow:0 6px 5px rgba(249,90,23,0.4);transition:all linear 0.3s; margin-left:10px}
	
	
	#bg .alert_video{width: 95%;height: 30%;left: 0;right: 0;margin: auto;top: 0;bottom: 0;}
	#bg .close{left: 0;right: 0;margin: auto;top: 120%;bottom: 0;z-index: 9999;}


	.footer .ewm,.al_one .img_box{display:none;}




	
}


@media all and (max-width:1125px){

/*简介*/



.top1{ width:75%}
.top3{ width:22%; height:auto; margin-top:-7px }



}

@media all and (max-width:1050px){

.lmdb{width:100%; height:204px; background-image: url(../images/lm_04.jpg);  background-position:center; background-repeat:no-repeat;}
.lmdb_1{ width:90%; margin:auto; padding-top:80px; font-size:25px; text-align:center; color:#fff; line-height:2}

.footr1{  width:45%;}
.footr3{ display:none }
.footr4{  width:35%; }
.footr5{  width:20%; }

.foootr7{display:none}
.footrr{  margin:0 auto 30px; padding:40px 0px; height:auto;  }

}




@media (max-width:960px){

.xycp{ width:96%; margin:30px auto}
.xycp img{display:none}
.xycp h3{ display:block; font-size:32px; text-align:center; font-weight:bold }
.xycp p{ font-size:18px; text-align:center; line-height:1.5; margin-top:15px}


.ykjj2{ margin:-100px auto 0}

/*数字变化*/


.xysz{width:100%; background: none; height:207px; background-color:#0b78d5; margin-top:30px }
.xysz1{ width:96%; margin:auto; padding-top:10px}





.article_content video{ width:100%; height:350px}



.xylb4{ display:none }


.xyxw2_1{ width:100%; float: none; padding-right:0; height: auto; border-right: none; height: auto; }
.xyxw2_1 h3{ font-size:32px; color:#2066bc; text-align:center}
.xyxw2_1 h3 span{ display:none}
.xyxw2_1 p{ font-size:18px; color:#464646; line-height:2; text-align:center}
.xyxw2_1 img{ display:none}

.xyxw2_2{ width:100%; float: none; height:auto;}

.xwyy1{width:100%; margin:auto; }
.xwyy1 li{ width:96%; display:inline-block; overflow:hidden;  border-radius:10px; padding:2% 1% ; background-color:#f1f1f1; margin-top:5px }
.xwyy1 li{ line-height:28px; margin-bottom:20px;}
.xwyy1 li:hover{ }
.xwyy1 img{  margin:auto; margin-top:24px; margin-bottom:30px;}
.xwyy1 h4 {  width:100%; padding-left:0%  }
.xwyy1 h4 a{ color:#464646; font-size:19px; line-height:2.5; font-weight:normal; padding-top:5px  }
.xwyy1 em{ font-size:16px; line-height:1.9; display:block;overflow:hidden; color:#6b6b6b; font-style:normal; margin-top:7px; padding-left:2%  }
.xwyy1 li:hover h4 a{ color:#116295; }
.xwyy1 span{ display:none  }
.xwyy1 span h5{  display:none  }


.footr{ width:100%; background-color: #041a88; padding:10px 0px;  height:auto; overflow:hidden; margin-top:20px}
.footrr{ width:96%;   margin:auto; padding:20px 0px; height:auto; overflow:hidden }

.footr1{  width:100%; padding-top:0px ; float:none}
.footr1_1 img{ height:50px;}
.footr1_2{ width:100%; margin-top:30px}

.footr1_2 p{ font-size:16px; color:#FFFFFF; background:url(../images/c3.png)  0 center  no-repeat;padding-left:35px; background-size: 25px}
.footr1_2 h3{ font-size:28px; color:#ffc000; font-family:Impact; text-indent:35px; padding-top:10px}

.footr4{  width:100%; margin-top:20px; float:none }
.footr4 h3{ color:#FFFFFF; font-size:18px; line-height:1.8;  font-weight:normal; }
.footr21{margin-top:5px;}
.footr21 a:hover{ color:#ffde00;}
.footr21 a{ color:#fff; display:block;  line-height:1.5;  font-size:16px; }
.footr21 p{ color:#fff; display:block;  line-height:1.5;  font-size:16px;}

.footr5{  width:100%; float:none; margin-bottom:40px }

}




@media (max-width:860px){
	.section_one .middle_box .bannertxt{ position:relative; right:0;}


}




@media( max-width:760px ){
	.top2 h1{ font-size:24px;  margin-left:1px;  }
    .top2 p{ font-size:9px;  margin-left:1px;}
    .top3{ width:23%; height:auto; margin-top:-5px }



.nysp iframe{ width:100%; height: 300px }

.ykt{width:100%; height:251px; }

}


@media( max-width:725px ){

.xylb{ width:100%; padding:20px 0 40px; margin:auto; background-color:#0b78d5; height: 740px; }
.xylb1 h3{ font-size:26px; text-align:center; font-weight:bold; color:#FFFFFF}
.xylb1 span{ font-size:26px; text-align:center; font-weight: 800; color:#e9f108; font-style:italic; }

.lbb{  text-align:center; margin:auto  }
.lbb a{ display: inline-block; font-size:16px; color:#373737; line-height:32px;  width:49%;  text-align:center;   font-weight:normal; 
 margin:3px 0.3%; box-sizing: border-box;  border-radius:0px; border:1px #fff solid; float:left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;   }
.lbb a:hover{  background-color:#e9f108; color:#232323;  transition:all .5s ease;    }
.lbb a h3{ font-size:16px; color:#fff;)}
.lbb a:hover h3{ color: #232323;  }

.xylb3 h3{ font-size:26px; text-align:center; font-weight:bold; color:#FFFFFF}
.xylb3 span{ font-size:26px; text-align:center; font-weight: 800; color:#e9f108; font-style:italic; }



.w90{width: 90%;margin: 0 auto;}


.index3 .right li div span{margin-top:10px; font-size:16px}
.index3 .right li div p{ display:none}



}



@media( max-width:640px ){
	.top1{ width:70%}
	.top2 h1{ font-size:24px;  margin-left:5px;  }
    .top2 p{ font-size:9px;  margin-left:5px;}
    .top3{width:13%; height:auto; margin-top:-5px }

	
	.swiper-button-prev{left: 0  !important;}
	.swiper-button-next{right:  0  !important;}
	
	
	.article_content p iframe{width:100%!important;height: 300px !important;}


.xycp h3{ display:block; font-size:26px; text-align:center; font-weight:bold }
.xycp p{ font-size:15px; text-align:center; line-height:1.5; margin-top:15px}



 .rtCont li a p {
        font-size: 18px;
        text-align: center;
		width:100%; margin:auto;  
        height: 35px;
        line-height: 35px;
        display: block;
        color: #fff;
        transition: all .3s; background-color:#002bb8}


.article_box p,.article_content p img{ width:100% !important;  height:auto!important;  padding:10px 0 }

.rdjj{width:100%; height: auto; background-image: none; margin-top:30px; padding:20px 0; background-color:#eeebec}
.rdjj_1{ width:96%; padding-top:0px}

.rdjj1 p{ width:155px; height:26px; background-color:#eb0000; border-radius:30px; font-size:20px; text-align:center; line-height:26px; color:#FFFFFF; font-weight:bold; text-transform:uppercase }

.rdjj2{ width:100%; margin-top:20px; font-size:16px; color:#343434; line-height:1.7;}
.rdjj2 p{  font-size:16px; color:#343434; line-height:1.7;}

.rdjj3{ width:98%; margin:auto}
.about_type li{ float:left; margin:10px 0px; width:50% ; background:none }
.about_type em{font-size:30px;font-family: Arial, Helvetica, sans-serif; font-weight:600;text-align:center; font-style:normal; }
.about_type h2{font-size:13px;margin-top:0; font-weight:normal;  }
.about_type li p{font-size:14px;  line-height:1.5; font-weight:lighter; }


.rdjj4{ width:202px; height:34px;  margin-top:20px; border-radius:30px; background: linear-gradient(to right, #0823bd, #e30000); font-size:16px; text-align:center; line-height:34px; color:#FFFFFF}
.rdjj4 a{font-size:16px; text-align:center; line-height:34px; color:#FFFFFF}



.rdys{width:100%; height: auto; background-image: none;  background-position:center; background-repeat:no-repeat; padding:20px 0; background-color:#0031b4; overflow:hidden}
.rdys1{ width:98%; margin:auto; padding-top:20px;}
.rdys1 h3{ font-size:25px; color:#FFFFFF; text-align:center; font-weight:bold}
.rdys1 p{ font-size:18px; color:#FFFFFF; text-align:center; padding-top:10px}

.rdys2{ width:96%; margin:30px auto 0}
.rdys2 ul li{ width:47.5%; border:1px #CCCCCC solid; margin:10px 1%; float:left; background-color:#FFFFFF; padding-bottom:30px; height:280px}
.rdys2 ul li img{ width:100%; height:auto}
.rdys2 ul li .rdys2_1 img{ width: auto; height:50px; margin:-25px auto 0; transition:all 1s;}
.rdys2 ul li h3{ width: 96%; margin:10px auto 10px; font-size:20px; color:#383838; font-weight:bold; text-align:center}
.rdys2 ul li p{ width: 96%; margin:auto; font-size:15px; color:#5f5f5f; text-align:center; line-height:1.4}
.rdys2 ul li:hover .rdys2_1 img{  transform:rotate(360deg);}



/* 基地 */
.hbjd{ width:100%; background: none; height: auto; margin-top:10px }
.hbjd1{ width:100%; margin:auto; background-color:#129f41; padding:25px 0;}
.hbjd1 span{ font-size:40px; text-align:center; font-family:Arial; font-weight:800; text-transform:uppercase; color:#7ac994; display:block}
.hbjd1 h3{ font-size:26px; text-align:center;  font-weight:800;  color:#fff; }
.hbjd1 p{ font-size:17px; text-align:center; color:#fff; line-height:1.5 }

.al{width:100%;margin:10px auto 0; }

.muma{position:relative;width:100%;margin:auto;} 
.sc666{padding:20px 0;}
.ss666.swiper-slide{background-position:center;background-size:cover;width:500px;height:375px;border-radius:8px;border:5px solid #fff;}
.ss666.swiper-slide a{ display:block;}


.mm{ width:90%; margin:0px auto}

.more3{ width:35%; height:49px; background-color:#6b6b6b;  display:block; margin-top:25px;  border-radius:2em; margin-left:40px; margin-bottom:20px; margin-left:15% }
.more3 a{ width:100%; height:49px;  color:#ffffff; font-size:17px;  text-align:center;display:block;line-height:49px; transition:all .2s ease;text-decoration:none; }
.more3 a:hover{ background-color:#129f41; border-radius:2em; color:#ffffff;}











	
		/*新闻*/

.xw{ background-color:#e05a12; padding:100px 0px; }
.xwz{ width:96%; margin:auto; margin-top:15px;}
.xwzz{ width:100%; float: none; }
.xwyy{ width:100%;float: none; margin-top:10px; }


.xinwen_news_you{width:100%; margin:auto; }
.xinwen_news_you li{ width:92%; display:inline-block; overflow:hidden;  float: none; margin:auto;  padding:4%; border-radius:10px; margin-bottom:8px;}

.xyxw{  height:405px; }
.xyxw1{  height:420px; margin:-300px auto 0}
.xwyy1{width:100%; margin:auto;  }
.xwyy1 li{ width:90%; display:inline-block; overflow:hidden;   background-color:#f1f1f1; padding:3% 3.5%; border-radius:10px;}
.xwyy1 li{ line-height:28px; margin-bottom:10px;}
.xwyy1 li:hover{ }
.xwyy1 img{  margin:auto; margin-top:24px; margin-bottom:30px;}
.xwyy1 h4 a{ color:#464646; font-size:16px; line-height:2; font-weight:normal;  }
.xwyy1 h4 {  }

.xwyy1 em{ font-size:15px; line-height:2.1; display:block;  overflow:hidden; color:#6b6b6b; font-style:normal; margin-top:7px; height:36px; }

.xyxw2_1 h3{ font-size:26px; color:#2066bc}



.xinwen_news_you h4 a {
    color: #121212;
    font-size: 16px;
    line-height: 2;
    font-weight: normal;
}

.xinwen_news_you em{ font-size:15px; line-height:1.7; display:block;  overflow:hidden; color:#6b6b6b; font-style:normal; height: 80px; margin-top:10px; }

.xinwen_news_you span {
    font-size: 15px;    margin-bottom:0px;
}

.xinwen_news_you img {

    margin-bottom: 15px;
 
}





.fotd p{ display:none;}
	
	
.section_one .banner1{height:300px;min-height:300px;max-height:1600px;width:100%;position:relative;}
.section_one .bannerbg {width:100%;height:300px;display:block;position:absolute;z-index:2;background:url(../images/banner_bg.png) repeat center;}
#video_cover{width:100%;height:300px; background:url(../../images/video_cover.jpg);background-size:cover;background-position:center;}



}


@media( max-width:550px ){

.lbb{  text-align:center; margin:auto  }
.lbb a{ display: inline-block; font-size:15px; color:#373737; line-height:36px;  width:49%;  text-align:center;   font-weight:normal; 
 margin:3px 0.3%; box-sizing: border-box;  border-radius:0px; border:1px #fff solid; float:left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;   }
.lbb a:hover{  background-color:#e9f108; color:#232323;  transition:all .5s ease;    }
.lbb a h3{ font-size:15px; color:#fff;)}
.lbb a:hover h3{ color: #232323;  }


.w90{width: 90%;margin: 0 auto;}


.ykt1_1 h3{  font-size:22px;  }
.ykt1_2 p{ width:180px; height:30px; font-size:16px; text-align:center; line-height:30px; color:#FFFFFF}
.ykt1_2 img{ width:20px;  float:left; margin-left:10px; padding-top:5px}
.ykt1_2 h3{  float:left; margin-left:10px; font-size:30px; line-height:35px; color:#edf50b; font-family:impact}



.xysz{width:100%; background: none; height:207px; background-color:#0b78d5; margin-top:30px }
.xysz1{ width:96%; margin:auto; padding-top:20px}


.dxcp p{ line-height:1.3}



}

@media( max-width:500px ){
	#top_scroll ul li .call{ display:none}

	.top3{width:15%; height:auto; margin-top:-5px }
	
	.foot6_1 img{ width:60%; height: auto; }
	.foot6_1 p{ font-size:16px; color:#fff; line-height:30px; }

	.foot6_2 img{ width:80%; height: auto;}
	
	
	.lmdb_1{ padding-top:60px; }
	
	
}
@media( max-width:440px ){

.top2 h1{ font-size:21px;  margin-left:5px; }

.rdys2 ul li{height:250px; width:47%}


}






@media( max-width:405px ){

.header .logo img{ height:35px; margin-top:7px}
.top2 h1{ font-size:19px;  margin-left:5px; margin-top:12px }
.top2 p{ font-size:8px;  margin-left:7px; color:#2b2b2b; letter-spacing:1px}

	.top3{width:17%; height:auto; margin-top:-5px }

}

@media( max-width:350px ){

.header .logo img{ height:30px; margin-top:9px}
.top1{ width:80%}


}

@media( max-width:320px ){

.foot6_1 img{ width:90%; height: auto; }
.foot6_1 p{ font-size:15px; color:#fff; line-height:30px; }

.foot6_2{ width:100%; height: auto; margin-top:20px}
.foot6_2 img{ width:90%; height: auto;}

	.swiper-slide{width: 320px !important; height: 242px !important;}
}




/*===================== 响应式代码 END =====================*/