/* ====移动端导航==== */
/* 按钮 */
.mobmenu {
	display: none;
	margin-left: .4rem;
	position: relative;
}

.mobmenu dl {
	width: 30px;
	margin-right: 10px;
	cursor: pointer;
}

.mobmenu dl dd {
	width: 0;
	height: 2px;
	background: #fff;
}

.mobmenu dl dd:first-child {
	animation: sjnav 2.4s linear infinite;
}

.mobmenu dl dd:nth-child(2) {
	margin: 6px 0;
	width: 20px;
}

.mobmenu dl dd:last-child {
	animation: sjnav 2.4s linear infinite;
	animation-delay: 0.4s;
}

/* 导航头 */
.mobmenu h4 {
	color: #fff;
}

.mobmask {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	width: 100%;
	height: 100vh;
	background: rgba(7, 16, 26, 0.8);
	transition: all 0.5s;
	visibility: hidden;
	opacity: 0;
	transition-delay: 0.2s;
}

.mobmask.active {
	opacity: 1;
	visibility: visible;
}

.mobnavBox {
	padding-bottom: 20px;
	width: 60%;
	height: 100vh;
	position: fixed;
	z-index: 100;
	top: 0;
	left: -50%;
	overflow-y: auto;
	opacity: 0;
	transition: all 0.3s;
	background: #fff;
	visibility: hidden;
}

.mobnavBox.active {
	transition-delay: 0.3s;
	opacity: 1;
	left: 0;
	visibility: visible;
}

.mobCon {
	padding: 0 20px;
}

.mobnavBox .top {
	padding: 10px 20px;
	height: .8rem;
	min-height: 80px;
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #fff;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);
}

.mobnavBox .top .logo {
	max-width: 3rem;
	height: 100%;
	display: flex;
	align-items: center;
}

.mobnavBox .top .logo img {
	max-width: 100%;
	max-height: 100%;
}

.mobnavBox .top .mobnavclose {
	width: 30px;
	height: 30px;
	position: relative;
	cursor: pointer;
}

.mobnavBox .top .mobnavclose:before,
.mobnavBox .top .mobnavclose:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: #333;
	border-radius: 1px;
}

.mobnavBox .top .mobnavclose:before {
	width: 20px;
	height: 2px;
	transform: translate(-50%, -50%) rotate(45deg);
}

.mobnavBox .top .mobnavclose:after {
	width: 2px;
	height: 20px;
	transform: translate(-50%, -50%) rotate(225deg);
}

/* 导航搜索 */
/* version1.0 */
.mobsearch {
	margin-top: 30px;
}

.mobsearch form {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobsearch form input {
	width: calc(100% - 52px);
	line-height: 40px;
	border: 1px solid #eee;
	border-radius: 2px;
	padding: 0 12px;
	font-size: var(--font14);
	color: #333;
}

.mobsearch form button {
	width: 42px;
	height: 42px;
	background: #005bac;
	color: #333;
	border-radius: 2px;
	font-size: 14px;
	border: 0;
	cursor: pointer;
}

.mobsearch form button img {
	filter: brightness(100);
	-webkit-filter: brightness(100);
}

/* version2.0 */
.mobnavBox .form {
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	margin-bottom: 0.34rem;
	margin-top: 0.5rem;
}

.mobnavBox .form .f_sub,
.mobnavBox .form .tx {
	height: 1rem;
}

.mobnavBox .form .int {
	display: flex;
	align-items: center;
	width: calc(100% - 2.5rem);
	padding: 0 0.45rem;
}

@media (max-width: 767px) {
	.mobnavBox .form .int {
		width: calc(100% - 1.5rem);
	}
}

.mobnavBox .form .int i {
	width: 0.38rem;
	display: block;
	overflow: hidden;
}

.mobnavBox .form .int i svg {
	float: left;
	width: 100%;
}

.mobnavBox .form .int .tx {
	width: calc(100% - 0.38rem);
	padding: 0.2rem 0.44rem;
	font-size: var(--font24);
}

@media (max-width: 767px) {
	.mobnavBox .form .int .tx {
		padding: 0.2rem 0.3rem;
	}
}

.mobnavBox .form .f_sub {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	color: #fff;
	background-color: #005bac;
	cursor: pointer;
	font-size: var(--font24);
}

@media (max-width: 767px) {
	.mobnavBox .form .f_sub {
		width: 1.5rem;
		font-size: 0.28rem;
	}
}

/* 导航内容 */
.mobnavBox .bottom {
	padding: 6px 0;
}

.mobnavBox .bottom .nav li {
	margin: .4rem 0;
}

.mobnavBox .bottom .nav li h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobnavBox .bottom .nav li h3 a {
	display: block;
	text-align: center;
	color: #333;
	padding-left: 4px;
	font-size: var(--font24);
}

.mobnavBox .bottom .nav li h3 i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: #333;
	text-align: center;
	font-size: 12px;
	transition: .4s;
	cursor: pointer;
}

