html,body,header,footer,section,nav,div,p,span,ul,li,a,
form,button,select,input,textarea,table,th,tr,td {
	box-sizing:border-box;
	-webkit-tap-highlight-color:transparent!important;
	margin:0;
	padding:0;
}
html,body { font-size:16px;color:#333;font-family:'Arial'; }
a,a:hover { text-decoration:none; }
ul,li { list-style-type:none; }
img { display:block; }
a { color:inherit; }
body::-webkit-scrollbar { width:0!important; }

@font-face {
	font-family: 'iconfont';
	src: url('../fonts/iconfont.ttf');
}
@font-face {
	font-family: 'socialshare';
	src: url('../fonts/iconfont-2.ttf');
}

.ellipsis-d {
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.ellipsis-s {
	overflow:hidden;
	text-overflow:ellipsis;
	-webkit-line-clamp:2;
	display:-webkit-box;
	-webkit-box-orient:vertical;
}


/* loader */
.loader {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	z-index:99;
	background-color:rgba(255,255,255,1);
	-webkit-transition:all .5s;
	transition:all .5s;
}
.loader.active { opacity:0;visibility:hidden; }
.loader .logo {
	width:15%;
	line-height:1;
	overflow:hidden;
}
.loader .logo img { max-width:100%; }
.loader .logo:after {
	content:'';
	display: inline-block;
	width:100%;
	height:2px;
	background-color:rgba(0,0,0,.5);
	-webkit-transform:translateX(-100%);
	transform:translateX(-100%);
	-webkit-animation: loader 1s linear infinite;
	animation: loader 1s linear infinite;
}
@keyframes loader {
	0% { transform:translateX(-100%); }
	100% { transform:translateX(100%); }
}
@-webkit-keyframes loader {
	0% { transform:translateX(-100%); }
	100% { transform:translateX(100%); }
}


/* header start */
.header {
	display:flex;
	align-items:center;
	justify-content:space-between;
	position:fixed;
	top:0;
	left:0;
	z-index:10;
	width:100%;
	height:90px;
	background:transparent;
	color:#fff;
	font-size:18px;
	border-bottom:1px solid rgba(255,255,255,.2);
	padding-left:calc(100vw / 1920 * 60);
	-webkit-transition:all .5s;
	transition:all .5s;
}
.header .left {
	display:flex;
	align-items:center;
	height:100%;
}
.header .left .logo {
	display:flex;
	align-items: center;
	height:70%;
}
.header .left .logo a { display:flex;height:100%; }
.header .left .logo img { max-height:100%; }
.header .left .logo .logo-two { display:none; }
.header .right {
	display:flex;
	height:100%;
}
/* nav */
.header .right .nav { height:100%; }
.header .nav-close {
	display:none;
	position: absolute;
	top: 15px;
	right: calc(100vw / 1920 * 100);
	padding-right:5px;
	color: #fff;
	font-size: 28px;
	font-weight:bold;
	cursor: pointer;
}
.header .nav-close:before { font-family: 'iconfont'; content: '\e86d'; }
.header .right .nav>ul {
	display:flex;
	height:100%;
}
.header .right .nav>ul>li {
	position:relative;
	height:100%;
	padding:0 23px;
}
.header .right .nav>ul>li>a {
	display:flex;
	align-items:center;
	height:100%;
	position:relative;
	padding:0 7px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.header .right .nav>ul>li>a:after {
	content:'';
	position:absolute;
	bottom:-1px;
	left:50%;
	width:0;
	height:3px;
	background-color:#fff;
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
	-webkit-transition:all .5s;
	transition:all .5s;
}
.header .right .nav>ul>li>a:hover { color:#fff; }
.header .right .nav>ul>li>a:hover:after { width:100%; }
.header .right .nav>ul>li>a.active { color:#fff; }
.header .right .nav>ul>li>a.active:after { width:100%; }
/* menu */
.header .right .nav ul.menu {
	position:absolute;
	top:100%;
	left:50%;
	min-width:100%;
	background-color:#fff;
	box-shadow:0 0 10px rgba(0,0,0,.1);
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
	display:none;
}
.header .right .nav ul.menu li {
	display:flex;
	width:100%;
}
.header .right .nav ul.menu li>a {
	white-space:nowrap;
	width:100%;
	text-align:center;
	line-height:1;
	padding:15px 20px;
	font-size:16px;
	color:#333;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.header .right .nav ul.menu li>a:hover { color:#0072ad; }
/* language */
.header .right .language {
	display:flex;
	align-items: center;
	position:relative;
	margin-left:50px;
	margin-right:36px;
}
.header .right .language a {
	display:flex;
	align-items:center;
	padding:10px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.header .right .language a img { max-width:100%; }
.header .right .language a:before {
	/* font-family: 'iconfont';
	font-size: 26px;
	color: #00bcd4;
	font-weight: bold;
	content: '\e99b';
	padding-right: 10px;
	-webkit-transition:all .5s;
	transition:all .5s; */
}
.header .right .language ul {
	position:absolute;
	top:100%;
	left: 0;
	background-color: rgba(0, 114, 173, .9);
	width: 100%;
	display: none;
}
.header .right .language ul a {
	display: flex;
	justify-content:flex-end;
	padding: 10px;
	font-size: 18px;
	color: #fff;
	font-family: 'Impact';
}
/* share */
.share {
	display: flex;
	align-items: center;
	height:88%;
	margin:auto;
	border-left:1px solid rgba(255,255,255,.2);
	border-right:1px solid rgba(255,255,255,.2);
	padding:0 16px;
}
.share a { margin:0 21px; }
.share .social-share-icon {
	font-size:28px;
	border:none;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.share .social-share-icon:hover { color:#0072AD; }
.share .icon-wechat { color:#fff; }
.share .icon-twitter { color:#fff; }
.share .icon-qq { color:#fff; }
.share .social-share-icon:hover { background:none; }
/* search */
.header .right .search {
	display: flex;
	align-items: center;
}
.header .right .search .button {
	display:flex;
	justify-content:center;
	align-items:center;
	height:100%;
	background-color:transparent;
	cursor:pointer;
	width:110px;
	font-size:34px;
	font-weight:bold;
	color:#fff;
}
.header .right .search .button span {
	display:flex;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.header .right .search .button span:before {
	font-family:'iconfont';
	content:'\e704';
}
.header .right .search .page {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:99;
	background-color: rgba(0, 114, 173, .9);
	display:none;
}
.header .right .search .page>div {
	display:flex;
	align-items:center;
	height:100%;
}
.header .right .search .page .close {
	position:absolute;
	top:32px;
	right:calc(100vw / 1920 * 120);
	font-size: 24px;
	color: #fff;
	cursor:pointer;
	z-index:99;
	background-color:transparent;
}
.header .right .search .page .close:before {
	font-family: 'iconfont';
	content: '\e86d';
}
.header .right .search .page form {
	position:relative;
	width:100%;
	max-width:90%;
	margin:0 auto;
	border-bottom: 1px solid rgba(255, 255, 255, .8);
}
.header .right .search .page form p {
	font-size: 18px;
	padding-bottom: 50px;
	letter-spacing: 2px;
	color: #fff;
	text-align: center;
	-webkit-animation: zoomIn 1s 0s ease both;
	animation: zoomIn 1s 0s ease both;
}
.header .right .search .page form input {
	width: 100%;
	height: 50px;
	font-size: 18px;
	border: none;
	outline: none;
	text-align: center;
	color: #fff;
	background-color: transparent;
}
.header .right .search .page form button {
	position: absolute;
	right: 0;
	bottom: 15px;
	background: none;
	border: none;
	cursor: pointer;
	display:flex;
	font-size: 24px;
	color: #fff;
}
.header .right .search .page form button:before {
	font-family: 'iconfont';
	content: '\e704';
}
/* 导航按钮 */
.header .right .nav-button {
	display:none;
	align-items:center;
	padding-left:20px;
}
.header .right .nav-button>div {
	display:flex;
	flex-direction:column;
	width:40px;
	padding:5px;
	cursor:pointer;
}
.header .right .nav-button span {
	width: 100%;
	height: 2px;
	background-color: #333;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.header .right .nav-button span:nth-child(2) {
	margin:5px 0;
}
.header .right .nav-button>div.active span:first-child {
	-webkit-transform: translateY(100%) rotateZ(225deg);
	transform: translateY(100%) rotateZ(225deg);
}
.header .right .nav-button>div.active span:nth-child(2) {
	-webkit-transform: translateX(100px);
	transform: translateX(100px);
	opacity: 0;
	margin:0;
}
.header .right .nav-button>div.active span:last-child {
	-webkit-transform: translateY(-100%) rotateZ(-225deg);
	transform: translateY(-100%) rotateZ(-225deg);
}
/* 二级页面 */
.header .nav-page {
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 114, 173, .9);
	opacity:0;
	z-index:99;
	-webkit-transition: all .5s;
	transition: all .5s;
	display:none;
}
.header .nav-page .title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 60px;
}
.header .nav-page .title .back-btn {
	position: absolute;
	left: calc(100vw / 1920 * 100);
	font-size: 28px;
	font-weight:bold;
	color: #fff;
	cursor:pointer;
}
.header .nav-page .title .back-btn:before {
	font-family: 'iconfont';
	content: '\e660';
}
.header .nav-page .title p>a {
	font-size: 22px;
	color: #fff;
	vertical-align: top;
}
.header .nav-page .content {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.header .nav-page .content ul { width:100%; }
.header .nav-page .content ul li {
	font-size: 22px;
	padding: 15px 0;
	text-align: center;
	width:100%;
}
.header .nav-page .content ul li a {
	display:block;
	color: #fff;
}
/* 导航固定 */
.header.fixed { background:#fff;border-bottom:1px solid #fff; }
.header.fixed .left .logo .logo-one { display:none; }
.header.fixed .left .logo .logo-two { display:block; }
.header.fixed .right .nav>ul>li>a { color:#333; }
.header.fixed .right .nav>ul>li>a:hover { color:#0072ad; }
.header.fixed .right .nav>ul>li>a.active { color:#0072ad; }
.header.fixed .right .nav>ul>li>a:after { background-color: #0072ad; }
.header.fixed .right .tel { color:#fff; }
.header.fixed .right .tel span:before { color:#fff; }
.header.fixed .right .language span { color:#fff; }
.header.fixed .right .language span:before { color:#fff; }
.header .right .nav-button span { background-color: #fff; }
.header.fixed .share { border-left: 1px solid #dfdede;border-right: 1px solid #dfdede; }
.header.fixed .share .social-share-icon { color:#e4e4e4; }
.header.fixed .share .social-share-icon:hover { color:#0072AD; }
.header.fixed .right .search .button span { color:#0072AD; }
.header.fixed .right .nav-button span { background-color:#0072AD; }


@media (max-width:1680px) {
	.header .right .nav>ul>li { padding: 0 15px; }
	.header .right .language { margin-left: 10px;margin-right: 30px; }
	.share a { margin: 0 10px; }
}
@media (max-width:1440px) {
	.header { font-size:16px; }
	.header .right .nav>ul>li { padding: 0 10px; }
	.header .right .nav ul.menu li>a { font-size: 14px; }
	.header .right .search .button { width: 70px; }
	.header .right .language { margin:0 10px; }
	.share { padding:0; }
}
@media (max-width:1200px) {
	.header { height:60px; }
	.header .right .search .button { width: 60px; }
	.header .right .nav-button { display:flex; }
	.header .right .nav-button { padding:0px;margin-right:calc(100vw / 1920 * 100); }
	/* nav */
	.header .nav-page { display:block; }
	.header .nav-page.active { left:0;opacity:1; }
	.header .right .nav {
		position:fixed;
		top:0;
		left:0;
		width:100%;
		height:100%;
		background: rgba(0, 114, 173, .9);
		opacity:0;
		z-index: 99;
		-webkit-transform:translateY(-100%);
		transform:translateY(-100%);
		-webkit-transition: all .5s;
		transition: all .5s;
	}
	.header .right .nav.active {
		opacity:1;
		-webkit-transform:translateY(0);
		transform:translateY(0);
	}
	.header .nav-close { display:flex; }
	.header .right .nav>ul {
		flex-direction:column;
		justify-content:center;
	}
	.header .right .nav>ul>li { height:auto; }
	.header .right .nav>ul>li.more:after {
		font-family: 'iconfont';
		font-size: 18px;
		font-weight:bold;
		position: absolute;
		top: 50%;
		right: 10%;
		content: '\e65f';
		color: #fff;
		cursor:pointer;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.header .right .nav>ul>li>a {
		justify-content:center;
		color:#fff;
		font-size:22px;
		line-height:1;
		padding:15px;
	}
	.header .right .nav>ul>li>a.active { color:#fff; }
	.header .right .nav>ul>li>a:hover { color:#fff; }
	.header .right .nav>ul>li>a:after { display:none; }
}
@media (max-width:768px) {
	.header .left .logo { height: 70%; }
	.header .right .tel { display:none; }
	.header .right .search { display:none; }
	.header .right .nav>ul>li>a { font-size: 18px; }
	.header .nav-page .title p>a { font-size: 18px; }
	.header .nav-page .content ul li { padding: 10px 0; }
	.header .nav-page .content ul li a { font-size: 16px; }
	.header .right .language { display:none; }
	.share { display:none; }
	.header.fixed .right .nav>ul>li>a { color:#fff; }
	.header.fixed .right .nav>ul>li>a.active { color:#fff; }
	
}
/* header end */


/* 首页 banner */
/* 分页器 */
.index-banner .swiper-pagination { bottom:30px; }
.index-banner .swiper-pagination span {
	width:15px;
	height:15px;
	margin:0 10px!important;
	border-radius: 50%;
	background: #000;
	opacity: .5;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
	background-color:#fff;
	opacity:1;
}
/* 前进后退 */
.index-banner .swiper-button-prev, .index-banner .swiper-button-next {
	display:flex;
	justify-content:center;
	align-items:center;
	position: absolute;
	top: 50%;
	margin-top: 0;
	background-image:none;
	color:#fff;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-banner .swiper-button-prev::after, .index-banner .swiper-button-next::after {
	font-family:'iconfont';
	font-size:44px;
}
.index-banner .swiper-button-prev { left:10px; }
.index-banner .swiper-button-next { right:10px; }
.index-banner .swiper-button-prev::after { content:'\e660'; }
.index-banner .swiper-button-next::after { content:'\e65f'; }
.index-banner .swiper-button-prev:hover, .index-banner .swiper-button-next:hover { color:#00bcd4; }
/* 内容 */
.index-banner .swiper-slide { position:relative; }
.index-banner .swiper-slide>img { width:100%; }

.index-banner .swiper-slide .content {
	position:absolute;
	top:50%;
	left:calc(100vw / 1920 * 120);
	width:50%;
	text-transform:uppercase;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.index-banner .swiper-slide .content div {
	font-size:18px;
	color:#fff;
	line-height:1.8;
}
.index-banner .swiper-slide .content div:first-child {
	font-size:38px;
	font-weight:bold;
	line-height:1.2;
	margin-bottom:20px;
	padding-bottom:25px;
	position:relative;
}
.index-banner .swiper-slide .content div:first-child:before {
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	width:430px;
	height:1px;
	background-color:#fff;
}
.index-banner .swiper-slide .content div:first-child:after {
	content:'';
	position:absolute;
	left:10px;
	bottom:-1px;
	width:128px;
	height:3px;
	background-color:#fff;
}
.index-banner .swiper-slide.swiper-slide-active .content div:first-child {
	-webkit-animation: fadeInDown 1s ease both;
	animation: fadeInDown 1s ease both;
}
.index-banner .swiper-slide.swiper-slide-active .content div:nth-child(2) {
	-webkit-animation: fadeInUp 1s ease both;
	animation: fadeInUp 1s ease both;
}
.index-banner .swiper-slide.swiper-slide-active .content div:nth-child(3) {
	-webkit-animation: fadeInUp 1s ease both;
	animation: fadeInUp 1s ease both;
}
.index-banner .swiper-slide .content .mouse {
	width:40px;
	height:60px;
	border:1px solid #fff;
	border-radius:19.5px;
	margin-top:30px;
	position:relative;
}
.index-banner .swiper-slide .content .mouse:after {
	content:'';
	position:absolute;
	left:50%;
	bottom:18px;
	width:1px;
	height:11px;
	background-color:#fff;
	animation:mouse 1s linear infinite;
}
@keyframes mouse {
	0%,100% { bottom:18px; }
	50% { bottom:13px; }
}
/* 视频 */
.index-banner .swiper-slide video {
	width:auto;
	display:block;
	background-color:rgba(0,0,0,1);
	position:relative;
	left:50%;
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
}
.img-pc { display:block; }
.img-ph { display:none; }

@media (max-width:1200px) {
	.index-banner .swiper-slide .content div { font-size:18px; }
	.index-banner .swiper-slide .content div:first-child { font-size:32px; }
	.index-banner .swiper-slide .content div:first-child:before { width:330px; }
	.index-banner .swiper-slide .content div:first-child:after { width:60px; }
	.index-banner .swiper-slide .content .mouse { width:30px;height:45px; }
}
@media (max-width:768px) {
	.index-banner .swiper-button-prev, .index-banner .swiper-button-next { display:none; }
	.index-banner .swiper-slide .content div { font-size:12px; }
	.index-banner .swiper-slide .content div:first-child { font-size:18px;margin-bottom:10px;padding-bottom:15px; }
	.index-banner .swiper-slide .content div:nth-child(2) { display:none; }
	.index-banner .swiper-slide .content div:first-child:before { width:50%; }
	.index-banner .swiper-slide .content div:first-child:after { width:10%; }
	.index-banner .swiper-slide.swiper-slide-active .content div:nth-child(3) { display:none; }
	.img-pc { display:none; }
	.img-ph { display:block; }
	.index-banner .swiper-pagination { bottom:10px; }
	.index-banner .swiper-pagination span { width: 8px; height: 8px;margin: 0 5px!important; }
}


/* 首页-隆集数字货柜 */
.index-about {
	background:url(../images/index-about.jpg) right bottom no-repeat;
	padding:0 calc(100vw / 1920 * 120);
}
.index-about .index-title { padding-top:110px; }
.index-title {
	display: flex;
	justify-content: center;
}
.index-title>div {
	display: flex;
	justify-content: center;
	align-items: center;
	position:relative;
}
.index-title>div>p:first-child {
	font-size:62px;
	color:rgba(51,51,51,.1);
	font-family:'Bebas','Impact';
	text-transform:uppercase;
	line-height:1;
}
.index-title>div>p:nth-child(2) {
	position:absolute;
	font-size:28px;
	color:#333;
	font-weight:bold;
	line-height:1;
	text-transform: uppercase;
	white-space: nowrap;
}
.index-about .con {
	padding:30px calc(100vw / 1920 * 120) 0;
}
.index-about .con p {
	font-size:16px;
	color:#666;
	line-height:2.25;
	text-align:center;
}
.index-about .con a {
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:14px;
	color:#666;
	width:153px;
	height:56px;
	border:1px solid #666;
	border-radius:27.5px;
	margin:40px auto 0;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-about .con a:hover {
	color:#fff;
	border:1px solid #0072ad;
	background-color:#0072ad;
}
.index-about .con .ellipsis-s { -webkit-line-clamp: 3; }
.index-about .bottom {
	display:flex;
	justify-content: space-between;
	padding:88px calc(100vw / 1920 * 120) 126px;
}
.index-about .bottom p {
	display:flex;
	line-height:1;
}
.index-about .bottom p span { font-size:16px; }
.index-about .bottom .counter {
	font-size:56px;
	color:#333;
	font-family:'Bebas','Impact';
}
.index-about .bottom p span:nth-child(2) {
	padding-left:14px;
	padding-top:5px;
}
.index-about .bottom p:nth-child(2) { padding-top:20px; }

@media (max-width:1200px) {
	.index-about .con { padding: 30px 0 0; }
	.index-about .bottom { padding: 88px 0 126px; }
}
@media (max-width:768px) {
	.index-about .index-title { padding-top: 40px; }
	.index-title>div>p:first-child { font-size:46px; }
	.index-title>div>p:nth-child(2) { font-size:22px; }
	.index-about .con p { font-size:12px;text-align:justify;text-indent: 2em; }
	.index-about .con .ellipsis-s { -webkit-line-clamp: 6; }
	.index-about .con a { font-size:12px;width:120px;height:45px; }
	.index-about .bottom { flex-wrap:wrap;padding: 88px 0; }
	.index-about .bottom>div { width:50%;padding-bottom: 20px;padding-left: 15%; }
	.index-about .bottom .counter { font-size:36px; }
	.index-about .bottom p span { font-size:12px; }
	.index-about .bottom p span:nth-child(2) { padding-left: 5px;padding-top: 0px; }
	.index-about .bottom p:nth-child(2) { font-size:12px;padding-top: 5px; }
}


/* 首页-产品中心 */
.index-product {
	background:url(../images/index-product.jpg) top center no-repeat;
	overflow:hidden;
}
.index-product .top {
	display:flex;
	justify-content: space-between;
	border-bottom:1px solid rgba(255,255,255,.2);
	padding:90px calc(100vw / 1920 * 120) 0;
}
.index-product .index-title { padding-bottom:15px; }
.index-product .index-title>div { justify-content: flex-start; }
.index-product .index-title>div>p:first-child { color:rgba(148,218,254,.1); }
.index-product .index-title>div>p:nth-child(2) { color:#fff; }
.index-product .top .link {
	display:flex;
	overflow:auto;
	width:65%;
}
.index-product .top .link::-webkit-scrollbar { height:10px; }
.index-product .top .link::-webkit-scrollbar-thumb { background-color:rgba(0,0,0,.3); border-radius:10px; }
.index-product .top .link a {
	display:flex;
	align-items:center;
	font-size:16px;
	color:#fefefe;
	margin-left:20px;
	position:relative;
	height:100%;
	white-space: nowrap;
}
.index-product .top .link a:after {
	content:'';
	position:absolute;
	left:50%;
	bottom:0;
	width:0;
	height:3px;
	background-color:#fff;
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-product .top .link a:first-child { margin-left:0; }
.index-product .top .link a.active:after { width:100%; }
.index-product .top .link a:hover:after { width:100%; }
.index-product .content {
	display:flex;
	justify-content:space-between;
	padding:55px calc(100vw / 1920 * 120) 100px;
	display:none;
}
.index-product .content.active {
	display:flex;
}
.index-product .content .left { width:46%;position:relative;overflow:hidden; }
.index-product .content .left img {
	max-width:100%;
	position:absolute;
	top:0;
	left:0;
	opacity:0;
	-webkit-transform: translateX(-110%);
	transform: translateX(-110%);
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-product .content .left img.active {
	position:initial;
	opacity:1;
	transform: translateX(0%);
}
.index-product .content .right { width:45%;position:relative;overflow:hidden; }
.index-product .content .right .con {
	position:absolute;
	top:0;
	left:0;
	padding-top:45px;
	opacity:0;
	-webkit-transform: translateX(110%);
	transform: translateX(110%);
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-product .content .right .con.active {
	position:initial;
	opacity:1;
	transform: translateX(0%);
}
.index-product .content .right .con .tit p {
	font-size:18px;
	line-height:2;
	color:rgba(254,254,254,.7);
}
.index-product .content .right .con .tit p:first-child {
	font-size:32px;
	color:#fff;
	line-height:1;
	padding-bottom:30px;
}
.index-product .content .right .con .tit p:nth-child(2) {
	min-height:72px;
}
.index-product .content .right .con .link {
	display:flex;
	padding-top:47px;
}
.index-product .content .right .con .link a {
	display:flex;
	justify-content:center;
	align-items:center;
	width:172px;
	height:53px;
	background-color:#0072ad;
	font-size:16px;
	color:#fafafa;
	margin-right:28px;
}
.index-product .content .right .con .link a:nth-child(2) {
	background-color:#f29a10;
	margin-right:0;
}
.index-product .content .right .bottom {
	padding-top:198px;
}
.index-product .content .right .bottom p {
	font-size:20px;
	color:#333;
	font-weight:bold;
	line-height:1;
}
.index-product .content .right .bottom .link {
	display:flex;
	flex-wrap:wrap;
	padding-top:20px;
}
.index-product .content .right .bottom .link a {
	display:flex;
	justify-content:center;
	align-items:center;
	width:auto;
	height:53px;
	border:1px solid #d0d0d0;
	font-size:16px;
	color:#666;
	margin-right:2%;
	margin-bottom:20px;
	text-align:center;
	padding:0 15px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-product .content .right .bottom .link a:last-child { margin-right:0; }
.index-product .content .right .bottom .link a.active {
	border:1px solid #0072ad;
	background-color:#0072ad;
	color:#fafafa;
}
.index-product .content .right .bottom .link a:hover {
	border:1px solid #0072ad;
	background-color:#0072ad;
	color:#fafafa;
}

@media (max-width:1440px) {
	.index-product .content .right .bottom .link { flex-wrap:wrap; }
	.index-product .top .link a { margin-left: 50px;font-size: 18px; }
	.index-product .content .right { width:50%; }
	.index-product .content .right .con .tit p { font-size:16px; }
	.index-product .content .right .con .tit p:first-child { font-size:26px; }
	.index-product .content .right .con .link a { font-size:14px; }
	.index-product .content .right .bottom .link a { font-size:14px; }
}
@media (max-width:1200px) {
	/* .index-product .content .right .bottom { padding-top: 120px; } */
	.index-product .content { padding: 55px calc(100vw / 1920 * 120) 60px; }
	.index-product .content .right .bottom .link a { width: 31.3%; }
	.index-product .content .right .con { padding-top:0; }
	.index-product .content .right .con .tit p:first-child { font-size:22px; }
	.index-product .content .right .con .tit p { font-size:14px; }
	.index-product .content .right .con .link { padding-top:30px; }
	.index-product .content .right .con .link a { width:130px;height:40px;font-size:12px; }
	.index-product .content .right .bottom { padding-top:60px; }
	.index-product .content .right .bottom .link a { font-size:12px; }
}
@media (max-width:1080px) {
	.index-product .index-title { padding-bottom: 30px; }
	.index-product .top { flex-wrap:wrap; }
	.index-product .top .link { width:100%; }
	.index-product .top .link a { padding-bottom: 20px;height:40px; }
}
@media (max-width:992px) {
	.index-product .content .right .bottom .link a { width:auto;padding:0 10px; }
}
@media (max-width:768px) {
	.index-product { background: url(../images/index-product.jpg) bottom center no-repeat;background-color: #55a4d0; }
	.index-product .top { padding: 40px calc(100vw / 1920 * 120) 0; }
	.index-product .index-title>div>p:first-child { font-size:28px; }
	.index-product .top .link a { margin-left: 15px;font-size: 12px; }
	.index-product .content { padding: 40px calc(100vw / 1920 * 120) 20px;flex-wrap:wrap; }
	.index-product .content .left { width:49%; }
	.index-product .content .right { width:100%; }
	.index-product .content .right .con { padding-top: 20px; }
	.index-product .content .right .con .tit p { font-size:12px; }
	.index-product .content .right .con .tit p:first-child { font-size:18px;padding-bottom: 10px; }
	.index-product .content .right .con .link { padding-top:30px;flex-wrap:wrap;justify-content:space-between; }
	.index-product .content .right .con .link a { width:48%;margin-right:0;font-size: 12px;height: 40px; }
	.index-product .content .right .bottom { padding-top:40px; }
	.index-product .content .right .bottom p { font-size:18px;color:#fff; }
	.index-product .content .right .bottom .link { justify-content: space-between; }
	.index-product .content .right .bottom .link a { width:48%;margin-right:0;height:40px;font-size:12px;color:#fff;margin-bottom: 10px; }
	.index-title>div>p:nth-child(2) { position:initial; }
}


/* 资讯中心 */
.index-news {
	background:url(../images/index-news-bg.jpg) bottom center no-repeat;
	padding: 140px calc(100vw / 1920 * 120) 196px;
	background-color: #7aa4da;
}
.index-news .index-title>div>p:first-child {
	color: rgba(255,255,255,.1);
}
.index-news .index-title>div>p:nth-child(2) { color:#000; }
.index-news .content {
	display:flex;
	padding-top:60px;
}
.index-news .content .list {
	background-color:#fff;
	width:24%;
	padding:10px;
	margin-right:1.33%;
}
.index-news .content .list:last-child { margin-right:0; }
.index-news .content .list .img { overflow:hidden; }
.index-news .content .list .img img {
	width:100%;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-news .content .list .con p {
	font-size:14px;
	color:#666;
	line-height:1;
}
.index-news .content .list .con p:first-child {
	font-size:22px;
	color:#333;
	padding-top:20px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-news .content .list .con p:nth-child(2) {
	color:#8f8e8e;
	padding-top:10px;
}
.index-news .content .list .con p:nth-child(3) {
	line-height:1.6;
	padding-top:10px;
}
.index-news .content .list .bottom {
	border-top:1px solid #ececec;
	margin-top:15px;
}
.index-news .content .list .bottom span {
	display:flex;
	justify-content:center;
	align-items: flex-end;
	width:100%;
	font-size:14px;
	color:#aeaeae;
	padding-top:16px;
	padding-bottom:8px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-news .content .list .bottom span:after {
	font-family:'iconfont';
	content:'\e617';
	font-size:18px;
	padding-left:5px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-news .content .list:hover .img img {
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}
.index-news .content .list:hover .con p:first-child { color:#0072ad; }
.index-news .content .list:hover .bottom span { color:#0072ad; }
.index-news .content .list:hover .bottom span:after { color:#0072ad; }

@media (max-width:1200px) {
	.index-news .content .list .con p:first-child { font-size:18px;padding-top: 20px; }
	.index-news .content .list .con p:nth-child(3) { padding-top: 10px; }
}
@media (max-width:768px) {
	.index-news { padding: 40px calc(100vw / 1920 * 120); }
	.index-news .index-title>div>p:first-child { font-size: 28px; }
	.index-news .content { padding-top: 40px;flex-wrap:wrap; }
	.index-news .content .list { width:100%;margin-right:0;margin-bottom:20px; }
	.index-news .content .list .con p { font-size:12px; }
	.index-news .content .list .con p:first-child { font-size:16px; }
	.index-news .content .list .bottom span { padding-top: 15px;padding-bottom: 10px;font-size: 12px; }
	.index-news .content .list .bottom span:after { font-size: 12px; }
}


/* 荣誉证书 */
.index-honor { padding: 80px calc(100vw / 1920 * 120) 124px; }
.index-honor .index-title>div>p:first-child {
	color:rgba(0,114,173,.1);
	font-size:64px;
}
.index-honor .index-title>div>p:nth-child(2) { color:#000; }
.index-honor .content {
	display:flex;
	background:#f1f2f2;
	margin-top:70px;
}
.index-honor .content .left {
	position:relative;
	width:59%;
	background-color:#f7f8f8;
	padding:80px 50px;
}
.index-honor .content .left .swiper-slide>div {
	border:5px solid #fff;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-honor .content .left .swiper-slide>div:hover { border:5px solid #0072ad; }
.index-honor .content .left .swiper-slide img { max-width:100%; }
.index-honor .swiper-pagination {
	background-color:#f1f2f2;
	width: 100%;
	height:12px;
	left: 0;
	bottom: 0;
	z-index:9;
}
.index-honor .swiper-pagination span { background-color:#e3e5e5; }
.index-honor .content .left .swiper-slide p {
	height:0;
	overflow:hidden;
}
.index-honor .content .right {
	display:flex;
	justify-content:center;
	align-items:center;
	width:41%;
}
.index-honor .content .right>div {
	padding:35px 40px;
}
.index-honor .content .right img { width:100%; }
.index-honor .content .right p {
	font-size:20px;
	color:#333;
	text-align:center;
	padding-top:60px;
}

@media (max-width:768px) {
	.index-honor { padding: 40px calc(100vw / 1920 * 120); }
	.index-honor .index-title>div>p:first-child { font-size:28px; }
	.index-honor .content { margin-top: 40px;flex-wrap:wrap; }
	.index-honor .content .left { width:100%;padding: 20px; }
	.index-honor .swiper-pagination { height:4px; }
	.index-honor .content .right { width:100%; }
	.index-honor .content .right>div { padding: 20px; }
	.index-honor .content .right p { padding-top: 15px;font-size:12px; }
	.index-honor .content .left .swiper-slide>div { border: 2px solid #fff; }
	.index-honor .content .left .swiper-slide>div:hover { border: 2px solid #0072ad; }
}


/* 首页-联系我们 */
.index-contact {
	background:url(../images/index-contact-bg.jpg) center no-repeat;
	display:flex;
	justify-content:center;
	align-items:center;
	height:150px;
}
.index-contact>div {
	display:flex;
	align-items:center;
}
.index-contact p {
	font-size:24px;
	font-weight:bold;
	color:#dfdfdf;
}
.index-contact a {
	display:flex;
	justify-content:flex-end;
	align-items:center;
	width:35px;
	height:35px;
	border-radius:50%;
	border:1px solid #dfdfdf;
}
.index-contact a:after {
	font-family:'iconfont';
	content:'\eb95';
	color:#dfdfdf;
	font-size:27px;
	-webkit-transform: translate(50%);
	transform: translate(50%);
	animation: indexContact 1s linear infinite;
}
@keyframes indexContact {
	0%,100% { transform: translate(40%); }
	50% { transform: translate(60%); }
}

@media (max-width:768px) {
	.index-contact p { font-size: 14px;width:70%;padding:0 5%; }
}


/* footer */
.footer { background-color:#37454d; }
.footer .top {
	padding: 118px calc(100vw / 1920 * 120) 80px;
	display:flex;
	justify-content:space-between;
}
.footer .top .left {
	display: flex;
	flex-direction: column;
	width:30%;
}
.footer .top .left p {
	font-size:16px;
	color:#e8e8e8;
	line-height:1.4;
}
.footer .top .left p img { width:100%; }
.footer .top .left>p:first-child { max-width:195px; }
.footer .top .left p:nth-child(2) {
	font-size:43px;
	padding-top:50px;
	padding-bottom:35px;
}
.footer .top .left p:nth-child(3) { padding-bottom:20px; }
.footer .top .right { display:flex; }
.footer .top .right>div { padding:0 calc(100vw / 1920 * 50); }
.footer .top .right>div:first-child { padding-left:0; }
.footer .top .right>div a {
	font-size:14px;
	color:#e8e8e8;
	line-height:1.4;
}

.footer .top .right>div>a { font-size:20px; }
.footer .top .right .link {
	display:flex;
	flex-direction:column;
	padding-top:20px;
}
.footer .top .right .link a { margin:10px 0;display:block; }
.footer .top .right>div:last-child .link { padding-top:30px; }
.footer .top .right>div:last-child .link p {
	font-size:16px;
	color:#e8e8e8;
	line-height:1;
	padding-top:20px;
	max-width:146px;
}
.footer .top .right>div:last-child .link p img { width:100%; }
.footer .bottom {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	padding: 40px calc(100vw / 1920 * 120);
	border-top:1px solid #485962;
}
.footer .bottom p { font-size:16px; color:#dfdfdf;display: flex;align-items: center;flex-wrap:wrap;justify-content: center; }
.footer .bottom a { font-size:16px; color:#dfdfdf; }

@media (max-width:1680px) {
	.footer .top .right>div { padding: 0 calc(100vw / 1920 * 50); }
	.footer .top .right>div:last-child { padding-right:0; }
}
@media (max-width:1440px) {
	.footer .top .right>div { padding: 0 calc(100vw / 1920 * 30); }
}
@media (max-width:1200px) {
	.footer .top .left { width:100%; }
	.footer .top .right>div { display:none; }
	.footer .top .right>div:last-child { display:block; }
}
@media (max-width:768px) {
	.footer .top .right>div:last-child { display:none; }
	.footer .top { padding: 40px calc(100vw / 1920 * 120); }
	.footer .top .left { width:100%; }
	.footer .top .left p { font-size: 14px; }
	/* .footer .top .left p:first-child { width:35%; } */
	.footer .top .left p:nth-child(2) { padding: 20px 0;font-size: 22px; }
	.footer .top .left p:nth-child(3) { padding-bottom: 10px; }
	.footer .bottom { flex-wrap:wrap;justify-content: center;padding: 20px calc(100vw / 1920 * 120); }
	.footer .bottom p { text-align:center;line-height:1.5;font-size:12px; }
	.footer .bottom a { font-size:12px; }
	#pho span { font-size:14px!important; }
}


/* 手机底部 */
.right-service {
	display:flex;
	position:fixed;
	z-index:99;
	bottom:-1px;
	left:0;
	width:100%;
	border-top:1px solid #fff;
	display:none;
}
.right-service>div { width:50%; }
.right-service a {
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	height:50px;
	background-color:#0072ad;
	margin:1px 0;
}
.right-service a {
	position:relative;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.right-service a p {
	position:absolute;
	top:-40px;
	right:-200px;
	z-index:-1;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.right-service a p img { display:inline-block; }
.right-service a::after {
	font-family:'iconfont';
	color:#fff;
	font-size:25px;
}
.right-service>div:nth-child(1) a::after { content:'\e639'; }
.right-service>div:nth-child(2) a::after { content:'\e63a'; }
.right-service div:first-child a { border-right:1px solid #fff; }
@media (max-width:768px) {
	.footer { padding-bottom:60px; }
	.right-service { display:flex; }
}


/* 关于我们 */
.page-link {
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	background-color:#f1f1f1;
	padding:0 calc(100vw / 1920 * 120);
}
.page-link .left {
	display:flex;
	flex-wrap:wrap;
	height:100%;
}
.page-link .left a {
	display:flex;
	align-items:center;
	font-size:14px;
	color:#666;
	padding:27px 5px;
	margin:0 5px;
	position:relative;
}
.page-link .left a:after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 50%;
	width: 0;
	height: 4px;
	background-color: #0072AD;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all .5s;
	transition: all .5s;
}
.page-link .left a:hover { color:#0072AD; }
.page-link .left a:hover:after { width:100%; }
.page-link .left a.active { color:#0072AD; }
.page-link .left a.active:after { width:100%; }
.page-link .right {
	display:flex;
	align-items:center;
}
.page-link .right a, .page-link .right span {
	font-size:14px;
	color:#a8a7a7;
}
.page-link .right a {
	padding:10px 0;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.page-link .right span {
	padding:0 5px;
}
.page-link .right .current { color:#0072AD; }
.page-link .right .home:before {
	font-family:'iconfont';
	content:'\e60c';
	font-size:19px;
	padding-right:10px;
}
.page-link .right a:hover { color:#0072AD; }

@media (max-width:1199px) {
	.page-link .left a { font-size: 14px; }
}
@media (max-width:992px) {
	.page-link .right { display:none; }
}
@media (max-width:768px) {
	.page-link .left a { font-size: 14px;padding: 15px 10px;margin: 0 0px; }
}


/* about */
.about { padding:80px calc(100vw / 1920 * 120);overflow:hidden; }
.about .index-title { justify-content: flex-start; }
.about .index-title>div { justify-content: flex-start; }
.about .index-title>div>p:first-child { position:relative;left:calc(100vw / 1920 * -120) }
.about .index-title>div>p:nth-child(2) { line-height:1.4; }
.about .content {
	display:flex;
	justify-content:space-between;
	padding-top:40px;
}
.about .content .left { width: 100%; }
.about .content .left p {
	font-size:16px;
	color:#666;
	line-height:1.8;
	text-align:justify;
}
.about .content .right { width: 46%; float:right;margin-left: 40px;margin-bottom: 20px;  }
.about .content .right img { width:100%; }

@media (max-width:1200px) {
	.about .content .left p { font-size:14px;line-height:1.6; }
}
@media (max-width:768px) {
	.about { padding: 40px calc(100vw / 1920 * 120); }
	.about .content { flex-wrap:wrap; padding-top:20px; }
	.about .content .left { width:100%; order:2;padding-top:20px; }
	.about .content .right { width:100%; }
	.about .content .left p { font-size:12px; }
	.about .index-title>div>p:nth-child(2) { white-space: initial; }
}

.about-bottom {
	background:url(../images/about-bottom.jpg) center no-repeat;
	padding:0 calc(100vw / 1920 * 120);
}
.about-bottom .bottom { padding: 140px calc(100vw / 1920 * 220) 120px; }
.about-bottom .bottom .counter { color:#fff; }
.about-bottom .bottom p { color:#fff; }

@media (max-width:1200px) {
	.about-bottom .bottom { padding: 140px 0 120px; }
}
@media (max-width:768px) {
	.about-bottom .bottom { padding: 100px 0; }
}


/* 企业文化 */
.about-culture {
	padding:110px calc(100vw / 1920 * 120);
}
.about-culture .content {
	display:flex;
	padding-top:60px;
}
.about-culture .content .list {
	position:relative;
	width:15%;
	overflow:hidden;
	-webkit-transition:all .5s;
	transition:all 1s;
}
.about-culture .content .list.active {
	width:55%;
}
.about-culture .content .list .text {
	position:absolute;
	bottom:40px;
	left:20px;
	-webkit-transition:all 1s;
	transition:all 1s;
	width:75%;
}
.about-culture .content .list .text p {
	font-size:20px;
	color:#fff;
	line-height:1;
	position:relative;
}
.about-culture .content .list .text p:first-child {
	padding-bottom:16px;
	-webkit-transition:all 1s;
	transition:all 1s;
}
.about-culture .content .list .text p:first-child:before {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 0;
	border-bottom:2px solid #fff;
	opacity:0;
	-webkit-transition:all 1s;
	transition:all 1s;
}
.about-culture .content .list .text p:nth-child(2) {
	opacity:0;
	padding-top:30px;
	-webkit-transition:all .5s;
	transition:all .5s;
	line-height: 1.2;
	display:none;
}
.about-culture .content .list.active .text {
	bottom:260px;
	left: calc(100vw / 1920 * 100);
}
.about-culture .content .list.active .text p:first-child {
	font-size:28px;
}
.about-culture .content .list.active .text p:first-child:before {
	opacity:1;
	width:4em;
}
.about-culture .content .list.active .text p:nth-child(2) {
	opacity:1;
	display:block;
}
.about-culture .content .list .img img {
	-webkit-transform: translateX(-38%);
	transform: translateX(-38%);
	-webkit-transition:all 1s;
	transition:all 1s;
}
.about-culture .content .list.active .img img {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

@media (max-width:1440px) {
	.about-culture .content .list .text p { font-size:22px; }
	.about-culture .content .list.active .text p:first-child { font-size:26px; }
	.about-culture .content .list .img img {
		-webkit-transform: translateX(-40%);
    transform: translateX(-40%); }
}
@media (max-width:1200px) {
	.about-culture .content .list .text p { font-size:16px; }
	.about-culture .content .list.active .text p:first-child { font-size:20px; }
	.about-culture .content .list.active .img img { -webkit-transform: translateX(-20%);
    transform: translateX(-20%); }
}
@media (max-width:768px) {
	.about-culture { padding: 40px calc(100vw / 1920 * 120); }
	.about-culture .index-title>div>p:first-child { font-size: 28px; }
	.about-culture .content { padding-top:40px;flex-wrap:wrap; }
	.about-culture .content .list { width:100%; }
	.about-culture .content .list.active { width:100%; }
	.about-culture .content .list .img img { width:100%;-webkit-transform: translateX(0);transform: translateX(0); }
	.about-culture .content .list.active .img img { -webkit-transform: translateX(0);transform: translateX(0); }
	.about-culture .content .list .text { bottom: 20%; }
	.about-culture .content .list.active .text { bottom: 20%; }
	.about-culture .content .list .text p { font-size:12px; }
	.about-culture .content .list .text p:first-child { font-size:16px;padding-bottom: 10px; }
	.about-culture .content .list.active .text p:first-child { font-size:16px; }
	.about-culture .content .list .text p:first-child:before { opacity:1;width:4em; }
	.about-culture .content .list .text p:nth-child(2) { opacity:1;padding-top: 15px; }
}


/* 发展历程 */
.about-development {
	padding: 130px calc(100vw / 1920 * 120);
	background-color:#f4f4f4;
}
.about-development .content {
	padding:70px 0 0;
}
.about-development .content .development-swiper {
	padding:0 30px;
}
.about-development .content .swiper-slide .top {
	display:flex;
	justify-content:center;
	padding-bottom:20px;
}
.about-development .content .swiper-slide .top p {
	display:flex;
	justify-content:center;
	align-items:center;
	width:50%;
	height:48px;
	border-radius:24px;
	border:1px dashed #ccc;
	font-size:24px;
	color:#333;
	z-index:9;
	background-color:#f4f4f4;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.about-development .content .swiper-slide .top span {
	width:13px;
	background-color:#f4f4f4;
}
.about-development .content .swiper-slide img { width:100%; }
.about-development .content .swiper-slide .con {
	padding-top:20px;
}
.about-development .content .swiper-slide .con .list {
	padding-bottom:25px;
}
.about-development .content .swiper-slide .con .list p {
	font-size:14px;
	color:#666;
	line-height:1.4;
	text-align:justify;
}
.about-development .content .swiper-slide .con .list p:first-child {
	display:flex;
	justify-content:center;
	align-items:center;
	width:80px;
	height:30px;
	border-radius:15px;
	border:1px dashed #0072AD;
	font-size:16px;
	color:#0072ad;
	margin-bottom:10px;
}
.about-development .content .swiper-slide:hover .top p {
	border: 1px dashed #0072AD;
	background-color:#0072AD;
	color:#fff;
}
.about-development .swiper-pagination {
	top:24px;
	height:0;
	border-bottom:1px dashed #ccc;
	z-index:0;
}
.about-development .swiper-pagination span {
	opacity:0;
}

@media (max-width:1680px) {
	.about-development .content .swiper-slide .top p { font-size: 18px; }
}
@media (max-width:1440px) {
	.about-development .content .swiper-slide .top p { width: 75%; }
}
@media (max-width:1200px) {
	.about-development .content .swiper-slide .top p { width: 50%; }
}
@media (max-width:768px) {
	.about-development { padding: 40px calc(100vw / 1920 * 120); }
	.about-development .index-title>div>p:first-child { font-size:28px; }
	.about-development .content { padding: 40px 0 0; }
	.about-development .content .development-swiper { padding:0; }
	.about-development .content .swiper-slide .top p { height:35px;font-size:16px; }
	.about-development .swiper-pagination { top:18px; }
	.about-development .content .swiper-slide .con .list p { font-size: 12px; }
}


/* 荣誉资质 */
.about-honor {
	padding: 100px calc(100vw / 1920 * 120);
}
.about-honor .content {
	padding-top:70px;
}
.about-honor .content .swiper-slide .img {
	border:3px solid #e5e5e5;
	cursor:pointer;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.about-honor .content .swiper-slide .img img { width:100%; }
.about-honor .content .swiper-slide .con {
	display:flex;
	justify-content:center;
	font-size:16px;
	color:#666;
	padding-top:20px;
	text-align:center;
}
.about-honor .content .swiper-slide:hover .img { border:3px solid #0072AD; }
.about-honor .content .swiper-slide:hover .con { color:#0072AD; }
.about-honor .content .about-honor-swiper { padding-bottom:60px; }
.about-honor .content .swiper-pagination {
	top:auto;
	bottom:0;
	height:3px;
	background-color:#e2e2e2;
}
.about-honor .content .swiper-pagination span { background-color:#0072AD; }

@media (max-width:992px) {
	.index-title>div>p:first-child { font-size:56px; }
}
@media (max-width:768px) {
	.about-honor { padding: 40px calc(100vw / 1920 * 120); }
	.index-title>div>p:first-child { font-size:28px;text-align:center; }
	.about-honor .content { padding-top:40px; }
	.about-honor .content .about-honor-swiper { padding-bottom:35px; }
}


/* 产品中心 */
.product-link .left { position:relative; }
.product-link .left .tlink {
	position:absolute;
	top:100%;
	left:0;
	display:flex;
	padding-top:20px;
	display:none;
}
.product-link .left>div.active .tlink { display:flex; }
.product-link .left .tlink a {
	white-space:nowrap;
	font-size:14px;
	color:#333;
	border:1px solid #eee;
	padding: 15px 20px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.product-link .left .tlink a:hover {
	background-color:#0072AD;
	color:#fff;
}
/* .product-link .left>div.active .tlink li:first-child a {
	background-color:#0072AD;
	color:#fff;
} */
.product-link .left .tlink a.active {
	background-color:#0072AD;
	color:#fff;
}
.product-link .left .tlink a:after { display:none; }
.product {
	padding: 108px calc(100vw / 1920 * 120) 146px;
}
.product .text {
	padding:0 15px;
	font-size:16px;
	line-height:2;
}
.product .content {
	padding:0 15px;
}
.product .content p {
	font-size:16px;
	color:#333;
	line-height:2;
}
.product .content img { max-width:100%; }
.product .list {
	display:flex;
	flex-wrap:wrap;
	margin-top:40px;
}
.product .list .img {
	width:32%;
	margin-right:2%;
	margin-bottom:20px;
}
.product .list .img img { width:100%; }
.product .list .img:nth-child(3n) {
	margin-right:0;
}
.product table {
	width:100%;
	border-collapse:collapse;
	text-align:center;
}
.product table tr td {
	border:1px solid #999;
}
@media (max-width:1440px) {
	.page-link .right { display:none; }
}
@media (max-width:1200px) {
	.product-link .left a { font-size:12px;padding: 20px 3px;margin: 0 3px; }
	.product-link .right a, .product-link .right span { font-size:12px; }
	.product-link .left .tlink a { font-size:12px;padding: 20px 20px; }
}
@media (max-width:768px) {
	.product-link .left a { padding: 15px 0px;font-size: 12px;margin: 0 5px; }
	.product-link .left .tlink { flex-wrap:wrap;padding-top: 20px;width:100%; }
	.product-link .left .tlink li { width:33%; }
	.product-link .left .tlink a { padding: 10px 0;width:100%;margin:0;justify-content:center;overflow:hidden; }
	.product { padding: 40px calc(100vw / 1920 * 120); }
	.product .content { padding:0;overflow:auto; }
	.product .content p { font-size:12px; }
	.product .content img { max-width: none!important; }
	.product .list .img { margin-right:0;width:100%; }
	.product .text { margin-top:40px;padding:0;font-size:12px; }
}


/* 合作案例 */
.case {
	padding: 47px calc(100vw / 1920 * 120) 130px;
	display:flex;
	flex-wrap:wrap;
}
.case .list {
	width:32%;
	margin-right:2%;
	margin-bottom:35px;
}
.case .list:nth-child(3n) {
	margin-right:0;
}
.case .list .img { overflow:hidden; }
.case .list .img img {
	width:100%;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.case .list .con {
	background-color:#f0f0f0;
	padding:14px 20px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.case .list .con p {
	font-size:14px;
	color:#666;
	line-height:1.7;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.case .list .con p:first-child {
	font-size:18px;
	color:#333;
	line-height:1;
	padding:15px 0;
}
.case .list:hover .img img {
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}
.case .list:hover .con { background-color:#0072AD; }
.case .list:hover .con p { color:#fff; }

@media (max-width:768px) {
	.case { padding: 40px calc(100vw / 1920 * 120); }
	.case .list { width:100%;margin-right:0;margin-bottom:20px; }
	.case .list .con p { font-size:12px;line-height:2; }
	.case .list .con p:first-child { font-size:16px; }
}


/* 新闻资讯 */
.news {
	padding: 80px calc(100vw / 1920 * 120) 160px;
	background:url(../images/news-bg.jpg) right bottom no-repeat;
	background-color:#fafafa;
}
.news .content {
	background-color:#fff;
	padding:0 55px;
	overflow:hidden;
}
.news .content .list {
	display:flex;
	flex-direction:column;
	border-bottom:1px solid #eee;
	padding:50px 0 30px;
}
.news .content .list p {
	font-size:14px;
	color:#666;
	line-height:1.6;
}
.news .content .list p:first-child {
	font-size:26px;
	color:#333;
	line-height:1.4;
	padding-bottom:20px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.news .content .list span {
	width:140px;
	height:40px;
	border-radius:24px;
	background-color:#f1f1f1;
	font-size:14px;
	color:#b7b6b6;
	display:flex;
	justify-content:center;
	align-items:center;
	margin-top:36px;
	margin-left:auto;
	margin-right:0;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.news .content .list:hover p:first-child {
	color:#0072AD;
}
.news .content .list:hover span {
	background-color:#0072AD;
	color:#fff;
}
.page {
	display:flex;
	justify-content:flex-end;
}
.page ul {
	display:flex;
	padding:80px 0;
}
.page a {
	width:63px;
	height:63px;
	border-radius:50%;
	background-color:#f1f1f1;
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:16px;
	color:#b7b6b6;
	margin-left:17px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.page a:hover {
	color:#fff;
	background-color:#0072AD;
}
.page a.active {
	color:#fff;
	background-color:#0072AD;
}
.page span {
	width:63px;
	height:63px;
	border-radius:50%;
	background-color:#f1f1f1;
	display:flex;
	justify-content:center;
	align-items:center;
	font-size:16px;
	color:#b7b6b6;
	margin-left:17px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.page span:hover {
	color:#fff;
	background-color:#0072AD;
}
.page li.active span {
	color:#fff;
	background-color:#0072AD;
}

@media (max-width:768px) {
	.news { padding: 40px calc(100vw / 1920 * 120); }
	.news .content { padding: 0 20px; }
	.news .content .list { padding: 30px 0; }
	.news .content .list p { font-size:12px; }
	.news .content .list p:first-child { font-size:16px;padding-bottom: 10px; }
	.news .content .list span { font-size: 12px;margin-top: 25px;width: 120px;height: 35px; }
	.page { padding: 40px 0; }
	.page a { width: 30px;height: 30px;font-size: 12px;margin-left: 10px; }
	.page span { width: 30px;height: 30px;font-size: 12px;margin-left: 10px; }
	.page ul { padding:0; }
}


/* 新闻详情 */
.news-details {
	padding: 80px calc(100vw / 1920 * 120);
	background-color:#fafafa;
}
.news-details .content {
	background-color:#fff;
	padding:80px 136px;
}
.news-details .content .tit {
	display:flex;
	flex-direction:column;
	align-items:center;
	border-bottom:1px solid #eee;
	padding-bottom:13px;
}
.news-details .content .tit>p {
	font-size:26px;
	color:#333;
	line-height:1.4;
	padding-bottom:34px;
}
.news-details .content .tit>div span {
	font-size:16px;
	color:#a09f9f;
	line-height:1;
	padding:0 13px;
}
.news-details .content .con {
	padding-top:30px;
}
.news-details .content .con p {
	font-size:16px;
	color:#666;
	line-height:2;
}
.news-details .content .con img { max-width:100%;margin:0 auto; }
.news-details .content .link {
	display:flex;
	justify-content:space-between;
	padding-top:90px;
}
.news-details .content .link a {
	width:49%;
	height:64px;
	border-radius:32px;
	border:1px dashed #666;
	font-size:16px;
	color:#666;
	display:flex;
	align-items:center;
	padding:0 24px;
	-webkit-transition:all .5s;
	transition:all .5s;
	
	
}
.news-details .content .link a span {
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.news-details .content .link a:hover {
	color:#0072ad;
	border:1px dashed #0072ad;
}

@media (max-width:1200px) {
	.news-details .content { padding: 80px 40px; }
}
@media (max-width:768px) {
	.news-details { padding: 40px calc(100vw / 1920 * 120); }
	.news-details .content { padding: 40px 20px; }
	.news-details .content .tit>p { font-size:16px;padding-bottom: 10px; }
	.news-details .content .tit>div span { font-size: 12px;padding: 0 5px; }
	.news-details .content .con { padding-top: 20px; }
	.news-details .content .con p { font-size:12px; }
	.news-details .content .link { padding-top: 40px;flex-wrap:wrap; }
	.news-details .content .link a { width:100%;font-size:12px;margin-bottom:20px;height: 35px;border-radius: 18px; }
}


/* 加入我们 */
.join {
	padding: 67px calc(100vw / 1920 * 120) 120px;
	display:flex;
	justify-content:space-between;
	overflow:hidden;
}
.join .left {
	width:290px;
}
.join .left .img img { width:100%; }
.join .left .con {
	margin-top:24px;
	background:url(../images/join-bg.jpg) top center no-repeat;
	padding:104px 6px 76px;
}
.join .left .con>div {
	background:url(../images/join-bg.png) top center no-repeat;
	padding:30px 20px 130px;
}
.join .left .con>div p { line-height:1; }
.join .left .con>div p:first-child {
	font-size:22px;
	color:#333;
}
.join .left .con>div p:first-child:before {
	font-family:'iconfont';
	content:'\e71b';
	font-size:30px;
	padding-right:8px;
}
.join .left .con>div p:nth-child(2) {
	font-size:32px;
	color:#0072ad;
	padding-top: 15px;
}
.join .right {
	width: 78.5%;
}
.join .right .search input {
	height:72px;
	border:1px solid #eee;
	padding:0 16px;
	font-size:16px;
	color:#333;
	outline:none;
	width:calc(100% - 165px);
}
.join .right .search { position:relative; }
.join .right .search input::placeholder { color:#333; }
.join .right .search button {
	width:165px;
	height:72px;
	background-color:#0072AD;
	color:#fff;
	outline:none;
	border:none;
	position:absolute;
	top:0;
	right:0;
	font-size:16px;
}
.join .right .content {
	margin-top:18px;
	border:1px solid #ddd;
	border-bottom:none;
}
.join .right .content .tit {
	display:flex;
}
.join .right .content .tit p {
	width:14.28%;
	height:70px;
	display:flex;
	align-items:center;
	padding:0 15px;
	font-size:14px;
	color:#333;
	background-color:#eee;
	border-right:1px solid #ddd;
	border-bottom:1px solid #ddd;
}
.join .right .content .tit p:last-child { border-right:none; }
.join .right .content .list .t {
	display:flex;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.join .right .content .list .t p {
	width:14.28%;
	height:70px;
	display:flex;
	align-items:center;
	padding:0 15px;
	font-size:14px;
	color:#333;
	border-right:1px solid #ddd;
	border-bottom:1px solid #ddd;
}
.join .right .content .list .t p:last-child { border-right:none; }
.join .right .content .list .t p:last-child:after { content:'+'; }
.join .right .content .list:hover .t p:last-child:after { content:'-'; }
.join .right .content .list .b {
	padding:30px 20px 40px;
	display:none;
	border-bottom:1px solid #ddd;
}
.join .right .content .list .b p {
	font-size:14px;
	color:#666;
	line-height:2;
}
.join .right .content .list .b a {
	display:flex;
	justify-content:center;
	align-items:center;
	width:167px;
	height:58px;
	color:#fff;
	background-color:#0077B5;
	margin-top:30px;
}
.join .right .content .list:hover .t {
	background-color:#f3f3f3;
}

/* 岗位申请 */
.inner-join {
	background-color:rgba(0,0,0,.7);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	display:none;
}
.inner-join.active { display:block; }
.inner-join .message
{
    position: fixed;
    z-index: 11;
    top: 50%;
    left: 0;

    display: none;
    overflow: hidden;
    overflow-y: auto;

    width: 100%;
    max-height: 90%;
    padding: 20px 0;

    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.inner-join.active .message { display:block; }
@media (max-width: 991px)
{
    .inner-join .message
    {
        padding: 20px;
    }
}
.inner-join .message .messageinfo
{
    position: relative;

    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px 50px;

    background-color: #fff;
}
@media (max-width: 991px)
{
    .inner-join .message .messageinfo
    {
        padding: 0 15px 15px 15px;
    }
}
.inner-join .message form
{
    overflow: hidden;
}
.inner-join .message .col-xs-12
{
    margin-top: 6px;
}
.inner-join .message form
{
    margin-top: 30px;
}
.inner-join .message .title-message
{
    padding: 20px 0;

    border-bottom: 1px solid #ddd;
}
.inner-join .message .title-message h3
{
    font-size: 20px;
    line-height: 1.5;

    display: block;

    margin: 0;

    text-align: center;
}
@media (max-width: 991px)
{
    .inner-join .message .title-message h3
    {
        font-size: 18px;
    }
}
.inner-join .message .title-message .m-close
{
    position: absolute;
    top: 10px;
    right: 10px;

    float: right;

    width: 42px;
    height: 42px;

    cursor: pointer;
    -webkit-transition: all .4s;
            transition: all .4s;
    text-align: center;

    color: #666;
    border-radius: 50%;
    background-color: #fff;
}
.inner-join .message .title-message .m-close:after
{
    font-family: 'iconfont' !important;
    font-size: 30px;
    line-height: 42px;
    display: block;
    content: '\e86d';
}
.inner-join .message .title-message .m-close:hover
{
    color: #1058bb;
}
.inner-join .message .item
{
    position: relative;

    overflow: hidden;

    min-height: 50px;
    padding-left: 220px;
}
@media (max-width: 991px)
{
    .inner-join .message .item
    {
        padding-left: 130px;
    }
}
.inner-join .message p
{
    font-size: 16px;
    line-height: 48px;

    position: absolute;
    top: 0;
    left: 0;

    width: 210px;
    margin: 0;

    text-align: right;
}
@media (max-width: 991px)
{
    .inner-join .message p
    {
        font-size: 12px;
				line-height:20px;
        width: 120px;
    }
}
.inner-join .message input,
.inner-join .message textarea,
.inner-join .message select
{
    font-size: 14px;
    line-height: 28px;

    width: 100%;
    max-width: 250px;
    min-height: 38px;
    padding: 5px 10px;

    border: 1px solid #dcdcdc;
    border-radius: 6px;
    outline: none;
    background: #fff;
}
.inner-join .message .radio
{
    font-size: 18px;
    line-height: 30px;

    display: inline-block;

    margin-top: 10px;

    cursor: pointer;
    vertical-align: middle;
}
@media (max-width: 767px)
{
    .inner-join .message .radio
    {
        font-size: 15px;
    }
}
.inner-join .message .radio input[type='radio']
{
    position: absolute;

    opacity: 0;
}
.inner-join .message .radio input[type='radio'] + .radio-label:before
{
    position: relative;
    top: 6px;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin-right: 1em;

    content: '';
    cursor: pointer;
    -webkit-transition: all 250ms ease;
            transition: all 250ms ease;
    text-align: center;
    vertical-align: top;

    border: 1px solid #b4b4b4;
    border-radius: 100%;
    background: #f4f4f4;
}
.inner-join .message .radio input[type='radio']:checked + .radio-label:before
{
    background-color: #1058bb;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.inner-join .message .radio input[type='radio']:focus + .radio-label:before
{
    border-color: #1058bb;
    outline: none;
}
.inner-join .message .radio input[type='radio'] + .radio-label:empty:before
{
    margin-right: 0;
}
.inner-join .message .item-1
{
    padding-left: 0;

    text-align: center;
}
.inner-join .message .btn
{
    font-size: 18px;
    line-height: 40px;

    display: inline-block;

    height: 40px;
    margin-top: 20px;
    padding: 0 40px;

    cursor: pointer;
    -webkit-transition: all .4s;
            transition: all .4s;

    color: #fff;
    border-radius: 6px;
    outline: none;
    background-color: #0072AD;
		border:0;
}
@media (max-width: 1560px)
{
    .inner-join .message .btn
    {
        font-size: 16px;
    }
}
.inner-join .message .btn.reset
{
    margin-right: 100px;

    color: #333;
    background-color: #cecece;
}
@media (max-width: 991px)
{
    .inner-join .message .btn.reset
    {
        margin-right: 20px;
    }
}
.inner-join .message .btn:hover
{
    background-color: #0072AD;
		color:#fff;
}
.maskbg
{
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
}

.col-xs-12 { width:100%; }
.col-md-6 { width:50%; }
@media (max-width:768px) {
	.col-md-6 { width:100%; }
}
.inner-join .message form {
	display:flex;
	flex-wrap:wrap;
}

@media (max-width:1680px) {
	.join .right { width:calc(100% - 310px); }
}
@media (max-width:1200px) {
	.join .left { width: 200px; } 
	.join .left .con>div p:first-child { font-size:18px; }
	.join .left .con>div p:first-child:before { font-size:20px; }
	.join .left .con>div p:nth-child(2) { font-size:20px; }
	.join .left .con>div p span { font-size:18px!important; }
	.join .right { width:calc(100% - 220px); }
	.join .right .content .tit p { font-size:12px;height:60px; }
	.join .right .content .list .t p { font-size:12px;height:60px; }
	.join .right .content .list .b p { font-size:12px; }
}
@media (max-width:992px) {
	.join .left { display:none; } 
	.join .right { width:100%; }
}
@media (max-width:768px) {
	.join { padding: 40px calc(100vw / 1920 * 120); }
	.join .right .search button { font-size: 14px;width: 60px;height: 50px; }
	.join .right .search input { height: 50px;font-size:14px;width: calc(100% - 60px); }
	.join .right .search input::placeholder { font-size:14px; }
	.join .right .content .tit p { padding:0 5px;width:16.6666%; }
	.join .right .content .list .t p { padding:0 5px;overflow:hidden;width:16.6666%; }
	.join .right .content .tit p:last-child { display:none; }
	.join .right .content .list .t p:last-child { display:none; }
	.join .right .content .list .b a { width: 100px;height: 40px;font-size:12px; }
	.inner-join .message .title-message .m-close { top:0;right:0;background-color:transparent; }
}


/* 员工风采 */
.join-staff {
	padding: 60px calc(100vw / 1920 * 120) 100px;
}
.join-staff .top {
	padding-top:136px;
	padding-bottom:61px;
	position:relative;
}
.join-staff .top .top-bg {
	background:url(../images/join-staff.png) top left no-repeat;
	position:absolute;
	top:0;
	left:0;
	width:653px;
	height:662px;
}
.join-staff .top .bg {
	background-origin:content-box;
	margin-left:119px;
	display:flex;
	position:relative;
	background-color:#f0f0f0;
	border-top-left-radius: 232px;
	border-bottom-left-radius: 232px;
}
.join-staff .top .bg .left {
	background:url(../images/join-staff-1.png) top left no-repeat;
	width:464px;
	height:464px;
	padding:0 64px;
	display:flex;
	align-items:center;
}
.join-staff .top .bg .left p {
	font-size:16px;
	color:#fff;
	line-height:1.8;
}
.join-staff .top .bg .left p:first-child {
	font-size:24px;
	line-height:1;
	padding-bottom:15px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.join-staff .top .bg .left p:nth-child(2) {
	overflow:hidden;
	text-overflow:ellipsis;
	-webkit-line-clamp:6;
	display:-webkit-box;
	-webkit-box-orient:vertical;
}
.join-staff .top .bg .right {
	background-color:#f0f0f0;
	padding:44px 0;
	width:calc(100% - 464px);
	display:flex;
	justify-content:center;
	align-items: center;
}
.join-staff .top .bg .right .img {
	width:82%;
	border-radius:50px;
	overflow:hidden;
}
.join-staff .top .bg .right .img img { width:100%; }

@media (max-width:1440px) {
	.join-staff .top .top-bg { background-size: 100%;width: 554px;height: 563px; }
	.join-staff .top .bg .left { width: 350px;height: 350px;background-size: 100%; }
	.join-staff .top .bg .left p { font-size:12px; }
	.join-staff .top .bg .left p:first-child { font-size:16px;line-height: 1.2; }
	.join-staff .top .bg .right { width: calc(100% - 350px); }
}
@media (max-width:1200px) {
	.join-staff .top { padding:0; }
	.join-staff .top .top-bg { display:none; }
	.join-staff .top .bg { margin-left: 0; }
}
@media (max-width:992px) {
	.join-staff .top .bg .right .img { width:90%; }
}
@media (max-width:768px) {
	.join-staff { padding: 40px calc(100vw / 1920 * 120); }
	.join-staff .top .bg { flex-wrap:wrap;background:none; }
	.join-staff .top .bg .left { background:none;width:100%;height:auto;padding:0;order:2;padding-top:20px; }
	.join-staff .top .bg .left p { color:#666; }
	.join-staff .top .bg .right { width:100%;padding:0; }
	.join-staff .top .bg .right .img { width:100%;border-radius:0; }
}

.join-staff .bottom {
	padding:70px 150px 0;
}
.join-staff .bottom p {
	font-size:16px;
	color:#666;
	line-height:2;
}
.join-staff .bottom img {
	max-width:100%;
}

@media (max-width:1200px) {
	.join-staff .bottom  { padding:70px 0 0; }
}
@media (max-width:768px) {
	.join-staff .bottom { padding: 40px 0 0; }
	.join-staff .bottom p { font-size:12px; }
}

/* 人才培训 */
.join-train {
	background:url(../images/join-train.jpg) center bottom no-repeat;
	background-color:#f4f5f6;
	padding: 40px calc(100vw / 1920 * 120) 70px;
}
.join-train .content {
	background-color:#fff;
	padding:60px 50px 20px;
	display:flex;
	flex-wrap:wrap;
}
.join-train .content .list {
	width: 30.4%;
	background-color:#f6f6f6;
	padding:20px;
	margin-right: 4.4%;
	margin-bottom:60px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.join-train .content .list:nth-child(3n) {
	margin-right:0;
}
.join-train .content .list .img { overflow:hidden; }
.join-train .content .list .img img {
	width:100%;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.join-train .content .list p {
	font-size:16px;
	color:#666;
	display:flex;
	justify-content:center;
	padding:40px 0 20px;
	line-height:1;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.join-train .content .list:hover { background-color:#0072AD; }
.join-train .content .list:hover p { color:#fff; }
.join-train .content .list:hover .img img {
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}

@media (max-width:1200px) {
	.join-train .content .list p { padding: 20px 0 0; }
}
@media (max-width:768px) {
	.join-train { padding: 40px calc(100vw / 1920 * 120); }
	.join-train .content { padding: 20px 20px 0; }
	.join-train .content .list { width:100%;margin-right:0;margin-bottom:20px;padding:15px; }
	.join-train .content .list p { font-size:12px;padding: 15px 0 0; }
}


/* 联系我们 */
.about-title {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.about-title p {
	line-height:1;
}
.about-title p:first-child {
	font-size:42px;
	color:#333;
	text-transform: uppercase;
	font-weight: bold;
}
.about-title p:nth-child(2) {
	display:flex;
	align-items:center;
	color:#0072ad;
	font-size:36px;
	text-transform:uppercase;
	font-family:'Bebas','Impact';
	padding-top:25px;
	display:none;
}
.about-title p:nth-child(2):before {
	display:inline-block;
	content:'';
	width:48px;
	height:1px;
	background:#0072ad;
	margin-right:10px;
}
.about-title p:nth-child(2):after {
	display:inline-block;
	content:'';
	width:48px;
	height:1px;
	background:#0072ad;
	margin-left:10px;
}
.contact {
	padding: 65px calc(100vw / 1920 * 120);
	overflow:hidden;
}
.contact .top {
	display:flex;
}
.contact .map {
	position:relative;
	width:calc(100% - 400px);
	height:525px;
}
.contact .map .anchorBL { display:none; }
.mapinfo {
	position:relative;
	margin:0;
	padding:10px;
	font-weight:bold;
}
.mapinfo::after {
	position:absolute;
	bottom:-17px;
	left:calc(50% - 15px);
	content:'\e605';
	display:inline-block;
	font-family:'iconfont';
	font-size:18px;
	color:#fff;
	width:20px;
	height:20px;
}
.contact .info {
	width:400px;
	height:525px;
	background:#f4f4f4;
	padding:40px 40px 0;
}
.contact .info .tit {
	font-size:22px;
	color:#666;
	padding-bottom:15px;
	line-height:1.4;
}
.contact .info .con p {
	font-size:16px;
	color:#666;
	line-height:2;
}
.contact .info .con p span {
	
}
.contact .info .img {
	padding-top:30px;
	width: 67%;
}
.contact .info .img img {
	max-width:100%;
	display:block;
}
.contact .info .img p {
	font-size:16px;
	color:#666;
	text-align:center;
}
.contact .info .img p:nth-child(2) {
	padding-top:20px;
}

@media (max-width:768px) {
	.contact .top { padding:40px calc(100vw / 1920 * 100);flex-wrap:wrap; }
	.contact .info { width:100%;height:auto;padding:20px;margin-bottom:20px; }
	.contact .info .tit { font-size:16px; }
	.contact .info .con p { font-size:12px; }
	.contact .info .img { padding-top: 20px; width: 60%; }
	.contact .info .img p { font-size:12px; }
	.contact .map { width:100%;height:300px; }
}

.contact .bottom {
	padding-top:65px;
}
.contact .bottom .content {
	padding:50px calc(100vw / 1920 * 220) 0;
}
.contact .bottom .text {
	display:flex;
	justify-content:space-between;
	width:100%;
	padding-bottom:30px;
}
.contact .bottom .text input {
	width:49%;
	height:52px;
	border:1px solid #eee;
	outline:none;
	padding:0 20px;
}
.contact .bottom .text.text2 input { width:100%; }
.contact .bottom .text input::placeholder {
	font-size:14px;
	color:#bbbbbb;
}
.contact .bottom .area textarea {
	width:100%;
	height:188px;
	border:1px solid #eee;
	padding:20px;
	outline:none;
	resize:none;
	font-family:'iconfont';
}
.contact .bottom .area textarea::placeholder {
	font-size:14px;
	color:#bbb;
}
.contact .bottom .btn {
	text-align:center;
	margin-top:40px;
}
.contact .bottom .btn button {
	width:150px;
	height:48px;
	background-color:#0072AD;
	color:#fff;
	border:none;
	outline:none;
	cursor:pointer;
}


@media (max-width:768px) {
	.contact { padding: 40px calc(100vw / 1920 * 120); }
	.contact .top { padding:0; }
	.contact .bottom { padding-top: 40px; }
	.contact .bottom .content { padding: 40px 0; }
	.contact .bottom .text { padding-bottom:20px; }
	.contact .bottom .btn { margin-top:20px; }
	.about-title p:first-child { font-size:22px; }
	.about-title p:nth-child(2) { font-size:18px;padding-top: 10px; }
}


/* 修改-首页-产品中心 */
@media (max-width:1680px) {
	.index-title>div>p:first-child { font-size:42px; }
	.index-title>div>p:nth-child(2) { font-size:26px; }
}
@media (max-width:1440px) {
	.index-product .top .link a { font-size:14px;margin-left: 24px; }
}
@media (max-width:1200px) {
	.index-product .top { flex-wrap: wrap; }
}
@media (max-width:768px) {

	
}


@media (max-width:1440px) {
	.index-banner .swiper-slide .content div:first-child { font-size:28px; }
	.index-banner .swiper-slide .content div { font-size:16px; }
	.index-about .con { padding: 30px 0 0; }
	.index-about .bottom { padding: 88px 0 126px; }
	.index-about .bottom .counter { font-size:46px; }
}
@media (max-width:1199px) {
	.index-banner .swiper-slide .content { width:60%; }
	.index-banner .swiper-slide .content div:first-child { font-size:22px; }
	.index-banner .swiper-slide .content div { font-size:14px; }
	.index-about .con p { font-size:14px; }
	.index-about .bottom p span { font-size:14px; }
	.index-about .bottom p:nth-child(2) { font-size:14px; }
	.index-about .bottom .counter { font-size:36px; }
	.index-about .bottom>div { padding:0 5px; }
}
@media (max-width:991px) {
	.index-banner .swiper-slide .content { width:75%; }
	.index-banner .swiper-slide .content div:first-child { font-size:18px; }
	.index-banner .swiper-slide .content div { font-size:12px; }
}
@media (max-width:767px) {
	.index-banner .swiper-slide .content { width:85%; }
	.index-banner .swiper-slide .content div:first-child { font-size:14px; }
	.index-about .bottom { padding: 60px 0 40px; }
	.index-about .bottom>div { padding-bottom: 20px; }
	.index-about .bottom .counter { font-size:28px; }
	.index-about .bottom p span { font-size:12px; }
	.index-about .bottom p:nth-child(2) { font-size:12px; }
	.index-about .con p { font-size:12px; line-height:2; }
	.index-title>div>p:nth-child(2) { font-size:20px; }
	.index-title>div>p:first-child { display:none; }
}