@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: "思源黑体 CN Reqular";
    src: url('../fonts/SourceHanSansCN-Regular.otf');
}
html{font-size:1px;}
@media screen and (max-width: 1920px) {
  html {
    font-size: 0.05208333333vw;
  }
}

body {
	margin:0;
	padding:0;
	/*font-family:"Montserrat","微软雅黑", Arial;*/
	font-family:"微软雅黑", Arial;
	font-size:16px;
	line-height:1.5;
	color:#222222;
	max-width:1920px;
	width: 100%;
	margin:0px auto;
	background-color:#fff;
	overflow-x: hidden;
}
a {
	color:#222222;
	text-decoration:none;
}
a:hover {
	color:var(--linkColor);
}
img {
	border:0;
	display:inline;
	vertical-align: bottom;
	width:auto;
	height:auto;
	max-width:100%;
}
div, ul, li, dl, dd, span, h1, h2, p, h4, h3 {
	margin:0;
	padding:0;
	list-style:none;
}
.clear {
	clear:both; width:0px; height:0px;
}
.container {
	width: 90%;
	max-width:1600px;
	margin:0px auto;
	height:auto;

}

* {
	box-sizing: border-box;
}

.main{ overflow:hidden;}
.tpleft{ float:left;}
.tpright{ float:right;}
.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.dbmenu li {
 width:160px
}
.flex-center-y {
	display: flex;
	/*align-items: center;*/
}
.flex-center{
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex-column {
	display: flex;
	flex-direction: column;
  }
  :root{
	--linkColor:#0080c2;
	--bgcolor:#f5f5f5;
   
   }
.image_pic{position:relative; display:block; padding-top:100%; width:100%; overflow:hidden;}
.image_pic img{ width:100%; height:100%; position:absolute; top:0px; left:0px;object-fit: contain;
	object-position: center center;transition:all .5s;-webkit-transition:all .5s;}
.image_pic:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);}

.image_pic1{position:relative; display:block;width:100%; overflow:hidden;}
.image_pic1 img{ width:100%; height:100%; object-fit: cover;
	object-position: center center;transition:all .5s;-webkit-transition:all .5s;}
.image_pic1:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);}
.dance{ padding: 80rem 0rem;}

.ellipsis{ display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis;}
.molEllipsis{ display:-webkit-box; -webkit-box-orient: vertical;-webkit-line-clamp:1;-webkit-box-orient:vertical; overflow:hidden;text-overflow:ellipsis;-webkit-text-overflow:ellipsis;}
   
/* 首页 */