.mobnavBox .bottom .nav li h3 i svg {
	max-width: 100%;
}

.mobnavBox .bottom .nav li .m-subnav {
	border-bottom: 1px solid #dbdbdb;
	padding-bottom: 5px;
	display: none;
}

.mobnavBox .bottom .nav li .m-subnav a {
	display: block;
	margin: 10px 0;
	padding-left: 20px;
	position: relative;
	font-size: var(--font20);
	color: #333;
}

.mobnavBox .bottom .nav li .m-subnav a:before {
	content: "";
	width: 8px;
	height: 8px;
	border: 1px solid #CCCCCC;
	border-radius: 50%;
	position: absolute;
	left: 4px;
	top: 5px;
	transition: all 0.4s;
}

.mobnavBox .bottom .nav li .m-subnav a:after {
	content: "";
	width: 4px;
	height: 4px;
	background: #CCCCCC;
	border-radius: 50%;
	position: absolute;
	left: 7px;
	top: 8px;
	transition: all 0.4s;
}

.mobnavBox .bottom .nav li.on h3 a {
	color: #005bac;
}

.mobnavBox .bottom .nav li.on h3 i {
	transform: rotate(90deg);
	color: #005bac;
}

.mobnavBox .bottom .nav li.on h3 i:before,
.mobnavBox .bottom .nav li.on h3 i:after {
	background: #fff;
}

.mobnavBox .bottom .nav li h3 a:hover,
.mobnavBox .bottom .nav li .m-subnav a:hover,
.mobnavBox .bottom .nav li .m-subnav a.on {
	color: #005bac;
}

.mobnavBox .bottom .nav li .m-subnav a:hover:before,
.mobnavBox .bottom .nav li .m-subnav a.on:before {
	border-color: #005bac;
}

.mobnavBox .bottom .nav li .m-subnav a:hover:after,
.mobnavBox .bottom .nav li .m-subnav a.on:after {
	background: #005bac;
}

.mobnavBox .bottom .links dl dd {
	margin: .3rem 0;
}

.mobnavBox .bottom .links dl dd a {
	display: flex;
	align-items: center;
}

.mobnavBox .bottom .links dl dd span {
	margin-left: .2rem;
	display: block;
	text-align: center;
	color: #333;
	padding-left: 4px;
	font-size: var(--font20);
}


/* 导航联系方式 */
/* version1.0 */
.moblan a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 0.9rem;
}

