@charset "utf-8";

* {
	margin: 0; padding: 0; border: 0; outline: 0; box-sizing: border-box;
	-webkit-tap-highlight-color: transparent!important;
}
html, body { width: 100%; }
body {
	font-family: "miui";
	font-size: 16px;
	color: #333;
	line-height: 1;
	background-color: #fff;
	max-width: 1920px;
	margin: 0 auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/* 旧版本浏览器的HTML5显示元素重置 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul, li { list-style: none; }
textarea { resize: none; font-family: initial; }
img { max-width: 100%; display: block; }
a, a:hover, a:link, a:visited {
  text-decoration: none;
  color: inherit;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
@font-face {
	font-family: 'iconfont';
	src: url('../fonts/iconfont.woff2') format('woff2'),
			 url('../fonts/iconfont.woff') format('woff'),
			 url('../fonts/iconfont.ttf') format('truetype');
}

/* 滚动条样式 */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	background-color: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, .5);
	border-radius: 5px;
	-webkit-border-radius: 5px;
}

/* 清除浮动 */
.clearfix:before, .clearfix:after {
 content: " ";
 display: inline-block;
 height: 0;
 clear: both;
 visibility: hidden;
}
.clearfix{ *zoom: 1; }

/* 图片放大效果 */
.i-scale .img { overflow: hidden; }
.i-scale .img img {
	display: block;
	-webkit-transition: transform 1s;
	-moz-transition: transform 1s;
	-o-transition: transform 1s;
	transition: transform 1s;
}
.i-scale:hover .img img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/* 文字超出隐藏 */
.ell-o {
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}
.ell-t {
	overflow:hidden;
	text-overflow:ellipsis;
	-webkit-line-clamp:2;
	display:-webkit-box;
	-webkit-box-orient:vertical;
}

/* 锚点 */
.anchor {
	position: relative;
	top: -50px;
}









