/* 通用样式 */
body {
    font-family:'微软雅黑', Arial, sans-serif; /* 设置字体 */
    margin: 0; /* 移除默认的边距 */
    padding: 0; /* 移除默认的内边距 */
    color: #333; /* 文字颜色 */
    background-color: #fff; /* 背景颜色 */
}
*{
	margin: 0; /* 移除默认的边距 */
	padding: 0; /* 移除默认的内边距 */
}

/* 链接样式 */
a {
    text-decoration: none; /* 移除下划线 */
}

a:hover {
  text-decoration: none;
}

/* 表单元素样式 */
input, textarea, button {
    font-family: inherit; /* 继承字体 */
    font-size: inherit; /* 继承字体大小 */
    padding: 10px; /* 内边距 */
    border: 1px solid #ccc; /* 边框 */
    border-radius: 4px; /* 边框圆角 */
}

/* 按钮样式 */
button {
    background-color: #007BFF; /* 背景颜色 */
    color: white; /* 文字颜色 */
    cursor: pointer; /* 光标类型 */
}
ul li,dd,dt
{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ol{
	padding-left: 20px;
	line-height: 1.8em;
}
/* 容器样式 */
.container {
    width: 1440px; /* 容器宽度 */
    margin: 0 auto; /* 水平居中 */
}
.container2{
    width: 1200px; /* 容器宽度 */
    margin: 0 auto; /* 水平居中 */
}
.pubMore a{
	display: block;
	width: 260px;
	height: 60px;
	text-align: center;
	line-height: 58px;
	border-radius: 30px;
	font-size: 24px;
	border: 2px solid #ffb444;
	color: #ffb444;
	box-sizing: border-box;
	transition: .3s;
	margin: 30px auto 0;
}
.pubMore a:hover{
	background-color: #ffb444;
	color: #fff;
}
.pubTitle{
	position: relative;
	height: 78px;
}
.pubTitle .pic{
	height: 78px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.pubTitle .pic img{
	height: 78px;
}
.pubTitle .pTitle{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 50px;
	color: #fff;
	line-height: 1em;
}
.pubTitle::after{
	display: block;
	content: "";
	width: 36px;
	height: 3px;
	background-color: #fff;
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
}
.myTitle .desc{
	font-size: 18px;
	color: #303133;
	text-align: center;
	margin-top: 40px;
	
}
.pubTitleB .pTitle{
	color: #303133;
}
.pubTitleB::after{
	background-color: #14429a;
}
.pub-sTitle .t{
	font-size: 26px;
	color: #303133;
}
.pub-sTitle .desc{
	font-size: 16px;
	color: #303133;
	line-height: 1.65em;
	max-width: 960px;
	margin-top: 16px;
}
.pub-sTitle .t::after{
	display: block;
	content: "";
	width: 50px;
	height: 2px;
	background-color: #003db3;
	margin-top: 16px;
}
.pub-sTitle-w .t{
	font-size: 26px;
	color: #fff;
}
.pub-sTitle-w .t::after{
	display: block;
	content: "";
	width: 50px;
	height: 2px;
	background-color: #fff;
	margin-top: 16px;
}
/************************************** 首页 **************************************/
.myHeader{
    width: 100%;
    height: 100px;
    /* background-color: pink;  */
    /* overflow: hidden; */
}
.myHeader .container{
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.myHeader .logo{
    width: 256px;
    height: 50px;
    overflow: hidden;
}
.myHeader .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.myHeader .navOut{
    display: flex;
}
.myHeader .fNav{
    padding: 0 10px;
}
.myHeader .fNav>a{
    position: relative;
    display: block;
    height: 100px;
    box-sizing: border-box;
    padding: 0 10px;
    color: #303133;
    line-height: 100px;
}
.myHeader .fNav>a::after{
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #003db5;
    left: 0;
    bottom: 0;
    transform: scale(0);
    transition: .3s;
}
.myHeader .fNav>a:hover,
.myHeader .fNav.on a{
    color: #003db5;
}
.myHeader .fNav>a:hover::after,
.myHeader .fNav.on a::after{
    transform: scale(1);
}
.myHeader .subMenu{
    z-index: 999;
    position: fixed;
    left: 0;
    width: 100vw;
    padding: 40px 0;
    background-color: rgba(255, 255, 255, .95);
    display: flex;
    justify-content: center;
    transform: scaleY(0);
    transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
    transform-origin: top;
    border-top: 1px solid #ececec;
    border-bottom: 2px solid #003db3;
}
}
.myHeader .subMenu .subNav{
    width: 25%;
}
.myHeader .subMenu .flexBox{
    width: 1440px;
    display: flex;
    flex-wrap: wrap;
    
}
.myHeader .subMenu .flexBox dl{
    width: 25%;
}
.myHeader .subMenu .subNav dt{
    position: relative;
    font-size: 20px;
    color: #303133;
    font-weight: 500;
    margin-bottom: 10px;
}
.myHeader .subMenu .subNav dt::before{
    position: absolute;
    top: 0;
    left: -14px;
    display: block;
    content: "";
    width: 4px;
    height: 25px;
    border-radius: 2px;
    background-color: #003db5;
}
.myHeader .subMenu .subNav dd a{
    font-size: 16px;
    color: #606266;
    line-height: 2.4em;
}
.myHeader .subMenu .subNav dd a:hover{
    color: #003db5;
}
.myHeader .fNav:hover .subMenu{
    transform:scale(1);
}
.myBanner{
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.myBanner .swiper{
    width: 100%;
    height: 600px;
}
.myBanner .swiper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 关于我们 */
.myAbout{
	/* padding: 54px 0 50px; */
	width: 100%;
	height: 700px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
.myAbout .aboutBox{
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
}
.myAbout .container{
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}
.myAbout .left {
	width: 650px;
}
.myAbout .left .cName{
	font-size: 28px;
	color: #14429a;
}
.myAbout .left .slogan{
	font-size: 22px;
	color: #14429a;
	margin-top: 16px;
}
.myAbout .left p{
	font-size: 16px;
	color: #303133;
	margin: 26px 0;
	line-height: 1.5em;
}
.myAbout .left .bottom{
	font-size: 16px;
	color: #303133;
	display: flex;
	justify-content: space-between;
}
.myAbout .left .bottom span{
	font-size: 50px;
	color: #14429a;
}
/* 产品中心 */
.myProduct{
	width: 100%;
	height: 940px;
	background: url(../images/li.png) no-repeat center;
	background-size: 103%;
	padding-top: 70px;
	box-sizing: border-box;
}
.myProduct .container{
	background-color: #fff;
	height: 660px;
	margin-top: 56px;
	display: flex;
}
.myProduct .left{
	width: 330px;
	height: 660px;
	background-color: #e9edf6;
}
.myProduct .left .top{
	width: 330px;
	height: 130px;
	background-color: #2148a3;
	background-image: url(../images/product-top.jpg);
	padding: 30px;
	box-sizing: border-box;
}
.myProduct .left .top .t{
	font-size: 28px;
	color: #fff;
}
.myProduct .left .top .d{
	font-size: 20px;
	color: #fff;
	margin-top: 8px;
}
.myProduct .left .swiper-wrapper{
	width: 330px;
	height: 40px;
	margin-top: 36px;
	padding-left: 24px;
}
.myProduct .left .swiper-slide{
	width: 250px;
	height: 40px;
	border-radius: 20px;
	background-color: #fff;
	line-height: 40px;
	padding-left: 38px;
	cursor: pointer;
	transition: .5s;
}
.myProduct .left .swiper-slide:hover,
.myProduct .left .swiper-slide-thumb-active
{
	background-color: #244da9;
	color: #fff;
}
.myProduct .left .txt{
	position: relative;
}
.myProduct .left span{
	font-family: '宋体';
	font-weight: 600;
	opacity: 0;
	position: absolute;
	left:0;
	transition: .5s;
}
.myProduct .left .swiper-slide:hover span,
.myProduct .left .swiper-slide-thumb-active span
{
	left: 210px;
	opacity: 1;
}
.myProduct .rightCon{
	width: 1110px;
	height: 660px;
	overflow: hidden;
}
.myProduct .rightCon .swiper-wrapper{
	width: 1110px;
	height: 660px;
	/* overflow: hidden; */
}
.myProduct .rightCon .swiper-slide{
	box-sizing: border-box;
	background-color: #fff;
}
.myProduct .rightCon .membrane{
	width: 1110px;
	height: 660px;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
}
.myProduct .rightCon .membrane .item{
	position: relative;
	width: 555px;
	height: 330px;
	box-sizing: border-box;
	overflow: hidden;
}
.myProduct .rightCon .membrane .item:nth-child(1){
	border-right: 1px solid #d3d3d3;
	border-bottom: 1px solid #d3d3d3;
}
.myProduct .rightCon .membrane .item:nth-child(2){
	border-bottom: 1px solid #d3d3d3;
}
.myProduct .rightCon .membrane .item:nth-child(3){
	border-right: 1px solid #d3d3d3;
}

.myProduct .rightCon .membrane img{
	width: 555px;
	height: 330px;
	object-fit: contain;
	/* position: absolute; */
	left: 0;
	top: 0;
}
.myProduct .rightCon .membrane .text{
	position: absolute;
	bottom: 0;
	padding-left: 20px;
}
.myProduct .rightCon .membrane .t{
	font-size: 28px;
	color: #303133;
}
.myProduct .rightCon .membrane .d{
	font-size: 20px;
	color: #303133;
	margin: 16px 0;
}
.myApplication{
	/* 应用领域 */
	width: 100%;
	padding: 80px 0;
	box-sizing: border-box;
	background-color: #f6f8ff;
}
.myApplication .container{
	margin-top: 56px;
}
.myApplication .conBox{
	width: 1440px;
	height: 540px;
	overflow: hidden;
	background-color: #2d50a2;
}
.myApplication .conBox .swiper-container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
.myApplication .conBox .swiper-slide {
	background-size: cover;
	background-position: center;
}
.myApplication .conBox .content{
	position: absolute;
	left: 105px;
	top: 54px;
}
.myApplication .conBox .title{
	font-size: 24px;
	color: #303133;
	font-weight: 500;
}
.myApplication .conBox .line{
	width: 50px;
	height: 3px;
	background-color: #2d50a2;
	border-radius: 2px;
	margin: 10px 0 30px;
}
.myApplication .conBox .text{
	font-size: 18px;
	color: #303133;
	line-height: 2em;
}
.myApplication .conBox a{
	margin-top: 38px;
	display: block;
	width: 200px;
	height: 44px;
	border-radius: 23px;
	background-color: #fff;
	border: 1px solid #2d50a2;
	text-align: center;
	line-height: 44px;
	font-size: 18px;
	color: #303133;
	transition: .3s;
}
.myApplication .conBox a:hover{
	background-color: #2d50a2;
	color: #fff;
}
.myApplication .btnBox{
	width: 1440px;
	height: 160px;
	/* overflow: hidden; */
	background-color: #fff;
}
.myApplication .btnBox .slide{
	position: relative;
	z-index: 200;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.myApplication .btnBox .icon{
	height: 48px;
	overflow: hidden;
	margin-top: 35px;
}
.myApplication .btnBox .txt{
	font-size: 24px;
	color: #303133;
	text-align: center;
	margin-top: 20px;
}
.myApplication .btnBox .swiper-container {
	width: 100%;
	height: 160px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
.myApplication .btnBox .swiper-slide {
	background-size: cover;
	background-position: center;
	border-right: 1px solid #e2e2e2;
	box-sizing: border-box;
	cursor: pointer;
}
.myApplication .btnBox .swiper-slide:last-child{
	border-right: 0;
}
.myApplication .btnBox .swiper-slide.swiper-slide-thumb-active .txt{
	color: #fff;
} 
.myApplication .btnBox .swiper-slide.swiper-slide-thumb-active .icon img{
	filter: brightness(0) invert(1);
} 
.myApplication .btnBox .swiper-slide.swiper-slide-thumb-active::before {
    height: 200px;
}
.myApplication .btnBox .swiper-slide:before {
    width: 100%;
    height: 0;
    background: #2d50a2;
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    transition: all 0.5s;
}
.myLaboratory{
	/* 实验室 */
	width: 100%;
	background: url(../images/li.png) no-repeat center;
	background-color: #f6f8ff;
	padding: 80px  0;
	box-sizing: border-box;
}
.myLaboratory .container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 70px;
}
.myLaboratory .item{
	width: 464px;
	height: 228px;
	background-color: #fff;
	padding: 28px 20px 0 20px;
	box-sizing: border-box;
	margin-bottom: 24px;
}
.myLaboratory .item:nth-child(1){
	background: url(../images/lar1.jpg) no-repeat right top;
}
.myLaboratory .item:nth-child(2){
	background: url(../images/lar2.jpg) no-repeat right top;
}
.myLaboratory .item:nth-child(3){
	background: url(../images/lar3.jpg) no-repeat right top;
}
.myLaboratory .item:nth-child(4){
	width: 708px;
	background: url(../images/lar4.jpg) no-repeat right top;
}
.myLaboratory .item:nth-child(5){
	width: 708px;
	background: url(../images/lar5.jpg) no-repeat right top;
}
.myLaboratory .item .title{
	font-size: 24px;
	color: #2d50a2;
}
.myLaboratory .item .text{
	font-size: 16px;
	color: #606266;
	line-height: 1.6em;
	margin-top: 30px;
}
.myCases{
	/* 工程案例 */
	width: 100%;
	background-color: #f6f8ff;
	padding: 70px 0;
}
.ceselist.myCases .container{
		margin-top: 0px;

}
.myCases .container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 60px;
}
.myCases .item{
	position: relative;
	width: 464px;
	height: 464px;
	border: 1px solid #243c75;
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 24px;
}
.myCases .item .pic{
	width: 464px;
	height: 464px;
	overflow: hidden;
}
.myCases .item .pic img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: 0.5s;
}
.myCases .item .caseTitle{
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 80px;
	background-color: rgba(0, 53, 181, 0.88);
	font-size: 20px;
	color: #fff;
	text-align: center;
}
.myCases .item:hover img{
	transform: scale(1.1);
}
.myNews{
	/* 资讯动态 */
	padding: 80px 0 70px;
}
.myNews .outBox{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 60px;
}
.myNews .item{
	position: relative;
	width: 710px;
	background-color: #f6f8ff;
	padding: 44px 25px 36px;
	box-sizing: border-box;
	margin-bottom: 22px;
}
.myNews .item .flag{
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 40px;
	background-color: #2d50a2;
	color: #fff;
	line-height: 40px;
	text-align: center;
	border-radius: 0 0 0 16px;
}
.myNews .item.sign .flag{
	background-color: #ffb444;
}
.myNews .item .time{
	font-size: 14px;
	color: #606266;
	margin: 10px 0 25px;
}
.myNews .item .desc{
	font-size: 16px;
	color: #606266;
	line-height: 1.5em;
}
.myNews .item .title{
	font-size: 18px;
	color: #303133;
}
.myNews .item:hover .title{
	color: #003db5;
}
.myCustomer{
	/* 合作客户 */
	width: 100%;
	padding: 50px 0;
	background-color: #f6f8ff;
}
	
.myCustomer .container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 60px;
}
.myCustomer .item{
	width: 220px;
	height: 100px;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 18px;
	background-color: #fff;
}
.myCustomer .item img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	transform: scale(0.9);
	transition: .5s;
}
.myCustomer .item:hover img{
	transform: scale(1);
}
.myContact{
	/* 联系信息 */
	background-color: #2d50a2;
	padding: 80px 0;
}
.myContact2.myContact{
	/* 联系信息 */
	background-color: #f6f8ff;

	padding: 0 0 60px;
	overflow: hidden;
}
.myContact .container{
	margin-top: 60px;
	padding: 50px;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	background-color: #f6f8ff;
}
.myContact.myContact2 .container{
	background-color: #fff;
}
.myContact .cName{
	font-size: 30px;
	color: #2d50a2;
	margin-bottom: 40px;
	
}
.myContact .text{
	font-size: 22px;
	color: #303133;
	margin: 15px 0;
	
}.myContact .wechat{
	display: flex;
	margin-top: 50px;
}
.myContact .wechat .item{
	margin-right: 36px;
}
.myContact .wechat .pic{
	width: 134px;
	height: 134px;
	border-radius: 5px;
	border: 1px solid #dddddd;
	overflow: hidden;	
}
.myContact .wechat p{
	font-size: 16px;
	color: #303133;
	text-align: center;
	margin: 10px 0;
}
.myContact .map{
	width: 705px;
	height: 440px;
	border-radius: 20px;
	border: 1px solid #003db5;
	overflow: hidden;
}
.myFooter{
	width: 100%;
	background-color: #2d50a2;
	border-top: 1px solid #1e3f8c;
	padding: 30px 0 ;
}
.myFooter .container{
	display: flex;
	justify-content: space-between;
}
.myFooter .left{
	display: flex;
}
.myFooter dd{
	margin-right: 160px;
}
.myFooter dt{
	font-size: 24px;
	color: #fff;
	margin-bottom: 14px;
}
.myFooter dd a{
	font-size: 16px;
	color: #dcdcdc;
	line-height: 1.8em;
}
.myFooter dd a:hover{
	color: #fff;
}
.myFooter .right,.myFooter .right a{
	color: #fff;
}
.myFooter .name{
	font-size: 32px;
	font-weight: 500;
	margin: 33px 0 10px;
}
.myFooter .slogan{
	fong-font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
}


/* *********************************************膜元件********************************************* */
.moBanner{
	width: 100%;
	height: 600px;
	/* background-color: #eaf0ff; */
	position: relative;
	/* padding: 40px 0 50px; */
}
.moBanner .container2{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 600px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.moBanner .title{
	font-size: 32px;
	color: #303133;
}
.moBanner .desc{
	font-size: 18px;
	color: #303133;
	width: 710px;
	margin-top: 50px;
	line-height: 1.65em;
}
.parameter{
	padding-top: 40px;
}
.parameter .conent{
	margin-top: 42px;
}
.parameter .conent li{
	display: flex;
	font-size: 16px;
	color: #303133;
	height: 46px;
	line-height: 46px;
	border-bottom: 1px solid #cacaca;
}
.parameter .conent .pname{
	width: 176px;
	text-align: right;
	margin-right: 40px;
}

.sMo{
	width: 100%;
	background-color: #2d50a2;
	margin-top: 70px;
	padding: 50px 0 70px;
	
}
.sMo .content{
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}
.sMo .content .item{
	width: 370px;
	height: 290px;
	border-radius: 5px;
	background-color: #fff;
	overflow: hidden;
}
.sMo .content .item .t{
	font-size: 20px;
	color: #303133;
	text-align: center;
	margin-top: 30px;
}
.sMo .content .item .d{
	font-size: 16px;
	color: #606266;
	line-height: 1.65em;
	padding: 28px 24px 0;
}
.principle{
	padding: 60px 0 20px;
}
.principle .gif{
	position: relative;
	width: 850px;
	height: 250px;
	overflow: hidden;
	margin: 60px auto 0;
}
.principle .tao-gif{
	position: relative;
	width: 800px;
	height: 300px;
	margin: 0 auto;
	
}
.principle .tao-gif img{
	width: 100%;
	position: absolute;
	top: -100px;
}
.principle .zk-gif{
	width: 800px;
	margin: 0 auto;
	
}
.principle .zk-gif img{
	width: 100%;

}
.principle .gif img{
	width: 980px;
	position: absolute;
	top: -175px;
	left: -85px;
}
.principle .advantage{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}
.principle .advantage .item{
	width: 32%;
	border: 1px solid #2d50a2;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 5px;
	margin-bottom: 24px;
}
.principle .advantage .t{
	font-size: 18px;
	font-weight: 500;
	color: #303133;
}
.principle .advantage .d{
	font-size: 16px;
	color: #606266;
	margin-top: 16px;
}
.ztApplication{
	width:100%;
	padding: 40px 0 0;
	color: #fff;
}
.ztApplication .content {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	flex-wrap: wrap;
	color: #303133;
}
.ztApplication .content .item{
	width: 32%;
	box-sizing: border-box;
	border-radius: 5px;
	/* border: 1px solid #eaf0ff; */
	padding: 20px 10px 20px;
	text-align: center;
	margin-bottom: 16px;
	background-color: #eaf0ff;
}
.ztApplication .content.con-4 .item{
	width: 24%;
	height: 200px;
	box-sizing: border-box;
	border-radius: 5px;
	/* border: 1px solid #eaf0ff; */
	padding: 20px 10px 0;
	text-align: center;
	background-color: #eaf0ff;
}
.ztApplication .content .icon img{
	height: 34px;
}
.ztApplication .content .title{
	font-size: 18px;
	margin: 16px 0 20px;
}
.EList{
	padding: 60px 0 40px;
}
.EList .content{
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.EList .content .item{
	position: relative;
	width: 32%;
	height: 440px;
	overflow: hidden;
	border: 1px solid #fff;
	margin-bottom: 18px;
}
.EList .content .item:hover{
	border-color: #003db3;
}
.EList .pic{
	width: 100%px;
	height: 338px;
	border: 1px solid #003db3;
	overflow: hidden;
}
.EList .pic img{
	width:100%;
	height: 100%;
	object-fit: contain;
}
.EList .content .text{
	position: absolute;
	padding: 16px 20px;
	width: 100%;
	height: 440px;
	box-sizing: border-box;
	background-color: rgba(255, 2555, 255, 0.9);
	transition: .6s;
	top: 340px;
}
.EList .content .item:hover .text{
	top: 0;
}
.EList .content .model{
	font-size: 22px;
	color: #303133;
}
.EList .content .name{
	font-size: 16px;
	color: #606266;
	margin-top: 6px;
}
.EList .content .txt{
	margin-top: 20px;
}
.EList .content li{
	display: flex;
	line-height: 30px;
	font-size: 16px;
	color: #606266;
}
.EList .content li p{
	flex: 1;
	padding-left: 5px;
}
.EList .content li p:first-child{
	text-align: right;
}
.EList .content .item .more,
.appRList.EList .more{
	display: block;
	width: 180px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid #2d50a2;
	color: #2d50a2;
	text-align: center;
	line-height: 40px;
	margin: 30px auto 0;
}
.EList .content .item .more:hover,
.appRList.EList .more:hover{
	background-color: #2d50a2;
	color: #fff;
}



/* *****************************************************设备页面***************************************************** */
.GmBanner{
	width: 100%;
	height: 600px;
	overflow: hidden;
}
.GmBanner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.scale{
	padding-top: 60px;
}
.scale .content{
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.scale .item{
	position: relative;
	width: 460px;
	height: 360px;
	border-radius: 6px;
	border: 1px solid #003db3;
	overflow: hidden;
}
.scale .item .text{
	position: absolute;
	top: 290px;
	width: 460px;
	height: 360px;
	background-color: rgba(53, 85, 160, 0.94);
	color: #fff;
	text-align: center;
	transition: .5s;
}

.scale .item:hover .text{
	top: 0;
}
.scale .item .text .title{
	font-size: 26px;
	line-height: 70px;
}
.scale .item .text .txt{
	text-align: left;
	padding: 20px 30px 0;
	font-size: 18px;
	line-height: 1.65em;
}
.scale .item .text .more{
	position: absolute;
	display: block;
	width: 150px;
	height: 36px;
	border-radius: 19px;
	border: 1px solid #ffb444;
	color: #ffb444;
	text-align: center;
	line-height: 38px;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
}
.scale .item .text .more:hover{
	background-color: #ffb444;
	color: #fff;
}
.GmAdvantage{
	margin-top: 50px;
	padding: 50px 0;
	background-color: #eaf0ff;
}
.GmAdvantage .content{
	position: relative;
	width: 1440px;
	height: 840px;
	margin-top: 70px;
}
.GmAdvantage .content .pic{
	position: absolute;
	top: 0;
	left: 0;
}
.GmAdvantage .circle{
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #ffb444;
	animation: blink3d 1.8s infinite;
}
@keyframes blink3d {
	0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4), 0 0 0 0 rgba(255, 0, 0, 0.4); }
	70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0), 0 0 0 20px rgba(255, 0, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0), 0 0 0 0 rgba(255, 0, 0, 0); }
}
.GmAdvantage .flag{
	position: absolute;
	display: flex;
	width: 470px;
	align-items: center;
	transform: translateY(-50%);
}
.GmAdvantage .flag .text{
	position: absolute;
	padding: 20px;
	width: 400px;
	box-sizing: border-box;
	background-color: #fff;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}
.GmAdvantage .flag .text .t{
	font-size: 24px;
	color: #303133;
}
.GmAdvantage .flag .text .d{
	font-size: 16px;
	color: #606266;
	margin-top: 10px;
}
.GmAdvantage .flag-f{
	justify-content:flex-start;
}
.GmAdvantage .flag-f .text{
	left: 50px;
	position: relative;
}
.GmAdvantage .flag-f .text:before{
	position: absolute;
	left:-10px ;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-top: 6px solid transparent; /* 左边框 */
	border-bottom: 6px solid transparent; /* 右边框 */
	border-right: 10px solid #fff; /* 底部边框，颜色和大小决定三角形大小和颜色 */
}
.GmAdvantage .flag-r {
	justify-content:flex-end;
}
.GmAdvantage .flag-r .text{
	right: 50px;
	text-align: right;
}
.GmAdvantage .flag-r .text::after{
	position: absolute;
	right:-10px ;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-top: 6px solid transparent; /* 左边框 */
	border-bottom: 6px solid transparent; /* 右边框 */
	border-left: 10px solid #fff; /* 底部边框，颜色和大小决定三角形大小和颜色 */
}
.GmAdvantage .flag.flag1{
	top: 95px;
	left: 950px;
}
.GmAdvantage .flag.flag2{
	top: 650px;
	left: 850px;
}
.GmAdvantage .flag.flag3{
	top: 95px;
	left: 40px;
}
.GmAdvantage .flag.flag4{
	top: 300px;
	left: 620px;
}
.GmAdvantage .flag.flag5{
	top: 380px;
	left: 0;
}
.GmAdvantage .flag.flag6{
	top: 670px;
	left: 180px;
}
.GmAdvantage .flag.flag2 .circle {
  animation-delay: .4s; /* 延迟2秒开始 */
}
.GmAdvantage .flag.flag3 .circle {
  animation-delay: .8s; /* 延迟2秒开始 */
}
.GmAdvantage .flag.flag4 .circle {
  animation-delay: 1.2s; /* 延迟2秒开始 */
}
.GmAdvantage .flag.flag5 .circle {
  animation-delay: 1.6s; /* 延迟2秒开始 */
}
.GmAdvantage .flag.flag56.circle {
  animation-delay: 1s; /* 延迟2秒开始 */
}


/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 产品详情页 *******************************************/
.detialBody{
	background-color: #f6f8ff;
}
.deBanner{
	width: 100%;
	height: 300px;
	background: url(../images/detial-pic.png) no-repeat center;
	position: relative;
}
.deBanner .container{
	height: 90px;
	background-color: #fff;
	border-left: 3px solid #003db3;
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	line-height: 90px;
	padding-left: 22px;
	font-size: 18px;
	color:#303133 ;
}
.deBanner .container a{
	font-size: 18px;
	color:#303133 ;
}
.deBanner .container a:hover{
	color: #003db3;
}
.deCard1{
	height: 750px;
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding: 20px;
	box-sizing: border-box;
	background-color: #fff;
}
.deSwiper{
	width: 580px;
	overflow: hidden;
	/* height: 580px; */
}
.deSwiper .swiper {
	width: 580px;
	height: 580px;
	border: 1px solid #eaf0ff;
	overflow: hidden;
	box-sizing: border-box;
}
.deSwiper .swiper .mypic{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.deSwiper .mypic img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#thumbs{
	margin-top: 16px;
}
#thumbs .mypic{
	width: 100%;
	height: 100%;
	/* overflow: hidden; */
	cursor: pointer;
	border: 1px solid #eaf0ff;
	box-sizing: border-box;
}
#thumbs .mypic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#thumbs .swiper-slide.swiper-slide-thumb-active{
	border: 1px solid #0122ad;
}
.deCard1 .deText{
	width: 760px;
}
.deCard1 .deText .name{
	position: relative;
	height: 58px;
	border-bottom: 1px solid #eaf0ff;
}
.deCard1 .deText .name::after{
	position: absolute;
	bottom: 0;
	display:block;
	content: "";
	width: 220px;
	height: 2px;
	background-color: #0122ad;
}
.deCard1 .deText .cname{
	font-size: 28px;
	color: #303133;
}
.deCard1 .deText .gname{
	font-size: 22px;
	color: #606266;
	padding-left: 24px;
}
.deCard1 .deText .desc{
	width: 100%;
	height: 80px;
	background-color: #eaf0ff;
	border-radius: 3px;
	padding: 0 16px;
	box-sizing: border-box;
	line-height: 1.75em;
	margin-top: 20px;
	display: flex;
	align-items: center;
	color: #606266;
}
.deCard1 .deText .dpar{
	margin-top: 20px;
}
.deCard1 .deText .item{
	font-size: 20px;
	color: #303133;
	display: flex;
	width: 760px;
	height: 48px;
	line-height: 48px;
	margin-bottom: 2px;
}
.deCard1 .deText .pname{
	width: 195px;
	background-color: #eaf0ff;
	padding-left: 24px;
	box-sizing: border-box;

}
.deCard1 .deText .ptext{
	flex: 1;
	padding-left: 32px;
	border: 1px solid #eaf0ff;

}
.deCard1 .online a{
	display: block;
	width: 738px;
	height: 66px;
	border-radius: 33px;
	background-color: #2d50a2;
	color: #fff;
	line-height: 66px;
	text-align: center;
	margin: 36px auto 0;
}
.deCard1 .online a:hover{
	background-color: #0122ad;
}
.deContainer{
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.deContainer .left{
	width: 1008px;
	background-color: #fff;
	padding: 20px;
	box-sizing: border-box;
}
.deContainer .left .item{
	margin-bottom: 36px;
}
.deContainer .left .conTitle{
	font-size: 24px;
	color: #303133;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eaf0ff;
	padding-bottom: 20px;
}
.deContainer .left .conTitle:before{
	display: block;
	content: "";
	width: 3px;
	height: 30px;
	background-color: #003db3;
	margin-right: 16px;
}
.deContainer .left .conText{
	padding: 0 19px;
	margin-top: 18px;
	font-size: 16px;
	color: #303133;
	line-height: 1.7em;
}
.deContainer .right{
	width: 410px;
	background-color: #fff;
}
 .deContainer .EList{
	 padding: 0 0 20px;
 }
  .deContainer .EList .content{
	  margin: 0;
  }
 .deContainer .EList .content .item{
	width: 92%;
	margin: 15px auto;
}
.ceseDetial{
	/*background-color: #fff;*/
}
.deContainer .right .mob-title,
.ceseDetial .EList .mob-title{
	width: 100%;
	height: 120px;
	background-color: #2d50a2;
	color: #fff;
	line-height: 120px;
	text-align: center;
	font-size: 24px;
}
.deContainer .right .more{
	display: block;
	width: 210px;
	height: 50px;
	border-radius: 25px;
	border: 1px solid #0122ad;
	color: #0122ad;
	line-height: 50px;
	text-align: center;
	margin: 20px auto 0;
	background-color: #fff;
}
.deContainer .right .more:hover{
	background-color: #003db3;
	color:#fff;
}

/* 列表页 */
.listContainer{
	display: flex;
	margin-top: 50px;
}
.listContainer .leftMenu{
	width: 300px;
	/* height: 500px; */
	/* background-color: pink; */
	margin-right: 40px;
}
.menu-container {
    max-width: 300px;
    margin: 0 auto;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.menu {
    list-style: none;
}

.menu-item {
    border-bottom: 1px solid #eee;
    position: relative;
	
}
.menu-item  .menu-link.active{
	color: #003db3;
}
.menu-item:last-child {
    border-bottom: none;
}

.menu-link {
    display: flex;
    align-items: center;
    /* padding: 1rem 1.5rem; */
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
	padding: 16px;
}

.menu-link:hover {
    background: #f8f9fa;
}

.menu-link i {
    margin-right: 12px;
    color: #666;
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8f9fa;
}

.submenu.active {
    max-height: 500px; /* 根据实际内容调整 */
}

.submenu .menu-link {
    padding-left: 40px;
}

.arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
	transform: rotate(90deg);
	font-family: '宋体';
	font-size: 20px;
	font-weight: 600;
}

.arrow.active {
    transform: rotate(270deg);
}
.listContainer{
	margin-bottom: 40px;
}
.listContainer .rightCon{
	flex: 1;
	/* height: 1000px; */
	background-color: #fff;
	border-radius: 5px;
	padding: 20px;
	
}
.listContainer .rightCon .top{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #ececec;
	padding-bottom: 20px;
}
.listContainer .rightCon .cname{
	font-size: 20px;
	color: #303133;
	border-left: 3px solid #003db3;
	padding-left: 8px;
	font-weight: 550;
}
.listContainer .rightCon .csize a{
	font-size: 18px;
	color: #303133;
	padding: 0 30px;
	border-left: 1px solid #e0e0e0;
}
.listContainer .rightCon .csize a:first-child{
	border: 0;
}
.listContainer .rightCon .csize a.active{
	color: #003db3;
}
.listContainer .content {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	margin-top: 24px;
}
.listContainer .content .item{
	position: relative;
	width: 32%;
	height: 440px;
	overflow: hidden;
	border: 1px solid #fff;
	margin-bottom: 18px;
}
.listContainer .content .item:not(:nth-child(3n)) {
    margin-right: 18px;
}
.listContainer .content .item:hover{
	border-color: #003db3;
}
.listContainer .pic{
	width: 100%px;
	height: 338px;
	border: 1px solid #003db3;
	overflow: hidden;
}
.listContainer .pic img{
	width:100%;
	height: 100%;
	object-fit: contain;
}
.listContainer .content .text{
	position: absolute;
	padding: 16px 20px;
	width: 100%;
	height: 440px;
	box-sizing: border-box;
	background-color: rgba(255, 2555, 255, 0.9);
	transition: .6s;
	top: 340px;
}
.listContainer .content .item:hover .text{
	top: 0;
}
.listContainer .content .model{
	font-size: 22px;
	color: #303133;
}
.listContainer .content .name{
	font-size: 16px;
	color: #606266;
	margin-top: 6px;
}
.listContainer .content .txt{
	margin-top: 20px;
}
.listContainer .content li{
	display: flex;
	line-height: 30px;
	font-size: 16px;
	color: #606266;
}
.listContainer .content li p:nth-child(2){
	width: 55%;
	padding-left: 3px;
}
.listContainer .content li p:first-child{
	text-align: right;
	width: 45%;
}
.listContainer .content .item .more{
	display: block;
	width: 180px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid #2d50a2;
	color: #2d50a2;
	text-align: center;
	line-height: 40px;
	margin: 30px auto 0;
}
.listContainer .content .item .more:hover{
	background-color: #2d50a2;
	color: #fff;
}


/* 分页 */
.page_info,.page_list{
	text-align: center;
}
.page_list a{
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 3px;
	border: 1px solid rgb(201, 201, 201);
	color: #303133;
	text-align: center;
	line-height: 30px;
	font-family: '宋体';
	margin: 0 6px;
	
}
.page_list a.on{
	color: #003db3;
	border-color: #003db3;
}
/* 工程案例详情 */
.ceseDetial{
	display: flex;
	justify-content: space-between;
	margin: 20px auto;
}
.ceseDetial .leftContent{
	flex: 1;
	background-color: #fff;
}
.ceseDetial .leftContent .title{
	font-size: 20px;
	color: #303133;
	padding-left: 24px;
	line-height: 50px;
	border-bottom: 1px solid #ececec;
}
.ceseDetial .leftContent  .text{
	padding: 20px 24px;
	line-height: 1.7em;
	color: #606266;
}
.ceseDetial .leftContent  .text p{
	padding: 4px 0;
}
.ceseDetial .leftContent  img{
	width: 100%;
	height: auto;
}
.ceseDetial .recomd{
	width: 420px;
	margin-left: 24px;
	background-color: #fff;
	padding: 0;

	padding-bottom: 24px;
}
.ceseDetial .recomd .mob-title{
	width: 100%;
	height: 80px;
	background-color: #003db3;
	color: #fff;
	line-height: 80px;
	text-align: center;
}
.ceseDetial .recomd .item{
	position: relative;
	width: 380px;
	height: 380px;
	margin:  20px auto;
	border: 1px solid #243c75;
	border-radius: 3px;
	overflow: hidden;
}
.ceseDetial .recomd .pic{
	width: 380px;
	height: 380px;
	overflow: hidden;
}
.ceseDetial .recomd .pic img{
	width: 380px;
	height: 380px;
	transition: 0.3s;
}
.ceseDetial .recomd .item .caseTitle{
	position: absolute;
	width: 100%;
	height: 40px;
	bottom: 0;
	height: 80px;
	background-color: rgba(36, 60, 117, 0.88);
	font-size: 20px;
	color: #fff;
	text-align: center;
	line-height: 80px;
}
.ceseDetial .recomd .item:hover img{
	transform: scale(1.1);
}
.ceseDetial .recomd  .more{
	display: block;
	width: 180px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid #2d50a2;
	color: #2d50a2;
	text-align: center;
	line-height: 40px;
	margin: 30px auto 0;
}
.ceseDetial .recomd  .more:hover{
	background-color: #2d50a2;
	color: #fff;
}
.applicaList .appliTtilte{
	font-size:20px ;
	color: #303133;
}
.applicaList .desc{
	font-size: 16px;
	color: #606266;
	padding: 16px 0;
}
.applicaList .goDetial{
	font-size: 16px;
	color: #0d50d6;
}
.applicaList  .appItem{
	padding-bottom: 20px;
	border-bottom: 1px solid #dbdbdb;
	margin-bottom: 20px;
}
.appRList.EList.right{
	padding: 0;
	width: 420px;
	margin-left: 24px;
	background-color: #fff;
	padding-bottom: 24px;
}
.appRList.EList .content .item{
	width: 90%;
	margin: 0 auto;
}
#news_container{
    width: 1100px;
	margin:  0 auto;
    
}
/*#news_container .leftContent .text{*/
/*	width: 1080px;*/
/*	margin:  0 auto;*/
/*}*/
#news_container img{
	max-width: 100%;
	padding: 5px 0;
}
#appcontent .text{
    color: #444;
    
}
#appcontent img{
    max-width: 100%;
    height: auto;
}
.MsoNormal{
    font-family: '微软雅黑';
    font-size: 16px;
    color: #303133;
    line-height:1.5em;
    margin: 15px 0;
}

/*技术服务*/
.serContainer{
    width: 1200px;
    margin: 24px auto;
    background-color: #fff;
    padding: 32px;
    box-sizing: border-box;
}
.serContainer .title{
    font-size: 22px;
    color: #303133;
    border-bottom: 1px solid #ececec;
    padding-bottom: 16px;
    
}
.serContainer .text{
    font-size: 16px;
    color: #606266;
    padding-top: 20px;
}
#s-subMenu{
    width: 150px;
    position: absolute;
}
.serfNav{
    position: relative;
}
.myHeader #s-subMenu{
    padding: 14px 0 ; 
}
#s-subMenu a{
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #303133;

}
#s-subMenu a:hover{
    color: #003db5;
}
.disable-selection {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;  /* 禁止长按菜单 */
}
