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 {
	font-family: "Microsoft YaHei", "PingFang SC", "WenQuanYi Micro Hei", "Heiti SC", "Hiragino Sans GB", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: normal;
	font-size:16px;
	color:#333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a,a:hover { text-decoration:none; color: inherit; }
ul li { list-style-type:none; }
img { display:block; }

@font-face {
	font-family: 'iconfont';
	src: url('../fonts/iconfont.ttf'),
			 url('../fonts/iconfont.woff'),
			 url('../fonts/iconfont.woff2');
}
/* @font-face {
	font-family: 'alibaba';
	src: url('../fonts/AlibabaPuHuiTi-2-45-Lightt.ttf'),
			 url('../fonts/AlibabaPuHuiTi-2-45-Light.woff'),
			 url('../fonts/AlibabaPuHuiTi-2-45-Light.woff2');
} */


.bak{-webkit-transition: all 0.5s;-moz-transition: all 0.5s;-o-transition: all 0.5s;transition: all 0.5s;  display: block; }
.bak:hover {-webkit-transform:scale(1.08); -moz-transform:scale(1.08);-o-transform:scale(1.08);transform:scale(1.08);}
.pic,.pic1{ overflow: hidden; margin: auto; position: relative;}
.pic span{ background-repeat: no-repeat; background-position: center; background-size: cover; display: block;}
.pic span img{position: absolute; width: 100%; height: 100%; top: 0; left: 0; object-fit: cover; transition: all 0.5s;}


/* 图片固定大小 */
.img-size {
	position:relative;
	display:block;
	overflow:hidden;
	height:0;
	padding-bottom:100%;
}
.img-size img {
	position:absolute;top:0;left:0;
	display:block;width:100%;height:100%;
}
.img-size img[src=""], .img-size img:not([src]) { opacity:0; border:0; }




/* header start */
.header {
	display:flex;
	align-items:center;
	justify-content:space-between;
	position:fixed;
	top:0;
	left:0;
	z-index:9;
	width:100%;
	height:90px;
	background-color:#fff;
	color:#333;
	font-size:18px;
	/* border-bottom:1px solid rgba(0,0,0,.1); */
	padding:0 calc(100vw / 1920 * 120);
	box-shadow:0 0 10px rgba(0,0,0,.1);
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}


/* logo */
.header .logo { height:100%; padding:15px 0; }
/* .header .logo img { height:100%; } */
.header .logo .logo-o { display:block; }
.header .logo .logo-t { display:none; }


/* content */
.header .content { display:flex; height:100%; }


/* nav */
.header .nav .close { display:none; }
.header .nav .link { display:flex; height:100%; }
.header .nav .link>li { margin:0 20px; }
.header .nav .link>li>a {
	display: flex;
	align-items: center;
	height: 100%;
	position:relative;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}
.header .nav .link>li>a:after {
	content:'';
	position:absolute;
	left:50%;
	bottom:-1px;
	width:0;
	height:3px;
	background-color:#000;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	-o-transform:translateX(-50%);
	transform:translateX(-50%);
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}
.header .nav .link>li>a:hover { color:#333; }
.header .nav .link>li:hover>a:after { width:100%; }
.header .nav .link>li>a.active { color:#333; }
.header .nav .link>li>a.active:after { width:100%; }

.header .nav .more { position:relative; }
.header .nav .menu {
	position:absolute;
	top:calc(100% + 1px);
	left:-31px;
	font-size:16px;
	background-color:#fff;
	z-index:2;
	/* -webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	-ms-transform:translateX(-50%);
	-o-transform:translateX(-50%);
	transform:translateX(-50%); */
	display:none;
}
.header .nav .menu>li>a {
	display:flex;
	white-space: nowrap;
	padding:15px 40px;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}
.header .nav .menu>li>a:hover { background-color:#000;color:#fff; }


/* 电话 tel */
.header .tel {
	display:flex;
	align-items:center;
	font-family:'Impact';
	color:#333;
	margin-left:20px;
}
.header .tel span {
	display:flex;
	padding-right: 12px;
	font-size: 26px;
}
.header .tel span:before {
	font-family: 'iconfont';
	content: '\e909';
}
.header .tel>div {
	display:flex;
	flex-direction:column;
	font-size:16px;
}
.header .tel>div p.t {
	font-size:26px;
}


/* 语言 language */
.header .language {
	display: flex;
	position: relative;
	margin-left: 20px;
}
.header .language span {
	display: flex;
	align-items: center;
	font-size: 20px;
	color: #000;
	padding: 10px;
	cursor: pointer;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.header .language span:before {
	font-family: 'iconfont';
	font-size: 26px;
	font-weight: bold;
	content: '\e99b';
	margin-right: 10px;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.header .language ul {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	min-width: 100%;
	z-index:2;
	display: none;
}
.header .language ul a {
	display: flex;
	justify-content: center;
	padding: 10px;
	font-size: 18px;
	color: #333;
	line-height:1;
	white-space:nowrap;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.header .language ul a:hover {
	color:#ff0000;
}


/* 搜索 search */
.header .search { margin-left:20px; }
.header .search .button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90px;
	height: 100%;
	background-color: #000;
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
}
.header .search .button span { display:flex; }
.header .search .button span:before { font-family: 'iconfont'; content: '\e704'; }
.header .search .page {
	position: fixed;
	top: 100px;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 99;
	background-color: #fff;
	margin-top:0;
	box-shadow: 0 10px 10px rgb(0 0 0 / 20%);
	display: none;
}
.header .search .page>div {
	display: flex;
	align-items: center;
	height: 100%;
}
.header .search .page .close {
	position: absolute;
	top: 10px;
	right: calc(100vw / 1920 * 100);
	height:auto;
	display: flex;
	align-items: center;
	font-size: 24px;
	color: #ff0000;
	font-weight: bold;
	z-index: 99;
	cursor: pointer;
}
.header .search .page .close:before {
	font-family: 'iconfont';
	content: '\e86d';
}
.header .search .page form {
	position: relative;
	width: 100%;
	max-width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}
.header .search .page form p {
	font-size: 18px;
	margin-bottom: 50px;
	letter-spacing: 2px;
	color: #fff;
	text-align: center;
	-webkit-animation: zoomIn 1s 0s ease both;
	-moz-animation: zoomIn 1s 0s ease both;
	-o-animation: zoomIn 1s 0s ease both;
	animation: zoomIn 1s 0s ease both;
}
.header .search .page form input {
	width: 100%;
	height: 50px;
	font-size: 16px;
	color: #666;
	border: none;
	outline: none;
	text-align: left;
	background-color: rgba(241,241,241,1);
	padding:0 30px;
}
.header .search .page form input:-webkit-autofill {
	transition: background-color 5000s ease-in-out 0s;
	-webkit-text-fill-color: #fff;
}
.header .search .page form button {
	position: absolute;
	right: 10px;
	bottom: 14px;
	display: flex;
	font-size: 24px;
	color: #ff0000;
	background: none;
	border: none;
	cursor: pointer;
}
.header .search .page form button:before { font-family: 'iconfont'; content: '\e704'; }


/* nav-button */
.header .nav-button {
	display: none;
	align-items: center;
	margin-left: 20px;
}
.header .nav-button>div {
	display: flex;
	flex-direction: column;
	width: 40px;
	padding: 5px;
	cursor: pointer;
}
.header .nav-button>div span {
	width: 100%;
	height: 2px;
	background-color: #333;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s;
}
.header .nav-button>div span:nth-child(2) { margin: 5px 0; }
.header .nav-button>div.active span:first-child {
	-webkit-transform: translateY(100%) rotateZ(225deg);
	-moz-transform: translateY(100%) rotateZ(225deg);
	-ms-transform: translateY(100%) rotateZ(225deg);
	-o-transform: translateY(100%) rotateZ(225deg);
	transform: translateY(100%) rotateZ(225deg);
}
.header .nav-button>div.active span:nth-child(2) {
	-webkit-transform: translateX(100px);
	-moz-transform: translateX(100px);
	-ms-transform: translateX(100px);
	-o-transform: translateX(100px);
	transform: translateX(100px);
	opacity: 0;
	margin: 0;
}
.header .nav-button>div.active span:last-child {
	-webkit-transform: translateY(-100%) rotateZ(-225deg);
	-moz-transform: translateY(-100%) rotateZ(-225deg);
	-ms-transform: translateY(-100%) rotateZ(-225deg);
	-o-transform: translateY(-100%) rotateZ(-225deg);
	transform: translateY(-100%) rotateZ(-225deg);
}


/* nav-page */
.header .nav-page { display:none; }


/* 导航固定 fixed */
/* .header.fixed { box-shadow:0 0 20px rgba(0,0,0,.1);padding-top: 0;position:fixed;top:-100%; } */



/* 导航修改 */
.header {
	height:100px; /* 高度 */
	color:#767676; /* 字体颜色 */
	font-size:18px; /* 一级栏目字体大小 */
	background-color:#fff; /* 背景颜色 */
	position: initial;
	padding-left:calc(100vw / 1920 * 280); /* 左右边距 */
	padding-right:calc(100vw / 1920 * 228); /* 左右边距 */
	padding-top:0;
}

.header .nav .link>li { margin:0 calc(100vw / 1920 * 40); } /* 一级栏目边距 */
.header .nav .link>li>a { padding:0 9px; }
.header .nav .link>li>a:hover { color:#ff0000; } /* 一级栏目悬停文字颜色 */
.header .nav .link>li>a.active { color:#ff0000; } /* 一级栏目默认文字颜色 */
.header .nav .link>li>a:after { display:block; } /* 一级栏目下划线 */
.header .nav .menu {
	font-size:16px; /* 二级栏目文字大小 */
	color:#333; /* 二级栏目文字颜色 */
}
.header .nav .menu { top:100%; }
.header .nav .menu>li>a { padding: 15px 40px; } /* 二级栏目边距 */
.header .nav .menu>li>a:hover { background-color: transparent;color: #ff0000; } /* 二级栏目悬停效果 */
.header .nav .link>li>a:after { height:2px;bottom:26px;background-color:#ff0000; }
.header .language { align-items: center;margin-left: calc(100vw / 1920 * 80); }
.header .language:before {
	/* content:'';
	width:2px;
	height:18px;
	background-color:#ff0000; */
}
.header .language:after {
	/* content:'';
	width:2px;
	height:18px;
	background-color:#ff0000; */
}
.header .language span { color:#ff0000;font-size:18px; }
.header .language span:before { margin-right:6px;font-size:18px; }
.header .language span:after { font-family:'iconfont';content:'\e605';font-size:12px;margin-left:8px; }
/* .header .nav-button { display:flex; } */
.header .search { margin-left: 15px; }
.header .search .button {
	color: #ff0000;
	font-size:19px;
	width:auto;
	background-color: transparent;
}
.header .search .button span:before { content:'\e632'; }
.header .nav-button {
	margin-left: calc(100vw / 1920 * 50);
}
.header .nav-button>div span { background-color:#ff0000; }


@media (max-width:1840px) {
	.header .nav .link>li { margin: 0 calc(100vw / 1920 * 30); }
	.header .language { margin-left: calc(100vw / 1920 * 50); }
}
@media (max-width:1680px) {
	.header { padding-left: calc(100vw / 1920 * 200);padding-right: calc(100vw / 1920 * 200); }
}
@media (max-width:1440px) {
	.header { padding-left: calc(100vw / 1920 * 100);padding-right: calc(100vw / 1920 * 100);font-size:16px; }
	.header .language { margin-left: 30px; }
	.header .nav-button { margin-left: 30px; }
}
@media (max-width:1199px) {
	/* nav */
	.header { height:60px;color:#333;font-size:20px;padding-top:0; }
	.header .logo { padding:10px 0; }
	.header .logo img { height:100%; }
	.header .nav {
		position: fixed;top:0;left:0;width:100%;height:100%;
		z-index:99;background-color: rgba(255,255,255,1);opacity: 0;
		-webkit-transform:translateX(100%);
		-moz-transform:translateX(100%);
		-ms-transform:translateX(100%);
		-o-transform:translateX(100%);
		transform:translateX(100%);
		-webkit-transition:all .5s;
		-moz-transition:all .5s;
		-o-transition:all .5s;
		transition:all .5s;
	}
	.header .nav.active {
		opacity: 1;
		-webkit-transform:translateX(0);
		-moz-transform:translateX(0);
		-ms-transform:translateX(0);
		-o-transform:translateX(0);
		transform:translateX(0);
	}
	.header .nav .close {
		position:absolute;
		top:0;
		right:calc(100vw / 1920 * 100);
		height:60px;
		display:flex;
		align-items:center;
		color:#333;
		font-size:28px;
		font-weight:bold;
		cursor:pointer;
	}
	.header .nav .close:before {
		font-family:'iconfont';
		content: '\e86d';
		padding:5px;
	}
	.header .nav .link { flex-direction: column;justify-content: center; }
	.header .nav .link>li { margin: 15px 20px; }
	.header .nav .link>li.more:after {
		position:absolute;top:50%;right:10%;
		-webkit-transform:translateY(-50%);
		-moz-transform:translateY(-50%);
		-ms-transform:translateY(-50%);
		-o-transform:translateY(-50%);
		transform:translateY(-50%);
		font-family:'iconfont';
		font-size:18px;
		font-weight:bold;
		content:'\e65f';
		cursor:pointer;
		z-index:-1;
	}
	.header .nav .link>li>a { justify-content: center; }
	.header .nav .link>li>a:hover { color:#333; }
	.header .nav .link>li>a.active { color:#333; }
	.header .nav .link>li>a:after { display:none; }


	/* 搜索 search */
	.header .search { margin-left: 10px; }
	.header .search .button { width:60px; }


	/* nav-button */
	.header .nav-button { display:flex; }


	/* nav-page */
	.header .nav-page {
		display:block;
		position:fixed;top:0;left:100%;width:100%;height:100%;z-index:99;
		background-color:rgba(255,255,255,1);opacity:0;
		padding: 0 calc(100vw / 1920 * 100);
		color:#333;
		-webkit-transition:all .5s;
		-moz-transition:all .5s;
		-o-transition:all .5s;
		transition:all .5s;
	}
	.header .nav-page.active { left:0;opacity:1; }
	.header .nav-page .tit {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 60px;
	}
	.header .nav-page .tit span {
		display:flex;
		font-weight: bold;
		font-size: 28px;
		padding:5px;
		cursor: pointer;
	}
	.header .nav-page .tit .back:before {
		font-family: 'iconfont';
		content: '\e660';
	}
	.header .nav-page .tit .close:before {
		font-family: 'iconfont';
		content: '\e86d';
	}
	.header .nav-page .con {
		display: flex;
		justify-content: center;
		align-items: center;
		height: calc(100% - 120px);
	}
	.header .nav-page .con ul {
		display: flex;
		flex-direction: column;
	}
	.header .nav-page .con li {
		margin:15px 0;
		text-align:center;
	}
}
@media (max-width:767px) {
	.header .logo { padding: 18px 0; }
	.header.fixed .logo { padding: 18px 0; }
	.header .language { margin-left: 10px; }
	.header .language span { padding:0;font-size:14px; }
	.header .language span:before { font-size: 14px;margin-right: 4px; }
	.header .nav-button { margin-left: 10px; }
	.header .language ul { box-shadow: 0 0 10px rgb(0 0 0 / 10%); }
	.header .language ul a { padding:8px;font-size: 14px; }

	.header .search { display:none; }
	.header.fixed { height: 60px; }
}








/* 首页banner */
.index-banner {
	/* margin-top:100px; */
}
.index-banner .swiper-slide img { width:100%;display:block;opacity:0; }
.index-banner .swiper-slide-active img { opacity:1; }






.index-banner .swiper-slide .text {
	position:absolute;
	top:0;
	left:0;
	padding-left: calc(100vw / 1920 * 280);
	padding-top: calc(100vw / 1920 * 100);
	font-family:"alibaba";
	color:#b88464;
	line-height:1;
	display:none;
}
.index-banner .swiper-slide .text p:first-child {
	font-size:calc(100vw / 1920 * 48);
}
.index-banner .swiper-slide .text p:nth-child(2) {
	font-size: calc(100vw / 1920 * 36);
	margin-top: calc(100vw / 1920 * 17);
	margin-left: calc(100vw / 1920 * 5);
}
.index-banner .swiper-slide .text p:nth-child(3) {
	font-size: calc(100vw / 1920 * 42);
	font-weight: bold;
	margin-top: calc(100vw / 1920 * 26);
	position:relative;
	padding-bottom: calc(100vw / 1920 * 61);
	text-transform: uppercase;
}
.index-banner .swiper-slide .text p:nth-child(3):after {
	content:'';
	position: absolute;
	left: calc(100vw / 1920 * 6);
	bottom: 0;
	width: calc(100vw / 1920 * 148);
	height: calc(100vw / 1920 * 6);
	background-color: #e5011f;
}
.index-banner .swiper-slide .text p:nth-child(4) {
	font-size: calc(100vw / 1920 * 22);
	margin-top: calc(100vw / 1920 * 159);
	margin-left: calc(100vw / 1920 * 8);
}
.index-banner .swiper-slide:nth-child(3) .text {
	display:block;
	width:50%;
}
.index-banner .swiper-slide .text4 {
	display:none;
	position:absolute;
	top: calc(100vw / 1920 * 51);
	right: calc(100vw / 1920 * 218);
	text-align: right;
	line-height: 1;
	color: #fff;
	font-family: "alibaba";
}
.index-banner .swiper-slide .text4 p:first-child {
	font-size: calc(100vw / 1920 * 41);
}
.index-banner .swiper-slide .text4 p:nth-child(2) {
	font-size: calc(100vw / 1920 * 72);
	font-weight: bold;
	margin-top: calc(100vw / 1920 * 22);
}
.index-banner .swiper-slide:nth-child(5) .text4 {
	display:block;
}







/* 分页器 */
.index-banner .swiper-pagination {
	bottom:40px;
	left:auto;
	right:calc(100vw / 1920 * 167);
	width:auto;
	display:flex;
}
.index-banner .swiper-pagination span {
	width:57px;
	height:5px;
	margin:0 3px!important;
	border-radius: 0;
	background: transparent;
	opacity: 1;
	-webkit-transition:all .5s;
	transition:all .5s;
	display: flex;
	justify-content: center;
	align-items: center;
}
.index-banner .swiper-pagination span:after {
	content:'';
	width:37px;
	height:1px;
	background-color:#fff;
	display:flex;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
	/* background-color:#f00;
	opacity:1; */
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active:after {
	/* display:none; */
	width:57px;
	height:5px;
	background-color:#f00;
}
/* 前进后退 */
.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;
	width:28px;
	height:61px;
	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:61px;
}
.index-banner .swiper-button-prev { left:45px; }
.index-banner .swiper-button-next { right:45px; }
.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:#f00; }

/* 视频 */
.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%);
}

@media (max-width:1199px) {
	/* .index-banner { margin-top:60px; } */
	.index-banner .swiper-button-prev::after, .index-banner .swiper-button-next::after { font-size:40px; }
	.index-banner .swiper-button-prev { left:30px; }
	.index-banner .swiper-button-next { right:30px; }
}
@media (max-width:767px) {
	.index-banner .swiper-button-prev, .index-banner .swiper-button-next { display:none; }
	.index-banner .swiper-pagination { bottom:10px;right: calc(100vw / 1920 * 100); }
	.index-banner .swiper-pagination span { width:20px; }
	.index-banner .swiper-pagination .swiper-pagination-bullet-active:after { width:20px; }
	.index-banner .swiper-slide:nth-child(3) .text { width:57%; }
	.index-banner .swiper-slide .text p:first-child { font-size:12px; }
	.index-banner .swiper-slide .text p:nth-child(2) { font-size:12px; }
	.index-banner .swiper-slide .text p:nth-child(3) { font-size:12px; }
	.index-banner .swiper-slide .text p:nth-child(4) { margin-top: calc(100vw / 1920 * 100);font-size:12px; }
}




/* 首页-关于我们 */
.index-about {
	padding: 100px calc(100vw / 1920 * 280) 0;
	overflow:hidden;
}
.index-about .top {
	display:flex;
	justify-content: space-between;
}
.index-about .top .left {
	width:24.8%;
}
.index-about .top .right {
	width:75.14%;
}
.index-about .top .right .img { position:relative;cursor:pointer; }
.index-about .top .right .img:after {
	position:absolute;
	top:24px;
	right:24px;
	font-family:'iconfont';
	color:rgba(255,255,255,.8);
	font-size:32px;
	content:'\e665';
}
.index-title p {
	line-height:1;
}
.index-title p:first-child {
	font-size:36px;
	color:#ff0000;
}
.index-title p:nth-child(2) {
	margin-top:20px;
}
.index-title p:nth-child(2):after {
	font-family:'iconfont';
	color:#ff0000;
	font-size:35px;
	content:'\e65f';
	margin-left:-7px;
}
.index-title a p { margin-top:20px;cursor:initial; }
.index-title a p:after {
	font-family:'iconfont';
	color:#ff0000;
	font-size:35px;
	content:'\e65f';
	margin-left:-7px;
}
.index-about .top .right img { width:100%; }
.index-about .bottom {
	display:flex;
}
.index-about .bottom .list {
	width:25%;
	padding:33px 18px 26px 33px;
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
	-webkit-transition:background-color .5s;
	transition:background-color .5s;
}
.index-about .bottom .list>a {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}
.index-about .bottom .list:first-child { border-left:none; }
.index-about .bottom .list:last-child { border-right:none; }

.index-about .bottom .list p {
	line-height:1;
	-webkit-transition:color .5s;
	transition:color .5s;
}
.index-about .bottom .list p:first-child {
	height:56px;
}
.index-about .bottom .list p:first-child:after {
	font-family:'iconfont';
	color:#e60021;
	font-size:56px;
	content:'\e65c';
	-webkit-transition:color .5s;
	transition:color .5s;
}
.index-about .bottom .list:nth-child(2) p:first-child:after { content:'\e885'; }
.index-about .bottom .list:nth-child(3) p:first-child:after { content:'\e677';font-size: 48px; }
.index-about .bottom .list:nth-child(4) p:first-child:after { content:'\e6b0'; }
.index-about .bottom .list p:nth-child(2) {
	font-size:22px;
	color:#595757;
	margin-top:18px;
	line-height:1.3;
	height:56px;
}
.index-about .bottom .list p:nth-child(3) {
	display:flex;
	flex-wrap:wrap;
	align-items: flex-end;
	justify-content:space-between;
	font-size:16px;
	color:#595757;
	margin-top:14px;
}
.index-about .bottom .list p:nth-child(3) span.sm {
	font-size:13px;
	color:#ff000b;
	width:100%;
	margin-top:5px;
	text-align: right;
	-webkit-transition:color .5s;
	transition:color .5s;
}
.index-about .bottom .list:hover { background-color:#deac8e;border-left:1px solid #deac8e;border-right:1px solid #deac8e; }
.index-about .bottom .list:first-child:hover { border-left:none; }
.index-about .bottom .list:last-child:hover { border-right:none; }
.index-about .bottom .list:hover p:first-child:after { color:#fff; }
.index-about .bottom .list:hover p { color:#fff; }
.index-about .bottom .list:hover p span { color:#fff; }

@media (max-width:1680px) {
	.index-about { padding: 100px calc(100vw / 1920 * 200) 0; }
	.index-banner .swiper-slide .text { padding-left: calc(100vw / 1920 * 200); }
}
@media (max-width:1440px) {
	.index-about { padding: 100px calc(100vw / 1920 * 100) 0; }
	.index-banner .swiper-slide .text { padding-left: calc(100vw / 1920 * 100); }
	.index-about .bottom .list p:nth-child(2) { font-size:16px;height:42px; }
	.index-about .bottom .list p:nth-child(3) { font-size:16px; }
	.index-about .bottom .list p:nth-child(3) span.sm { font-size:12px; }
	.index-about .bottom .list p:first-child { height:42px; }
	.index-about .bottom .list p:first-child:after { font-size:42px!important; }
	.index-about .top .right .img:after { font-size:26px; }
	.index-title p:first-child { font-size: 32px; }
	.index-title p:nth-child(2):after { font-size: 46px;margin-left: -12px; }
	.index-title a p:after {
		font-size: 46px;margin-left: -12px;
	}
}
@media (max-width:1199px) {
	.index-about { padding: 70px calc(100vw / 1920 * 100) 0; }
	.index-title p:first-child { font-size:26px; }
	.index-title p:nth-child(2):after { font-size:32px;margin-left:-8px; }
	.index-title a p:after { font-size:32px;margin-left:-8px; }
	.index-about .top .right .img:after { font-size:20px;top:15px;right:15px; }
	.index-about .bottom .list p:first-child { height:32px; }
	.index-about .bottom .list p:first-child:after { font-size:32px!important; }
	.index-about .bottom .list { padding: 30px 15px 25px 20px; }
	.index-about .bottom .list p:nth-child(2) { font-size:16px;height:auto; }
	.index-about .bottom .list p:nth-child(3) { font-size:12px; }
}
@media (max-width:767px) {
	.index-about { padding: 40px calc(100vw / 1920 * 100) 0; display:none; }
	.index-about .top { flex-wrap:wrap; }
	.index-about .top .left { width:100%;text-align:center; }
	.index-title p:first-child { font-size:18px; }
	.index-title p:nth-child(2) { margin-top: 5px; }
	.index-title p:nth-child(2):after {
		font-size: 20px;
		margin-left: 0;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		display: inline-block;
	}
	.index-title a p { margin-top: 5px; }
	.index-title a p:after {
		font-size: 20px;
		margin-left: 0;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		display: inline-block;
	}
	.index-about .top .right { width:100%;margin-top:20px; }
	.index-about .bottom { flex-wrap:wrap; }
	.index-about .bottom .list { width:50%;border: 1px solid #ccc!important;padding: 20px 15px; }
	.index-about .bottom .list p:nth-child(2) { font-size:12px; }
}


/* 首页-竞争力 */
.index-createk { padding:150px calc(100vw / 1920 * 280) 0; }
.index-createk .top { text-align:center; }
.index-createk .top .index-title p:first-child { font-size:36px;color:#ff000b; }
.index-createk .top .index-title a p:after { color:#ff000b;-webkit-transform: rotate(90deg);transform: rotate(90deg);display: inline-block; }
.index-createk .bottom {
	margin-top:25px;
	display:flex;
	flex-wrap:wrap;
}
.index-createk .bottom .list {
	width:32%;
	margin-right:2%;
	margin-bottom:50px;
	display: flex;
	flex-direction: column;
	background-color:#f1f1f1;
	-webkit-transition:background-color .5s;
	transition:background-color .5s;
}
.index-createk .bottom .list:nth-child(3n) { margin-right:0; }
.index-createk .bottom .list .img {
	overflow:hidden;
}
.index-createk .bottom .list .img .pic span{ padding-top:66.6%;}
.index-createk .bottom .list .img img {
	width:100%;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.index-createk .bottom .list .text {
	display:flex;
	flex-direction:column;
	justify-content: space-between;
	padding:26px;
	min-height:243px;
}
.index-createk .bottom .list .text p {
	line-height:1;
	-webkit-transition:color .5s;
	transition:color .5s;
}
.index-createk .bottom .list .text>div p:first-child {
	font-size:20px;
	font-weight:bold;
	color:#000;
}
.index-createk .bottom .list .text>div p:nth-child(2) {
	font-size:16px;
	color:#595757;
	line-height:1.4;
	margin-top:18px;
}
.index-createk .bottom .list .text>p {
	font-size:16px;
	color:#ff000b;
	margin-top:20px;
}
.index-createk .bottom .list:hover { background-color: #deac8e; }
.index-createk .bottom .list:hover .img img { transform:scale(1.1); }
.index-createk .bottom .list:hover .text>div p:first-child { color:#fff; }
.index-createk .bottom .list:hover .text>div p:nth-child(2) { color:#fff }
.index-createk .bottom .list:hover .text>p { color:#fff; }

@media (max-width:1680px) {
	.index-createk { padding: 150px calc(100vw / 1920 * 200) 0; }
}
@media (max-width:1440px) {
	.index-createk { padding: 100px calc(100vw / 1920 * 100) 0; }
	.index-createk .top .index-title p:first-child { font-size:32px; }
	.index-createk .bottom .list .text { min-height: 220px; }
	.index-createk .bottom .list .text>div p:first-child { font-size:20px; }
	.index-createk .bottom .list .text>div p:nth-child(2) { font-size:16px; }
	.index-createk .bottom .list .text>p { font-size:16px; }
}
@media (max-width:1199px) {
	.index-createk .top .index-title p:first-child { font-size:26px; }
	.index-createk .bottom .list .text { min-height: 200px; }
	.index-createk .bottom .list .text>div p:first-child { font-size:18px; }
	.index-createk .bottom .list .text>div p:nth-child(2) { font-size:14px; }
	.index-createk .bottom .list .text>p { font-size:14px; }
}
@media (max-width:767px) {
	.index-createk { padding: 40px calc(100vw / 1920 * 100) 0; }
	.index-createk .top .index-title p:first-child { font-size:18px; }
	.index-createk .bottom .list { width:100%;margin-right:0;margin-bottom:20px; }
	.index-createk .bottom .list .text { min-height: auto;padding:20px; }
	.index-createk .bottom .list .text>div p:first-child { font-size:14px; }
	.index-createk .bottom .list .text>div p:nth-child(2) { font-size:12px;margin-top:10px; }
	.index-createk .bottom .list .text>p { font-size:12px; }
}


/* 首页-产品中心 */
.index-product {
	padding: 30px calc(100vw / 1920 * 280) 100px;
	display:flex;
	justify-content: flex-end;
	position:relative;
	overflow:hidden;
}
.index-product .index-title p:first-child { color:#ff000b; }
.index-product .index-title p:nth-child(2):after { color:#ff000b; }
.index-product .left {
	width:33.5%;
	position:absolute;
	top:calc(100vw / 1920 * 100);
	left:calc(100vw / 1920 * 280);
	z-index:8;
}
.index-product .left .bottom { margin-top:100px; }
.index-product .left .bottom .t { display:flex; }
.index-product .left .bottom .t>div:first-child { margin-right:66px; }
.index-product .left .bottom .t p { line-height:1;color:#ff000b; }
.index-product .left .bottom .t p:first-child { font-size:36px; }
.index-product .left .bottom .t p:nth-child(2) {
	font-size:21px;
	margin-top:20px;
}
.index-product .left .bottom .b {
	font-size:16px;
	line-height:1.4;
	color:#595757;
	text-align:justify;
	margin-top:60px;
}
.index-product .right {
	position:relative;
	left:63px;
	width:66.4%;
}
.index-product .right .img img { max-width:100%; }

@media (max-width:1680px) {
	.index-product { padding: 56px calc(100vw / 1920 * 200) 100px; }
	.index-product .left { left: calc(100vw / 1920 * 200); }
}
@media (max-width:1440px) {
	.index-product { padding: 0px calc(100vw / 1920 * 100) 50px; }
	.index-product .left { left: calc(100vw / 1920 * 100);top: calc(100vw / 1920 * 70); }
	.index-product .right { left:0; }
	.index-product .left .bottom { margin-top: 60px; }
	.index-product .left .bottom .t p:first-child { font-size:38px; }
	.index-product .left .bottom .t p:nth-child(2) { font-size:16px; }
	.index-product .left .bottom .b { font-size:14px; }
}
@media (max-width:1199px) {
	.index-product .left .bottom { margin-top: 50px; }
	.index-product .left .bottom .t p:first-child { font-size:32px; }
	.index-product .left .bottom .t p:nth-child(2) { font-size:14px;margin-top: 10px; }
	.index-product .left .bottom .t>div:first-child { margin-right: 50px; }
	.index-product .left .bottom .b { font-size:14px; }
}
@media (max-width:991px) {
	.index-product .left .bottom { margin-top: 30px; }
	.index-product .left .bottom .t p:first-child { font-size:22px; }
	.index-product .left .bottom .t p:nth-child(2) { font-size:12px; }
	.index-product .left .bottom .b { font-size:12px;margin-top: 30px; }
	.index-product .left { width: 36.5%; }
}
@media (max-width:767px) {
	.index-product { padding: 20px calc(100vw / 1920 * 100) 40px;flex-wrap:wrap; }
	.index-product .left { width:100%;position:initial; }
	.index-product .left .top { text-align:center; }
	.index-product .left .bottom { margin-top: 20px; }
	.index-product .left .bottom .t { justify-content: center; }
	.index-product .left .bottom .t p:first-child { font-size:18px; }
	.index-product .left .bottom .b { margin-top:20px; }
	.index-product .right { width:100%;margin-top:20px; }
}


/* footer */
.footer .top {
	border-top:1px solid #a0a0a0;
	padding-left:calc(100vw / 1920 * 140);
	padding-right:calc(100vw / 1920 * 130);
	height:93px;
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.footer .top .left ul { display:flex; }
.footer .top .left ul li { margin-right:30px; }
.footer .top .left ul li:last-child { margin-right:0; }
.footer .top .left ul a {
	font-size:16px;
	color:#000;
}
.footer .top .right { display:flex; }
.footer .top .right .search { margin-right:60px; }
.footer .top .right .search form { display:flex; }
.footer .top .right .search input {
	width:200px;
	height:36px;
	background-color:#dbdbdb;
	border:none;
	outline:none;
	border-top-left-radius:36px;
	border-bottom-left-radius:36px;
	padding:0 20px;
}
.footer .top .right .search button {
	width:78px;
	height:36px;
	background-color:#deac8e;
	border:none;
	outline:none;
	font-size:16px;
	color:#fff;
	border-top-right-radius:36px;
	border-bottom-right-radius:36px;
}
.footer .top .right .language {
	display:flex;
	align-items:center;
	position:relative;
}
.footer .top .right .language p {
	display:flex;
	align-items:center;
	font-size:16px;
	color:#000;
}
.footer .top .right .language p span { margin-left:15px; }
.footer .bottom {
	background-color:#221815;
	position:relative;
	padding-top:13px;
}
.footer .bottom:before {
	content:'';
	width:100%;
	height:13px;
	position:absolute;
	top:0;
	left:0;
	background:linear-gradient(to right,#dea94a,#f9e6b9,#dea94a);
}
.footer .bottom .t {
	padding:85px calc(100vw / 1920 * 140) 68px;
	display:flex;
	justify-content:space-between;
}
.footer .bottom .t .logo { width:278px; }
.footer .bottom .t .logo img { max-width:100%; }
.footer .bottom .t .menu {
	display:flex;
	justify-content:space-between;
	width:45%;
	color:#deac8e;
	font-size:16px;
	padding-top: 15px;
	line-height:1;
}
.footer .bottom .t .menu p { font-size:18px; }
.footer .bottom .t .menu ul { padding-top:16px; }
.footer .bottom .t .menu ul li { margin-top:20px; }
.footer .bottom .t .info {
	font-size:16px;
	color:#deac8e;
	padding-top: 15px;
	line-height:1;
	width:380px;
}
.footer .bottom .t .info>p { font-size:18px; }
.footer .bottom .t .info>div { margin-top:36px; }
.footer .bottom .t .info>div p { margin-top:15px;line-height:1.3; }
.footer .bottom .t .info>div p:first-child { font-size:14px;margin-top:0; }
.footer .bottom .t .info>div p:nth-child(2) { font-size:36px; }
.footer .bottom .b {
	border-top:2px solid #deac8e;
	height:87px;
	padding-left:calc(100vw / 1920 * 140);
	padding-right:calc(100vw / 1920 * 45);
	display:flex;
	align-items:center;
	justify-content:space-between;
	font-size:16px;
	color:#deac8e;
}
.footer .bottom .b .link {
	width:234px;
	height:44px;
	border:1px solid #deac8e;
	padding:0 46px;
	position:relative;
	display:flex;
	align-items:center;
	line-height:1;
	cursor:pointer;
}
.footer .bottom .b .link>p { font-size:14px; }
.footer .bottom .b .link:before {
	position:absolute;
	left:20px;
	font-family:'iconfont';
	font-size:15px;
	color:#deac8e;
	content:'\e667';
}
.footer .bottom .b .link:after {
	position:absolute;
	right:20px;
	font-family:'iconfont';
	font-size:15px;
	color:#deac8e;
	content:'\e622';
}
.footer .bottom .b .link .menu {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	display:flex;
	flex-direction:column;
	background-color:#fff;
	color:#333;
	-webkit-transform:translateY(-100%);
	transform:translateY(-100%);
	-webkit-transition:all .5s;
	transition:all .5s;
	z-index:-1;
	opacity:0;
}
.footer .bottom .b .link .menu a {
	display:flex;
	align-items:center;
	height:44px;
	padding:0 46px;
	font-size:14px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.footer .bottom .b .link .menu a:hover {
	background-color:#deac8e;
	color:#fff;
}
.footer .bottom .b .link:hover .menu { opacity:1;z-index:0; }
.footer .bottom .b p {
	display:flex;
	flex-wrap:wrap;
	align-items: center;
	justify-content: center;
}
.footer .bottom .b p span { margin-right:10px; }
.ph-footer { display:none; }

@media (max-width:1680px) {
	.footer .bottom .t .menu { font-size:14px; }
	.footer .bottom .t .menu p { font-size:16px; }
	.footer .bottom .t .info { font-size:14px;width:270px; }
	.footer .bottom .t .info>p { font-size:16px; }
	.footer .bottom .t .info>div p:nth-child(2) { font-size:28px; }
}
@media (max-width:1440px) {
	.footer .top { padding:0 calc(100vw / 1920 * 100); }
	.footer .bottom .t { padding: 85px calc(100vw / 1920 * 100) 68px; }
	.footer .bottom .b { padding:0 calc(100vw / 1920 * 100); }

	.footer .bottom .t .menu { font-size:12px;width:50%; }
	.footer .bottom .t .menu p { font-size:14px; }
	.footer .bottom .t .info { font-size:12px;width:230px; }
	.footer .bottom .t .info>div p { margin-top: 10px; }
	.footer .bottom .t .info>p { font-size:14px; }
	.footer .bottom .t .info>div p:nth-child(2) { font-size:20px; }
	.footer .bottom .t .logo { width:180px; }
	.footer .bottom .b { font-size:12px; }
}
@media (max-width:1199px) {
	.footer .top .left ul a { font-size:14px; }
	.footer .top .right .search { margin-right: 30px; }
	.footer .top .right .search button { font-size:14px; }
	.footer .top .right .language p { font-size:14px; }
	.footer .bottom .t { flex-wrap:wrap; }
	.footer .bottom .t .logo { width:100%;margin-bottom:20px; }
/*	.footer .bottom .t .logo img { width:180px; }*/
	.footer .bottom .t .menu { width:66%; }
}
@media (max-width:991px) {
	.footer .top { flex-wrap:wrap; }
	.footer .top .right { width:100%;justify-content: flex-end; }
	.footer .top .right .search input { height:30px; }
	.footer .top .right .search button { height:30px; }
	.footer .bottom .t .menu { display:none; }
	.footer .bottom .b .link { width:160px; }
	.footer .bottom .t .info { width:100%; }
}
@media (max-width:767px) {
	.footer .top { display:none; }
	.footer .bottom .t { padding: 40px calc(100vw / 1920 * 100);flex-wrap:wrap; }
	.footer .bottom .t .info { width:100%;padding-top:20px; }
	.footer .bottom .t .info>p { display:none; }
	.footer .bottom .t .info>div { margin-top: 10px; }
	.footer .bottom .t .info>div p { margin-top: 10px; }
	.footer .bottom .t .info>div p:nth-child(2) { font-size:22px; }
	.footer .bottom .b { justify-content: center;text-align:center; }
	.footer .bottom .b .link { display:none; }
	.footer .bottom .b p span { margin-right:0;margin-top:5px; }

	.footer { margin-bottom:70px; }
	.ph-footer {
		position:fixed;
		left:0;
		bottom:0px;
		width:100%;
		height:70px;
		background:#DEAA4C;
		z-index:999;
		display:flex;
		box-shadow:0 0 20px rgba(0,0,0,.3);
	}
	.ph-footer a {
		text-align: center;
		width:25%;
		color:#333; color: #fff;
		font-size:12px;
		position:relative; display: block;
	}
	.ph-footer a i{ display: block; font-size: 20px; padding-top: 10px; }
    .ph-footer a p { margin:auto; }

}




/* 关于我们 */
.page-banner { position:relative; }
.page-banner .img { overflow:hidden; }
.page-banner .img img {
	width:100%;
	/* transform: scale(1.2);
	animation: bannerin 1.5s linear;
	animation-fill-mode: both; */
}
@keyframes bannerin {
	0% { transform:scale(1.2); }
	100% { transform:scale(1); }
}
.page-banner .link {
	position:absolute;
	right:calc(100vw / 1920 * 326);
	bottom:32px;
	font-size:16px;
	color:#fff;
	display:flex;
	align-items: center;
}
.page-banner .link>a { display:flex; align-items: center; }
.page-banner .link>a span:first-child {
	width:30px;
	height:30px;
	background-color:#ff000b;
	border-radius:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	margin-right:7px;
}
.page-banner .link>a span:first-child:after {
	font-family:'iconfont';
	font-size:16px;
	color:#fff;
	content:'\e60c';
}
.page-banner .link>a span:last-child:after {
	content:'>';
	margin:0 5px;
}
.page-banner .link>span { color:#ff000b; }

.page-link {
	border-bottom:1px solid #e3e3e3;
	display:flex;
	justify-content:center;
	height:81px;
	overflow:auto;
}
.page-link a {
	display:flex;
	align-items:center;
	justify-content:center;
	width:auto;
	height:100%;
	padding:0 40px;
	font-size:20px;
	color:#a0a0a0;
	position:relative;
	white-space:nowrap;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.page-link a:hover { background-color:#deac8e; color:#fff; }
.page-link a:hover:after { display:none; }
.page-link a.active { background-color:#deac8e; color:#fff; }
.page-link a:after {
	content:'';
	width:2px;
	height:20px;
	background-color:#a0a0a0;
	position:absolute;
	right:-2px;
}
.page-link a:last-child:after { display:none; }
.page-link a.active:after { display:none; }

@media (max-width:1440px) {
	.page-banner .link { font-size:14px; }
	.page-link a { font-size:16px; }
}
@media (max-width:1199px) {
	/* .page-banner { margin-top: 60px; } */
	.page-banner .link { right: calc(100vw / 1920 * 100);font-size:12px; }
	.page-banner .link>a span:first-child { width:25px;height:25px; }
	.page-banner .link>a span:first-child:after { font-size:12px; }
	.page-link { height:60px; }
	.page-link a { font-size:14px;width:auto;padding:0 30px; }
	.header .search .page { top: 60px; }
}
@media (max-width:767px) {
	.page-banner { margin-top:60px; }
	.page-banner .link { display:none; }
	.page-link { justify-content: flex-start;height:45px; }
	/* .page-link a { padding:10px 15px;width:50%;height:50%; } */
}


/* 济南创凯科技有限公司 */
.about-info {
	padding:100px calc(100vw / 1920 * 280) 0;
	overflow:hidden;
}
.index-title.about-title p:first-child { font-size:36px;font-weight:bold; }
.about-info .con {
	display:flex;
	margin-top:40px;
}
.about-info .con .text {
	font-size:16px;
	color:#4a4a4a;
	line-height:1.6;
	width:100%;
	text-align:justify;
}
.about-info .con .img { width:42%;overflow:hidden;float:right;margin-left:40px;margin-bottom:30px; }
.about-info .con .img img {
	width:100%;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.about-info .con .img:hover img {
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}

@media (max-width:1680px) {
	.about-info { padding:100px calc(100vw / 1920 * 200) 0; }
}
@media (max-width:1440px) {
	.about-info { padding:100px calc(100vw / 1920 * 100) 0; }
	.index-title.about-title p:first-child { font-size:32px; }
}
@media (max-width:1199px) {
	.index-title.about-title p:first-child { font-size:26px; }
	.about-info .con .text { font-size:14px; }

}
@media (max-width:991px) {
	.about-info .con .text { padding-right: 20px; }
}
@media (max-width:767px) {
	.about-info { padding:40px calc(100vw / 1920 * 100) 0; }
	.index-title.about-title { text-align:center; }
	.about-info .con { flex-wrap:wrap; }
	.about-info .con .text { width:100%;padding-right:0;font-size:12px; }
	.about-info .con .img { width:100%;margin: 0 0 20px; }
	.index-title.about-title p:first-child { font-size:18px; }
	.about-info .con { margin-top: 30px; }
}


/* 联系方式 */
.mapinfo {
	position:relative;
	margin:0;
	padding:10px;
}
.mapinfo::after {
	position:absolute;
	bottom:-17px;
	left:calc(50% - 9px);
	content:'\e605';
	display:inline-block;
	font-family:'iconfont';
	font-size:18px;
	color:#fff;
	width:20px;
	height:20px;
}
.about-contact {
	padding:165px calc(100vw / 1920 * 280) 0;
	display:flex;
	justify-content:space-between;
	overflow:hidden;
}
.about-contact .left { width:384px; }
.about-contact .left .bottom {
	border-top:2px solid #f9f9f9;
	margin-top:42px;
}
.about-contact .left .bottom>div {
	border-bottom:2px solid #f9f9f9;
	line-height:1.3;
	padding:23px 0;
	font-size:16px;
	color:#676767;
	display: flex;
	align-items: center;
}
.about-contact .left .bottom>div:first-child:before {
	font-family:'iconfont';
	font-size:24px;
	color:#deac8e;
	content:'\e621';
	margin-right:20px;
}
.about-contact .left .bottom>div:nth-child(2):before {
	font-family:'iconfont';
	font-size:24px;
	color:#deac8e;
	content:'\e60d';
	margin-right:20px;
}
.about-contact .left .bottom>div:nth-child(3):before {
	font-family:'iconfont';
	font-size:24px;
	color:#deac8e;
	content:'\e672';
	margin-right:20px;
}
.about-contact .left .bottom .tel {
	flex-wrap:wrap;
	align-items:flex-start;
}
.about-contact .left .bottom .tel>div { width:83%; }
.about-contact .left .bottom .tel p {
	display:flex;
	justify-content:space-between;
}
.about-contact .left .bottom .tel p:first-child { margin-bottom:20px; }
.about-contact .right { width:calc(100% - 436px); }
.about-contact .right .map { height:428px;width:100%; }
.about-contact .right .map .anchorBL { display:none; }

@media (max-width:1680px) {
	.about-contact { padding: 165px calc(100vw / 1920 * 200) 0; }
}
@media (max-width:1440px) {
	.about-contact { padding: 100px calc(100vw / 1920 * 100) 0; }
}
@media (max-width:1199px) {
	.about-contact .left .bottom>div { font-size:14px; }
}
@media (max-width:991px) {
	.about-contact .left { width:300px; }
	.about-contact .left .bottom>div { font-size:12px; }
	.about-contact .right { width: calc(100% - 340px); }
	.about-contact .right .map { height:360px; }
}
@media (max-width:767px) {
	.about-contact { padding: 40px calc(100vw / 1920 * 100) 0;flex-wrap:wrap; }
	.about-contact .left { width:100%; }
	.about-contact .left .bottom { margin-top:30px; }
	.about-contact .left .bottom>div { padding: 15px 0; }
	.about-contact .right { width:100%; }
	.about-contact .right .map { height:300px; }
	.page-banner .link { bottom: 10px; }
}


/* 在线留言 */
.about-message { padding: 164px calc(100vw / 1920 * 280) 78px;overflow:hidden; }
.about-message .bottom { margin-top:70px; }
.about-message .bottom div {
	display:flex;
	margin-bottom:35px;
}
.about-message .bottom div input {
	height:63px;
	border:2px solid #e9e9e9;
	outline:none;
	padding:0 16px;
	font-size:16px;
	color:#676767;
}
.about-message .bottom div input::placeholder {
	font-size:16px;
	color:#676767;
}
.about-message .bottom .o1 {
	justify-content:space-between;
}
.about-message .bottom .o1 input { width:32%; }
.about-message .bottom .o2 input { width:100%; }
.about-message .bottom .o3 textarea {
	width:100%;
	min-width:100%;
	height:215px;
	min-height:100%;
	outline:none;
	border:2px solid #e9e9e9;
	resize:none;
	padding:16px;
	font-size:16px;
	color:#676767;
	font-family:'';
}
.about-message .bottom .o4 button {
	width:208px;
	height:54px;
	background-color:#ff0000;
	border:none;
	outline:none;
	font-size:16px;
	color:#fff;
	cursor:pointer;
	-webkit-transition:all .5s;
	transition:all .5s;
}

@media (max-width:1680px) {
	.about-message { padding: 164px calc(100vw / 1920 * 200) 78px; }
}
@media (max-width:1440px) {
	.about-message { padding: 100px calc(100vw / 1920 * 100) 50px; }
}
@media (max-width:1199px) {
	.about-message .bottom div input { font-size:14px; }
	.about-message .bottom div input::placeholder { font-size:14px; }
	.about-message .bottom .o3 textarea { font-size:14px; }
	.about-message .bottom .o4 button { font-size:14px; }
}
@media (max-width:767px) {
	.about-message { padding: 40px calc(100vw / 1920 * 100); }
	.about-message .bottom { margin-top: 30px; }
	.about-message .bottom div input { font-size:12px;height:45px; }
	.about-message .bottom div input::placeholder { font-size:12px; }
	.about-message .bottom .o3 textarea { font-size:12px; }
	.about-message .bottom .o4 button { font-size:12px; }
	.about-message .bottom div { margin-bottom:20px; }
	.about-message .bottom .o3 textarea { height:120px; }
	.about-message .bottom .o4 button { height:45px; }
	.about-message .bottom .o1 { flex-wrap:wrap; }
	.about-message .bottom .o1 input { width:100%;margin-bottom:20px; }
	.about-message .bottom .o1 input:last-child { margin-bottom:0; }
}


/* 产品中心 */
.product {
	padding: 78px calc(100vw / 1920 * 280) 116px;
	overflow:hidden;
}
.product .top { width:49.5%; float:left; margin-right:1.4%; }
.product .top .product-swiper { padding-bottom:4px; }
.product .top .product-swiper img {
	width:100%;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.product .top .product-swiper a { cursor:initial; }
.product .top .product-swiper .img { overflow:hidden; padding-bottom:73.7%; position:relative }
.product .top .product-swiper .img img{position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    display: block;
    object-fit: cover;}
.product .top .product-swiper a:hover img {
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}

.product .top .product-swiper p {
	line-height:1;
	text-align:center;
	font-size:17px;
	color:#2e2e2e;
	margin-top:14px;
	opacity:0;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.product .top .product-swiper a:hover p { color:#FF0000; }
.product .top .product-swiper .swiper-slide-active p { opacity:1; }
.product .swiper-pagination {
	bottom:68px;
	display: flex;
	justify-content: center;
}
.product .swiper-pagination span {
	width:20px;
	height:20px;
	margin:0 15px!important;
	border-radius: 50%;
	background: transparent;
	opacity: 1;
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
}
.product .swiper-pagination span:after {
	position:absolute;
	width:10px;
	height:10px;
	border-radius: 50%;
	background: #cdcbe4;
	content:'';
}
.product .swiper-pagination .swiper-pagination-bullet-active {
	background: #ff0000;
	opacity:1;
}
.product .bottom .list {
	float:left;
	width:23.8%;
	margin-right:1.4%;
	margin-bottom: calc(100vw / 1920 * 30);
}
.product .bottom .list a { display: block; /*cursor:initial;*/ }
.product .bottom .list:nth-child(2) { margin-right:0; }
.product11 .bottom .list:nth-child(2){margin-right:1.4%;}
.product .bottom .list:nth-child(4n) { margin-right:0; }
.product .bottom .list .img { overflow:hidden; }
/*.product .bottom .list .img img {
	width:100%;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.product .bottom .list:hover .img img {
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}*/
.product .bottom .list .img .pic span{ padding-top: 66.66%; }
.product .bottom .list p {
	line-height:1;
	text-align:center;
	font-size:17px;
	color:#2e2e2e;
	margin-top:14px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.product .bottom .list:hover p { color:#FF0000; }
.page {
	display:flex;
	justify-content: center;
	width:100%;
	margin-top:50px;
	float:left;
}
.page ul {
	display:flex;
}
.page ul a, .page ul span {
	font-size:18px;
	color:#b9b6b6;
	width:54px;
	height:54px;
	display:flex;
	justify-content:center;
	align-items:center;
	border:1px solid #e6e6e6;
	margin:0 0px;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.page ul a:hover, .page ul span:hover {
	border:1px solid #deac8e;
	background-color:#deac8e;
	color:#fff;
}
.page ul a.active,.page ul span.active{
	border:1px solid #deac8e;
	background-color:#deac8e;
	color:#fff;
}

@media (max-width:1680px) {
	.product { padding: 78px calc(100vw / 1920 * 200) 116px; }
}
@media (max-width:1440px) {
	.product { padding: 78px calc(100vw / 1920 * 100) 116px; }
	.product .bottom .list p { font-size:16px; }
	.product .top .product-swiper p { font-size:16px; }
	.page ul a, .page ul span { font-size:16px; }
}
@media (max-width:1199px) {
	.product .bottom .list p { font-size:14px; }
	.product .top .product-swiper p { font-size:14px; }
	.page ul a, .page ul span { font-size:14px;margin: 0 8px;width: 45px;height: 45px; }
}
@media (max-width:991px) {
	.product .bottom .list p { font-size:12px; }
	.product .top .product-swiper p { font-size:12px; }
	.page ul a, .page ul span { font-size:12px; }
}
@media (max-width:767px) {
	.product { padding: 40px calc(100vw / 1920 * 100); }
	.product .top { width:100%;margin-bottom:15px;float:initial; }
	.product .swiper-pagination { bottom: 35px; }
	.product .swiper-pagination span { margin: 0 5px!important;width:15px;height:15px; }
	.product .bottom { display:flex;justify-content:space-between;flex-wrap:wrap; }
	.product .bottom .list { width:48%;margin-right:0;margin-bottom:15px;float:initial; }
	.product .swiper-pagination span:after { width:7px;height:7px; }
	.page { margin-top: 30px; }
	.page ul a, .page ul span { margin: 0 5px;width: 30px;height: 30px; }
}




/* 生产制造 */
.createk {
	padding:100px calc(100vw / 1920 * 280) 100px;
	overflow:hidden;
}
.createk-n {
	display:flex;
	justify-content:space-between;
}
.createk-n .left {
	width:46.5%;
}
.createk-1 .left .list {
	display:flex;
	flex-wrap:wrap;
	margin-top:55px;
}
.createk-1 .left .list p {
	font-size:16px;
	color:#deac8e;
	font-weight:bold;
	width:50%;
	line-height:1.2;
	display:flex;
	align-items:flex-start;
	margin-top:20px;
	position:relative;
	padding-right:5px;
	padding-left:16px;
	word-break: break-all;
}
.createk-1 .left .list p:before {
	content:'';
	width:6px;
	height:6px;
	border-radius:6px;
	background-color:#ff0000;
	margin-right:10px;
	position:absolute;
	left:0;
	top:6px;
}
.createk-n .left .text {
	margin-top:30px;
	text-align:justify;
}
.createk-n .left .text p {
	font-size:16px;
	color:#5e5e5e;
	line-height:1.8;
}
.createk-n .right {
	width:50.3%;
}
.createk-n .right .img { overflow:hidden; }
.createk-n .right .img img {
	max-width:100%;
	-webkit-transition:all .5s;
	transition:all .5s;
}
.createk-n .right .img:hover img {
	-webkit-transform:scale(1.1);
	transform:scale(1.1);
}
.createk-1 .right {
	display: flex;
	align-items: flex-end;
}

@media (max-width:1680px) {
	.createk { padding:100px calc(100vw / 1920 * 200); }
}
@media (max-width:1440px) {
	.createk { padding:100px calc(100vw / 1920 * 100); }
	.createk-1 .left .list p { word-break: normal }
}
@media (max-width:1199px) {
	.createk-1 .left .list p { font-size:14px; }
	.createk-n .left .text p { font-size:14px; }
}
@media (max-width:991px) {
	.createk { padding:100px calc(100vw / 1920 * 100) 50px; }
	.createk-1 .left .list p { font-size:12px; }
	.createk-n .left .text p { font-size:12px; }
	.createk-1 .left .list { margin-top: 10px; }
	.createk-n .left .text { margin-top: 20px; }
}
@media (max-width:767px) {
	.createk { padding:40px calc(100vw / 1920 * 100); }
	.createk-n { flex-wrap:wrap; }
	.createk-n .left { width:100%; }
	.createk-n .right { width:100%;margin-top:20px; }
	.createk-1 .left .list p:before  { top:4px; }
}


.createk-2 {
	margin-top:100px;
}
.createk-n .left .title {
	width:480px;
	height:62px;
	border-radius:31px;
	border:3px solid #ff0000;
	font-size:24px;
	color:#ff0000;
	display:flex;
	align-items:center;
}
.createk-n .left .title:before {
	content:'';
	width:23px;
	height:23px;
	border-radius:100%;
	border:3px solid #ff0000;
	margin-left:10px;
	margin-right:10px;
	margin-top:2px;
}
.createk-2 .left .tit {
	font-size:24px;
	color:#ff0000;
	line-height:1;
	display:flex;
	align-items:center;
	margin-top:30px;
}
.createk-2 .left .tit:before {
	font-family:'iconfont';
	font-size:28px;
	color:#ff0000;
	content:'\e66c';
	margin-right:10px;
	margin-top:3px;
}

.createk-2 .left .right { margin-left:40px;float:right; }

@media (max-width:1199px) {
	.createk-n .left .title { width:45%;height: 45px;font-size:16px; }
	.createk-n .left .title:before { width:18px;height:18px;margin-right: 16px; }
	.createk-2 .left .tit { font-size:20px; }
	.createk-2 .left .tit:before { font-size:24px; }
}
@media (max-width:991px) {
	.createk-2 { margin-top:100px; }
	.createk-n .left .title { height:40px;width:100%; }
	.createk-n .left .title:before { width:18px;height:18px;margin:0 10px; }
	.createk-2 .left .tit { font-size:16px;margin-top:20px; }
	.createk-2 .left .tit:before { font-size:20px; }
	.createk-2 .left .right { width:100%;margin-bottom:20px; }
}
@media (max-width:767px) {
	.createk-2 { margin-top:40px; }
	.createk-n .left .title { font-size:14px;border: 2px solid #ff0000;height: 35px; }
	.createk-n .left .title:before { width:14px;height:14px;border: 2px solid #ff0000;margin-top:1px; }
}


.createk-3 {
	padding:0;
	margin-top:100px;
}
.createk-3 .bottom { margin:0; }
.createk-3 .bottom .list .text { min-height:auto; }
.createk-3 .bottom .list .text>div p:first-child { font-size:20px; }
.createk-3 .bottom .list>a { cursor:initial; }
.createk-4 { margin-top:50px; }
.createk-4 .left .text { margin-top:60px; }

.createk-4 .right { margin-top:158px; }

@media (max-width:1440px) {
	.createk-3 .bottom .list .text>div p:first-child { font-size:18px; }
}
@media (max-width:1199px) {
	.createk-3 .bottom .list .text>div p:first-child { font-size:16px; }
}
@media (max-width:991px) {
	.createk-4 .left .text { margin-top:20px; }
	.createk-4 .right { margin-top: 105px; }
}
@media (max-width:767px) {
	.createk-3 { margin-top: 40px; }
	.createk-4 { margin-top:40px; }
	.createk-4 .right { margin-top:20px; }
}

.createk-5 { margin-top:100px;flex-wrap:wrap; }
.createk-5 .left { width:100%; }
.createk-5 .right { width:100%;display:flex;flex-wrap:wrap; }
.createk-5 .right .img { margin-top:30px; }
.createk-5 .right .img:first-child { width:49%;margin-right:2%; }
.createk-5 .right .img:nth-child(2) { width:49%; }
.createk-5 .right .img:nth-child(3) { width:32%;margin-right:2%; }
.createk-5 .right .img:nth-child(4) { width:32%;margin-right:2%; }
.createk-5 .right .img:nth-child(5) { width:32%; }
.createk-6 { margin-top:100px; }

@media (max-width:767px) {
	.createk-5 { margin-top:40px; }
	.createk-5 .right { margin-top:0; }
	.createk-5 .right .img { width:100%!important;margin-right:0!important;margin-top:20px; }
	.createk-5 .right .img img { width:100%; }
}

.createk-o1 .createk-7 { margin-top:50px; }
.createk-7 .right { display:initial; }
.createk-7 .right .img { float:left; }
.createk-7 .right .img:nth-child(3) { width:49%;margin-right:0; }
.createk-o1 .createk-7 .left .title { width:50%; }

@media (max-width:1199px) {
	.createk-o1 .createk-7 .left .title { width:100%; }
}
@media (max-width:767px) {
	.createk-7 { margin-top:40px; }
	.createk-7 .left .title { height:auto;padding: 5px 0; }
}




/* 质量管理 */
.createk-o1 {

}
.createk-o1 .left .num {
	display:flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 85%;
	margin-top:48px;
}
.createk-o1 .left .num .l {
	font-size:16px;
	color:#ff0000;
	font-weight:bold;
	line-height:1.3;
	display:flex;
	flex-direction:column;
	justify-content: flex-end;
}
.createk-o1 .left .num .l p:first-child {
	font-size:46px;
	font-family:'Impact';
	display:flex;
}
.createk-o1 .left .num .l p:first-child span:nth-child(2) { font-size:30px;font-weight:300;margin-top:-15px; }
.createk-o1 .left .num .l .m { font-size:30px!important;margin-left:5px; }
.createk-o1 .left .num .l .m sup { font-size:16px; }
.createk-o1 .left .num .l p:nth-child(2) { margin-top:10px; }

@media (max-width:1440px) {
	.createk-o1 .left .num .l { font-size:16px; }
	.createk-o1 .left .num .l p:first-child { font-size:48px; }
	.createk-o1 .left .num .l p:first-child span:nth-child(2) { font-size:28px; }
	.createk-o1 .left .num .l .m { font-size: 22px!important; }
	.createk-o1 .left .num .l .m sup { font-size:14px; }
}
@media (max-width:1199px) {
	.createk-o1 .left .num .l { font-size:14px; }
	.createk-o1 .left .num .l p:first-child { font-size:38px; }
	.createk-o1 .left .num .l p:first-child span:nth-child(2) { font-size:22px; }
	.createk-o1 .left .num .l .m { font-size: 18px!important; }
	.createk-o1 .left .num .l .m sup { font-size:12px; }
}
@media (max-width:767px) {
	.createk-o1 .left .num { width:100%;margin-top: 30px; }
	.createk-o1 .left .num .l { font-size:12px; }
	.createk-o1 .left .num .l p:first-child { font-size:28px; }
	.createk-o1 .left .num .l p:first-child span:nth-child(2) { font-size:16px;margin-top: -10px; }
	.createk-o1 .left .num .l .m { font-size: 16px!important; }
}


.createk-o1 .index-createk .bottom .list .text>div p {
	font-size: 14px;
	color: #595757;
	line-height: 1.4;
	margin-top:0;
}
.createk-o1 .createk-3 .bottom .list .text>div p:first-child { font-size:18px;margin-bottom:18px;color:#000; }
.createk-o1 .index-createk .bottom .list:hover .text>div p { color:#fff; }

@media (max-width:1199px) {
	.createk-o1 .index-createk .bottom .list .text>div p { font-size:14px; }
	.createk-o1 .createk-3 .bottom .list .text>div p:first-child { font-size:16px; }
}
@media (max-width:767px) {
	.createk-o1 .index-createk .bottom .list .text>div p { font-size:12px; }
	.createk-o1 .createk-3 .bottom .list .text>div p:first-child { font-size:14px;margin-bottom:10px; }
}

.createk-o1 .createk-5 .right .img:first-child { width:62.3%; }
.createk-o1 .createk-5 .right .img:nth-child(2) { width:35.45% }
.createk-o1 .createk-5 .right .img:nth-child(3) { width:35.45% }

@media (max-width: 991px) {
	.createk-o1 .createk-5 .right .img:nth-child(3) { margin-top: 15px; }
}
@media (max-width: 767px) {
	.createk-o1 .createk-7 { margin-top: 20px; }
	.createk-o1 .createk-5 .right .img:nth-child(3) { margin-top: 20px; }
}

.createk-o1 .createk-8 {
	margin-top:100px;
}
.createk-o1 .createk-8 .title {
	width:452px;
	height:119px;
	background:url(../images/createk.png) no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding-bottom:28px;
	font-size:26px;
	color:#ff000b;
}
.createk-o1 .createk-8 .bottom {
	display:flex;
	justify-content:center;
	margin-top:85px;
}
.createk-o1 .createk-8 .bottom .list {
	position:relative;
	height:602px;
	width:33.3%;
	display:flex;
	flex-direction:column;
	padding-left:120px;
	padding-top: 140px;
}
.createk-o1 .createk-8 .bottom .list .bg span:first-child {
	position:absolute;
	top:0;
	left:0;
	width:122px;
	height:602px;
	background:url(../images/createk-1.png);
	display:inline-block;
}
.createk-o1 .createk-8 .bottom .list .bg span:nth-child(2) {
	position:absolute;
	top:38px;
	left:53px;
	width:151px;
	height:114px;
	background:url(../images/createk-2.png);
	display:inline-block;
	display:flex;
	justify-content:flex-end;
	align-items:center;
	padding-right:36px;
	padding-bottom:51px;
	font-size:52px;
	font-weight:bold;
	color:#fff;
	font-family:'Impact';
	line-height:1;
}
.createk-o1 .createk-8 .bottom .list .tit {
	font-size:14px;
	color:#ff0000;
	font-weight:bold;
	line-height:1.4;
	min-height:145px;
	position:relative;
}
.createk-o1 .createk-8 .bottom .list .tit span {
	font-size:18px;
}
.createk-o1 .createk-8 .bottom .list .tit:after {
	content:'';
	width:95px;
	height:4px;
	background-color:#ff0000;
	display:inline-block;
	position:absolute;
	bottom:0;
}
.createk-o1 .createk-8 .bottom .list .text {
	font-size:14px;
	color:#5f5f5f;
	line-height:1.4;
	margin-top:50px;
}

.zixun{ position: fixed; left: 10px; top: 30%; z-index: 999;  display: block; text-align: center; width: 50px; }
.zixun i img{ max-width: 100%; display: block; border-radius: 10px; }
.zixun p img{ position:fixed; top: 0; left: 0; left: 10px; top: calc(30% + 55px);; display: none;}
.zixun:hover p img{ display: block; }



@media (max-width:1440px) {
	.createk-o1 .createk-8 .title { background-size:cover;width: 384px;height: 101px; }
}
@media (max-width:1199px) {
	.createk-o1 .createk-8 .title { width: 286px;height: 75px;font-size: 20px;padding-bottom: 18px; }
	.createk-o1 .createk-8 .bottom .list .text { font-size:12px;margin-top: 30px; }
	.createk-o1 .createk-8 .bottom .list .bg span:nth-child(2) { font-size:38px; }
	.createk-o1 .createk-8 .bottom .list .tit span { font-size:14px; }
}
@media (max-width:991px) {
	.createk-o1 .createk-8 .bottom .list .tit { font-size:14px; }
	.createk-o1 .createk-8 .bottom .list .tit span { font-size:16px; }
	.createk-o1 .createk-8 .bottom .list .text { font-size:12px; }
	.createk-o1 .createk-8 .bottom .list .bg span:nth-child(2) { font-size:28px; }


	.createk-o1 .createk-8 .title { width: 252px;height: 66px;font-size: 18px;padding-bottom: 16px; }
	.createk-o1 .createk-8 .bottom { flex-wrap:wrap;margin-top:40px; }
	.createk-o1 .createk-8 .bottom .list { width:100%;padding:0 calc(100vw / 1920 * 100);height:auto;margin-bottom:20px; }
	.createk-o1 .createk-8 .bottom .list .bg span:first-child { display:none; }
	.createk-o1 .createk-8 .bottom .list .tit { min-height:auto;padding-bottom:20px; }
	.createk-o1 .createk-8 .bottom .list .bg { margin-bottom:10px; }
	.createk-o1 .createk-8 .bottom .list .bg span:nth-child(2) {
		position:initial;
		width:40px;
		height:40px;
		background:none;
		background-color:#deac8e;
		border-radius:100%;
		justify-content:center;
		align-items:center;
		padding-bottom:0;
		padding-right: 3px;
		font-size:18px;
	}
}
@media (max-width:767px) {
	.createk-o1 .createk-8 { margin-top: 40px; }
	.createk-o1 .createk-8 .title { width: 198px;height: 52px;font-size: 14px;padding-bottom: 12px; }
}




/* 产品研发 */
.createk-o2 .left .text { margin-top:80px; }

@media (max-width:991px) {
	.createk-o2 .left .text { margin-top:20px; }
}

/* .createk-o2-2 { margin-top: 100px; } */
.createk-o2-2 .left { order:2; }
.createk-o2-2 .left .title { width:100%;margin-top:0; }
.createk-o2-2 .left .text { margin-top:30px; }


@media (max-width:1680px) {
	.createk-n .left .title:before { margin:2px 10px 0; }
}
@media (max-width:1440px) {
	.createk-n .left .title { font-size:20px; }
}
@media (max-width:1199px) {
	.createk-o2-2 .left .title { font-size:16px; }
}
@media (max-width:991px) {
	.createk-o2-2 .left .title { font-size:16px;height: auto;padding: 5px 10px;margin-top:0; }
	.createk-o2-2 .left .title:before { margin-left:0; }
}
@media (max-width:767px) {
	.createk-o2-2 { margin-top:20px; }
	.createk-o2-2 .left .title { margin-top:20px;font-size:12px; }
	.createk-o2-2 .left .text { margin-top:20px; }
}

/* .createk-o2-3 { margin-top: 115px; } */
.createk-o2-3 .left .title { width:45%; }
.createk-o2-3 .left .tit { margin-top:40px; }
.createk-o2-3 .left .text { margin-top:30px; }
.createk-o2-3 .left .text p { display:flex; }

@media (max-width:1199px) {
	.createk-o2-3 .left .tit { margin-top:20px; }
	.createk-o2-3 .left .text { margin-top:20px; }
}
@media (max-width:767px) {
	.createk-o2-3 { margin-top:40px; }
	.zixun{ display: none; }
}




.createk-o3-1 .right { width: 43.5%; }
.createk-o3-1 .left { width: 52%; }
.createk-o3-1 .left .num { width: 70%;margin-top: 40px; }

@media (max-width:1680px) {
	.createk-o3-1 .left .num .l p:first-child { font-size: 58px; }
}
@media (max-width:1440px) {
	.createk-o3-1 .left .num .l p:first-child { font-size: 48px; }
}
@media (max-width:1199px) {
	.createk-o3-1 .left .num .l p:first-child { font-size: 38px; }
}
@media (max-width:991px) {
	.createk-o3-1 .left .num { width:100%; }
	.createk-o2-3 .left .title { width:100%; }
}
@media (max-width:767px) {
	.createk-o3-1 .right { width: 100%;margin-top:0; }
	.createk-o3-1 .left { width: 100%;margin-top:20px; }
	.createk-o3-1 .left .num { width: 100%; }
	.createk-o3-1 .left .num .l p:first-child { font-size: 28px; }
}

.createk-o3-2 {
	background:url(../images/createk-o3-2.jpg) center no-repeat;
	padding:125px calc(100vw / 1920 * 280) 0;
	height:735px;
	overflow:hidden;
}
.createk-o3-2 .con {
	width:54%;
}
.createk-o3-2 .con .title {
	font-size:28px;
	font-weight:bold;
	color:#fff;
	line-height:1.3;
	position:relative;
	padding-bottom:40px;

}
.createk-o3-2 .con .title:before {
	position:absolute;
	bottom:0;
	left:0;
	width:125px;
	height:3px;
	background-color:#fff;
	content:'';
}
.createk-o3-2 .con .text {
	font-size:16px;
	color:#fff;
	line-height:2;
	margin-top:40px;
}

@media (max-width:1680px) {
	.createk-o3-2 { padding:125px calc(100vw / 1920 * 200) 0; }
}
@media (max-width:1440px) {
	.createk-o3-2 { padding:125px calc(100vw / 1920 * 100) 0; }
}
@media (max-width:1199px) {
	.createk-o3-2 .con .title { font-size:20px; }
	.createk-o3-2 .con .text { font-size:16px; }
}
@media (max-width:767px) {
	.createk-o3-2 { height:auto;padding: 120px calc(100vw / 1920 * 100); }
	.createk-o3-2 .con { width:100%; }
	.createk-o3-2 .con .title { font-size:16px; }
	.createk-o3-2 .con .text { font-size:14px; }
}


.createk-o3-3 {
	overflow:hidden;
}
.createk-o3-3 .con {
	display:flex;
	position:relative;
	width: calc(100vw / 1920 * 617);
	margin:calc(100vw / 1920 * 210) auto;
	max-width:100%;
}
.createk-o3-3 .con .container {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.createk-o3-3 .con>.img {
	width:100%;
	/* animation:rotate 15s linear infinite; */
}
.createk-o3-3 .con>.img img { width:100%; }
.createk-o3-3 .con .content {
	display:flex;
	flex-wrap:wrap;
	align-content: space-between;
	height: 100%;

}
@keyframes rotate {
	0% { transform:rotate(0); }
	100% { transform:rotate(360deg); }
}
.createk-o3-3 .con .content .list {
	display:flex;
	position:relative;
}
.createk-o3-3 .con .content .list:first-child {
	width:100%;
	justify-content:center;
}
.createk-o3-3 .con .content .list:nth-child(2) {
	width:50%;
	justify-content:flex-start;
	margin-bottom: calc(100vw / 1920 * 100);
}
.createk-o3-3 .con .content .list:nth-child(3) {
	width:50%;
	justify-content:flex-end;
	margin-bottom: calc(100vw / 1920 * 100);
}
.createk-o3-3 .con .content .list:nth-child(4) {
	width:50%;
	justify-content:flex-start;
	padding-left: calc(100vw / 1920 * 105);
}
.createk-o3-3 .con .content .list:nth-child(5) {
	width:50%;
	justify-content:flex-end;
	padding-right: calc(100vw / 1920 * 105);
}
.createk-o3-3 .con .content .list .text {
	position:absolute;
	top:0;
	left:0;
	width:calc(100vw / 1920 * 510);
	font-size:calc(100vw / 1920 * 16);
	color:#727171;
	line-height:1.6;
}
.createk-o3-3 .con .content .list .text p:first-child {
	font-size:calc(100vw / 1920 * 20);
	color:#ff0000;
}
.createk-o3-3 .con .content .list:first-child .text {
	left:calc(100vw / 1920 * 371);
	top:calc(100vw / 1920 * -72);
}
.createk-o3-3 .con .content .list:nth-child(2) .text {
	text-align:right;
	left:calc(100vw / 1920 * -520);
	top:calc(100vw / 1920 * 12);
}
/* .createk-o3-3 .con .content .list:nth-child(2) .text p:first-child { padding-right:18px; } */
.createk-o3-3 .con .content .list:nth-child(3) .text {
	left:calc(100vw / 1920 * 320);
	top:calc(100vw / 1920 * 12);
}
.createk-o3-3 .con .content .list:nth-child(4) .text {
	text-align:right;
	left:calc(100vw / 1920 * -415);
	top:calc(100vw / 1920 * 30);
}
/* .createk-o3-3 .con .content .list:nth-child(4) .text p:first-child { padding-right:18px; } */
.createk-o3-3 .con .content .list:nth-child(5) .text {
	left:calc(100vw / 1920 * 215);
	top:calc(100vw / 1920 * 30);
}
.createk-o3-3 .con .content .list .img {
	width:calc(100vw / 1920 * 105);
	height:calc(100vw / 1920 * 105);
}
.createk-o3-3 .con .content .list .img img { width:100%; }

@media (max-width:1199px) {
	.createk-o3-3 .con { margin: 150px auto; }
}
@media (max-width:991px) {
	.createk-o3-3 .con { padding: 40px calc(100vw / 1920 * 100);margin:0;width:100%; }
	.createk-o3-3 .con>.img { display:none; }
	.createk-o3-3 .con .container { position:initial; }
	.createk-o3-3 .con .content .list .text { position:initial; }
	.createk-o3-3 .con .content .list {
		width:50%!important;
		justify-content:flex-start!important;
		padding:0 10px!important;
		margin-bottom:20px!important;
	}
	.createk-o3-3 .con .content .list .img { width:50px;height:50px; }
	.createk-o3-3 .con .content .list .text {
		width:calc(100% - 50px)!important;
		text-align: left!important;
		font-size:12px;
	}
	.createk-o3-3 .con .content .list .text p:first-child {
		font-size:16px;
	}
}
@media (max-width:767px) {
	.createk-o3-3 .con .content .list { width:100%!important; }

}



header#header-fixed { position:fixed;background-color:transparent; }
header#header-fixed:not(.is-show) {
	opacity:0;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: -webkit-transform .2s ease-out;
	transition: -webkit-transform .2s ease-out;
	transition: transform .2s ease-out;
	transition: transform .2s ease-out,-webkit-transform .2s ease-out;
	transition:opacity .5s;
}
header#header-fixed.is-show {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform .3s ease-out;
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}
header#header-fixed {
	background-color: hsla(0,0%,100%,.4);
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
}


/* 修改 */
@media (max-width:1200px) {
	header#header-fixed { backdrop-filter:initial;background-color: #fff;display:none; }
	header#header-fixed.is-show { transform: initial; }
	.index-banner { margin-top:60px; }
	.header { position:fixed; }
}


/* 搜索页 */
.search-page .bottom .list:nth-child(2) { margin-right: 1.4%; }
.search-page .bottom .list .img { height: calc(100vw / 1920 * 217); }
@media (max-width:1680px) {
	.search-page .bottom .list .img { height: calc(100vw / 1680 * 212); }
}
@media (max-width:1440px) {
	.search-page .bottom .list .img { height: calc(100vw / 1440 * 206); }
}
@media (max-width:768px) {
	.search-page .bottom .list .img { height: calc(100vw / 768 * 221); }
	.createk-n .left .title { font-size:16px;padding: 5px 10px; height:auto;text-align:center;justify-content: center; }
	.createk-n .left .title:before { display:none; }
}


@media (min-width:1440px) {
	.index-about {
		padding: 100px 0 0;
		width:1360px;
		margin:0 auto;
	}
	.index-createk {
		padding: 100px 0 0;
		width:1360px;
		margin:0 auto;
	}
	.index-product {
		padding: 0 0 100px;
		width:1360px;
		margin:-50px auto 0;
	}
	.index-product .left { left:0;width: 47.5%; }
	.product {
		padding: 100px 0;
		width:1360px;
		margin:0 auto;
	}
	.createk {
		padding: 100px 0 100px;
		width:1360px;
		margin:0 auto;
	}
	.about-info {
		padding: 100px 0 0;
		width:1360px;
		margin:0 auto;
	}
	.about-contact {
		padding: 100px 0 0;
		width:1360px;
		margin:0 auto;
	}
	.about-message {
		padding: 100px 0 78px;
		width:1360px;
		margin:0 auto;
	}
}