/* 导航 */
.header {
	height:102px;
	background-color: #fff;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9;
	max-width: 1920px;
	border-top: 6px solid #0f6fc6;
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
.w-container {
	width:1680px;
	margin:0 auto;
}
.header .w-container {
	display:flex;
	align-items: center;
	justify-content: space-between;
	height:100%;
	width:100%;
}

/* logo */
.header .logo {
	position: relative;
	padding-left:120px;
}
.header .logo img {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 89px;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.header .logo img:nth-child(1) { position: initial; opacity: 1; }

/* nav */
.header .con {
	display:flex;
	height: 100%;
}
.header .nav {
	color: #333;
	font-size: 18px;
}
.header .nav .link {
	display:flex;
	height:100%;
}
.header .nav .link>li {
	padding:0 23px;
	position: relative;
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
.header .nav .link>li:after {
	content:'/';
	position:absolute;
	right:-2px;
	bottom:35px;
	font-size:24px;
}
.header .nav .link>li:last-child:after { display:none; }
.header .nav .link>li>a {
	display:flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	height: 100%;
	position: relative;
	padding:0 30px 15px;
	-webkit-transition: color 0.5s, background-color 0.5s;
	-moz-transition: color 0.5s, background-color 0.5s;
	-o-transition: color 0.5s, background-color 0.5s;
	transition: color 0.5s, background-color 0.5s;
}
.header .nav .link>li.active>a { color:#fff;background-color: #0f6fc6; }
.header .nav .link>li>a:hover { color:#fff;background-color: #0f6fc6; }
.header .nav .link>li>a span.en {
	font-size:14px;
	margin-top:10px;
}


/* 二级栏目 */
.header .nav .link .menu {
	position: absolute;
	top: 100%;
	left: 50%;
	font-size: 16px;
	color: #333;
	display: none;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.header .nav .link .menu>li>a {
	display:flex;
	justify-content: center;
	background-color: #fff;
	padding: 15px 30px;
	white-space: nowrap;
	-webkit-transition: color 0.5s, background-color .5s;
	-moz-transition: color 0.5s, background-color .5s;
	-o-transition: color 0.5s, background-color .5s;
	transition: color 0.5s, background-color .5s;
}
.header .nav .link .menu>li>a:hover {
	background-color: #2196f3;
	color: #fff;
}

/* search */
.header .search {
	width: 146px;
	height:100%;
	color: #0f6fc6;
	font-size: 25px;
	font-weight:bold;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header .search>p {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.header .search>p:before {
	font-family: 'iconfont';
	content: '\e704';
}
.header .search .page {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: rgba(255,255,255,1);
	padding: 40px 0;
	border-top:1px solid rgba(0,0,0,.1);
	display:none;
}
.header .search .page>div {
	position: relative;
	width: 80%;
	margin:0 auto;
}
.header .search .page .close {
	position: absolute;
	top: 2px;
	right: -50px;
	cursor: pointer;
}
.header .search .page .close:hover {
	animation: closeRotate .2s linear;
}
@keyframes closeRotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(180deg); }
}
.header .search .page .close:after {
	font-family: 'iconfont';
	content: '\e86d';
	font-size: 24px;
	color: #333;
}
.header .search .page input {
	width: 100%;
	height: 30px;
	font-size: 18px;
	color: #333;
	text-align: center;
	background-color: transparent;
	border-bottom: 1px solid #333;
}
.header .search .page input:-webkit-autofill {
	-webkit-transition: background-color 5000s ease-in-out 0s;
	-moz-transition: background-color 5000s ease-in-out 0s;
	-o-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
	-webkit-text-fill-color: #333;
}
.header .search .page .submit {
	position: absolute;
	right: 0;
	bottom: 5px;
	background-color: transparent;
	cursor: pointer;
}
.header .search .page .submit:after {
	font-family: 'iconfont';
	content: '\e704';
	font-size: 22px;
	font-weight:bold;
	color: #0f6fc6;
}

/* 导航按钮 */
.header .button {
	display:flex;
	align-items: center;
	margin-left: 20px;
	display: none;
}
.header .button>div {
	display: flex;
	flex-direction: column;
	width: 30px;
	padding: 5px 0;
	cursor: pointer;
}
.header .button span {
	width: 100%;
	height: 2px;
	background-color: #0f6fc6;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.header .button span:nth-child(2) { margin:5px 0; }
.header .button>div.active { padding: 10px 0; }
.header .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 .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 .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);
}


/* Tel */
.header .tel {
	width:350px;
	background-color:#0f6fc6;
	color:#fff;
}
.header .tel>a {
	height:100%;
	padding-left:44px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.header .tel p { font-size:16px; }
.header .tel p span { font-size:14px;margin-left:6px; }
.header .tel p:nth-child(2) {
	font-size:24px;
	margin-top:6px;
	display: flex;
	align-items: flex-end;
}
.header .tel .img { margin-left:10px; }
.header .tel .img img { width:40px; }

@media (max-width:1680px) {
	.header .logo { padding-left: 100px; }
	.header .nav .link>li { padding: 0 20px; }
	.header .nav .link>li>a { padding: 0 25px 15px; }
	.header .search { width: 120px; }
	.header .tel { width: 300px; }
	.header .nav .link>li:first-child { padding-left:0; }
	.header .nav .link>li:last-child { padding-right:0; }
}
@media (max-width:1440px) {
	.header .nav { font-size:16px; }
	.header .logo { padding-left:80px; }
	.header .nav .link>li { padding: 0 15px; }
	.header .nav .link>li>a { padding: 0 20px 15px; }
	.header .search { width:100px; }
	.header .tel { width:250px; }
	.header .tel>a { padding-left: 24px; }
	.header .tel p { font-size:14px; }
	.header .tel p span { font-size:12px; }
	.header .tel p:nth-child(2) { font-size:21px; }
	.header .search .page input { font-size: 16px; }
}
@media (max-width:1280px) {
	.header .tel { width:220px; }
	.header .tel>a { padding-left: 20px; }
	.header .search { width:80px; }
	.header .tel p:nth-child(2) { font-size:18px; }
	.header .tel .img img { width:30px; }
}
@media (max-width:1199px) {
	.header { height: 60px; }
	.header .nav { border-left:1px solid rgba(0,0,0,.1); }
	.header .logo { padding-left: 5%; }
	.header .logo img { width: 54px; }
	.header .search { width: 60px; }
	.header .button { display: flex; margin-right:20px;margin-left:10px; }
	.header .nav {
		position: fixed;
		top: 60px;
		right: -200px;
		height: calc(100% - 60px);
		background-color: #fff;
		z-index: 9;
		font-size: 14px;
		display: flex;
		align-items: center;
		color: #333;
		-webkit-transition: right 0.5s;
		-moz-transition: right 0.5s;
		-o-transition: right 0.5s;
		transition: right 0.5s;
	}
	.header .nav.active { right: 0; }
	.header .nav .link { flex-direction: column; height: auto; }
	.header .nav .link>li { padding:0; }
	.header .nav .link>li:after { display:none; }
	.header .nav .link>li>a { justify-content: center;padding: 15px 30px; }
	.header .search .page { padding: 15px 0; }
	.header .tel p:nth-child(2) { font-size:14px; }
}
@media (max-width:767px) {
	.header .nav { font-size: 14px; height: calc(100% - 110px); }
	.header .nav .link .menu { font-size: 14px; }
	.header .search .page>div { width: 70%; }
	.header .search .page .close { top: 6px; right: -35px; }
	.header .search .page .close:after { font-size: 20px; }
	.header .search .page .submit:after { font-size: 18px; }
	.header .tel { width:auto; }
	.header .tel>a { padding: 0 20px; }
	.header .tel p { display:none; }
	.header .tel p:nth-child(2) { display:none; }
	.header .tel .img { margin-left:0; }
}







/* 手机底部固定链接 */
.footer-link {
	position: fixed;
	bottom: 0px;
	width: 100%;
	height: 50px;
	background-color: #0f6fc6;
	border-top: 1px solid #fff;
	z-index: 999;
	display: none;
}
.footer-link a {
	color: #fff;
	font-size: 24px;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-link a:after {
	font-family: 'iconfont';
}
.footer-link a:nth-child(1):after {
	content: '\e604';
}
.footer-link a:nth-child(2):after {
	content: '\e908';
}
.footer-link a:nth-child(3):after {
	content: '\e735';
}
.footer-link a + a {
	border-left: 1px solid #fff;
}
@media (max-width:767px) {
	.footer { margin-bottom: 50px; }
	.footer-link { display:flex; }
}




/* 返回顶部 */
.back-top {
	position: fixed;
	right: -60px;
	bottom: 60px;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: right 0.5s;
	-moz-transition: right 0.5s;
	-o-transition: right 0.5s;
	transition: right 0.5s;
}
.back-top.active { right: 60px; }
.back-top:before {
	content: '';
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
	border: 2px dashed #0f6fc6;
	border-radius: inherit;
	animation: backtopRotate 20s linear infinite;
}
.back-top:hover:before { animation-duration: 2s; }
@keyframes backtopRotate {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.back-top span {
	width: 50px;
	height: 50px;
	font-size: 16px;
	color:#fff;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #0f6fc6;
	border-radius: inherit;
}
.back-top span:before {
	font-family:'iconfont';
	content:'\eb99';
}
@media (max-width:767px) {
	.back-top { display: none; }
}




/* slick默认样式 */
.slick .slick-slide img { width: 100%; }
.slick .slick-slide video {
  width: 100%;
  object-fit: cover;
}
.index-slick .slick-current img { animation: banner 4s 0s ease both; }
@keyframes banner {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.slick .slick-dots {
  position: absolute;
  bottom: 53px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.slick .slick-dots li button {
  width: 28px;
  height: 28px;
  margin: 0 11px;
	border:1px solid #fff;
	background-color:transparent;
  font-size: 0;
	display:flex;
	justify-content: center;
	align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.slick .slick-dots li button:after {
	content:'';
	width:8px;
	height:8px;
	background-color:#fff;
	display:block;
	opacity:0;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}
.slick .slick-dots li.slick-active button:after { opacity:1; }




/* 首页 banner */
.index-banner {
	position: relative;
}
.index-banner .con {
	position: absolute;
	top: 50%;
	left: 120px;
	color: #333;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.index-banner .slick-current .con .top {
	-webkit-animation: fadeInDown 1s 0s ease both;
	animation: fadeInDown 1s 0s ease both;
}
.index-banner .con .top .tit {
	font-size:48px;
}
.index-banner .con .top .tit span {
	display:inline-block;
	border-bottom:2px solid #1b1b1b;
	padding-bottom:10px;
	margin-right:16px;
}
.index-banner .con .top .text {
	font-size:22px;
	color:#000;
	margin-top:22px;
}
.index-banner .con .top .text p:first-child {
	font-size:32px;
	margin-bottom:8px;
}
.index-banner .con .bottom {
	margin-top:30px;
	
}
.index-banner .slick-current .con .bottom {
	-webkit-animation: fadeInUp 1s 0s ease both;
	animation: fadeInUp 1s 0s ease both;
}
.index-banner .con .bottom>div {
	font-size:20px;
	line-height:1.8;
}
.index-banner .con .bottom>a {
	font-size:28px;
	color:#0f6fc6;
	display:flex;
	align-items: center;
	margin-top:36px;
}
.index-banner .con .bottom>a img {
	width:39px;
	margin-right:14px;
}

@media (max-width:1680px) {
	.index-banner .con { left: 100px; }
	.index-banner .con .top .tit { font-size:42px; }
	.index-banner .con .top .text { font-size:20px; }
	.index-banner .con .top .text p:first-child { font-size:30px; }
	.index-banner .con .bottom>div { font-size:18px; }
	.index-banner .con .bottom>a { font-size:26px; }
}
@media (max-width:1440px) {
	.index-banner .con { left: 80px; }
	.index-banner .con .top .tit { font-size:38px; }
	.index-banner .con .top .text { font-size:18px; }
	.index-banner .con .top .text p:first-child { font-size:26px; }
	.index-banner .con .bottom { margin-top:20px; }
	.index-banner .con .bottom>div { font-size:16px; }
	.index-banner .con .bottom>a { font-size:22px;margin-top:20px; }
}
@media (max-width:1199px) {
	.index-banner .con { left: 5%; }
	.index-banner .con .top .tit { font-size:32px; }
	.index-banner .con .top .text { font-size:16px; }
	.index-banner .con .top .text p:first-child { font-size:24px; }
	.index-banner .con .bottom>div { font-size:14px; }
	.index-banner .con .bottom>a { font-size:18px; }
	.index-banner .con .bottom>a img { width:26px;margin-right:10px; }
	.slick .slick-dots { bottom:35px; }
}
@media (max-width:991px) {
	.index-banner .con .top .tit { font-size:20px; }
	.index-banner .con .top .text { font-size:12px; }
	.index-banner .con .top .text p:first-child { font-size:18px; }
	.index-banner .con .bottom { margin-top:10px; }
	.index-banner .con .bottom>div { font-size:12px; }
	.index-banner .con .bottom>a { font-size:14px;margin-top: 10px; }
}
@media (max-width:767px) {
	.index-banner { margin-top:60px; }
	.index-banner .con .bottom>div { display:none; }
	.index-banner .con .top .tit { font-size:16px; }
	.index-banner .con .top .tit span { margin-right: 10px;padding-bottom: 5px; }
	.index-banner .con .top .text { margin-top:10px; }
	.index-banner .con .top .text p:first-child { font-size:14px; }
	.index-banner .con .bottom>a img { width:20px; }
	.slick .slick-dots { bottom:10px; }
	.slick .slick-dots li button { width:20px;height:20px;margin: 0 5px; }
	.slick .slick-dots li button:after { width:6px;height:6px; }
}



/* 自动化设备 */
.index-list {
	display:flex;
	flex-wrap:wrap;
	justify-content: center;
}
.index-list .list {
	width:25%;
	position:relative;
	border-bottom:1px solid #dad9d9;
}
.index-list .list:after {
	content:'';
	width:1px;
	height:100%;
	background-color:#dad9d9;
	position:absolute;
	top:0;
	right:0;
}
.index-list .list:last-child:after { width:0; }
.index-list .list .bg {
	background-color: rgba(15,111,198,1);
	opacity:0;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.index-list .list .bg img { opacity:.4; }
.index-list .list .con {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	padding: calc(100vw / 1920 * 125) calc(100vw / 1920 * 40) 0 calc(100vw / 1920 * 42);
}
.index-list .list .con .img {
	position:relative;
	display:flex;
	align-items: center;
	height: calc(100vw / 1920 * 115);
	width:calc(100vw / 1920 * 114);
}
.index-list .list .con .img p {
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.index-list .list .con .img p:nth-child(2) {
	position:absolute;
	opacity:0;
}
.index-list .list .con .text {
	color:#000;
	font-weight:100;
	margin-top:calc(100vw / 1920 * 68);
	-webkit-transition: color 0.5s;
	-moz-transition: color 0.5s;
	-o-transition: color 0.5s;
	transition: color 0.5s;
}
.index-list .list .con .text .tit {
	font-size:calc(100vw / 1920 * 24);
}
.index-list .list .con .text .tit p:first-child {
	font-size:calc(100vw / 1920 * 48);
	margin-bottom:calc(100vw / 1920 * 12);
}
.index-list .list .con .text .tit p:nth-child(2) {
	color:rgba(0,0,0,.7);
	-webkit-transition: color 0.5s;
	-moz-transition: color 0.5s;
	-o-transition: color 0.5s;
	transition: color 0.5s;
}
.index-list .list .con .text>p {
	font-size:calc(100vw / 1920 * 28);
	line-height:1.3;
	margin-top:calc(100vw / 1920 * 36);
}
.index-list .list:hover .bg { opacity:1; }
.index-list .list:hover .con .img p:nth-child(1) { opacity:0; }
.index-list .list:hover .con .img p:nth-child(2) { opacity:1; }
.index-list .list:hover .con .text { color:#fff; }
.index-list .list:hover .con .text .tit p:nth-child(2) { color:rgba(255,255,255,.7); }

@media (max-width:767px) {
	.index-list .list { width:50%; }
	.index-list .list:nth-child(2):after { width:0; }
	.index-list .list .con { padding: calc(100vw / 1920 * 200) 5% 0; }
	.index-list .list .con .img { height: calc(100vw / 1920 * 200); width: calc(100vw / 1920 * 200); }
	.index-list .list .con .text { margin-top: calc(100vw / 1920 * 110); }
	.index-list .list .con .text .tit { font-size:14px; }
	.index-list .list .con .text .tit p:first-child { font-size:18px;margin-bottom:10px; }
	.index-list .list .con .text>p { font-size:14px;margin-top:10px; }
}
.index-list-details {
	margin:calc(100vw / 1920 * 50) 0 calc(100vw / 1920 * 100);
	font-size:calc(100vw / 1920 * 18);
	color:#0f6fc6;
}
.index-list-details a {
	display:flex;
	align-items: center;
	justify-content: center;
}
.index-list-details span {
	width:22px;
	height:22px;
	border-radius:50%;
	border:1px dashed #0f6fc6;
	margin-right: 7px;
	display:flex;
	justify-content: center;
	align-items: center;
}
.index-list-details span:after {
	font-family:'iconfont';
	color:#0f6fc6;
	font-size:12px;
	content:'\e65f';
}

@media (max-width:767px) {
	.index-list-details { margin: 30px 0; font-size:16px; }
}




/* 首页产品 */
.index-product {
	overflow:hidden;
}
.index-product .top {
	display:flex;
}
.index-product .list {
	position:relative;
}
.index-product .list .bg {
	position:relative;
}
.index-product .list .bg img {
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.index-product .list .bg img:nth-child(2) {
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}
.index-product .list:hover .bg img:nth-child(1) { opacity:0; }
.index-product .list:hover .bg img:nth-child(2) { opacity:1; }
.index-product .list .con {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	display:flex;
	padding-left:calc(100vw / 1920 * 120);
	padding-top: calc(100vw / 1920 * 248);
	-webkit-transition: padding 0.5s;
	-moz-transition: padding 0.5s;
	-o-transition: padding 0.5s;
	transition: padding 0.5s;
}
.index-product .list:hover .con { padding-top: calc(100vw / 1920 * 178); }
.index-product .list .con .text { color:#333; }
.index-product .list .con .text p:first-child { font-size:calc(100vw / 1920 * 48); margin-bottom:calc(100vw / 1920 * 28); }
.index-product .list .con .text p:nth-child(2) { font-size:calc(100vw / 1920 * 20); margin-bottom:calc(100vw / 1920 * 18); }
.index-product .list .con .text p:nth-child(3) { font-size:calc(100vw / 1920 * 18); margin-bottom:calc(100vw / 1920 * 28); }
.index-more {
	font-size:calc(100vw / 1920 * 18);
	display:flex;
	color:#0f6fc6!important;
	align-items: center;
}
.index-more span {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px dashed #0f6fc6;
	margin-right: 7px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.index-more span:after {
	font-family: 'iconfont';
	color: #0f6fc6;
	font-size: 12px;
	content: '\e65f';
}
.index-product .bottom { display:flex; }
.index-product .bottom .list .con { padding-top: calc(100vw / 1920 * 170); }
.index-product .bottom .list:hover .con { padding-top: calc(100vw / 1920 * 108); }

@media (max-width:767px) {
	.index-product .top { flex-wrap:wrap; }
	.index-product .bottom { flex-wrap:wrap; }
	.index-more { font-size:16px; }
	.index-product .top .list { order:2; }
	.index-product .list .con .text p:first-child { font-size:18px;margin-bottom:15px; }
	.index-product .list .con .text p:nth-child(2) { font-size:16px;margin-bottom:10px; }
	.index-product .list .con .text p:nth-child(3) { font-size:12px;margin-bottom:10px; }
	.index-product .list .con { padding-top: calc(100vw / 1920 * 328); }
	.index-product .bottom .list .con { padding-top: calc(100vw / 1920 * 250); }
}




/* 荣誉证书 行业需求 */
.index-honor {
	background:url(../images/index-honor-bg.jpg) center no-repeat;
	padding:calc(100vw / 1920 * 116) calc(100vw / 1920 * 120) calc(100vw / 1920 * 170);
	overflow:hidden;
}
.index-honor .top .tit {
	display:flex;
	justify-content: space-between;
	border-bottom:1px solid #8b8b8b;
	padding-bottom:calc(100vw / 1920 * 28);
}
.index-honor .top .tit .left { width:51%; }
.index-honor .top .tit .left>div p:first-child {
	font-size:calc(100vw / 1920 * 48);
	margin-bottom:calc(100vw / 1920 * 16);
}
.index-honor .top .tit .left>div p:nth-child(2) {
	font-size:calc(100vw / 1920 * 20);
	letter-spacing: calc(100vw / 1920 * 8.5);
}
.index-honor .top .tit .left>p {
	font-size:calc(100vw / 1920 * 16);
	line-height:1.875;
	margin-top:calc(100vw / 1920 * 20);
}
.index-honor .top .tit .right {
	display:flex;
	align-items: flex-end;
}
.index-honor .top .tit .right>ul { display:flex; }
.index-honor .top .tit .right>ul>li { margin-right:calc(100vw / 1920 * 18); }
.index-honor .top .tit .right>ul>li:last-child { margin-right:0; }
.index-honor .top .tit .right>ul>li img {
	width:calc(100vw / 1920 * 72);
	border-radius:50%;
	position:relative;
	top:0;
	-webkit-transition: top 0.5s;
	-moz-transition: top 0.5s;
	-o-transition: top 0.5s;
	transition: top 0.5s;
}
.index-honor .top .tit .right>ul>li:hover img { top:calc(100vw / 1920 * -20); }
.index-honor .top .tit .right>ul>li>a { position:relative; display:inline-block; }
.index-honor .top .tit .right>ul>li>a:after {
	content:'';
	width:calc(100vw / 1920 * 59);
	height:calc(100vw / 1920 * 12);
	background:url(../images/index-honor-icon.png) center no-repeat;
	background-size:100% 100%;
	position:absolute;
	left:50%;
	bottom:-15px;
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
}
.index-honor .top .con {
	margin-top:calc(100vw / 1920 * 48);
}
.index-honor .top .con .slick-list {
	margin-left:calc(100vw / 1920 * -23);
	margin-right:calc(100vw / 1920 * 67);
}
.index-honor .top .con .slick-slide {
	padding:0 calc(100vw / 1920 * 23);
}
.index-honor .top .con .slick-slide .img {
	border:calc(100vw / 1920 * 20) solid #fff;
	-webkit-transition: border 0.5s;
	-moz-transition: border 0.5s;
	-o-transition: border 0.5s;
	transition: border 0.5s;
}
.index-honor .top .con .slick-slide .img:hover {
	border:calc(100vw / 1920 * 20) solid #0f6fc6;
}


.honor-slick .slick-arrow {
  position: absolute;
  bottom: 0;
  z-index: 1;
  font-size: 0;
  width: calc(100vw / 1920 * 58);
  height: calc(100vw / 1920 * 58);
  background-color: #efefef;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.honor-slick .slick-arrow:after {
  font-family: 'iconfont';
  color: rgba(0, 0, 0, 0.5);
  font-size: calc(100vw / 1920 * 23);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.honor-slick .slick-arrow:hover { background-color: #0f6fc6; }
.honor-slick .slick-arrow:hover:after { color: #fff; }
.honor-slick .slick-prev { right: 0px; bottom:calc(100vw / 1920 * 80); }
.honor-slick .slick-prev:after {
  content: '\e660';
  margin-right: calc(100vw / 1920 * 3);
}
.honor-slick .slick-next { right: 0px; }
.honor-slick .slick-next:after {
  content: '\e65f';
  margin-left: calc(100vw / 1920 * 3);
}

.index-honor .bottom {
	margin-top:calc(100vw / 1920 * 116);
}
.index-honor .bottom .tit {
	font-size:calc(100vw / 1920 * 48);
	text-align:center;
	margin-bottom:calc(100vw / 1920 * 65);
}
.index-honor .bottom .slick-list {
	margin:0 calc(100vw / 1920 * -30);
}
.index-honor .bottom .slick-slide {
	padding:0 calc(100vw / 1920 * 30);
}
.index-honor .bottom .list>p {
	width:100%;
	background-color:#fff;
	font-size:calc(100vw / 1920 * 20);
	padding:calc(100vw / 1920 * 25) 0;
	text-align:center;
	-webkit-transition: background-color 0.5s, color .5s;
	-moz-transition: background-color 0.5s, color .5s;
	-o-transition: background-color 0.5s, color .5s;
	transition: background-color 0.5s, color .5s;
}
.index-honor .bottom .list:hover>p {
	background-color:#0f6fc6;
	color:#fff;
}


@media (max-width:1199px) {
	.index-honor .top .tit .right { margin-bottom:10px; }
}
@media (max-width:767px) {
	.index-honor { padding: 40px calc(100vw / 1920 * 120); }
	.index-honor .top .tit { flex-wrap:wrap;padding-bottom: 20px; }
	.index-honor .top .tit .left { width:100%; }
	.index-honor .top .tit .left>div p:first-child { font-size:18px;margin-bottom:10px; }
	.index-honor .top .tit .left>div p:nth-child(2) { font-size:12px;letter-spacing:1px; }
	.index-honor .top .tit .left>p { font-size:12px;line-height:1.5;margin-top:20px; }
	.index-honor .top .tit .right { margin-top:20px; }
	.index-honor .top .tit .right>ul>li { margin-right:10px; }
	.index-honor .top .tit .right>ul>li img { width:38px; }
	.index-honor .top .tit .right>ul>li:hover img { top:-10px; }
	.index-honor .top .tit .right>ul>li>a:after { width:30px;height:6px; }
	.index-honor .top .con .slick-slide { padding: 0 5px; }
	.index-honor .top .con .slick-list { margin-left: -5px;margin-right:30px; }
	.honor-slick .slick-arrow { width:30px;height:30px; }
	.honor-slick .slick-prev { bottom:40px; }
	.honor-slick .slick-arrow:after { font-size:14px; }
	.index-honor .bottom { margin-top:30px; }
	.index-honor .bottom .tit { font-size:18px;margin-bottom: 30px; }
	.index-honor .bottom .list>p { font-size: 14px; padding: 15px 0; }
}



.footer {
	background:url(../images/footer-bg.jpg) center no-repeat;
	display:flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-top: calc(100vw / 1920 * 140);
	overflow:hidden;
}
.footer .left {
	margin-left: calc(100vw / 1920 * 120);
	margin-bottom:calc(100vw / 1920 * 86);
	width:30.5%;
}
.footer .left .top p:first-child { font-size:calc(100vw / 1920 * 48); }
.footer .left .top p:nth-child(2) { font-size:calc(100vw / 1920 * 28); }
.footer .left .text {
	font-size:calc(100vw / 1920 * 20);
	line-height:1.5;
	margin-top:calc(100vw / 1920 * 40);
}
.footer .left .text .tit { margin-bottom:calc(100vw / 1920 * 45); }
.footer .left .text .tit p { line-height:1; }
.footer .left .text .tit p:first-child { font-size:calc(100vw / 1920 * 36); }
.footer .left .text .tit p:nth-child(2) { font-size:calc(100vw / 1920 * 18);letter-spacing: calc(100vw / 1920 * 0.7); }
.footer .left .bottom {
	margin-top:calc(100vw / 1920 * 190);
	font-size:calc(100vw / 1920 * 16);
}
.footer .left .bottom p {
	display:flex;
	justify-content: space-between;
}
.footer .left .bottom p:first-child { margin-bottom:calc(100vw / 1920 * 24); }


.message {
	background-color:rgba(15,111,198,.9);
	width:56.3%;
	padding:calc(100vw / 1920 * 90) calc(100vw / 1920 * 120);
}
.message .top { color:#fff; }
.message .top p:first-child { font-size:calc(100vw / 1920 * 48); }
.message .top p:nth-child(2) { font-size:calc(100vw / 1920 * 28); }
.message .con {
	margin-top:calc(100vw / 1920 * 48);
}
.message .con .text {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.message .con .text input {
	width: 48%;
	height: calc(100vw / 1920 * 53);
	background-color: rgba(255,255,255,.4);
	outline: none;
	padding: 0 calc(100vw / 1920 * 12);
	color:#fff;
	font-size:calc(100vw / 1920 * 16);
	margin-bottom: calc(100vw / 1920 * 37);
}
.message .con .text input::placeholder { color:#fff; }
.message .con .text input:nth-child(5) { width: 100%; }
.message .con .area textarea {
	width: 100%;
	color:#fff;
	height: calc(100vw / 1920 * 248);
	background-color: rgba(255,255,255,.4);
	padding: calc(100vw / 1920 * 23) calc(100vw / 1920 * 12);
	font-size:calc(100vw / 1920 * 16);
}
.message .con .area textarea::placeholder { color:#fff; }
.message .con .btn {
	text-align: center;
	margin-top: calc(100vw / 1920 * 40);
	display: flex;
	justify-content: center;
}
.message .con .btn button {
	width: 100%;
	height: calc(100vw / 1920 * 52);
	font-size:calc(100vw / 1920 * 16);
	color: #fff;
	cursor: pointer;
	background-color: #055dad;
	color:#fff;
}

@media(max-width:1440px) {
	.footer .left .bottom p:first-child { line-height:1.5; }
}
@media(max-width:1280px) {
	.footer .left .bottom p { flex-wrap:wrap; }
	.footer .left .bottom p>a { width:100%;margin-top:10px; }
}
@media(max-width:991px) {
.footer .left { width: 34.5%; }
}
@media(max-width:767px) {
	.footer { flex-wrap:wrap;padding-top: 40px; }
	.footer .left { width:100%;margin:0;padding:0 calc(100vw / 1920 * 120);margin-bottom:40px; }
	.footer .left .top p:first-child { font-size:18px; }
	.footer .left .top p:nth-child(2) { font-size:16px; }
	.footer .left .text { font-size:12px;margin-top:20px; }
	.footer .left .text .tit { margin-bottom: 20px; }
	.footer .left .text .tit p:first-child { font-size:16px; }
	.footer .left .text .tit p:nth-child(2) { font-size:12px;letter-spacing: 0; }
	.footer .left .bottom { margin-top: 40px; font-size: 12px; }
	.message { width:100%;padding:30px calc(100vw / 1920 * 120); }
	.message .top p:first-child { font-size:18px; }
	.message .top p:nth-child(2) { font-size:16px; }
	.message .con { margin-top:20px; }
	.message .con .text input { height:30px;font-size:12px;margin-bottom:10px;padding:0 15px; }
	.message .con .area textarea { padding:10px 15px;font-size:12px; height:100px; }
	.message .con .btn { margin-top:20px; }
	.message .con .btn button { height:30px;font-size:12px; }
}


/* 内页banner */
.page-banner  { overflow:hidden; }
.page-banner .img img {
	animation: banner 4s 0s ease both;
}


/* 英科医疗 */
.about {
	padding:calc(100vw / 1920 * 104) calc(100vw / 1920 * 120) calc(100vw / 1920 * 136);
	display:flex;
	justify-content: space-between;
	overflow:hidden;
}
.about .con {
	width:46%;
	margin-top:calc(100vw / 1920 * 24);
}
.about .con .text {
	font-size:calc(100vw / 1920 * 20);
	color:#666;
	line-height:1.8;
	margin-top:calc(100vw / 1920 * 32);
}
.about .pic { width:50.3%; }
.index-title {
	color:#e9e9e9;
	text-transform:uppercase;
}
.index-title p { position:relative; }
.index-title p:first-child {
	font-size:calc(100vw / 1920 * 48);
	color:#0f6fc6;
	z-index:1;
}
.index-title p:nth-child(2) {
	font-size:calc(100vw / 1920 * 64);
	margin-top:calc(100vw / 1920 * -38);
}

@media (max-width:1199px) {
	.about .con { margin-top:0; }
}
@media (max-width:767px) {
	.page-banner { margin-top:40px; }
	.about { flex-wrap:wrap;padding: 40px calc(100vw / 1920 * 120); }
	.about .con { width:100%; }
	.index-title p:first-child { font-size:18px; }
	.index-title p:nth-child(2) { font-size:24px;margin-top: -14px; }
	.about .con .text { font-size:12px;margin-top:10px; }
	.about .pic { width:100%;margin-top:20px; }
}


/* 合作全球 */
.cooperate {
	position:relative;
	overflow:hidden;
}
.cooperate:after {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	content:'';
	background:linear-gradient(to left, #0f6fc6, transparent, transparent);
}
.cooperate .top {
	padding-left:calc(100vw / 1920 * 120);
	position:relative;
	z-index:1;
	display:flex;
	justify-content: space-between;
}
.cooperate .top .left {
	width:26.8%;
	margin-top:calc(100vw / 1920 * 156);
}
.cooperate .index-title p:first-child { color:#fff; }
.cooperate .index-title p:nth-child(2) { color:rgba(255,255,255,.2); }
.cooperate .top .left .text {
	font-size:calc(100vw / 1920 * 18);
	color:#fff;
	line-height:2;
	margin-top:calc(100vw / 1920 * 18);
}
.cooperate .top .right {
	width:71%;
}
.cooperate .bottom {
	padding:calc(100vw / 1920 * 75) calc(100vw / 1920 * 180) calc(100vw / 1920 * 138);
	display:flex;
	justify-content: space-between;
	position:relative;
	z-index:1;
	color:#fff;
}
.cooperate .bottom .list {
	display:flex;
	align-items: center;
}
.cooperate .bottom .list>p {
	font-size:calc(100vw / 1920 * 72);
	margin-right:calc(100vw / 1920 * 28);
}
.cooperate .bottom .list>div p:first-child { font-size:calc(100vw / 1920 * 28); }
.cooperate .bottom .list>div p:nth-child(2) { font-size:calc(100vw / 1920 * 24);margin-top:calc(100vw / 1920 * 10); }

@media (max-width:991px) {
	.cooperate .top .left { margin-top: calc(100vw / 1920 * 90); }
}
@media (max-width:767px) {
	.cooperate .top { flex-wrap:wrap;padding: 0 calc(100vw / 1920 * 120); }
	.cooperate .top .left { width:100%;margin-top: 40px; }
	.cooperate .top .left .text { font-size:12px;margin-top:10px; }
	.cooperate .top .right { width:100%;margin-top:20px; }
	.cooperate .bottom { padding: 30px calc(100vw / 1920 * 120); flex-wrap:wrap; }
	.cooperate .bottom .list { width:100%;margin:10px 0; }
	.cooperate .bottom .list>p { font-size:34px;margin-right:20px; }
	.cooperate .bottom .list>div p:first-child { font-size:14px; }
	.cooperate .bottom .list>div p:nth-child(2) { font-size:12px;margin-top:5px; }
}



/* 产品介绍 */
.product {
	padding:calc(100vw / 1920 * 72) calc(100vw / 1920 * 120) calc(100vw / 1920 * 135);
	overflow:hidden;
}
.product .list {
	display:flex;
	justify-content: space-between;
	border-bottom:1px solid #eee;
	padding:calc(100vw / 1920 * 30) calc(100vw / 1920 * 20) calc(100vw / 1920 * 50);
	margin-top:calc(100vw / 1920 * 50);
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
.product .list:first-child { margin-top:0; }
.product .list:hover {
	background-color:#f9f9f9;
}
.product .list .img {
	border:calc(100vw / 1920 * 6) solid #eee;
	width:31.7%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:#fff;
}
.product .list .con {
	width:65.5%;
}
.product .list .con .tit {
	color:#0f6fc6;
	margin-top:calc(100vw / 1920 * 25);
}
.product .list .con .tit p:first-child {
	font-size:calc(100vw / 1920 * 36);
}
.product .list .con .tit p:nth-child(2) {
	font-size:calc(100vw / 1920 * 24);
	margin-top:calc(100vw / 1920 * 12);
}
.product .list .con .text {
	font-size:calc(100vw / 1920 * 18);
	color:#666;
	line-height:2;
	margin-top:calc(100vw / 1920 * 46);
}
.product .list .con .but {
	display:flex;
	margin-top:calc(100vw / 1920 * 38);
}
.product .list .con .but a {
	width:calc(100vw / 1920 * 153);
	height:calc(100vw / 1920 * 57);
	display:flex;
	justify-content: center;
	align-items: center;
	font-size:calc(100vw / 1920 * 16);
	color:#666;
	background-color:#ebebeb;
	margin-right:calc(100vw / 1920 * 26);
	-webkit-transition: background-color 0.5s, color .5s;
	-moz-transition: background-color 0.5s, color .5s;
	-o-transition: background-color 0.5s, color .5s;
	transition: background-color 0.5s, color .5s;
}
.product .list .con .but a:hover {
	background-color:#0f6fc6;
	color:#fff;
}

@media (max-width:767px) {
	.product { padding: 40px calc(100vw / 1920 * 120); }
	.product .list { flex-wrap:wrap;padding:20px;margin-top:0; }
	.product .list .img { width:100%;border: 6px solid #eee; }
	.product .list .con { width:100%; }
	.product .list .con .tit { margin-top:20px; }
	.product .list .con .tit p:first-child { font-size:18px; }
	.product .list .con .tit p:nth-child(2) { font-size:14px;margin-top:10px; }
	.product .list .con .text { font-size:12px;margin-top:10px; }
	.product .list .con .but { margin-top:20px;justify-content:space-between; }
	.product .list .con .but a { width:48%;height:40px;margin-right:0;font-size:12px; }
}



/* 产品详情 */
.product-details {
	padding:calc(100vw / 1920 * 100) calc(100vw / 1920 * 140) calc(100vw / 1920 * 70);
	display:flex;
	overflow:hidden;
}
.product-details .img {
	border:calc(100vw / 1920 * 6) solid #eee;
	width:50.82%;
	display: flex;
	align-items: flex-end;
}
.product-details .con {
	width:49.18%;
	padding-left:calc(100vw / 1920 * 70);
}
.product-details .con .tit {
	color:#0f6fc6;
}
.product-details .con .tit p:first-child { font-size:calc(100vw / 1920 * 36); }
.product-details .con .tit p:nth-child(2) { font-size:calc(100vw / 1920 * 24);margin-top:calc(100vw / 1920 * 12); }
.product-details .con .text {
	font-size:calc(100vw / 1920 * 18);
	color:#666;
	line-height:2;
	margin-top:calc(100vw / 1920 * 30);
}
.product-details .con .but {
	display:flex;
	margin-top:calc(100vw / 1920 * 50);
}
.product-details .con .but a {
	width:calc(100vw / 1920 * 153);
	height:calc(100vw / 1920 * 57);
	display:flex;
	justify-content: center;
	align-items: center;
	font-size:calc(100vw / 1920 * 16);
	color:#666;
	background-color:#ebebeb;
	margin-right:calc(100vw / 1920 * 26);
	-webkit-transition: background-color 0.5s, color .5s;
	-moz-transition: background-color 0.5s, color .5s;
	-o-transition: background-color 0.5s, color .5s;
	transition: background-color 0.5s, color .5s;
}
.product-details .con .but a:hover {
	background-color:#0f6fc6;
	color:#fff;
}

@media (max-width:767px) {
	.product-details { flex-wrap:wrap;padding:40px calc(100vw / 1920 * 120); }
	.product-details .img { width:100%;border: 6px solid #eee; }
	.product-details .con { width:100%;padding-left:0;margin-top:20px; }
	.product-details .con .tit p:first-child { font-size:18px; }
	.product-details .con .tit p:nth-child(2) { font-size:14px;margin-top:10px; }
	.product-details .con .text { font-size:12px;margin-top:20px; }
	.product-details .con .but { margin-top:40px; justify-content: space-between; }
	.product-details .con .but a { width:48%;height:40px;margin-right:0;font-size:12px; }
}




/* 其它产品 */
.product-other {
	background-color:#f9f9f9;
	padding:calc(100vw / 1920 * 60) 0 calc(100vw / 1920 * 90);
}
.product-other .tit {
	text-align:center;
	color:#0f6fc6;
}
.product-other .tit p:first-child { font-size:calc(100vw / 1920 * 48); }
.product-other .tit p:nth-child(2) { font-size:calc(100vw / 1920 * 24);text-transform:uppercase;margin-top:calc(100vw / 1920 * 14); }
.product-other .con {
	margin-top:calc(100vw / 1920 * 50);
	padding:0 calc(100vw / 1920 * 200);
}
.product-other .con .slick-slide {
	padding:0 calc(100vw / 1920 * 13);
}
.product-other .con .slick-slide .img {
	border:calc(100vw / 1920 * 6) solid #eee;
	-webkit-transition: border 0.5s;
	-moz-transition: border 0.5s;
	-o-transition: border 0.5s;
	transition: border 0.5s;
}
.product-other .con .slick-slide:hover .img {
	border:calc(100vw / 1920 * 6) solid #0f6fc6;
}
.product-other .con .slick-slide p {
	font-size:calc(100vw / 1920 * 18);
	color:#666;
	text-align:center;
	margin-top:calc(100vw / 1920 * 24);
	-webkit-transition: color 0.5s;
	-moz-transition: color 0.5s;
	-o-transition: color 0.5s;
	transition: color 0.5s;
}
.product-other .con .slick-slide:hover p {
	color:#0f6fc6;
}
.product-other .slick .slick-arrow {
  position: absolute;
  top: calc(100vw / 1920 * 150);
  z-index: 1;
  font-size: 0;
  width: calc(100vw / 1920 * 32);
  height: calc(100vw / 1920 * 60);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.product-other .slick .slick-arrow:after {
  font-family: 'iconfont';
  color: #d3d3d3;
  font-size: calc(100vw / 1920 * 60);
	cursor:pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.product-other .slick .slick-arrow:hover:after { color: #0f6fc6; }
.product-other .slick .slick-prev { left: calc(100vw / 1920 * -46); }
.product-other .slick .slick-prev:after { content: '\e660'; }
.product-other .slick .slick-next { right: calc(100vw / 1920 * -46); }
.product-other .slick .slick-next:after { content: '\e65f'; }

@media (max-width:767px) {
	.product-other { padding: 40px 0; }
	.product-other .tit p:first-child { font-size:18px; }
	.product-other .tit p:nth-child(2) { font-size:14px;margin-top:10px; }
	.product-other .con { margin-top:20px; }
	.product-other .slick .slick-arrow { width:28px;height:28px;top:40%; }
	.product-other .slick .slick-arrow:after { font-size:28px; }
	.product-other .slick .slick-prev { left: -28px; }
	.product-other .slick .slick-next { right: -28px; }
	.product-other .con .slick-slide .img { border:6px solid #eee; }
	.product-other .con .slick-slide:hover .img { border:6px solid #0f6fc6; }
	.product-other .con .slick-slide p { font-size:14px;margin-top:20px; }
}



/* 线上询盘 */
.online-inquiry {
	padding:calc(100vw / 1920 * 114) calc(100vw / 1920 * 330) calc(100vw / 1920 * 200);
}
.online-inquiry .tit {
	text-align:center;
	color:#0f6fc6;
}
.online-inquiry .tit p:first-child { font-size:calc(100vw / 1920 * 48); }
.online-inquiry .tit p:nth-child(2) { font-size:calc(100vw / 1920 * 24);text-transform:uppercase;margin-top:calc(100vw / 1920 * 14); }
.online-inquiry .content {
	margin-top:calc(100vw / 1920 * 50);
}
.online-inquiry .content .message {
	width:100%;
	background:transparent;
	padding:0;
}
.online-inquiry .content .message .con .text input {
	width:49%;
	height:calc(100vw / 1920 * 72);
	margin-bottom:calc(100vw / 1920 * 28);
	background-color:#0f6fc6;
	font-size:calc(100vw / 1920 * 18);
	padding:0 calc(100vw / 1920 * 18);
}
.online-inquiry .content .message .con .area textarea {
	font-size:calc(100vw / 1920 * 18);
	color:#b4b4b4;
	border:3px solid #eee;
	padding:calc(100vw / 1920 * 24) calc(100vw / 1920 * 18);
}
.online-inquiry .content .message .con .area textarea::placeholder {
	color:#b4b4b4;
}
.online-inquiry .content .message .con .btn {
	margin-top: calc(100vw / 1920 * 26);
	justify-content: flex-end;
}
.online-inquiry .content .message .con .btn button {
	font-size:calc(100vw / 1920 * 18);
	width:calc(100vw / 1920 * 273);
	height:calc(100vw / 1920 * 72);
}
.online-inquiry .content .message .con .select {
	margin-bottom:calc(100vw / 1920 * 28);
	position:relative;
}
.online-inquiry .content .message .con .select:after {
	content:'';
	width:calc(100vw / 1920 * 81);
	height:calc(100vw / 1920 * 72);
	background: url(../images/arrow.jpg) no-repeat;
	background-size:100% 100%;
	position:absolute;
	top:0;
	right:0;
}
.online-inquiry .content .message .con .select select {
	width:100%;
	height:calc(100vw / 1920 * 72);
	background-color:#0f6fc6;
	font-size:calc(100vw / 1920 * 18);
	color:#fff;
	padding:0 calc(100vw / 1920 * 18);
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
}
.online-inquiry .content .message .con .select option {
	background-color:#fff;
	color:#666;
}

@media (max-width:767px) {
	.online-inquiry { padding: 40px calc(100vw / 1920 * 120); }
	.online-inquiry .tit p:first-child { font-size:18px; }
	.online-inquiry .tit p:nth-child(2) { font-size:14px;margin-top:10px; }
	.online-inquiry .content { margin-top:0; }
	.online-inquiry .content .message .con .text input { height:30px;padding:0 15px;font-size:12px;margin-bottom:10px; }
	.online-inquiry .content .message .con .select { margin-bottom:10px; }
	.online-inquiry .content .message .con .select select { height:30px;font-size:12px;padding:0 15px; }
	.online-inquiry .content .message .con .select:after { width:30px;height:30px; }
	.online-inquiry .content .message .con .area textarea { font-size:12px;padding:10px 9px;height:100px;font-size:12px; }
	.online-inquiry .content .message .con .btn { margin-top:10px; }
	.online-inquiry .content .message .con .btn button { font-size:12px;width:120px;height:30px; }
}




/* 優惠/購買 */
.discount {
	background-color:#f8f8f8;
	padding:160px calc(100vw / 1920 * 120) calc(100vw / 1920 * 208);
}
.discount .ph { display:none; }
@media (max-width:1199px) {
	.discount { padding:120px calc(100vw / 1920 * 120) calc(100vw / 1920 * 208); }
}
@media (max-width:767px) {
	.discount { padding: 60px 0 0; }
	.discount .pc { display:none; }
	.discount .ph { display:block; }
}




/* 联络我们 */
.contact {
	
}