@charset "utf-8";

/* CSS Document */
html,
body {
	width: 100%;
	overflow-x: hidden;
	
}

html {}

body {
	position: relative;
	font: 12px/2 微软雅黑, Verdana, Arial, Helvetica, sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

ul,
li {
	list-style: none;
}

.c-b {
	clear: both;
}

.lg-container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

:root {
	--color: #394091;
}

.hide {
	display: none !important;
}

/*首页*/

.lg-wrap {
	position: relative;
}

.headWrap {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
	border-bottom: 1px solid rgba(255 255 255/30%);
	transition: all 0.2s;
}

.headWrap.act {
	color: #333;
	background: #fff;
	box-shadow: 0 3px 6px rgba(0 0 0/10%);
}

.logo,
.search,
.nav {
	border-right: 1px solid rgba(255 255 255/30%);
}

.logo {
	flex-shrink: 0;
	width: 400px;
	height: 90px;
	padding: 0 30px;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo2 {
	display: none;
}

.headWrap.act .logo {
	display: none;
}

.headWrap.act .logo2 {
	display: flex;
}

.nav {
	width: 100%;
	height: 90px;
	padding: 0 30px;
}

.nav>ul {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.nav>ul>li {
	position: relative;
	height: 90px;
}

.nav>ul>li>a {
	font-size: 14px;
	line-height: 90px;
	display: block;
	color: #fff;
	transition: all 0.2s;
}

.nav>ul>li>a:hover {
	text-decoration: underline;
	transform: scale(1.1);
}

.nav>ul li .navchild {
	display: none;
	position: absolute;
	left: -78px;
	width: 220px;
}

.nav>ul li .navchild ul {
	width: 100%;
	position: relative;
	padding: 10px 0;
}

.nav>ul li .navchild ul:before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(0 0 0/60%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	filter: blur(1px);
}

.nav>ul li .navchild ul:after {
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid rgba(0 0 0/60%);
	position: absolute;
	top: -9px;
	left: calc(50% - 10px);
	z-index: -1;
	filter: blur(1px);
}

.nav>ul li .navchild ul li {
	width: 100%;
	text-align: center;
	line-height: 30px;
}

.nav>ul li .navchild ul li a {
	display: block;
	padding: 5px 10px;
	color: #fff;
	font-size: 14px;
	transition: all 0.2s;
}

.nav>ul li .navchild ul li a:hover {
	text-decoration: underline;
	transform: scale(1.05);
}

.nav>ul li:hover .navchild {
	display: block;
}

.headWrap.act .nav>ul>li>a {
	color: #333;
}

.search {
	flex-shrink: 0;
	width: 90px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search span.fa {
	font-size: 20px;
	cursor: pointer;
}

.tools {
	flex-shrink: 0;
	width: 400px;
	padding: 0 30px;
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
}

.tools i {
	margin-right: 10px;
}

.nav-bar {
	width: 60px;
	text-align: center;
	font-size: 24px;
}

.nav-wap {
	display: none;
	position: fixed;
	top: 60px;
	right: 0;
	z-index: 9;
	width: 100%;
	height: calc(100vh - 60px);
	overflow: auto;
	background: #f2f2f2;
	box-shadow: 0 0 3px rgba(0 0 0/18%)
}

.nav-wap>ul {
	border-top: 4px solid var(--color);
	padding: 1em 0;
}

.nav-wap>ul>li {
	font-size: 18px;
	position: relative;
	border-bottom: 1px solid rgba(0 0 0/10%);
}

.nav-wap>ul>li .nav-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-wap>ul>li>.nav-title a {
	color: var(--color);
	font-weight: bold;
	padding: 6px 10px;
}

.nav-wap>ul>li span {
	width: 30px;
	margin-right: 20px;
	text-align: center;
	color: var(--color);
	cursor: pointer;
}

.nav-wap ul li ul {
	display: none;
}

.nav-wap ul li ul li {
	font-size: 16px;
	border-bottom: 1px solid #ccc;
}

.nav-wap ul li ul li:last-child {
	border: 0;
}

.nav-wap>ul>li>ul>li a {
	color: var(--color);
	text-indent: 2em;
	padding: 6px 10px;
}

.nav-wap ul li ul li ul {}

.nav-wap ul li ul li ul li {
	font-size: 12px;
}

.nav-wap ul li ul li ul li a {
	color: var(--color);
}

.nav-wap li a:hover {
	text-decoration: underline;
}

.searchBar {
	display: none;
	position: fixed;
	top: 90px;
	left: 0;
	z-index: 9;
	width: 100%;
	padding: 60px 0;
	background: var(--color);
	background-size:contain;
}

.searchBar .lg-container {
	position: relative;
}

.txtsearch {
	width: 100%;
	height: 50px;
	border: 0;
	outline: none;
	border-radius: 25px;
	text-indent: 2em;
	font-size: 16px;
}

.btnsearch {
	position: absolute;
	right: 10px;
	top: 5px;
	width: 50px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 24px;
	color: var(--color);
	border-left: 1px solid var(--color);
	cursor: pointer;
}

.search_content{
	max-width:1000px;
	margin:30px auto;
}

.banner {
	position: relative;
	width: 100%;
	transition: all 0.2s;
}

.banner .imgs {
	width: 100%;
	height: 100%;
}

.banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner .text {
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 50px;
	color: #fff;
	width: 100%;
	margin-top: -50px;
	text-align: center;
	transition: all 0.2s;
}

.banner .text:before,
.banner .text:after {
	content: "";
	display: block;
	width: 1px;
	height: 150px;
	background: rgba(255 255 255/80%);
	position: absolute;
	transition: all 0.2s;
}

.banner .text:before {
	top: -170px;
	left: 50%;
}

.banner .text:after {
	bottom: -170px;
	left: 50%;
}

.bodyWrap {}

/*公用样式*/
.title {
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.title span {
	font-size: 36px;
	font-weight: 600;
}

a.more {
	width: 120px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	background: var(--color);
	border: 1px solid var(--color);
	color: #fff;
	text-align: center;
	transition: all 0.2s;
}

a.more i {
	margin-left: 10px;
}

a.more:hover {
	background: #4b55c1;
}

.title a.more {
	background: none;
	color: var(--color);
}

.title a.more:hover {
	background: #4b55c1;
	color: #fff;
}

/*公用样式结束*/

.newsContainer {
	background: url(../images/newsbg.png) left center no-repeat;
	padding: 50px 0;
	position: relative;
	z-index: 1;
}

.news-list {
	display: flex;
	margin: 0 -10px;
}

.news-list .item {
	width: calc(33.33% - 20px);
	margin: 10px;
}

.news-list .item .img {
	width: 100%;
	overflow: hidden;
}

.news-list .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s;
}

.news-list .item .text {
	border: 1px solid #eee;
	background: #fff;
}

.news-list .item:hover .img img {
	transform: scale(1.05);
}

.news-list .item:hover .text h3 {
	color: var(--color);
}

.aboutContainer {
	background: url(../images/abbg.jpg) center no-repeat;
	background-size: cover;
	padding: 100px 0 0 0;
	color: #fff;
	position: relative;
	z-index: 2;
}

.aboutContainer .content {}

.aboutContainer .content h2 {
	margin-bottom: 50px;
	font-weight: 600;
}

.aboutContainer .content h2:after {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: #fff;
	margin-top: 15px;
}

.aboutContainer .content p {
	font-size: 14px;
	line-height: 2;
}

.aboutContainer .content a {
	margin-top: 50px;
}

.aboutContainer .param {
	position: relative;
}

.aboutContainer .param:after {
	content: "";
	display: block;
	width: 50%;
	height: 150px;
	background: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
}

.aboutContainer .param .lg-container {
	display: flex;
	justify-content: end;
	position: relative;
	z-index: 2;
}

.aboutContainer .param .paramBox {
	background: #fff;
	border-radius: 50px 0 0 0;
	width: 60%;
	height: 150px;
	padding: 30px;
	color: #333;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.aboutContainer .param .paramBox dl {
	width: 33.33%;
	border-right: 1px solid #eee;
	text-align: center;
}

.aboutContainer .param .paramBox dl dt {
	font-size: 36px;
	color: var(--color);
	font-weight: bold;
	line-height: 1;
}

.aboutContainer .param .paramBox dl dd {
	font-size: 15px;
	color: #999;
	line-height: 2;
}

.caseContainer {
	padding: 50px 0 0 0;
	position: relative;
}

.caseContainer:before {
	content: "";
	display: block;
	width: 700px;
	height: 700px;
	background: url(../images/casebg.png) center no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
}

.caseContainer .content {}

.caseContainer .first-item {
	display: flex;
	margin-bottom: 30px;
}

.caseContainer .first-item .img {
	flex-shrink: 0;
	width: 50%;
	overflow: hidden;
}

.caseContainer .first-item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s;
}

.caseContainer .first-item .text {
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.caseContainer .first-item .text h2 {
	font-weight: 600;
}

.caseContainer .first-item .text h2:after {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: var(--color);
	margin-top: 15px;
}

.caseContainer .first-item .text p {
	font-size: 14px;
	color: #999;
	line-height: 1.5;
}

.caseContainer .first-item .text a {}

.caseContainer .first-item:hover img {
	transform: scale(1.05);
}

.caseSwiper {}

.caseSwiper .case-item {}

.caseSwiper .case-item .img {
	width: 100%;
	overflow: hidden;
}

.caseSwiper .case-item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s;
}

.caseSwiper .case-item .text {
	padding: 10px 0;
}

.caseSwiper .case-item .text h2 {
	font-size: 16px;
	margin-bottom: 20px;
}

.caseSwiper .case-item .text a {
	font-size: 14px;
	color: var(--color);
}

.caseSwiper .case-item:hover img {
	transform: scale(1.05);
}

.chbg {
	background: url(../images/honorbg.png) center no-repeat;
	background-size: cover;
	width: 100%;
	height: 1300px;
	position: absolute;
	bottom: -450px;
	left: 0;
}

.honorContainer {
	padding: 50px 0;
	position: relative;
}

.honorSwiper {
	padding: 0 0 50px 0;
}

.honorSwiper .honor-item {
	background: #fff;
	border: 1px solid #eee;
	padding: 20px;
}

.honorSwiper .honor-item .img {
	width: 100%;
	overflow: hidden;
}

.honorSwiper .honor-item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s;
}

.honorSwiper .honor-item .text {
	padding: 20px 0 0 0;
	font-weight: 600;
}

.honorSwiper .honor-item:hover .text {
	color: var(--color);
}

.honorSwiper .honor-item:hover img {
	transform: scale(1.05);
}

.honorSwiper .honor-pagination {
	top: unset;
	bottom: 0;
}

.footWrap {
	background: url(../images/footbg.jpg) center no-repeat;
	background-size: cover;
}

.footer {
	padding: 50px 0 80px 0;
}

.foot-logo {
	text-align: center;
	margin-bottom: 50px;
}

.footer .content {
	display: flex;
}

.foot-ewm,
.foot-contact,
.foot-nav {
	padding: 0 30px;
	border-right: 1px solid rgba(255 255 255/30%);
}

.foot-ewm img {
	width: 120px;
}

.foot-contact {
	width: 320px;
	flex-shrink: 0;
	color: #fff;
}

.foot-contact p {
	margin-bottom: 10px;
}

.foot-contact p i {
	margin-right: 10px;
	width: 20px;
}

.foot-nav {
	width: 100%;
}

.foot-nav>ul {
	display: flex;
	justify-content: space-between;
}

.foot-nav>ul>li {
	position: relative;
	text-align: center;
}

.foot-nav>ul>li:after {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: #fff;
	margin-top: 15px;
	position: absolute;
	left: 50%;
	margin-left: -15px;
	transition: all 0.2s;
}

.foot-nav>ul>li a {
	color: #fff;
}

.foot-nav>ul>li:hover:after {
	width: 100%;
	left: 0;
	margin-left: 0;
}

.foot-nav>ul>li>ul {
	position: absolute;
	top: 50px;
	left: 50%;
	width: 200px;
	margin-left: -100px;
}

.foot-nav>ul>li>ul li {
	text-align: center;
	line-height: 1.8;
}

.foot-nav>ul>li>ul li a {
	color: rgba(255 255 255/70%);
}

.foot-nav>ul>li>ul li a:hover {
	color: #fff;
}

.bottom {
	border-top: 1px solid rgba(255 255 255/30%);
	padding: 10px 0;
	text-align: center;
	color: rgba(255 255 255/70%);
}

.bottom a {
	color: rgba(255 255 255/70%);
}


/*内页*/

.inbanner {
	position: relative;
}

.inbanner:before {
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	background: linear-gradient(rgba(0 0 0/50%), rgba(0 0 0/0%));
	position: absolute;
	top: 0;
	left: 0;
}

.inbanner .text {
	margin-top: 0;
	line-height: 1;
	font-size: 36px;
	vertical-align: center;
}

.inbanner .text span {}

.inbanner .text:before,
.inbanner .text:after {
	height: 60px;
}

.inbanner .text:before {
	top: -80px;
}

.inbanner .text:after {
	bottom: -80px
}


.location {
	height: 40px;
	line-height: 40px;
	background: #efefef;
	color: #999;
}

.location a {
	margin: 0 5px;
	color: #999;
}

.location a:hover {
	color: var(--color);
}

.contenthead {
	width: 100%;
	margin: 15px auto;
	border-bottom: #ccc dashed 1px;
}

.contenthead h1 {
	text-align: center;
	font-size: 20px;
}

.contenthead h2 {
	font-weight: normal;
	text-align: center;
	font-size: 12px;
	padding: 5px 0;
	color: #999;
}

.contentmain {
	min-height: 400px;
	margin: 0 auto;
	padding: 15px;
	color: #333;
	line-height: 1.8;
	word-wrap: break-word;
	font-size: 16px;
}

.contentmain p {
	margin: 0 0 10px 0;
}

.contentmain img {
	border: none;
	max-width: 100%;
}

.contentfooter {
	margin: 20px 0;
	color: #999;
}

.contentfooter a {
	color: #999;
}

.contentfooter a:hover {
	color: #2ea2c5;
}

.content .title {
	margin-bottom: 20px;
}

.singleShow {}

.singleShow p {
	font-size: 16px;
}

.main_body {
	min-height: 400px;
	background: url(../images/mainbg.png) bottom center no-repeat;
	background-size: auto;
}

.list-content {
	display: flex;
	padding: 30px 0;

}

.leftNav {
	width: 300px;
	flex-shrink: 0;
	margin-right: 30px;
}

.leftMenu {
	width: 100%;
	height: 100px;
	line-height: 100px;
	text-indent: 1em;
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	background: var(--color) url(../img/leftbg.png) right center no-repeat;
	background-size: contain;
}

.leftNav ul {
	border: 1px solid #ddd;
}

.leftNav ul li {
	height: 60px;
	border-bottom: 1px solid #ddd;
	text-indent: 2em;
	line-height: 60px;
	font-size: 16px;
}

.leftNav ul li:last-child {
	border: 0;
}

.leftNav ul li a {
	display: block;
	color: #737373;
}

.leftNav ul li.act a {
	font-weight: 600;
	color: var(--color);
}

.leftNav ul li:hover {
	background: #f9f9f9;
}


.right {
	width: 100%;
}


/**/
.base_piclist {
	display: flex;
	flex-wrap: wrap;
}

.base_piclist .item {
	width: calc(33.33% - 20px);
	border: 1px solid #eee;
	margin: 10px;
	padding: 10px;
	background: #fff;
	transition: all 0.2s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.base_piclist .item .img {
	width: 100%;
	margin-bottom: 10px;
	overflow: hidden;
}

.base_piclist .item .img img {
	width: 100%;
	transition: all 0.2s;
}

.base_piclist .item .text {
	padding: 10px;
	transition: all 0.2s;
}

.base_piclist .item .text h3 {
	line-height: 1.5;
	font-size: 16px;
	font-weight: 600;
}

.base_piclist .item:hover {
	box-shadow: 0 3px 6px rgba(0 0 0/10%);
}

.base_piclist .item:hover .img img {
	transform: scale(1.05);
}

.base_piclist .item:hover .text {
	color: var(--color);
}

/**/
.base_caselist {
	display: flex;
	flex-wrap: wrap;
}

.base_caselist .item {
	width: calc(33.33% - 20px);
	border: 1px solid #eee;
	margin: 10px;
	background: #f2f2f2;
	transition: all 0.2s;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.base_caselist .item .img {
	width: 100%;
	overflow: hidden;
}

.base_caselist .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s;
}

.base_caselist .item .text {
	padding: 15px;
	transition: all 0.2s;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.base_caselist .item .text span {
	line-height: 1.5;
	font-size: 14px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.base_caselist .item .text a {
	width: 80px;
	flex-shrink: 0;
	text-align: center;
	color: var(--color);
}

.base_caselist .item .text a i {
	margin-left: 5px;
}

.base_caselist .item:hover {
	box-shadow: 0 3px 6px rgba(0 0 0/10%);
}

.base_caselist .item:hover .img img {
	transform: scale(1.05);
}

/**/
.base_textlist {
	display: flex;
	flex-wrap: wrap;
}

.base_textlist .item {
	width: calc(50% - 20px);
	margin: 10px;
	border: 1px solid #eee;
	background: #fff;
}

.base_textlist .item:hover {
	border-color: #fff;
	box-shadow: 0 3px 6px rgba(0 0 0/10%);
}

/**/
.base_pictextlist {}

.base_pictextlist .item {
	width: 100%;
	margin-bottom: 20px;
	display: flex;
	border: 1px solid #eee;
	background: #fff;
}

.base_pictextlist .item .img {
	width: 40%;
	overflow: hidden;
}

.base_pictextlist .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.2s;
}

.base_pictextlist .item .text {
	width: 60%;
}

.base_pictextlist .item:hover {
	box-shadow: 0 3px 6px rgba(0 0 0/10%);
}

.base_pictextlist .item:hover .img img {
	transform: scale(1.05);
}

/**/
.public-text {
	padding: 30px;
}

.public-text dl {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.public-text dl dt {
	font-size: 24px;
}

.public-text dl dd.fg {
	margin: 0 10px;
	color: #ccc;
}

.public-text dl dd {
	font-size: 14px;
}

.public-text h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.public-text h3:after {
	content: "";
	display: block;
	width: 30px;
	height: 2px;
	background: var(--color);
	margin-top: 15px;
}

.public-text p {
	color: #666;
	line-height: 1.5;
	height: 54px;
	overflow: hidden;
	margin-bottom: 15px;
}

.public-text a {
	font-size: 14px;
	color: var(--color);
}

.public-text a i {
	margin-left: 10px;
}

/**/
.contactInner {
	padding: 30px 0;
}

.contactInner .title {
	font-size: 30px;
	font-weight: 600;
	color: var(--color);
	margin-bottom: 30px;
}

.contactInner .content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.contactInner .item {}

.contactInner .item:nth-child(1) {
	width: 25%;
	font-size: 16px;
}

.contactInner .item:nth-child(1) em {
	margin-right: 10px;
	width: 20px;
	text-align: center;
	color: #999;
}

.contactInner .item:nth-child(2) {
	width: 25%;
	margin: 0 2.5%;
}

.contactInner .item:nth-child(2) img {
	max-width: 120px;
}

.contactInner .item:nth-child(3) {
	width: 45%;
}

.contactInner .item .tit {
	font-size: 18px;
	border-bottom: 1px solid #ddd;
}

.contactInner .item .cont {
	padding: 20px 0;
}

.lg-form {
	margin: 0 -15px;
	font-family: "微软雅黑";
}

.lg-form-flex {
	display: flex;
	justify-content: center;
}

.lg-form-item {
	width: 100%;
	margin: 0 15px;
}

.lg-form-item input,
.lg-form-item textarea,
.lg-form-item select {
	width: 100%;
	border: 0;
	outline: none;
}

.lg-form-item input {
	height: 40px;
	margin-bottom: 30px;
	margin-right: 10px;
	padding-left: 10px;
	font-size: 16px;
	background: none;
	border-bottom: 1px solid var(--color);
}

.lg-form-item textarea {
	margin-bottom: 30px;
	padding: 10px;
	font-size: 14px;
	background: none;
	border-bottom: 1px solid var(--color);
}

.lg-form-item select {
	height: 40px;
	padding: 0 10px;
	margin-bottom: 30px;
	border-radius: 5px;
	font-size: 16px;
}

.lg-form-btn {
	width: 130px;
	height: 40px;
	margin-bottom: 30px;
	color: #fff;
	font-size: 14px;
	background: var(--color);
	text-align: center;
	line-height: 40px;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.2s;
}

.lg-form-btn:hover {
	opacity: 0.8;
}

.map {
	box-shadow: 0 -3px 6px rgba(0 0 0/10%);
}

/**/
.AboutInner {
	padding: 30px 0;
	background: url(/skins/cn/images/aboutbg.png) top center no-repeat;
	background-size: 100%;
}

.AboutInner .title {
	font-size: 30px;
	font-weight: 600;
}

.AboutInner .cont {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.AboutInner .text {
	width: 80%;
	padding-right: 50px;
	font-size: 14px;
}

.AboutInner .text p {
	margin-bottom: 15px;
}

.AboutInner .param {
	width: 20%;
	border-left: 2px solid #ccc;
	padding: 0 20px;
}
.AboutInner .param .paramBox{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.AboutInner .param dl {
	margin-bottom: 20px;
}

.AboutInner .param dl dt {
	font-size: 36px;
	color: var(--color);
	font-weight: bold;
	line-height: 1;
}

.AboutInner .param dl dd {
	font-size: 15px;
	color: #999;
	line-height: 2;
}
.AboutInner .item{
	width: calc(50% - 60px);
	min-height: 360px;
	margin: 30px;
	padding: 30px;
	background: #fff url(../images/itembg.png) right bottom no-repeat;
	background-size: 200px 200px;
	box-shadow: 2px 2px 3px rgba(0 0 0/10%);
}
.AboutInner .item .tit{
	font-size: 20px;
	font-weight: 600;
	color: var(--color);
	border-bottom: 1px solid #eee;
}
.AboutInner .item .txt{
	padding: 20px 0;
	font-size: 14px;
}

/**/
.caseShow{
	padding: 0 10px;
}
.caseShow .item{
	display: flex;
	margin-bottom: 30px;
}
.caseShow .item .img{
	width: 50%;
}
.caseShow .item .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.caseShow .item .text{
	width: 50%;
	padding: 30px;
	background: #f2f2f2;
}
.caseShow .item .text h3{
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--color);
	margin-bottom: 30px;
}
.caseShow .item .text h3:after{
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: var(--color);
	margin-top: 10px;
}
.caseShow .item .text p{
	font-size: 14px;
}
.caseShow .subtitle{
	margin-bottom: 30px;
	font-size: 20px;
	border-bottom: 1px solid #ddd;
	font-weight: 600;
	color: var(--color);
}

.detail img{
	max-width: 100%;
}

/*page*/
.Pager {
	margin-top: 30px;
	padding: 10px 20px;
	text-align: center;
}

.Pager:after {
	content: "";
	clear: both;
	display: block;
}

.Pager a,
.Pager span {
	display: inline-block;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin: 3px 3px;
	line-height: 30px;
	color: #333;
	text-align: center;
}

.Pager a {
	width: 30px;
	height: 30px;
}

.Pager span {
	padding: 0 10px;
}

.Pager a.fa {
	padding: 0 10px;
}

.Pager a.act {
	background: var(--color);
	color: #fff;
	font-weight: bold;
}

.Pager a:hover {
	color: var(--color);
	background: #f9f9f9;
}

.Pager a.act:hover {
	background: var(--color);
	color: #fff;
	cursor: text;
}

.Pager a.fa.lcok {
	color: #ccc;
	background: #fff;
	cursor: text;
}



@media screen and (max-width:1660px) {
	.lg-container {
		padding-left: 10px;
		padding-right: 10px;
	}

	.logo {
		width: auto;
	}

	.tools {
		width: auto;
	}

	.banner {
		height: auto;
	}

	.banner .text span {
		font-size: 40px;
	}

	.banner .text:before,
	.banner .text:after {
		height: 100px;
	}

	.banner .text:before {
		top: -120px;
	}

	.banner .text:after {
		bottom: -120px;
	}
	
	.inbanner .text:before,
	.inbanner .text:after {
		display: none;
	}
	.inbanner .text span {
		font-size: 30px;
	}
	.inbanner{
		height: 300px;
	}
}

@media screen and (max-width:1200px) {
	.search {
		display: none;
	}

	.title {
		margin-bottom: 30px;
	}

	.title span {
		font-size: 30px;
	}
	
	.contactInner .content{
		flex-wrap: wrap;
	}
	.contactInner .item:nth-child(1){
		width: 50%;
	}
	.contactInner .item:nth-child(2){
		width: 50%;
		margin: 0;
	}
	.contactInner .item:nth-child(3){
		width: 100%;
	}

}

@media screen and (max-width:1003px) {
	.tools {
		display: none;
	}

	.newsContainer {
		padding: 30px 0;
	}

	.public-text {
		padding: 15px;
	}

	.public-text dl {
		margin-bottom: 0;
	}

	.public-text dl dt {
		font-size: 20px;
	}

	.public-text h3 {
		font-size: 16px;
	}

	.public-text h3:after {
		margin-top: 5px;
	}

	.aboutContainer {
		padding: 30px 0 0 0;
	}

	.aboutContainer .param .paramBox dl dt {
		font-size: 30px;
	}

	.aboutContainer .param .paramBox dl dd {
		font-size: 14px;
	}

	.caseContainer {
		padding: 30px 0;
	}

	.caseContainer .first-item .text {
		padding: 15px 20px;
	}

	.caseContainer .first-item .text h2 {
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.caseContainer .first-item .text p {
		height: 104px;
		overflow: hidden;
		margin-bottom: 20px;
	}

	.honorContainer {
		padding: 30px 0;
	}

	.foot-ewm,
	.foot-contact,
	.foot-nav {
		padding: 0 15px;
	}

	.foot-contact {
		width: auto;
	}
	
	.AboutInner .text{
		width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}
	.AboutInner .param{
		width: 100%;
		border-left: 0;
	}
	.AboutInner .param .paramBox{
		flex-direction: row;
	}
	
	.base_piclist .item{
		width: calc(50% - 20px);
	}
	
	.base_caselist .item{
		width: calc(50% - 20px);
	}
	.base_textlist .item{
		width: 100%;
		margin:0 0 20px 0;
	}
	
}

@media screen and (max-width:768px) {
	body.hidden {
		overflow: hidden;
		height: 100vh;
	}

	.logo {
		height: 60px;
		padding: 10px 20px;
	}

	.logo img {
		height: 40px;
	}

	.nav-bar {
		display: block !important;
	}

	.nav {
		display: none;
	}

	.nav-wap.act {
		display: block;
	}

	.banner {
		min-height: 300px;
	}

	.banner img {
		min-height: 300px;
	}

	.banner .text {
		margin-top: -40px;
	}

	.banner .text span {
		font-size: 20px;
		font-weight: 600;
	}

	.banner .text:before,
	.banner .text:after {
		display: none;
	}
	
	.inbanner .text{
		margin-top: 0;
	}

	.title {
		margin-bottom: 20px;
	}

	.title span {
		font-size: 20px;
	}

	a.more {
		width: 100px;
		height: 35px;
	}

	.newsContainer {
		padding: 20px 0;
	}

	.news-list {
		flex-direction: column;
		padding: 0 10px;
	}

	.news-list .item {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.public-text {
		padding: 15px;
	}

	.public-text dl {
		margin-bottom: 0;
	}

	.public-text dl dt {
		font-size: 16px;
	}

	.public-text h3 {
		font-size: 16px;
	}

	.public-text h3:after {
		margin-top: 0;
	}

	.public-text p {
		height: 56px;
	}

	.aboutContainer {
		padding: 20px 0 0 0;
		overflow: hidden;
	}

	.aboutContainer .content h2 {
		margin-bottom: 20px;
	}

	.aboutContainer .content a {
		margin-top: 20px;
	}

	.aboutContainer .param .paramBox {
		width: 100%;
		margin-top: 20px;
		padding: 10px;
		height: 100px;
	}

	.aboutContainer .param:after {
		height: 100px;
	}

	.aboutContainer .param .paramBox dl dt {
		font-size: 20px;
	}

	.aboutContainer .param .paramBox dl dd {
		font-size: 12px;
	}

	.caseContainer {
		padding: 20px 0;
	}

	.caseContainer.show .first-item {
		flex-direction: column;
	}

	.caseContainer .first-item .img {
		width: 100%;
	}

	.caseContainer .first-item .text {
		padding: 15px;
	}

	.caseContainer .first-item .text h2 {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.caseContainer .first-item .text h2:after {
		margin-top: 0;
	}

	.caseContainer .first-item .text p {
		height: 104px;
		overflow: hidden;
		margin-bottom: 20px;
	}

	.caseSwiper .case-item {
		background: #fff;
		box-shadow: 0 0 3px rgba(0 0 0/10%);
	}

	.caseSwiper .case-item .text {
		padding: 15px;
	}

	.caseSwiper .case-item .text h2 {
		line-height: 1.5;
	}

	.honorContainer {
		padding: 20px 0;
	}

	.footer {
		padding: 20px;
	}

	.foot-logo {
		margin-bottom: 20px;
	}

	.footer .content {
		flex-direction: column;
		align-items: center;
	}

	.foot-ewm,
	.foot-contact,
	.foot-nav {
		padding: 10px;
		border-right: 0;
	}

	.foot-contact {
		width: auto;
	}

	.foot-nav {
		display: none;
	}
	
	.bottom{
		padding: 10px;
	}
	.bottom a{
		display: inline-block;
	}
	
	.leftNav{
		display: none;
	}
	
	.AboutInner{
		padding: 15px 0;
	}
	.AboutInner .title{
		font-size: 20px;
	}
	.AboutInner .param dl {
		text-align: center;
	}
	.AboutInner .param dl dt {
		font-size: 20px;
	}
	
	.AboutInner .param dl dd {
		font-size: 12px;
	}
	.AboutInner .item{
		width: 100%;
		margin: 0 0 20px 0;
		min-height: unset;
	}
	
	.base_piclist .item{
		width: 100%;
		margin: 0 0 20px 0;
	}
	.base_caselist .item{
		width: 100%;
		margin: 0 0 20px 0;
	}
	.base_pictextlist .item{
		flex-direction: column;
	}
	.base_pictextlist .item .img,.base_pictextlist .item .text{
		width: 100%;
	}
	
	.contactInner .title{
		font-size: 20px;
		margin-bottom: 0;
	}
	.contactInner .item:nth-child(1){
		width: 100%;
	}
	.contactInner .item:nth-child(2){
		width: 100%;
	}
	.contactInner .item:nth-child(3){
		width: 100%;
	}
	.caseShow{
		padding: 10px;
	}
	.caseShow .item{
		flex-direction: column;
	}
	.caseShow .item .img{
		width: 100%;
	}
	.caseShow .item .text{
		width: 100%;
		padding: 15px;
	}
	.caseShow .item .text h3{
		font-size: 18px;
	}
	
	
	/*分页*/
	.Pager{ text-align:center; padding:20px 0;}
	.Pager a{ display:none;}
	.Pager a.fa{ display:inline-flex; align-items: center; justify-content: center; padding:10px 30px; line-height: unset; margin:0 10px; color:#333; border:1px solid #eee; border-radius:20px;background: linear-gradient(#eee, #fff);}
	.Pager a.fa.lock{ color:#ccc;}

}