header{ position: fixed; width: 100%; left: 0%; top: 0px;  z-index: 1000;}
header .container{}
header .container .logo img{ height: 38px;}
header .container .logo .img2{ display: none;}
header .tpright .menu{ margin-right: 36rem;}
header .tpright .menu ul li{ position: relative;}
header .tpright .menu ul li a{ color: #fff; display: block; padding: 0px 31rem;}
header .tpright .menu ul li a.title{ height: 100px;display: flex; align-items: center; justify-content: center; font-size: 18px;}
header .tpright .menu ul li a.title:hover,header .tpright .menu ul li:hover a.title{ color: var(--linkColor);}
header .tpright .tool{ position: relative; padding-left: 36rem;}
header .tpright .tool:before{ content: ""; position: absolute; left: 0px; top: 50%; width: 1px; height: 80%;transform:translateY(-50%);-webkit-transform:translateY(-50%); background-color: #dedede;}
header .tpright .tool a img{ height: 22rem; display: block;}
header .tpright .tool a { width: 42rem; height: 42rem; background-color: #eeeeee; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: 18rem; color: #3e3a39; font-size: 18rem;}
header .tpright .tool a:last-child{ border-right: 0px !important;}
header .tpright .tool a .img2{ display: none;}
header .search{ position: absolute; right: 0px; top: 0px; width: 76rem; cursor: pointer;}
header.play{ background-color: #fff;box-shadow: 0px 0px 8px rgb(0 0 0 / 18%);}
header.play .tpright .menu ul li a{ color: #222;}
header.play .container .logo .img1{ display: none;}
header.play .container .logo .img2{ display: block;}

header.play2{ background-color: #fff;box-shadow: 0px 0px 8px rgb(0 0 0 / 18%); position: sticky;}
header.play2 .tpright .menu ul li a{ color: #222;}
header.play2 .container .logo .img1{ display: none;}
header.play2 .container .logo .img2{ display: block;}

header .tpright .menu ul li .submenu {
	background-color:rgba(255,255,255,1);
	width: 146px;
	position: absolute;
	top: 100%;
	padding: 0px;
	z-index: 20;
	transform-origin: 50% 0;
	transform: scaleY(0) translateZ(0);
	opacity: 0;
	transition: transform 0.3s, opacity 0.3s;
	overflow: hidden;
	margin-left: -20px;
	box-shadow: 0px 0px 8px rgb(0 0 0 / 18%);
	border-radius: 4px;
}

header .menu ul li .submenu::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	background: var(--linkColor);
	border-radius: 0.20rem;
}

header .menu ul li .submenu::-webkit-scrollbar-thumb {
	background: #fff;
	scrollbar-arrow-color: #fff;
	border-radius: 0.20rem;
}


header .menu ul li:hover .submenu {
	transform: scaleY(1) translateZ(0);
	opacity: 1;
}

header .menu ul li .submenu dd {
	border-bottom: 0.5px rgba(0,0,0,0.1) solid;
}

header .menu ul li .submenu dd:last-child {
	border-bottom: 0px;
}

header .menu ul li .submenu dd a {
	color: #333;
	text-align: center;
	line-height: 3;
	text-transform: none;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	font-weight: normal;
	height: auto;
	width: 100%; font-size: 14px;
	padding: 0rem 1.4rem;
}

header .menu ul li .submenu dd a:hover {
	background-color: var(--linkColor);color: #fff;
}


header.play2 .container .logo .img1{ display: none;}
header.play2 .container .logo .img2{ display: block;}



header .tpright .sea_one{ width: 25px;  cursor: pointer; display: none; margin: 0px 5px;}
.banner{ position: relative; z-index: 10;}
.banner ul li{ position: relative;}
.banner ul li .container{ position: absolute; left: 50%; top: 50%;transform: translate(-50%,-50%); color: #fff; font-size: 24rem;}
.banner ul li .container .content{ max-width: 555rem; width: 80%; text-align: center; line-height: 2; margin-left: 5%;}
.banner ul li .container .content .title{ font-size: 40rem; color: #00a7ff; letter-spacing: 2rem; }



.part_1{ background-color: #f5f5f5;}
.part_1 ul li{ display: flex; align-items: stretch; gap: 49rem; margin-bottom: 49rem;}
.part_1 ul li .photo{ width: 53.5%; overflow: hidden; border-radius: 12px;}
.part_1 ul li .photo a{ display: block; height: 100%;}
.part_1 ul li .photo a img{object-fit: cover;
	object-position: center center;transition:all .5s;-webkit-transition:all .5s; width: 100%; height: 100%;}
.part_1 ul li .photo a:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);}
.part_1 ul li .box{ flex:1; overflow: hidden; border-radius: 12px; padding: 47rem 62rem 60rem;background-color: #fff; display: flex;flex-direction: column; align-items:flex-start; justify-content: center;}
.part_1 ul li:last-child{ margin-bottom: 0px;}
.part_1 ul li .box .title{  font-size: 30rem;}
.part_1 ul li .box .desc{ margin-top: 30rem; margin-bottom: 45rem; line-height: 1.8;}
.part_1 ul li .box .more{ color: var(--linkColor); border: 1px var(--linkColor) solid; display: inline-block; line-height: 2.6; border-radius: 20px; padding: 0px 27px; transition: all .3s ease;-webkit-transition: all .3s ease;}
.part_1 ul li .box .more:hover{ background-color: var(--linkColor); color: #fff;}
.part_1 ul li:nth-child(2n){flex-direction: row-reverse;}
.index_bt{ margin-bottom: 44rem;}
.index_bt .title{ font-size: 36rem; position: relative; padding-bottom: 18rem;}
.index_bt .title:before{ content: ""; width:80rem; height: 2px; background-color: var(--linkColor); position: absolute; left: 0px; bottom: 0px;}
.index_case { display: flex; align-items: stretch;  gap:10px}
.index_case .tpleft{ width: 28%; color: #fff; padding: 37rem 58rem 64rem; background-image: url(../images/index_23.jpg); background-repeat: no-repeat; background-size: cover;}
.index_case .tpleft .pic img{ width: 78rem; height: auto;}
.index_case .tpleft .img1 { margin: 34rem 0rem;}
.index_case .tpleft .img1 img{ width:auto; height: 37rem;}
.index_case .tpleft .desc{ color: #ebebeb; font-size: 20rem; margin-bottom: 45rem;}

.index_case .tpleft .more{ color: #fff; border: 1px #fff solid; display: inline-block; line-height: 2.6; border-radius: 20px; padding: 0px 27px; transition: all .3s ease;-webkit-transition: all .3s ease;}
.index_case .tpleft .more:hover{ background-color:#fff; color: #222;}
.index_case .list{ flex:1; overflow: hidden;}
.index_case .list ul{display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 10px 10px; height: 100%;
align-items: stretch;}
.index_case .list ul li{ background-color: #f5f5f5; text-align: center; padding: 42rem 10rem 48rem; font-size: 20rem; display: flex; flex-direction: column; justify-content: center;}
.index_case .list ul li .icon{ margin-bottom: 23rem;}
.index_case .list ul li .icon img{ height: 90rem; width: auto;}
.part_3{ background-image: url(../images/mainbg_111.jpg); background-repeat: no-repeat; background-size: cover; }
.index_bt.no1{ color: #fff; width: 100%; text-align: center;}
.index_bt.no1 .title:before{ background-color: #fff; left: 50%; transform:translateX(-50%);-webkit-transform:translateX(-50%);}
.index_chico{ background-color: #fff; border-radius: 16px; overflow: hidden;padding-bottom: 81rem;}
.index_chico .solu_1{ position: relative; margin-bottom: 58rem;}
.index_chico .solu_1 img{ width: 100%; height: auto;}
.index_chico .solu_1 .content{ color: #404040; font-size: 18px; padding: 85rem 80rem 20rem; position: absolute;  top: 0px; width: 100%; left: 0px;}
.index_chico .solu_1 .content .desc{ line-height: 2.2;}
.index_chico .solu_1 .content .title{ font-size: 27rem; line-height: 1; margin-bottom: 17rem;}
.index_chico .solu_1 .content .title span{ font-size: 48rem;  font-weight: 600;}
.index_coper{ padding: 0rem 84rem;}
.index_coper ul{display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 30rem 28rem;
align-items: stretch;}
.index_coper ul li{ border: 1px #e6e6e6 solid; border-radius: 16rem; overflow: hidden; min-height: 113rem;  display: flex; align-items: center; justify-content: center;}
.index_coper ul li img{ max-width: 90%; max-height: 90%;object-fit: cover;
	object-position: center center;transition:all .5s;-webkit-transition:all .5s;}
.index_coper ul li:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);}
.index_new { display: flex; align-items: stretch; gap: 78rem;}
.index_new .new_left{ width: 47.5%;}
.index_new .new_left a{ color: #222;}
.index_new .new_left a .content .title{ font-size: 24rem; margin-bottom: 14rem;}
.index_new .new_left a .content .desc{-webkit-line-clamp:2; color: #666666; line-height: 1.4; margin-bottom: 21rem;}
.index_new .new_left a .photo{ margin-bottom: 25rem;}
.index_new .new_left a .content .date{ font-weight: 600;}
.index_new .new_right{ flex:1; overflow: hidden;}
.index_new .new_right ul li { border-bottom: 1px #eeeeee solid; padding-bottom: 24rem; margin-bottom: 23rem;}
.index_new .new_right ul li .title a{font-size: 24rem; display: block;display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis;}
.index_new .new_right ul li .title{margin-bottom: 14rem;}
.index_new .new_right ul li .desc{-webkit-line-clamp:2; color: #666666; line-height: 1.4; margin-bottom: 21rem;}
.index_new .new_right ul li .date{ font-weight: 600;}
.index_new .new_left a .content .title:hover{ color: var(--linkColor);}
.index_new .new_right ul li:last-child{ margin-bottom: 0px; padding-bottom: 0px; border-bottom: 0px;}
footer{ background-color: var(--linkColor); color: #fff; padding: 47rem 0rem;}
footer a{ color: #fff;}
footer a:hover{ color: #fff;}
.dbmenu{ flex:1; margin-left: 9%;}
footer .container{ display: flex; align-items: flex-start; justify-content:space-between;}
footer .dbmenu {  flex:1; margin: 0px 2% 0px 4%;}
footer .dbmenu ul{ align-items: flex-start;}
footer .dbmenu ul li .title{ font-size: 20rem; margin-bottom: 24rem;}
footer .dbmenu ul li .sumenu a{ display: block; font-size: 14px; line-height: 2.5; opacity: .8;}
footer .dbmenu ul li .sumenu a:hover{ opacity: 1; color: #fff;}
footer .tpleft .dblogo img{ height: 37rem; width: auto;}
footer .tpleft .title{ font-size: 24rem; margin: 27rem 0rem;}
footer .tpleft .desc{ font-size: 18px; line-height: 2; }
footer .tpright .weix{ margin-bottom: 32rem;}
footer .tpright .weix ul{display: flex; justify-content: flex-end;}
footer .tpright .weix ul li{ width: 115px; margin-left: 30rem; text-align: center; font-size: 14px;}
footer .tpright .weix ul li img{ margin-bottom: 5px;}
footer .tpright .copyright{ text-align: right;opacity: .8;}

/* 首页 */
.banner {
	width: 100%;
}

.banner ul,
.banner ul li {
	width: 100%;
	height: 100%;
}

.banner ul li {
	position: relative;
	color: #fff;
}

.banner ul li .content .title {
	font-size: 40rem;
    color: #00a7ff;
    letter-spacing: 2rem;
    margin-bottom: 20rem;
}

.banner ul li .content .title .desc{
	color: #fff;
    font-size: 24rem;
	display: block;
	margin-top: 20rem;
}
.banner ul li  .Encontent{ max-width: 70%; width: 100%; text-align: center; line-height: 2; margin-left: 5%;}
.banner ul li  .Encontent .title{ font-size: 40rem; color: #00a7ff; letter-spacing: 2rem; }
.banner ul,
.banner ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.banner ul li .Encontent .title .desc{
	color: #fff;
    font-size: 24rem;
	display: block;
	margin-top: 20rem;
}

/*搜索弹框*/
.serch_bullet{ position:fixed; width:100%; height:100%; left:0px; top:0px; background: rgba(0,0,0,.8); z-index:1000000; display: none; }
.serch_bullet.active{ display:block;}
.serch_bullet .formbit{  border-bottom:1px #fff solid; margin-bottom:10px;}
.serch_bullet .formbit input{ flex:1; height:50px; line-height:normal; font-size:18px; color:#fff; background:none; border:0px; outline:none;}
.serch_bullet .formbit input::-webkit-input-placeholder {
color:#fff; font-size:18px;
}
.serch_bullet .content{width:80%; position:absolute; left:50%; top:50%;transform:translateX(-50%);-webkit-transform:translateX(-50%); font-size:18px; }
.serch_bullet .formbit .iconfont{ font-size:22px; cursor:pointer;}
.serch_bullet .hot_key a{ margin-right:15px;}
.serch_bullet .close {
	box-sizing:content-box;
	position:absolute;
	right:5%;
	top:3%;
	padding:10px;
	width:22px;
	height:22px;
transition:.5s
}
.serch_bullet .close:after,.serch_bullet .close:before {
	background:#fff;
	width:20px;
	height:3px;
	display:block;
transition:all .3s ease 0s;
	content:"";
	position:absolute;
	left:13px;
	top:12px
}
.serch_bullet .close:before {
	transform-origin:left bottom;
	transform:rotate(45deg)
}
.serch_bullet .close:after {
	transform-origin:left top;
	transform:rotate(-45deg);
	top:27px
}
.serch_bullet .close:hover {
	transform:rotate(360deg)
}
.serch_bullet .close:hover:after, .serch_bullet .close:hover:before {
	background:#fff
}
.serch_bullet .formbit .icon{ background: none; border: 0px; width: 35px;cursor: pointer;}

/*移动菜单*/
.menubtn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 26px;
	height: 40px;
	right: 0px;
	z-index: 100;
	display: none;
	position: relative;
	margin-left: 15px;

}

.menubtn .name {
	font-size: 16px;
	left: -60px;
	font-weight: 500;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	position: absolute;
	font-weight: 600;
}

.menubtn .navbar-icons {
	height: 20px;
	width: 100%;
	position: relative;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.menubtn .navbar-icons span {
	display: block;
	height: 2px;
	width: 100%;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .25s ease-in-out;
	top: 0;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	background-color: #333;
	position: relative;
	border-radius: 5px;
}

.menubtn .navbar-icons span:first-child {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.menubtn .navbar-icons span:nth-child(2) {
	-webkit-transform-origin: left center;
	transform-origin: left center;
	width: 70%;
}

.menubtn .navbar-icons span:nth-child(3) {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.menubtn.open .navbar-icons span:first-child {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 1px;
}

.menubtn.open .navbar-icons span:nth-child(2) {
	opacity: 0;
}

.menubtn.open .navbar-icons span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 1px;
}

.menu-mc {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--linkColor);
	z-index: 500;
	transition: all .5s;
	-webkit-transition: all .5s;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	padding-top: 85px;
	display: flex;
	flex-direction: column;
	display: none;

}

.menu-mc.active {
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.menu-mc .list {
	flex: 1;
	overflow: auto;
}

.menu-mc .list ul {
	padding: 0 24px;
}

.menu-mc .list ul li {
	line-height: 60px;
}

.menu-mc .list ul li .submenu {
	display: none;
}

.menu-mc .list ul li .title {
	border-bottom: 1px solid rgba(255, 255, 255, .19);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	color: #fff;
}

.menu-mc .list ul li .title .icon {
	width: 18px; height: 18px;
	background-image: url(../images/arrow1.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.menu-mc .list ul li a {
	display: block;
	font-size: 14px;
	color: #fff;
}

.menu-mc .list ul li .submenu a {
	padding-left: 20px;
	line-height: 45px;
}

.menu-mc .list ul li .submenu a:hover {

	font-weight: 600;
}

.nybanner{ position: relative;}
.nybanner .container{ position: absolute; left: 50%; top: 50%;transform: translate(-50%,-50%); color: #fff; font-size: 24rem;}
.nybanner .container .content{ max-width: 535rem; width: 80%; text-align: center; line-height: 2; color: #fff; }
.nybanner .container .Encontent{ max-width: 1000rem; width: 80%; text-align: center; line-height: 2; color: #fff; }
.nybanner .container .content .title{ font-size: 40rem; margin-bottom: 27rem; }
.nybanner .container .Encontent .title{ font-size: 40rem; margin-bottom: 27rem; }
.pro_nav{border-left: 1px #f0f0f0 solid; }
.pro_nav ul li{ border-right: 1px #f0f0f0 solid; display: block;}
.pro_nav ul li a{ min-width: 136rem; padding: 20rem 20px; display: block; color: #333;text-align: center;}
.pro_nav ul li a img{ height: 42rem; width: auto; margin: 0px auto 5px;}
.pro_nav ul li a .img2{ display: none;}
.pro_class{ position: relative; z-index: 10; background-color: #fff;background-color: #fff;box-shadow: 0px 0px 8px rgb(0 0 0 / 8%); overflow-x: auto;}
.pro_nav ul li.active { background-color: var(--linkColor); }
.pro_nav ul li.active a{ color: #fff;}
.pro_nav ul li.active a .img1{ display: none;}
.pro_nav ul li.active a .img2{ display: block;}
.pro_nav ul li .txt{white-space:nowrap}
.main{ background-color: var(--bgcolor); padding: 60rem 0rem;}
.product_1{ margin-bottom: 40rem;}
.product_1 .pr_left{ flex:1; margin-right: 2%; display: flex;align-items: flex-start; line-height: 40px;}
.product_1 .pr_left .txt{ font-size: 18px;}
.product_1 .pr_left .list{ flex:1; display: flex; align-items: stretch; flex-wrap: wrap; gap: 10px; margin-left: 19px;}
.product_1 .pr_left .list a{ border-radius: 5px; background-color: #fff; padding: 0px 15px;}
.product_1 .pr_left .list a.active,.product_1 .pr_left .list a:hover{ background-color: var(--linkColor); color: #fff;}
.search_1{ width: 260px; border-radius: 5px 7px 7px 5px; border: 1px #cccccc solid; background-color: #fff; overflow: hidden;}
.search_1 .formbit{ flex:1; height: 36px; line-height: normal; padding:0px 15px; border: 0px; outline: none; font-size: 14px;}
.search_1 .sumbit{ height: 40px; line-height: normal; border-radius: 5px; border: 0px;  background-color: var(--linkColor); color: #fff; width: 55px; text-align: center; font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer;}
.search_1 .formbit::-webkit-input-placeholder {
	color:#999999; 
	}
.search_1 .sumbit img{ width: 20px; height: auto;}
.pro_list{ margin-bottom: 50rem;}
.pro_list ul{display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 21rem 21rem;
align-items: stretch;}
.pro_list ul li{ background-color: #fff; overflow: hidden; }
.pro_list ul li a{padding: 30rem 0rem; display: block;}
.pro_list ul li a .content{ padding: 0rem 30rem 30rem;}
.pro_list ul li a .photo{ padding: 0px 20rem;}
.pro_list ul li a .image_pic{  padding-top: 109.5%;}
.pro_list ul li a .content .lab{ color: #666;}
.pro_list ul li a .content .title{ font-size: 18px; margin-bottom: 12rem;}
.loading a{ height: 48px; background-color: var(--linkColor); color: #fff; padding: 0px 30px; border-radius: 24px;
	transition: all .3s ease;-webkit-transition: all .3s ease;}
.loading a img { height: 20px; width: auto; margin-left: 10px;}
.loading a:hover{ opacity: .8;}

/*产品详情*/
.swiper .image_pic{ height:auto;}
.show_bg{ background-color: #efefef;}
.local{  }
.local .tpright a{ margin-left: 25px;}
.local .tpright a.active{color: var(--linkColor);}
.local .container{padding: 20px 0px; border-bottom: 1px #c6c6c6 solid;}
.show_1{ padding: 49rem 0rem;}
.show_one{ display: flex; align-items: stretch; padding: 50rem 0rem;}
.show_one .show_left { width: 50%;}
.show_one .show_left .show_class{ width: 118rem; margin-right: 74rem; display:flex;flex-direction:column;}
.show_one .show_left .show_class .swiper{ overflow:hidden; width:100%; height:400rem;}
.show_one .show_left .show_class ul li{ width: 100%; height: 118rem; border: 1px #cccccc solid; margin-bottom: 10px; cursor: pointer; overflow:hidden;box-sizing:border-box;}
.show_one .show_left .show_class ul li.swiper-slide-thumb-active{border-color:var(--linkColor);}
.show_one .show_left .show_class ul li .image_pic { position:absolute;height:100%; width:100%; top:0; left:0;}
.show_one .show_left .show_class ul li .image_pic img{ transition:none;-webkit-transition:none;transform: none;-webkit-transform: none; object-fit:cover;}
.show_one .show_left .show_class .btn{ width: 27rem; height: 17rem; background-image: url(../images/show_06.png); background-repeat:no-repeat;background-size: cover; display: block; margin: 0px auto;cursor: pointer;}
.show_one .show_left .show_class .prev{ margin-bottom: 28rem;}
.show_one .show_left .show_class .next{ margin-top: 28rem;background-image: url(../images/show_18.png);}
.show_one .show_left .show_class ul li:last-child{ margin-bottom: 0px;}
.show_one .show_left .list{ background-color: #fff; flex:1; height: 100%; overflow:hidden; display:flex;flex-direction:column;}
.show_one .show_left .list .swiper{flex:1; overflow:hidden;width:100%;min-height:400rem;}
.show_one .show_left .list ul,.show_one .show_left .list ul li{ width: 100%; height: 100%;}
.show_one .show_left .list ul li{ display: flex; align-items: center; justify-content: center;}
.show_one .show_right{ flex:1; background-color: #fff; padding: 45rem 100rem 85rem; color: #000; min-height:410px;}
.but_one{ color: #fff; background-color:var(--linkColor);
    display: inline-block;
    line-height: 2.6;
    border-radius: 25px;
    padding: 0px 42px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;  font-size: 18px;}
	.but_one:hover{ opacity: .9; color: #fff;}
	.show_right { justify-content: space-between; border-left: 1px #efefef solid;}
.show_right .desc{flex:1; font-size: 18px; margin-bottom: 20px;}
.show_right .title{ font-size: 30px;}
.show_right .eng{ font-size: 18px; margin-bottom: 10px; margin-top: 3px;}
.show_right .line{ width: 58px; height: 1px; background-color: #000; margin-bottom: 35rem;}
.show_two{ background-color: var(--linkColor); color: #fff; font-size: 28px; padding: 35rem 0px; margin-bottom: 45rem;}
.pro_tit{ margin-left: 39rem; overflow: hidden;}
.pro_tit span{ display: inline-block; font-size: 24rem; padding-bottom: 22rem; position: relative;}
.pro_tit span:before{ content: ""; position: absolute; left: 0px; bottom: 0px; width: 96px; height: 2px; background-color: var(--linkColor);}
.parameters{ background-color: #fff; margin-bottom: 50rem;}
.parameters ul{ display: flex; align-items: stretch; width: 100%;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;}
.parameters ul li{ padding: 33rem 39rem; flex:1;border-bottom: 1px #efefef solid; border-right: 1px #efefef solid;box-sizing: border-box; flex: 0 0 33.333%; /* 每行3个 */}
.pro_cont{ background-color: #fff; padding: 55rem 39rem 63rem; margin-bottom: 50rem;}
.pro_model ul li{ float: left; width: 19%; margin-right: 1.25%; background-color: #fff;}
.pro_model ul li:last-child{ margin-right: 0px;}
.pro_model ul li a{padding: 30rem 0rem; display: block;}
.pro_model ul li a .content{ padding: 0rem 30rem 30rem;}
.pro_model ul li a .photo{ padding: 0px 20rem;}
.pro_model ul li a .image_pic{  padding-top: 109.5%;}
.pro_model ul li a .content .lab{ color: #666;}
.pro_model ul li a .content .title{ font-size: 18px; margin-bottom: 12rem;}
.pro_model:after{content:"\200B";display:block; height:0px; overflow:hidden;clear:both;}
.show_three{ padding-bottom: 50rem;}
.show_btn span{ width: 14rem; height: 14rem; border-radius: 50%; border: 1px #9b9b9b solid; margin: 0px 3px; cursor: pointer;opacity:1; background:none;}
.show_btn{ padding-top: 49rem; padding-bottom: 58rem;}
.show_btn span.active{ background-color: var(--linkColor); border: 1px var(--linkColor) solid;}
.pro_nav ul li a{ padding: 30rem 30px;}
.about_1{ background-image: url(../images/about_1_02.jpg); background-repeat: no-repeat; background-size: cover; padding: 88rem 0rem;}
.about_1 .box{ align-items: stretch;}
.about_1 .box .video1{ width: 48.5%;}
.about_1 .box .video1 video{ width: 100%; height: 100%;object-fit: cover;
	object-position: center center;}
.about_1 .box .content{ flex:1; margin-left: 115rem; font-size: 18px;}
.about_1 .box .content .title{ font-size: 36rem; font-weight: 600;}
.about_1 .box .content .desc{ margin-top: 45rem; margin-bottom: 60rem; line-height: 2;}
.about_1 .box .content .list .num{ font-size: 24rem; font-weight: 600; display: flex; align-items: flex-end;color: var(--linkColor); line-height: 1; margin-bottom: 20rem;}
.about_1 .box .content .list li .num span{ font-size: 60rem; display: inline-block; }
.about_1 .box .content .list li.no1 .num span{ font-size: 60rem; display: inline-block; position: relative;}
.about_1 .box .content .list li.no1 .num span:before{content: "+"; position: absolute; left: 100%; top: 0px;font-size: 36rem; color: var(--linkColor); top: -10px;}
.about_2{padding: 90rem 0rem;}
.about_bt{ text-align: center; margin-bottom: 49rem;}
.about_bt .eng{ line-height: 1; font-size: 80rem; font-weight: 600;text-transform: uppercase;color: #ececec;}
.about_bt .txt{ font-size: 30px; color: #333; margin-top: -38px; line-height: 1;}
.about_bt .line{ text-align: center; margin-top: 17rem;}
.about_bt .line img{ display: block;}
.advantage_1{ text-align: center;}
.about_3{ background-color: #f5f5f5; padding: 89rem 0rem;}
.about_bt .lab{ font-size: 18px; margin-top: 20rem;}
.about_cer { position: relative;}
.about_cer .box{ width: 90%; margin: 0px auto; background-image: url(../images/zsbg_40.jpg); background-repeat: no-repeat; background-position: left bottom; background-size: 100% auto; padding-bottom: 20rem;}
.about_cer .box ul{ padding: 0px 2%;}
.about_cer .box ul li{ width: 23%; margin-right: 2.5%; float: left; text-align: center; display:flex; flex-direction:column;}
.about_cer .box ul li .photo{ flex:1; overflow:hidden;display:flex; align-items:flex-end;}
.about_cer .box ul li:last-child{ margin-right: 0px;}
.about_cer .box:after{content:"\200B";display:block; height:0px; overflow:hidden;clear:both;}
.about_cer .box ul li .txt{ margin-top: 33rem;}
.about_3 .about_bt{ margin-bottom: 55rem;}
.about_cer .btn{ width: 60rem; height: 60rem; background-repeat: no-repeat; background-position: center; position: absolute; top: 50%;transform:translateY(-50%);-webkit-transform:translateY(-50%); background-color: var(--linkColor); border: 1px #e8e8e8 solid; border-radius: 50%;background-size: 18rem 14rem; cursor: pointer;}
.about_cer .prev{ background-image: url(../images/aboutico_13.png); left: 0px;}
.about_cer .next{ background-image: url(../images/aboutico_05.png); right: 0px;}
.about_cer .btn:hover,.about_cer .btn.active{ background-color: var(--linkColor);}
.about_cer .btn.swiper-button-disabled{ background-color:#fff;}
.about_cer .prev.swiper-button-disabled{ background-image: url(../images/aboutico_03.png);}
.about_cer .next.swiper-button-disabled{ background-image: url(../images/aboutico_14.png); }
.about_4{ background-image: url(../images/about_25.jpg); background-repeat: no-repeat; background-position: center; background-size: cover; padding: 111rem 0rem;}
.about_4 .about_bt{ width: 376rem;}
.about_4 .about_bt .eng{ color: #fff; opacity: .2;}
.about_4 .about_bt .txt{ color: #fff;}
.about_4 .list{ margin-left: 30rem; color: #fff; padding-top: 35rem;}
.about_4 .list ul li{ display: flex; align-items: flex-start; font-size: 20rem; margin-bottom: 70rem;}
.about_4 .list ul li .line1{ width: 81rem; height: 1px;background-color: #fff; margin-top: 15px;}
.about_4 .list ul li .cont{ flex:1; margin-left: 20rem;}
.about_4 .list ul li .cont .tit{ font-size: 30px; font-weight: 600; margin-bottom: 14px; line-height: 1;}
.about_4 .list ul li:last-child{ margin-bottom: 0rem;}
.about_5{ padding: 90rem 0px;}
.team_1{ position: relative;}
.team_1:after{content:"\200B";display:block; height:0px; overflow:hidden;clear:both;}
.team_1 ul li{ width: 31.2%; margin-right: 3.1%; float: left;}
.team_1 ul li:last-child{ margin-right: 0px;}
.team_1 ul li a { display: block;}
.team_1 ul li a .image_pic{ padding-top: 60%;}
.team_1 ul li a .title{ color: #333; margin: 15px 0px 7px;}
.team_1 ul li a:hover .title{ color: var(--linkColor);}
.team_1 ul li a .date{ color: #999999;}

.team_1 .btn{ width: 60rem; height: 60rem; background-repeat: no-repeat; background-position: center; position: absolute; top: 50%;transform:translateY(-50%);-webkit-transform:translateY(-50%); background-color: var(--linkColor); border: 1px #e8e8e8 solid; border-radius: 50%;background-size: 18rem 14rem; cursor: pointer; }
.team_1 .prev{ background-image: url(../images/aboutico_13.png); left: -80rem;}
.team_1 .next{ background-image: url(../images/aboutico_05.png); right: -80rem;}
.team_1 .btn:hover,.about_cer .btn.active{ background-color: var(--linkColor);}
.team_1 .btn.swiper-button-disabled{ background-color:#fff;}
.team_1 .prev.swiper-button-disabled{ background-image: url(../images/aboutico_03.png);}
.team_1 .next.swiper-button-disabled{ background-image: url(../images/aboutico_14.png); }
.support_1{ padding: 50rem 0rem 60rem}

.sup_list ul{display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 50rem 50rem;
align-items: stretch;}
.sup_list ul li{ background-color: #f8f8f8;color: #666666; padding: 32rem 43rem; overflow: hidden;}
.sup_list ul li .title a{ font-size: 24rem;display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis;}
.sup_list ul li .desc{ -webkit-line-clamp:3; margin-top: 24rem; margin-bottom: 22rem;}
.sup_list ul li .infor .more{ width: 50rem; height: 30rem; border-radius: 15px; border: 2rem #666 solid;background-image: url(../images/more_03.png); background-repeat: no-repeat; background-position: center center; background-size: cover; background-size: 7px 10px;}
.sup_list ul li:hover .infor .more{background-image: url(../images/more_07.png); background-color: var(--linkColor); border:2rem #fff solid ; }
.sup_list ul li:hover{ background-color: var(--linkColor); color: #fff;}
.sup_list ul li:hover .title a{ color: #fff;}

/*翻页*/
.fany{display:flex;align-items: center; justify-content: center; margin-top:50px;text-transform: uppercase;
}
/*分页*/
.divid-a {
   display: flex;
   align-items: center;
   justify-content: center;
flex-wrap: wrap; font-size:14px;
}
.divid-a a {
   background: #fff;
   color: #000; font-size:14px;
  min-width:35px;
   padding:0px 10px; height:35px;
   cursor:pointer; margin:5px 2px;
   display: flex;
   align-items: center;
   justify-content: center;
   
} 
.divid-a a.up{ background-color: #bbbbbb; font-family: 黑体; color: #fff; font-size: 18px;}
.divid-a span{ margin:5px 10px;}
.divid-a a:hover,.divid-a a.active{ color: var(--linkColor);}
.divid-a .up.active ,.divid-a .up:hover{
background-color: var(--linkColor); color: #fff;
}
.book_1{ background-image: url(../images/support_04.jpg); background-repeat: no-repeat; background-size: cover; padding: 65rem 0rem;}
.book_1 .book_title{text-align: center; color: #fff; font-size: 36px; font-weight: 600; line-height: 1; margin-bottom: 44rem;}
.book_1 .list{ max-width: 930px; width: 100%; margin: 0px auto;}
.book_1 .list ul{ display: flex; align-items: stretch; flex-wrap: wrap;}
.book_1 .list ul li{ width: 48%; margin-bottom: 20px;}
.book_1 .list ul li .formbit{ width: 100%; height: 60px; line-height: normal; padding: 15px 18px; border-radius:5px; border: 0px; font-size: 16px; outline: none;}
.book_1 .list ul li .formbit::-webkit-input-placeholder {
	color:#999999; 
	}
	.book_1 .list ul li .textarea1::-webkit-input-placeholder {
		color:#999999; 
		}
.book_1 .list ul li.no2{ width: 100%; margin-bottom: 40px;}
.book_1 .list ul li.no2 .textarea1{ width: 100%;border: 0px; font-size: 16px; outline: none; padding: 15px 18px; border-radius: 5px; font-family:"Montserrat","微软雅黑", Arial; min-height: 200px;}
.book_1 .list ul li.no3{width: 100%; margin-bottom: 0px;}
.book_1 .list ul li.no3 .sumbit{ width: 280px; height: 60px; font-size: 18px; text-align: center; line-height: normal;border-radius: 5px; background-color: var(--linkColor); border: 0px; color: #fff; cursor: pointer;}
.sup_list ul li .box{ display: flex; justify-content: space-between; align-items: flex-end; margin-top: 20rem;}
.sup_list ul li .box .down{ background-color: var(--linkColor); color: #fff;height: 40rem; padding: 0px 18px; border-radius: 20px;white-space:nowrap}
.sup_list ul li .box .down img{ width: 20rem; height: auto; margin-right: 3px; }
.sup_list ul li:hover .box .down{ border: 1px #fff solid;}
.sup_list ul li .box .infor{ line-height: 2;}
.nybanner.no2 .container .content .title{ text-align: left; margin-bottom: 30rem; line-height: 1;}
.nybanner.no2 .eng{ font-size: 60rem;  text-align: left; line-height: 1;}
.contact_1{ padding: 77rem 0rem;}
.con_list{ margin-bottom: 45rem;}
.con_list ul{display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px 20px;
align-items: stretch;}
.con_list ul li{ background-color: #f8f8f8; padding: 52rem 10px 65rem; border-radius: 8px; text-align: center; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;}
.con_list ul li .icon img{ height: 51rem; width: auto;}
.con_list ul li .title{ font-size: 24rem; margin-top: 36rem; margin-bottom: 24rem;}
.con_list ul li .desc{ color: #666; flex:1;}
.con_list ul li .line{ width: 53px; height: 2px;background-color: var(--linkColor); margin: 0px auto; margin-top: 38rem;}
.con_list ul li .weix img{ width: 116rem;}
.con_list ul li:last-child .title{ margin-top: 26rem;}
.con_two{ border-radius: 8px; overflow: hidden; height:580px}
.news{ padding-top: 35rem; padding-bottom: 80rem;}
.new_class{border-bottom: 1px #c6c6c6 solid; margin-bottom: 60rem;}
.new_class ul{ display: flex; align-items: stretch; justify-content: center;}
.new_class ul li { margin: 0px 23px;}
.new_class ul li a{ font-size: 24rem; color: #000; line-height: 3; display: inline-block; position: relative;}
.new_class ul li.active a{color: var(--linkColor);}
.new_class ul li.active a:before{ content: ""; position: absolute; left: 0px; height: 3px; width: 100%; background-color: var(--linkColor);bottom: -1px;}

.new_top { margin-bottom: 90rem;}
.new_top .list{ background-color: #f5f5f5;}
.new_top .swiper1 { margin-bottom: 27rem;}
.new_top ul li{ display: flex; align-items: stretch;}
.new_top ul li .photo{ width: 47.3%;}
.new_top ul li .content{flex:1; padding: 60rem 38rem; overflow: hidden;}
.new_top ul li .content .title{ }
.new_top ul li .content .title a{display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis;font-size: 24rem;}
.new_top ul li .content .desc{color: #666666;-webkit-line-clamp:2; margin-top: 17rem; margin-bottom: 22rem;}
.new_top ul li .content .date{ font-weight: 600; margin-bottom: 55rem;}
.new_top ul li .photo .image_pic1{ height: 100%;}
.but_one span{ font-family: 黑体; margin-left: 10px;}
.new_top ul li .content .but_one{ padding: 0px 26px;}
.new_sbtn span{ width: 14rem; height: 14rem; border-radius: 50%; background-color: #dddddd;  margin: 0px 3px; cursor: pointer; opacity:1;}
.new_sbtn span.active{ background-color: var(--linkColor);}
.new_tit{ font-size: 30px; margin-bottom: 30rem;}

.new_list ul{display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 40rem 20rem;
align-items: stretch;}
.new_list ul li{ background-color: #f5f5f5;}
.new_list ul li a{ display: block;}
.new_list ul li a .content{ padding: 28rem 28rem 34rem;}
.new_list ul li a .content .title{ font-size: 20px;-webkit-line-clamp:2; margin-bottom: 24rem;}
.new_list ul li a .content .date{ color: #666666;}
.new_list ul li a .image_pic{ padding-top: 52%;}
.product_1.no1 .pr_left{ width: 100%;  flex:none;}
.product_1.no1{ margin-bottom: 10px;}
.newshow{ display: flex; align-items: stretch;}
.newshow .new_right{ width: 25%; border-left: 1px #eeeeee solid; padding: 34rem 0px;}
.newshow .new_right .r_tit{ font-size: 30rem; line-height: 1; color: #333; position: relative; padding-left: 31rem; margin-bottom: 22rem;}
.newshow .new_right .r_tit:before{ content: ""; position: absolute; left: -1px; width: 3px; height: 100%; background-color: var(--linkColor); top: 50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);}
.newshow .new_left{ flex:1;}
.new_right .new_list{ padding-left: 31rem;}
.new_right .new_list ul{grid-template-columns: repeat(1, 1fr);}
.newshow .new_left{ padding-right: 5%; padding-bottom: 65rem;}
.newshow .new_left .date{ padding: 36rem 0rem;}
.newshow .new_left .line{ width: 81px; height: 2px; background-color: var(--linkColor);}
.newshow .new_left .new_t{ font-size: 36rem; margin: 40rem 0rem;}
.newshow .new_left .new_show{ font-size: 18px; line-height: 1.8;  padding-bottom: 70rem;}
.f_up{ border-top: 1px #eeeeee solid; line-height: 2; padding-top: 45rem;}
.f_up ul li:nth-child(2){ text-align: right;}
.f_up ul li a{ display: flex; flex-direction: column;}
.f_up ul li{ width: 48%;}
.swiper-button-disabled{ opacity:.4; pointer-events:none;}
@media screen and (max-width: 1450px) {
	header .tpright .menu ul li a.title{ font-size: 16px;}
	body{ font-size: 14px;}
	.index_case .tpleft .desc{ font-size: 16px;}
	.index_chico .solu_1 .content{ font-size: 16px;}
	.index_new .new_left a .content .title{ font-size: 18px;}
	.index_new .new_right ul li .title a{font-size:18px;}
	footer .tpleft .title{ font-size: 18px; }
	footer .tpleft .desc{ font-size: 16px; }
	footer .dbmenu ul li .title{ font-size: 16px;}
	footer .dbmenu ul li .sumenu a{ font-size: 12px;}
	footer .tpright .weix ul li{ width: 100px; }
	footer .tpright .copyright{ font-size: 12px;}
	header .tpright .menu ul li a.title{ height: 80px;}
	.pro_list ul li a .content .title{ font-size: 16px;}
	.pro_model ul li a .content .title{ font-size: 16px;}
	.but_one{ font-size: 16px;}
	.show_right .desc{ font-size: 16px;}
	.show_right .eng{ font-size: 16px;}
	.show_two{ font-size: 24px;}
	.pro_tit span{ font-size: 20px;}
	.pro_tit span:before{ width: 86px; }
	.product_1 .pr_left{ margin-bottom: 15px;}
	.about_1 .box .content{ font-size: 16px;}
	.about_bt .lab{ font-size: 16px;}
	.about_bt .txt{ font-size: 27px;}
	.about_bt .txt{ margin-top: -30px;}
	.about_4 .list ul li .cont .tit{ font-size: 25px;}
	.about_4 .list ul li .cont{ font-size: 14px;}
	.sup_list ul li .title a{ font-size: 18px;}
	.book_1 .list ul li .formbit{ font-size: 14px; height: 50px; }
	.book_1 .list ul li.no2 .textarea1{ font-size: 14px;}
	.book_1 .book_title{ font-size: 30px;}
	.book_1{ padding: 50px 0px;}
	.con_list ul li .title{ font-size: 20px;}
	.new_class ul li a{ font-size: 20px;}
	.new_top ul li .content .title a{ font-size: 24px;}
	.new_tit{ font-size: 25px;}
	.new_list ul li a .content .title{ font-size: 16px;}
	.newshow .new_left .new_show{  font-size: 16px; }
	}
@media screen and (max-width: 1200px) {
	header .tpright .menu ul li a.title{ font-size: 14px;}
	.part_1 ul li .box .title{ font-size: 18px;}
	.index_bt .title{ font-size: 20px;}
	footer .dbmenu{ display: none;}
	.product_1 .pr_left .txt{ font-size: 16px;}
	.show_right .title{ font-size: 25px;}
	.show_right .eng{ font-size: 14px;}
	.show_right .desc{ font-size: 14px;}
	.sup_list ul li .box .down { height: 30px;}
	.con_list ul li .title{ font-size: 18px;}
	.new_top ul li .content .title a{ font-size: 20px;}
	.new_top ul li .content{ padding: 30px 20px;}
	.newshow .new_left .new_t{ font-size: 25px;}
	.newshow .new_right .r_tit{ font-size: 20px;}
	.newshow .new_right{ padding-top: 20px;}
	.newshow .new_right .r_tit{ margin-bottom: 15px;}
	.newshow .new_left .new_show{ font-size: 14px;}
	.newshow{ flex-direction: column;}
	.newshow .new_right{ border-left: 0px; width: 100%;}
	.new_right .new_list{ padding-left: 0px;}
	.newshow{ padding-bottom: 30px;}
	}
@media screen and (max-width: 900px) {
	header{ background-color: #fff;position: sticky; }
	header .container .logo .img2{ display: block;}
	header .container .logo .img1{ display: none;}
	header .tpright .menu{ display: none;}
	header .container{ height: 60px;}
	header .container .logo img{ height: 27px;}
	header .tpright .tool a{ width: 26px; height: 26px; margin-left: 10px; font-size: 12px;}
	header .tpright .tool a img{  width: 13px; height: auto;}
	.menubtn,
	.menu-mc {
		display: flex;
	}
	header .tpright .tool:before{ display: none;}
	.product_1{ flex-direction: column;}
	}
@media screen and (max-width: 768px) {
	header .container{ height: 50px;}
	header .container .logo img{ height: 22px;}
	.banner ul, .banner ul li img{  min-height: 300px;}
	.banner ul li .container .content{ width: 100%; margin-left: 0px; max-width: 100%;}
	.banner ul li .container .content .title{ font-size: 22px;}
	.banner ul li .content .title .desc{ font-size: 14px;}
	.part_1 ul li{ flex-direction: column;}
	.part_1 ul li .photo{ width: 100%;}
	.part_1 ul li .box{ border-radius: 0px 0px 12px 12px;}
	.part_1 ul li{ gap:0px}
	.part_1 ul li .photo{ border-radius: 12px 12px 0px 0px;}
	.dance{ padding: 30px 0px;}
	.part_1 ul li .box{ padding: 20px 15px;}
	.part_1 ul li{  margin-bottom: 20px;}
	.part_1 ul li .box .desc{ font-size: 12px; margin: 12px 0px; line-height: 1.7;}
	.part_1 ul li:nth-child(2n){flex-direction: column; }
	.index_bt .title{ padding-bottom: 10px; margin-bottom: 20px;}
	.index_bt .title:before{ width: 40px;}
	.index_case .list ul li{ font-size: 14px;}
	.index_case{ flex-direction: column;}
	.index_case .tpleft{ width: 100%; padding: 40px 20px;}
	.index_case .tpleft .pic img{ width: 48px;}
	.index_case .tpleft .img1 img{ height: 25px;}
	.index_case .tpleft .img1{ margin: 20px 0px;}
	.index_case .tpleft .desc{ margin-bottom: 25px;}
	.index_case .list ul li .icon img{ height: 50px;}
	.index_case .list ul li{ padding: 20px 8px;}
	.index_chico .solu_1 .content .title{ font-size: 14px; line-height: 1.3; margin-bottom: 15px; padding-right: 40%;}
	.index_chico .solu_1 .content .desc{ font-size: 12px; line-height: 1.8;}
	.index_chico .solu_1 .content .title span{ font-size: 20px;}
	.index_chico .solu_1{ min-height: 230px;}
	.index_coper ul{    grid-template-columns: repeat(3, 1fr);}
	.index_new{ flex-direction: column;}
	.index_new .new_left{ width: 100%;}
	.index_new .new_left a .content .title{ font-size: 16px;}
	.index_new .new_left a .photo{ margin-bottom: 10px;}
	.index_new .new_left a .content .desc{ margin: 10px 0px;}
	.index_new .new_right ul li .desc{ margin: 10px 0px;}
	.index_new .new_right ul li .title a{ font-size: 16px;}
	.index_new .new_right ul li{ padding-bottom: 15px; margin-bottom: 15px;}
	.index_new .new_left{    border-bottom: 1px #eeeeee solid;padding-bottom: 15px;}
	footer .tpleft .dblogo img{ height: 25px;}
	footer{ padding: 30px 0px;}
	footer .tpleft .title{ font-size: 16px; margin: 10px 0px;}
	footer .tpleft .desc{ font-size: 14px;}
	footer .tpright{ width: 100%;}
	footer .tpright .copyright{ text-align: left;}
	footer .tpright .weix ul{ justify-content: flex-start;}
	footer .tpright .weix ul li{ margin-left: 0px; margin-right: 15px; width: 90px;}
	footer .tpright .weix ul li img{ width: 80px;}
	footer .tpright .weix{ margin: 15px 0px;}
	.part_1 ul li .box .more{ font-size: 13px; line-height: 2.4;}
	.index_case .tpleft .more{font-size: 13px; line-height: 2.4;}
	.nybanner img{ min-height: 200px;object-fit: cover;
		object-position: center center;}
		.nybanner .container .content{ width: 100%; margin-left: 0px; max-width: 100%;}
		.nybanner .container .content .title{ font-size: 22px;}
		.nybanner .content .desc{ font-size: 14px;}
		.pro_nav ul li a img{ height: 25px;}
		.pro_class .container{ width: 100%;}
		.pro_nav ul li a{ padding: 10px 20px;}
		.main{ padding: 30px 0px;}
		.product_1 .pr_left{ flex-direction: column; line-height: 35px; margin-bottom: 14px;}
		.product_1 .pr_left .list{ margin-left: 0px;}
		.product_1 .pr_left .txt{ margin-bottom: 10px;}
		.product_1{ margin-bottom: 25px;}
		.product_1{ align-items: flex-start;}
		.pro_list ul{    grid-template-columns: repeat(3, 1fr);
			grid-gap: 10px 10px;}
			.pro_list ul li a{ padding: 15px 0px;}
			.pro_list ul li a .content{ padding: 0px 10px;}
			.pro_list{ margin-bottom: 25px;}
			.loading a{ height: 38px;}
			.show_one{ flex-direction: column;}
			.show_one .show_left{ width: 100%; margin-bottom: 15px;}
			.show_one .show_right{ flex:none; width: 100%;}
			.local.no1 .container{ flex-direction: column; align-items: flex-start;}
			.local.no1 .tpright{ margin-top: 10px;}
			.local.no1 .tpright a{ margin-left: 0px; margin-right: 7px;}
			.show_one{ padding: 20px 0px;}
			.show_one .show_left .show_class{ width: 60px;}
			.show_one .show_left .show_class .btn{ width: 15px; height: 9px;}
			.show_one .show_right{ padding: 20px;}
			.show_right .title{ font-size: 22px;}
			.show_right .line{ margin-bottom: 15px;}
			.but_one{ font-size: 13px; padding: 0px 32px;}
			.show_two{ font-size: 20px; margin-bottom: 15px;}
			.pro_tit span{ font-size: 18px; padding-bottom: 10px;}
			.pro_tit span:before{ width: 72px;}
			.parameters{ margin-bottom: 15px;}
			.pro_cont{ padding: 15px; margin-bottom: 20px;}
			.show_three{ padding-bottom: 25px;}
			.show_btn span{ width: 6px; height: 6px;}
			.show_btn{ padding: 17px 0px;}
			.parameters ul li{ padding: 10px;}
			.about_1 .box{ flex-direction: column;}
			.about_1{ padding: 35px 0px;}
			.about_1 .box .video1{ width: 100%; margin-bottom: 20px;}
			.about_1 .box .content{ flex:none; width: 100%; margin-left: 0px; font-size: 14px;}
			.about_1 .box .content .title{ font-size: 18px;}
			.about_1 .box .content .list li.no1 .num span{ font-size: 30px;}
			.about_1 .box .content .list .num{ font-size: 18px;}
			.about_1 .box .content .list li .num span{ font-size: 30px;}
			.about_1 .box .content .list li.no1 .num span:before{ font-size: 20px;}
			.about_1 .box .content .desc{ margin-bottom: 20px;}
			.about_2{ padding: 35px 0px;}
			.about_bt .eng{ font-size: 32px;}
			.about_bt .txt{ font-size: 22px; margin-top: -20px;}
			.about_bt .line { margin-top: 10px;}
			.about_bt .line img{ height: 2px;}
			.about_bt{ margin-bottom: 20px;}
			.about_bt .lab{ font-size: 12px; margin-top: 7px;}
			.about_cer .btn{ width: 22px; height: 22px;background-size: 9px 7px;}
			.about_4 .about_bt{ width: 100%;}
			.about_4 .list ul li .cont{ margin-left: 10px;}
			.about_4 .list ul li .cont .tit{ font-size: 22px; margin-bottom: 10px;}
			.about_4 .list ul li{ margin-bottom: 20px;}
			.about_4{ padding: 30px 0px;}
			.about_5{ padding: 30px 0px;}
			.team_1 ul li a .title{ margin: 10px 0px 3px;}
			.team_1 .btn{ width: 22px; height: 22px;background-size: 9px 7px; z-index: 20;}
			.sup_list ul{    grid-template-columns: repeat(2, 1fr);}
			.sup_list ul li{ padding: 20px;}
			.sup_list ul li .infor .more{ width: 35px; height: 20px;}
			.sup_list ul li .desc{ margin-top: 10px; margin-bottom: 10px;}
			.support_1{ padding: 30px 0px;}
			.fany{ margin-top: 30px;}
			.book_1{ padding: 35px 0px;}
			.book_1 .book_title{ font-size: 25px; margin-bottom: 25px;}
			.book_1 .list ul li{width: 100%; margin-bottom: 15px;}
			.book_1 .list ul li.no2{ margin-bottom: 30px;}
			.book_1 .list ul li.no3 .sumbit{ width: 200px; height: 50px;}
			.book_1 .list ul li .formbit{ height: 45px;}
			.sup_list ul li .box .down img{ width: 12px;}
			.sup_list ul{grid-gap:15px 15px;}
			.nybanner.no2 .container .content .title{ text-align: center;}
			.nybanner.no2 .eng{ text-align: center; font-size: 22px; margin-top: 9px;}
			.con_list ul{grid-template-columns: repeat(2, 1fr);}
			.con_list ul li .icon img{ height: 30px;}
			.con_list ul li{ padding: 20px 15px;}
			.con_list ul li .line{ width: 30px; margin-top: 15px;}
			.con_list ul li .title{ margin-top: 10px; margin-bottom: 7px;}
			.con_list{ margin-bottom: 20px;}
			.contact_1{ padding: 30px 0px;}
			.new_top ul li{ flex-direction: column;}
			.new_top ul li .photo{ width: 100%;}
			.new_top ul li .content{ padding: 20px;}
			.new_top ul li .content .title a{ font-size: 18px;}
			.new_top ul li .content .desc{ margin: 10px 0px;}
			.new_top ul li .content .date{ margin-bottom: 15px;}
			.new_sbtn span{  width: 10px; height: 10px;}
			.new_top .list{ margin-bottom: 20px;}
			.new_tit{ font-size: 22px;}
			.new_list ul{grid-template-columns: repeat(2, 1fr);    grid-gap: 15px 15px;}
			.news{ padding-bottom: 30px;}
			.new_class{ margin-bottom: 20px;}
			.f_up ul{ flex-direction: column;}
			.f_up ul li{ width: 100%; line-height: 1.6; margin-bottom: 7px;}
			.newshow .new_left{ padding-right: 0px;}
			.f_up ul li:nth-child(2){ text-align: left;}
			.f_up{ padding-top: 20px;}
			.local .container{ padding: 12px 0px;}
			.newshow .new_left .date{ padding: 15px 0px;}
			.newshow .new_left .line{ width: 60px;}
			.newshow .new_left .new_t{ font-size: 22px; margin: 15px 0px;}
			.newshow .new_left .new_show{ padding-bottom: 20px;}
			.newshow .new_right .r_tit{ padding-left: 10px;}
			.show_one .show_left{ display:flex; flex-direction:column-reverse;}
			.show_one .show_left .list{ flex:unset;width:100%;}
			.show_one .show_left .show_class { margin-right:0;}
			.show_one .show_left .show_class .swiper{ height:auto; margin:0 20rem;}
			.show_one .show_left .show_class{ width:100%; display:flex; flex-direction:row; align-items:center; margin-top:40rem;}
			.show_one .show_left .show_class ul li .image_pic{ position:static; height:auto;}
			.show_one .show_left .show_class ul li{ height:auto; margin-bottom:0;}
			.show_one .show_left .show_class .prev{ transform:rotate(-90deg); margin:0;}
			.show_one .show_left .show_class .next{ transform:rotate(-90deg); margin:0;}
			.about_cer .box{ background-position:left bottom 10px;}
	}

@media (max-width:640px){
	.index_case .list ul{grid-template-columns: repeat(3, 1fr);}
	}
@media (max-width:450px){
	footer .container{flex-direction: column;}
	.pro_list ul{ grid-template-columns: repeat(2, 1fr);}
	.product_1 .pr_left .list a{ padding: 0px 10px;}
	.sup_list ul{grid-template-columns: repeat(1, 1fr);}
	.new_list ul{grid-template-columns: repeat(1, 1fr);    grid-gap: 15px 15px;}
	.new_list ul li a .content{ padding: 15px;}
	.about_cer .box{ background-position:left bottom 15px;}
	.con_two{ border-radius: 8px; overflow: hidden; height:450px}
	
}