.sitebtn {
	display: block;
	border-radius: 4px;
	background-image: linear-gradient(135deg, #005bac 10%, #fff 60%, #005bac 100%);
	overflow: hidden;
	background-size: 200% auto;
	color: #fff;
	text-align: center;
}

/* .sitebtn:hover {background-position: right center;} */
.mobinfo {
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.mobinfo h2 {
	color: #005bac;
	font-weight: 700;
	margin-bottom: .3rem;
}

.mobinfo dl dd {
	display: flex;
	margin-top: .15rem;
	align-items: center;
}

.mobinfo dl dd {}

.mobinfo dl dd .icBox {
	max-width: 15px;
	max-height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}

.mobinfo dl dd .icBox img {
	max-width: 100%;
}

.mobinfo dl dd p {
	width: calc(100% - 14px);
	color: #333;
}

.mobinfo dl dd p a {
	color: #333;
}

.mobinfo dl dd p a:active {
	color: #005bac;
}

@keyframes sjnav {
	0% {
		width: 0;
	}

	25% {
		width: 15px;
	}

	50% {
		width: 30px;
	}

	75% {
		width: 15px;
	}

	100% {
		width: 0;
	}
}

/* version2.0 */
.fz_bt {
	margin-top: .2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	background-color: #fff;
	color: #005bac;
	transition: all 0.3s linear;
	font-size: 0.26rem;
	height: 0.9rem;
	border: 1px solid #eee;
	width: 100%;
}

.fz_bt i {
	display: flex;
	width: 0.3rem;
	height: 0.3rem;
	margin-right: 0.2rem;
	overflow: hidden;
}

.fz_bt i svg {
	width: 100%;
	height: 100%;
}

.fz_bt i svg path {
	fill: #005bac;
}

.fz_bt span {
	color: #005bac;
}

.fz_bt:active {
	background: #005bac;
	border-color: #005bac;
}

.fz_bt:active i svg path {
	fill: #fff;
}

.fz_bt:active span {
	color: #fff;
}

@media (any-hover: hover) {
	.mobinfo dl dd p a:hover {
		color: #005bac;
	}

	.fz_bt:hover {
		background: #005bac;
		border-color: #005bac;
	}

	.fz_bt:hover i svg path {
		fill: #fff;
	}

	.fz_bt:hover span {
		color: #fff;
	}
}

@media screen and (min-width: 200px) and (max-width: 1900px) {}

/* ======================================================1800px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1800px) {}

/* ======================================================1700px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1700px) {}

/* ======================================================1580px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1580px) {}

/* ======================================================1500px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1500px) {}

/* ======================================================1450px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1440px) {
	
.w1440{max-width: 92%; width: 92%;} 
	.left-box {	    padding: 1.22rem 4%;}

	.about .info{width: 100%;}
	
	
}

/* ======================================================1400px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1400px) {
	
	.download-left { padding: 1.18rem 0 0 4%;}
	.culture-list ul li { height: 3.5rem;}
	.login-form .layui-input-prefix img{width:15px;}
	
}

/* ======================================================1350px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1350px) {}

/* ======================================================1300px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1300px) {

	/* 头部 */
	nav {
		width: 50%;
	}
	
	.proclass-btn {    width: 100%;}
	
	.service-box .text h3 {
	    line-height: 0.5rem;
	}
	.service-list ul li .text {
	    width: 48%;
	}
	.case-list ul li .info em{line-height: 0.4rem;}
	.case-list ul li .info p{line-height: 0.35rem;}
}

/* ======================================================1200px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1200px) {
	
	.pro-box .info h3 {  line-height: 0.4rem;}
	.ys-main .w1400 {	    width: 92%;	}
	.download-right { padding: 1rem  4%;	}
	.download-list {	    width: 100%;		}
	.download-class .ctitle1::after {    left: 1.6%;    top: 0.2rem;}
	.culture-list ul li { height: 3.2rem;}
	.message-box{width: 80%;}
	.login-box {	    width: 6.1rem;	    padding: 0.7rem 2.8%;}

	.search-page .container {
		width: 96%;
	}


		    .culture-list ul li {
        height: 4.8rem;
    }
		
		
}

/* ======================================================1100px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1100px) {}

/* ====================================================================================移动端============================================================ */

@media screen and (min-width: 200px) and (max-width: 1028px) {

	/* 头部 */
	nav {
		display: none;
	}

	.headCart {
		display: none;
	}

	.healogin {
		display: none;
	}

	.mobmenu {
		display: inline-flex;
		align-items: center;
	}

	.indexOne .bd .inBd li .tit1 {
		font-size: var(--font23);
	}

	.indexOne .outBox .inBox {
		flex-wrap: wrap;
	}

	.indexOne .bd .inHd,
	.indexOne .bd .inBd {
		width: 100%;
	}

	.indexOne .bd .inHd {
		margin-right: 0;
	}
	
	
	.indexOne .bd .inHd ul{ display: flex;    flex-wrap: wrap;    justify-content: space-between;}
	.indexOne .bd .inHd ul li{width: 30%;}
	
	.indexTwo .list .num {  font-size: 45px;}
	.indexTwo .con {	    width: 57%;	}
	.pro-banner {	    padding: 0.5rem 0;	}
	.service-box .info{width: auto;}
	.service-box .text{width: 100%; padding: 0; border-left: none; margin-top: 0.4rem;}
	.service-box .text h3{line-height: 0.65rem;}
	
	
	.service-search{height: 40px;width: 300px;}
	.service-search .input-submit{width: 68px;height: 34px;}
	.service-main{flex-direction: column-reverse;}
	.service-right{width: 100%; height: auto; padding:0.5rem 4%; box-sizing: border-box;}
	
	.service-class {    position: relative;    top: auto;}
	.service-left {	    width: 100%;}
	.service-class ul {display: flex; flex-wrap: wrap; justify-content: space-between;}
	.service-class ul li {width: 20%;}
	.service-class ul li a{padding-left: 0; width: 100%; text-align: center; line-height: 0.8rem;}
	.service-class ul li a::after{display: none;}
	.service-class ul li:hover a, .service-class ul li.on a {text-indent: 0;	}
	.case-bg .service-box .info{width: 100%;}
	.case-bg .service-box .text {	    border-left: none;	    width: 100%;	    padding: 0;	}
	.case-class ul li a {	    display: block;	    line-height: 0.75rem;	    border: 0.01rem solid #454545;	    border-radius: 1.26rem;	    padding: 0 0.6rem;	    transition: 0.6s;	}
	.case-list ul li .info em{line-height: 0.5rem; font-size: 0.4rem;}
	.case-list ul li .info p{line-height: 0.45rem;}
	.down-class ul li a{padding: 0 0.8rem;}
	
	.newsxq-box .news-right{display: none;}
	.news-left {    width: 100%;}
	.news-bg {padding-bottom: 1rem;}
	
	.culture-list ul li strong{font-size:0.35rem; line-height:1.1}
	
	.contact-right ul li{height: 4rem}
	.provider-list ul{justify-content: space-between;}
	.provider-list ul li {	    width: 30%;margin: 0;}
		.message-box{width: 100%;}
		
		.login-box {	    width: 7.1rem;	    padding: 1rem 2.8%;}
		.login-form input,.login-form button {	    height: 0.8rem;	    line-height: 0.8rem;}
		
		
}



/* ======================================================960px========================================================= */
@media screen and (min-width: 200px) and (max-width: 960px) {
	
	.foternav{display: none;}
	
	.proclass-btn {	        width: auto;	    }
	.proclass-btn  ul{justify-content: flex-start;}
	.proclass-btn ul li{height: 38px;}
	.product-list ul::after{content: ''; width: 31%;}
	/*.product-list ul li{width: 31%;}*/
	.pro-search{width: 34%;}
	.contact-right ul li {	    height: 5.5rem;	}
	
}

/* ======================================================手机端========================================================= */
@media screen and (min-width: 200px) and (max-width: 768px) {

	/* 头部 */
/* 	#c-placeholder {
		min-height: 60px;
	}

	.header .headBox {
		min-height: 60px;
	} */

	.heSearch span {
		display: none;
	}

	.helange {
		margin: 0;
	}

	.mobnavBox {
		width: 100%;
	}

	/* .mobnavBox .top {
		min-height: 60px;
	} */

	/* 语言下拉 */
	.layui-nav .layui-nav-child dd a {
		padding: 0 .6rem;
	}



	/* 首页 */




	/* 底部 */
	.footer .le {
		width: 100%;
		order: -1;
		text-align: center;
	}

	.foterUs dl {
		justify-content: center;
	}

	.foternav {
		flex-wrap: wrap;
		width: 100%;
		margin-top: 0;
		padding: .3rem 0;
	}

	.foternav dl .ddbox {
		display: none;
	}

	.foternav dl {
		width: 100%;
		margin-right: 0;
		text-align: left;
		padding-right: 0;
	}

	.foternav dl dt {
		margin-bottom: 0;
		position: relative;
		cursor: pointer;
		padding: .1rem 0;
	}

	.foternav dl dt::after {
		content: "";
		background: url(../images/jt1.svg) no-repeat right;
		display: block;
		width: 15px;
		height: 15px;
		background-size: 100%;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translate(-50%, -50%);
		transform-origin: center;
		transition: .35s;
	}

	.foternav dl dt::before {
		display: none;
	}

	.foternav dl.on dt::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.foternav dl {
		margin-bottom: 10px;
		border-bottom: 1px solid #ddd;
		padding-bottom: 10px;
	}

	.foternav dl:last-child {
		margin-bottom: 0;
		border: 0;
	}

	.foternav dl.nolist dt::after {
		display: none;
	}

	.foternav dl.nolist dt a {
		display: block;
		margin-bottom: 0;
	}


	.indexOne .hd li .cn {	    margin-right: 0.4rem;	}
	.indexOne .bd .inHd{margin-bottom: 0.4rem;}
    .indexTwo .list .num {font-size: 34px;}
	.indexThre .box{flex-wrap: wrap;}
	.indexThre .news,.indexThre .show{width: 100%;}
	.indexThre .news{margin-bottom: .5rem;}
	
	
	.indexFour .le {width: 100%; margin-bottom: 1rem;}
	.indexFour .re {width: 100%;}
	.indexFour .le .more {	    margin-top: 0.6rem;	}

	.contact-left,.contact-right {	    width: 100%;	}
	.contact-left{margin-bottom: 0.5rem;}
	.contact-left ul{display: flex; justify-content: space-between; flex-wrap: wrap;}
	.contact-left ul li{width: 23%;}
	.contact-left ul li a {	    line-height: 1rem;		    text-indent: 0;	    	    text-align: center;	}
	.login-box {	    width: 9rem;	    padding: 1rem 2.8%;}


	
	/* 2025.4.16首页新增地图 */
	.indexFive {		padding: 0.7rem 0;	}
	.map-box .info{width: 100%; margin-bottom: .3rem;}
	.map-list {		flex: auto;width: 100%;	}
	.map-box .info h4 {		margin: .24rem 0 .6rem;	}


	.product-list ul {
		grid-template-columns: repeat(2, 1fr);
	}
	
}

@media screen and (min-width: 200px) and (max-width: 640px) {
	
	.indexOne .hd{flex-wrap: wrap;}
	.indexOne .hd .indexTle{width: 100%; margin-bottom: 0.3rem;}
	.indexOne .hd .indexTle h3{text-align: center;}
	.indexOne .hd ul {display: flex; justify-content: center;width: 100%;}
	.indexOne .hd li {   margin: 0 2%;}
	.indexOne .bd .inHd ul li {	        width: 43%;    }
	.indexOne .bd .inBd .liBox{flex-wrap: wrap;}
	.indexOne .bd .inBd .liBox .con {    width: 100%; margin-bottom: 0.5rem;}
	.indexOne .bd .inBd .liBox .imgBox{width: 80%; margin: 0 auto;}
	.indexOne .bd .inBd li .tit1 {	        font-size: var(--font30);	    }
	
	.indexTwo .con {width: 100%;margin-bottom: 0.8rem;}
	.indexTwo .list::before{display: none;}
	.indexTwo .list {width: 100%;	}
	.indexTwo .list ul{display: flex; justify-content: space-between;}
	.indexTwo .list ul li{padding-left:0; margin-top: 0;}
	.indexTwo .list li::before{display: none;}
	.indexTwo .list .num { font-size: 28px; text-align: center; }
	.indexThre .show{flex-wrap: wrap;}
	.indexThre .show .item{width: 100%; margin-bottom: 0.4rem;}
	
	.indexFour .le .p2{font-size: 0.45rem;}
	.pro-consult {padding: 8% 4% 10.3%;}
	.footer .box {	    padding: .8rem 0 0rem;}
	.pro-box .info,.pro-box .pic {	    width: 100%}
	.pro-box .pic{width: 80%;	margin:0 auto}
	.pro-box .info{margin: 0.3rem 0;}
	.pro-more a{width: 124px;}
	
	.search-box{flex-wrap: wrap;}
	/*.product-list ul li {	    width: 48%;	}*/
	.pro-search,.hot-pro  {	    width: 100%;	}
	.pro-search{margin-bottom: 0.3rem;}
	.pro-class ul li{height: 0.6rem; margin-bottom: 0.2rem;}
	.consult-form input,.consult-form select, .consult-form .layui-form-select {	    width: 100%;	}
	.consult-form ul{margin-bottom: 0;}
	.consult-form input, .consult-form select, .consult-form textarea{height: 1rem;}
	.consult-form textarea{margin:0.5rem 0;}
	.consult-form .layui-btn { height: 0.8rem;	     width: 2.55rem;}
	.specifications-table tr td{height: 1rem;}
	.specifications-box {overflow-x: scroll;}
	.specifications-box table{width:850px !important;margin:0 auto;}
	.specifications-box::-webkit-scrollbar{  width: 7px; height: 7px;}  
	/*定义滚动条轨道 内阴影+圆角*/  
	.specifications-box::-webkit-scrollbar-track{ background-color: #ccc;}  
	/*定义滑块 内阴影+圆角*/  
	.specifications-box::-webkit-scrollbar-thumb{ background-color: #005bac;  }
	
	.specifications-table tr td span{display: none;}
	.specifications-table tr td a{padding: 0 0.16rem;}
	.prodetails-top strong{width: 100%; text-align: center; margin-bottom: 0.2rem;}
	.prodetails-top ul {  display: flex;	        width: 100%;	        justify-content: center;	    }
	.prodetails-top ul li{margin: 0 2%!important;}
	.prodetails-top ul li a{flex-direction: column;}
	.prodetails-top ul li em{margin: 0;}
	.prodetails-top ul li img{display: none;}
	
	.service-class ul::after{content: ''; width: 30%;}
	.service-class ul li {width: 30%;}
	.service-list ul li{width: 100%;}
	.service-list ul li .pdf-icon img{width: 0.5rem;}
	
	
	.catalog {overflow-x: scroll;}
	.catalog table{width:850px !important;margin:0 auto;}
	.catalog::-webkit-scrollbar{  width: 7px; height: 7px;}  
	/*定义滚动条轨道 内阴影+圆角*/  
	.catalog::-webkit-scrollbar-track{ background-color: #ccc;}  
	/*定义滑块 内阴影+圆角*/  
	.catalog::-webkit-scrollbar-thumb{ background-color: #005bac;  }    
	.catalog-table tr th {	    height: 1rem;}
	.catalog-table tr td {		    height: .85rem;		}
	
	.case-class ul li{margin-bottom: 0.3rem;}
	.case-list ul li{width: 100%;}
	.case-list ul li .info em {font-size: 0.35rem;}
	.faq-banner .service-box .info{width: 100%;}
	.faq-banner .service-search{margin: 0 auto;}
	.download-list ul li{width: 100%;}
	
	.download-class .ctitle1::after {        left: 5%;        top: 0.2rem;    }
	.fileCen .re{padding: .5rem 4%;}
	.fileCon{padding: 0; width: 100%;}
	.fileCen .re{min-height: auto;}
	.down-class ul{flex-wrap: wrap; justify-content: space-between;}
	.down-class ul::after{content: ''; width: 48%;}
	.down-class ul li{width: 48%; margin-right: 0; margin-bottom: 0.3rem; }
	.down-class ul li a{padding: 0;}
	.news-list ul li{width: 100%;}
	
	.culture-list ul li{width: 100%; margin-bottom: 0.3rem; height: 3rem;}
	.culture-list ul li img { width: 1rem;	}
	.develop-list ul li .info{margin-bottom: 0.5rem;}
	.develop-list ul li .info,.develop-list ul li .pic{width: 100%;}
	.contact .contact-title {    margin-bottom: .3rem;}
	    .contact-left {
	        margin-bottom: 0;
	    }
	.contact-right ul li{height: auto; flex-wrap: wrap;}
	.contact-right ul li .pic,.contact-right ul li .info{width: 100%;}
	.contact-right ul li .pic{height: 3.5rem; background-size: cover !important; border-top-right-radius: 0.2rem; border-bottom-left-radius:0}
	.contact-right ul li .info{padding: 0.5rem 2%; border-bottom-left-radius: 0.2rem;}
	
	.provider-list ul{flex-wrap: wrap;}
	.provider-list ul li {        height: 3rem;        width: 100%;        margin-bottom: 0.3rem;    }
	.provider-list ul li img{width: 1rem;}
	
	.message-form ul {    margin-bottom: 0;}
	.message-form ul li{width: 100%; margin-bottom: .37rem;}
	.message-form ul.item li{flex-wrap: wrap;}
	.message-form ul.item li{height: auto;}
	.message-form textarea {	    resize: none;	    line-height: .53rem;	    height: auto;	    width: 100%;	}
	.message-form ul.item {    margin: 0;}
	
	.message-form .layui-btn {    display: block;    width: 140px;    height: 48px;    line-height: 48px;}
	
	.top-logo{width: 50%;}
	.top-logo img{max-width: 100%; -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1);}
	
	.login-box {	        width:94%;	        padding: 0.8rem 2.8%;	    }
	
	.shop-box {overflow-x: scroll;}
	.shop-box table{width:850px !important;margin:0 auto;}
	.shop-box::-webkit-scrollbar{  width: 7px; height: 7px;}  
	/*定义滚动条轨道 内阴影+圆角*/  
	.shop-box::-webkit-scrollbar-track{ background-color: #ccc;}  
	/*定义滑块 内阴影+圆角*/  
	.shop-box::-webkit-scrollbar-thumb{ background-color: #005bac;  }    
	.shop-table button img{width: 0.21rem;}
	.shoppingBar-footer button {    width: 120px;    line-height: 45px;}

	.parameter-editor table tr td{display: block!important; width: 100%; margin-bottom: 0.2rem; padding:0.1rem 2%!important;}


	.prodetails-editor div {overflow-x: scroll;}
	.prodetails-editor table{width:850px !important;margin:0 auto;}
	.prodetails-editor div::-webkit-scrollbar{  width: 7px; height: 7px;}
	/*定义滚动条轨道 内阴影+圆角*/
	.prodetails-editor div::-webkit-scrollbar-track{ background-color: #ccc;}
	/*定义滑块 内阴影+圆角*/
	.prodetails-editor div::-webkit-scrollbar-thumb{ background-color: #005bac;  }



/*2025.4.21导航手机端*/
.header-zw{display: block;height: .92rem;min-height: 80px;}
	header .headlogo .logo2 {display: block;}
	header .headlogo .logo1 {display: none;}
	header .helange svg path {fill: #393939;}
	header .heSearch i {background: #005bac;}
	header .heSearch span {color: #333;}
	header .heSearch svg path {fill: #fff;}
	header .headCart svg path {fill: #005BAC;}
	header .healogin svg path {fill: #393939;}
	header nav > ul > li {border-color: #eee;}
	header nav > ul > li > a {color: #333;}
	header nav > ul > li > a i path {fill: #333;}
	header nav > ul > li.on > a  {color: #01008C;}
	header .mobmenu dl dd {background: #333;}
	header .mobmenu h4 {color: #333;}
	.pagtion2 .swiper-num{display: none}
	.pagtion2 .button{display: none}
	.pagtion2 .svgBox{display: none}
	.copyRight{text-align: center}
	.copyRight p{width: 100%;}

	.search-page li{
		width: 48%!important;}


	/*2025.11.29*/
	.helange,.heSearch{display: none}
	
	
	
/*2025.12.22*/
	
	
	
	
	
	
	

}
