/**
 * style.less
 * 层叠样式表
 */


/**
 * main.less
 * 通用样式
 */

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
}

html {
	font-size: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
}

body {
	font-family: "Open Sans", 'Helvetica Neue', Helvetica, Arial, "Microsoft Yahei", sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
	background: #fff;
}

.clearfix {
	zoom: 1;
}

.clearfix:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: '.';
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.a {
	color: inherit;
	text-decoration: none;
}

.ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.show {
	display: block !important;
}

.hide {
	display: none !important;
}

.img-circle {
	border-radius: 50%;
}

.img-rounded {
	border-radius: 0.3rem;
}

.img-thumbnail {
	display: inline-block;
	max-width: 100%;
	height: auto;
	padding: .25rem;
	line-height: 1.5;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: .25rem;
	transition: all 0.2s ease-in-out;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}

.img-box {
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 100%;
	display: block;
}

.img-box img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.img-box img[src=""],
.img-box img:not([src]) {
	border: 0;
	opacity: 0;
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	transition: width .2s linear;
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

.container:before,
.container:after {
	display: table;
	content: " ";
}

.container:after {
	clear: both;
}

.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.container-fluid:before,
.container-fluid:after {
	display: table;
	content: " ";
}

.container-fluid:after {
	clear: both;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row:before,
.row:after {
	display: table;
	content: " ";
}

.row:after {
	clear: both;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	overflow: hidden;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
	float: left;
}

.col-xs-12 {
	width: 100%;
}

.col-xs-11 {
	width: 91.66666667%;
}

.col-xs-10 {
	width: 83.33333333%;
}

.col-xs-9 {
	width: 75%;
}

.col-xs-8 {
	width: 66.66666667%;
}

.col-xs-7 {
	width: 58.33333333%;
}

.col-xs-6 {
	width: 50%;
}

.col-xs-5 {
	width: 41.66666667%;
}

.col-xs-4 {
	width: 33.33333333%;
}

.col-xs-3 {
	width: 25%;
}

.col-xs-2 {
	width: 16.66666667%;
}

.col-xs-1 {
	width: 8.33333333%;
}

.col-xs-pull-12 {
	right: 100%;
}

.col-xs-pull-11 {
	right: 91.66666667%;
}

.col-xs-pull-10 {
	right: 83.33333333%;
}

.col-xs-pull-9 {
	right: 75%;
}

.col-xs-pull-8 {
	right: 66.66666667%;
}

.col-xs-pull-7 {
	right: 58.33333333%;
}

.col-xs-pull-6 {
	right: 50%;
}

.col-xs-pull-5 {
	right: 41.66666667%;
}

.col-xs-pull-4 {
	right: 33.33333333%;
}

.col-xs-pull-3 {
	right: 25%;
}

.col-xs-pull-2 {
	right: 16.66666667%;
}

.col-xs-pull-1 {
	right: 8.33333333%;
}

.col-xs-pull-0 {
	right: auto;
}

.col-xs-push-12 {
	left: 100%;
}

.col-xs-push-11 {
	left: 91.66666667%;
}

.col-xs-push-10 {
	left: 83.33333333%;
}

.col-xs-push-9 {
	left: 75%;
}

.col-xs-push-8 {
	left: 66.66666667%;
}

.col-xs-push-7 {
	left: 58.33333333%;
}

.col-xs-push-6 {
	left: 50%;
}

.col-xs-push-5 {
	left: 41.66666667%;
}

.col-xs-push-4 {
	left: 33.33333333%;
}

.col-xs-push-3 {
	left: 25%;
}

.col-xs-push-2 {
	left: 16.66666667%;
}

.col-xs-push-1 {
	left: 8.33333333%;
}

.col-xs-push-0 {
	left: auto;
}

.col-xs-offset-12 {
	margin-left: 100%;
}

.col-xs-offset-11 {
	margin-left: 91.66666667%;
}

.col-xs-offset-10 {
	margin-left: 83.33333333%;
}

.col-xs-offset-9 {
	margin-left: 75%;
}

.col-xs-offset-8 {
	margin-left: 66.66666667%;
}

.col-xs-offset-7 {
	margin-left: 58.33333333%;
}

.col-xs-offset-6 {
	margin-left: 50%;
}

.col-xs-offset-5 {
	margin-left: 41.66666667%;
}

.col-xs-offset-4 {
	margin-left: 33.33333333%;
}

.col-xs-offset-3 {
	margin-left: 25%;
}

.col-xs-offset-2 {
	margin-left: 16.66666667%;
}

.col-xs-offset-1 {
	margin-left: 8.33333333%;
}

.col-xs-offset-0 {
	margin-left: 0;
}

@media (min-width: 768px) {
	.col-sm-1,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12 {
		float: left;
	}
	.col-sm-12 {
		width: 100%;
	}
	.col-sm-11 {
		width: 91.66666667%;
	}
	.col-sm-10 {
		width: 83.33333333%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-8 {
		width: 66.66666667%;
	}
	.col-sm-7 {
		width: 58.33333333%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-5 {
		width: 41.66666667%;
	}
	.col-sm-4 {
		width: 33.33333333%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-2 {
		width: 16.66666667%;
	}
	.col-sm-1 {
		width: 8.33333333%;
	}
	.col-sm-pull-12 {
		right: 100%;
	}
	.col-sm-pull-11 {
		right: 91.66666667%;
	}
	.col-sm-pull-10 {
		right: 83.33333333%;
	}
	.col-sm-pull-9 {
		right: 75%;
	}
	.col-sm-pull-8 {
		right: 66.66666667%;
	}
	.col-sm-pull-7 {
		right: 58.33333333%;
	}
	.col-sm-pull-6 {
		right: 50%;
	}
	.col-sm-pull-5 {
		right: 41.66666667%;
	}
	.col-sm-pull-4 {
		right: 33.33333333%;
	}
	.col-sm-pull-3 {
		right: 25%;
	}
	.col-sm-pull-2 {
		right: 16.66666667%;
	}
	.col-sm-pull-1 {
		right: 8.33333333%;
	}
	.col-sm-pull-0 {
		right: auto;
	}
	.col-sm-push-12 {
		left: 100%;
	}
	.col-sm-push-11 {
		left: 91.66666667%;
	}
	.col-sm-push-10 {
		left: 83.33333333%;
	}
	.col-sm-push-9 {
		left: 75%;
	}
	.col-sm-push-8 {
		left: 66.66666667%;
	}
	.col-sm-push-7 {
		left: 58.33333333%;
	}
	.col-sm-push-6 {
		left: 50%;
	}
	.col-sm-push-5 {
		left: 41.66666667%;
	}
	.col-sm-push-4 {
		left: 33.33333333%;
	}
	.col-sm-push-3 {
		left: 25%;
	}
	.col-sm-push-2 {
		left: 16.66666667%;
	}
	.col-sm-push-1 {
		left: 8.33333333%;
	}
	.col-sm-push-0 {
		left: auto;
	}
	.col-sm-offset-12 {
		margin-left: 100%;
	}
	.col-sm-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-sm-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-sm-offset-9 {
		margin-left: 75%;
	}
	.col-sm-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-sm-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-sm-offset-6 {
		margin-left: 50%;
	}
	.col-sm-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-sm-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-sm-offset-3 {
		margin-left: 25%;
	}
	.col-sm-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-sm-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-sm-offset-0 {
		margin-left: 0;
	}
}

@media (min-width: 992px) {
	.col-md-1,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9,
	.col-md-10,
	.col-md-11,
	.col-md-12 {
		float: left;
	}
	.col-md-12 {
		width: 100%;
	}
	.col-md-11 {
		width: 91.66666667%;
	}
	.col-md-10 {
		width: 83.33333333%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-8 {
		width: 66.66666667%;
	}
	.col-md-7 {
		width: 58.33333333%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-5 {
		width: 41.66666667%;
	}
	.col-md-4 {
		width: 33.33333333%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-2 {
		width: 16.66666667%;
	}
	.col-md-1 {
		width: 8.33333333%;
	}
	.col-md-pull-12 {
		right: 100%;
	}
	.col-md-pull-11 {
		right: 91.66666667%;
	}
	.col-md-pull-10 {
		right: 83.33333333%;
	}
	.col-md-pull-9 {
		right: 75%;
	}
	.col-md-pull-8 {
		right: 66.66666667%;
	}
	.col-md-pull-7 {
		right: 58.33333333%;
	}
	.col-md-pull-6 {
		right: 50%;
	}
	.col-md-pull-5 {
		right: 41.66666667%;
	}
	.col-md-pull-4 {
		right: 33.33333333%;
	}
	.col-md-pull-3 {
		right: 25%;
	}
	.col-md-pull-2 {
		right: 16.66666667%;
	}
	.col-md-pull-1 {
		right: 8.33333333%;
	}
	.col-md-pull-0 {
		right: auto;
	}
	.col-md-push-12 {
		left: 100%;
	}
	.col-md-push-11 {
		left: 91.66666667%;
	}
	.col-md-push-10 {
		left: 83.33333333%;
	}
	.col-md-push-9 {
		left: 75%;
	}
	.col-md-push-8 {
		left: 66.66666667%;
	}
	.col-md-push-7 {
		left: 58.33333333%;
	}
	.col-md-push-6 {
		left: 50%;
	}
	.col-md-push-5 {
		left: 41.66666667%;
	}
	.col-md-push-4 {
		left: 33.33333333%;
	}
	.col-md-push-3 {
		left: 25%;
	}
	.col-md-push-2 {
		left: 16.66666667%;
	}
	.col-md-push-1 {
		left: 8.33333333%;
	}
	.col-md-push-0 {
		left: auto;
	}
	.col-md-offset-12 {
		margin-left: 100%;
	}
	.col-md-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-md-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-md-offset-9 {
		margin-left: 75%;
	}
	.col-md-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-md-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-md-offset-6 {
		margin-left: 50%;
	}
	.col-md-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-md-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-md-offset-3 {
		margin-left: 25%;
	}
	.col-md-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-md-offset-0 {
		margin-left: 0;
	}
}

@media (min-width: 1200px) {
	.col-lg-1,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12 {
		float: left;
	}
	.col-lg-12 {
		width: 100%;
	}
	.col-lg-11 {
		width: 91.66666667%;
	}
	.col-lg-10 {
		width: 83.33333333%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-8 {
		width: 66.66666667%;
	}
	.col-lg-7 {
		width: 58.33333333%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-5 {
		width: 41.66666667%;
	}
	.col-lg-4 {
		width: 33.33333333%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-2 {
		width: 16.66666667%;
	}
	.col-lg-1 {
		width: 8.33333333%;
	}
	.col-lg-pull-12 {
		right: 100%;
	}
	.col-lg-pull-11 {
		right: 91.66666667%;
	}
	.col-lg-pull-10 {
		right: 83.33333333%;
	}
	.col-lg-pull-9 {
		right: 75%;
	}
	.col-lg-pull-8 {
		right: 66.66666667%;
	}
	.col-lg-pull-7 {
		right: 58.33333333%;
	}
	.col-lg-pull-6 {
		right: 50%;
	}
	.col-lg-pull-5 {
		right: 41.66666667%;
	}
	.col-lg-pull-4 {
		right: 33.33333333%;
	}
	.col-lg-pull-3 {
		right: 25%;
	}
	.col-lg-pull-2 {
		right: 16.66666667%;
	}
	.col-lg-pull-1 {
		right: 8.33333333%;
	}
	.col-lg-pull-0 {
		right: auto;
	}
	.col-lg-push-12 {
		left: 100%;
	}
	.col-lg-push-11 {
		left: 91.66666667%;
	}
	.col-lg-push-10 {
		left: 83.33333333%;
	}
	.col-lg-push-9 {
		left: 75%;
	}
	.col-lg-push-8 {
		left: 66.66666667%;
	}
	.col-lg-push-7 {
		left: 58.33333333%;
	}
	.col-lg-push-6 {
		left: 50%;
	}
	.col-lg-push-5 {
		left: 41.66666667%;
	}
	.col-lg-push-4 {
		left: 33.33333333%;
	}
	.col-lg-push-3 {
		left: 25%;
	}
	.col-lg-push-2 {
		left: 16.66666667%;
	}
	.col-lg-push-1 {
		left: 8.33333333%;
	}
	.col-lg-push-0 {
		left: auto;
	}
	.col-lg-offset-12 {
		margin-left: 100%;
	}
	.col-lg-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-lg-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-lg-offset-9 {
		margin-left: 75%;
	}
	.col-lg-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-lg-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-lg-offset-6 {
		margin-left: 50%;
	}
	.col-lg-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-lg-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-lg-offset-3 {
		margin-left: 25%;
	}
	.col-lg-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-lg-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-lg-offset-0 {
		margin-left: 0;
	}
}


/* lg */

@media (min-width: 1200px) {}


/* md */

@media (max-width: 1199px) {}


/* md */

@media (min-width: 992px) and (max-width: 1199px) {}


/* sm */

@media (max-width: 991px) {}


/* sm */

@media (min-width: 769px) and (max-width: 991px) {}


/* xs */

@media (max-width: 768px) {}


/* xs-portrait */

@media (max-width: 480px) {}


/* test */

@media (max-width: 360px) {}

@media (max-width: 320px) {}

.header {
	/**
 * header
 */
	position: relative;
	/**
 * navigation
 * @type {String}
 */
}

@media (max-width: 768px) {
	.header {
		width: 100%;
		position: fixed;
		top: 0;
		z-index: 9999;
		background: #fff;
		box-shadow: 0 0 15px rgba(0, 0, 0, .1);
	}
}

.header ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header a {
	text-decoration: none;
	color: inherit;
}

.header img {
	display: block;
}

.header .container {
	position: relative;
}

.header .main {
	padding: 32px 0;
	background: -webkit-linear-gradient(top, #908f8f, #fff);
	background: -moz-linear-gradient(top, #908f8f, #fff);
	background: -ms-linear-gradient(top, #908f8f, #fff);
	background: linear-gradient(top, #908f8f, #fff);
}

@media (max-width: 768px) {
	.header .main {
		height: 72px;
		padding: 0;
		background: none;
	}
}

.header .logo {
	float: left;
	height: 60px;
}

.header .logo img {
	height: 100%;
}

@media (max-width: 768px) {
	.header .logo {
		height: 72px;
		padding: 20px 0;
	}
}

.header .query {
	line-height: 38px;
	position: relative;
	float: right;
	width: 300px;
	height: 40px;
	padding-left: 32px;
	border: 1px solid #dfdfdf;
	border-radius: 40px;
}

@media (max-width: 768px) {
	.header .query {
		display: none;
	}
}

.header .query:hover {
	border-color: #3d85b9;
}

.header .query::before {
	position: absolute;
	top: 10px;
	left: 8px;
	width: 20px;
	height: 20px;
	content: '';
	background: url(../images/icon.png) no-repeat;
	background-position: -220px 0;
	background-size: cover;
}

.header .query input {
	width: 250px;
	height: 38px;
	border: none;
	outline: none;
}

.header .search {
	position: absolute;
	top: 0;
	right: 62px;
	display: none;
	width: 36px;
	height: 72px;
	cursor: pointer;
}

.header .search a {
	display: block;
	width: 28px;
	height: 28px;
	margin-top: 22px;
	background: url(../images/search-btn.png) no-repeat;
	background-size: cover;
}

.header .toggle {
	position: absolute;
	top: 0;
	right: 0;
	display: none;
	width: 62px;
	height: 72px;
	cursor: pointer;
}

.header .toggle .icon,
.header .toggle .icon::before,
.header .toggle .icon::after {
	position: absolute;
	width: 30px;
	height: 4px;
	transition-duration: .5s;
	border-radius: 2px;
	background: #b2b2b2;
}

.header .toggle .icon {
	top: 34px;
	left: 15.5px;
}

.header .toggle .icon::before,
.header .toggle .icon::after {
	left: 0;
	content: '';
	background: inherit;
}

.header .toggle .icon::before {
	top: -9px;
}

.header .toggle .icon::after {
	top: 9px;
}

.header.nav-open .toggle .icon {
	width: 0;
}

.header.nav-open .toggle .icon::before {
	transform: translateY(9px) rotate(45deg);
}

.header.nav-open .toggle .icon::after {
	transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
	.header .query {
		display: none;
	}
	.header .search,
	.header .toggle {
		display: block;
	}
}


/**
.header .lang { font-size: 13px; position: absolute; z-index: 999; top: 0px; right: 0; overflow: hidden; height: 42px; padding: 0 2px 2px; color: #999; }
.header .lang li { display: inline-block; padding: 5px 0; cursor: pointer; overflow: hidden; }
.header .lang li a { display: block; width: 23px; height: 16px; margin-right: 5px; content: ''; vertical-align: middle; background: url(../images/flags.png) no-repeat; background-size: cover; text-indent: -999px; line-height: 1; }
.header .lang li.cn a { background-position: 0px 0; }
.header .lang li.en a { background-position: -23px 0; }
.header .lang li.es a { background-position: -69px 0; }
.header .lang li.py a { background-position: -92px 0; }
@media (max-width:768px) {
.header .lang { display: none; }
}
**/

.header .lang,
.footer .lang {
	font-size: 13px;
	position: absolute;
	z-index: 999;
	top: 16px;
	right: 15px;
	overflow: hidden;
	height: 42px;
	padding: 0 2px 2px;
	color: #999;
}

.footer .lang {
	position: static;
	display: none;
}

@media (max-width:768px) {
	.footer .lang {
		display: block;
	}
}

.header .lang li,
.footer .lang li {
	display: inline-block;
	padding: 5px 0;
	cursor: pointer;
	overflow: hidden;
}

.header .lang li a,
.footer .lang li a {
	display: block;
	width: 23px;
	height: 16px;
	margin-right: 5px;
	content: '';
	vertical-align: middle;
	background: url(../images/flags.png) no-repeat;
	background-size: cover;
	text-indent: -999px;
	line-height: 1;
}

.header .lang li.cn a,
.footer .lang li.cn a {
	background-position: 0px 0;
}

.header .lang li.en a,
.footer .lang li.en a {
	background-position: -23px 0;
}

.header .lang li.es a,
.footer .lang li.es a {
	background-position: -69px 0;
}

.header .lang li.py a,
.footer .lang li.py a {
	background-position: -92px 0;
}

@media (max-width:768px) {
	.header .lang {
		display: none;
	}
}

.header .links {
	position: absolute;
	right: 160px;
	top: 10px;
}

.header .links .tel {
	font-size: 16px;
	font-weight: bold;
	line-height: 32px;
	margin-right: 20px;
	color: #3c6585;
}

.header .links .tel::before {
	display: inline-block;
	width: 34px;
	height: 34px;
	margin-right: 4px;
	content: '';
	vertical-align: middle;
	border: 1px solid #55758f;
	border-radius: 50%;
	background: #6c97b8 url(../images/icon.png) no-repeat;
	background-position: -384px 0;
	background-size: cover;
}

.header .links .weibo,
.header .links .weixin {
	line-height: 32px;
	margin-right: 16px;
	color: #565656;
}

.header .links .weibo::before {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 4px;
	content: '';
	vertical-align: middle;
	background: url(../images/icon.png) no-repeat;
	background-position: -220px 0;
	background-size: cover;
}

.header .links .weibo:hover,
.header .links .weixin:hover {
	color: #3d85b9;
}

.header .links .whatsapp::before {
	font-family: 'iconfont' !important;
	font-size: 22px;
	font-style: normal;
	line-height: 1;
	color: #00db40;
	display: inline-block;
	margin-right: 2px;
	content: '\ec2d';
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.header .links .weixin::before {
	font-family: 'iconfont' !important;
	font-size: 22px;
	font-style: normal;
	line-height: 1;
	color: #2cbb01;
	display: inline-block;
	margin-right: 2px;
	content: '\e7b4';
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media (max-width: 991px) {
	.header .links {
		right: 120px;
	}
	.header .links .tel {
		font-size: 14px;
		margin-right: 10px;
	}
}

@media (max-width: 768px) {
	.header .links {
		display: none;
	}
}

.header .searchbox {
	font-size: 1.4rem;
	line-height: 48px;
	position: absolute;
	z-index: 9999;
	display: none;
	width: 100%;
	padding: 5px 12px;
	vertical-align: middle;
	background: #f4f4f4;
}

.header .searchbox input:focus {
	border-color: #3d85b9;
	outline: none;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(61, 133, 185, 0.3);
}

.header .searchbox input[type='submit'] {
	width: 28%;
}

.header .searchbox input {
	line-height: 22px;
	width: 70%;
	margin: 0;
	padding: 5px 10px;
	color: #666;
	border: 0;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	background: #fff;
}

.header .navbar-box {
	background: #b5dbf0 url(../images/nav-bg.png);
	background-repeat: repeat-x;
	background-position: bottom center;
}

.header .navbar-box>.container {
	transition: none;
}

@media (max-width: 768px) {
	.header .navbar-box {
		display: none;
	}
}

.header .navbar {
	position: relative;
	z-index: 997;
	padding-bottom: 1px;
}

.header .navbar .item {
	position: relative;
	float: left;
	padding: 0 1px;
	color: #fff;
}

.header .navbar .item:nth-child(odd) {
	background: -webkit-linear-gradient(bottom, #235977, #669ebd);
	background: -moz-linear-gradient(bottom, #235977, #669ebd);
	background: -ms-linear-gradient(bottom, #235977, #669ebd);
	background: linear-gradient(bottom, #235977, #669ebd);
}

.header .navbar .item:nth-child(even) {
	background: -webkit-linear-gradient(bottom, #5a7786, #c1e1f3);
	background: -moz-linear-gradient(bottom, #5a7786, #c1e1f3);
	background: -ms-linear-gradient(bottom, #5a7786, #c1e1f3);
	background: linear-gradient(bottom, #5a7786, #c1e1f3);
}

.header .navbar .item:first-child {
	padding-left: 0;
}

.header .navbar .item:last-child {
	padding-right: 0;
}

.header .navbar .item:hover .level-2 {
	display: block;
}

.header .navbar .item>a {
	font-size: 16px;
	font-weight: bold;
	line-height: 36px;
	display: block;
	padding: 0 26px;
	transition: background-color 0.2s ease-out;
	background: #b5dbf0 url(../images/nav-bg.png);
	background-repeat: repeat-x;
	background-position: bottom center;
	color: inherit;
	text-decoration: none;
}

@media (max-width: 1199px) {
	.header .navbar .item>a {
		font-size: 15px;
		padding: 0 36px;
	}
}

@media (max-width: 991px) {
	.header .navbar .item>a {
		font-size: 14px;
		padding: 0 22px;
	}
}

.header .navbar .level-2,
.header .navbar .level-3 {
	position: absolute;
	display: none;
	min-width: 200px;
	background: #8bbad3;
}

.header .navbar .level-2 a,
.header .navbar .level-3 a {
	display: block;
	padding: 0 22px;
	/* // white-space: nowrap; */
	min-width: 400px;
}

.header .navbar .level-2 {
	line-height: 38px;
	z-index: 998;
	top: 100%;
	left: 0;
}

.header .navbar .level-2>li {
	position: relative;
}

.header .navbar .level-2>li:hover {
	color: #416679;
	background-color: #eaebec;
}

.header .navbar .level-2>li:hover ul {
	display: block;
}

.header .navbar .level-3 {
	line-height: 32px;
	z-index: 999;
	top: 0;
	left: 100%;
}

.header .navbar .level-3>li {
	color: #7c7b7b;
	background-color: #eaebec;
}

.header .navbar .level-3>li:hover {
	color: #0a4461;
}

.header .navigation {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	line-height: 48px;
	position: absolute;
	z-index: 99;
	top: 100%;
	display: none;
	width: 100%;
	border-top: solid 3px #3d85b9;
	border-bottom: solid 3px #3d85b9;
	background: #fff;
}

@media (min-width: 769px) {
	.header .navigation {
		display: none !important;
	}
}

.header .navigation .level-1>li::after,
.header .navigation .level-2>li::after,
.header .navigation .level-2>li::before {
	position: absolute;
	top: 18px;
	right: 15px;
	width: 12px;
	height: 12px;
	content: '';
	background: url(../images/menu.png) no-repeat;
	background-size: cover;
}

.header .navigation .level-1 a {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-decoration: none;
	text-overflow: ellipsis;
	color: inherit;
}

.header .navigation .level-1 li {
	position: relative;
	border-bottom: solid 1px #e4e4e4;
}

.header .navigation .level-1>li>a {
	padding: 0 2em 0 1em;
}

.header .navigation .level-1>li::after {
	background-position: -36px 0;
}

.header .navigation .level-1>li.active::after,
.header .navigation .level-1>li:hover::after {
	background-position: -96px 0;
}

.header .navigation .level-1>li.more::after {
	background-position: -12px 0;
}

.header .navigation .level-1>li.more:hover::after {
	background-position: -72px 0;
}

.header .navigation .level-1>li.more.active::after {
	background-position: -84px 0;
}

.header .navigation .level-1>li.active>a,
.header .navigation .level-1>li:hover>a {
	background-color: rgba(0, 0, 0, 0.05);
}

.header .navigation .level-2 {
	display: none;
}

.header .navigation .level-2 a {
	padding: 0 2em 0 3em;
}

.header .navigation .level-2 li:first-child {
	border-top: solid 1px #e4e4e4;
}

.header .navigation .level-2 li:last-child {
	border-bottom: none;
}

.header .navigation .level-2>li::before {
	right: auto;
	left: 1.5em;
	background-position: 0 0;
}

.header .navigation .level-2>li::after {
	background-position: -48px 0;
}

.header .navigation .level-2>li.active::after {
	background-position: -108px 0;
}

.header .navigation .level-3 {
	line-height: 40px;
	display: none;
}

.header .navigation .level-3 a {
	font-size: .8em;
	padding-left: 4em;
}


/**
 * banner
 */

@media (max-width: 1199px) {
	.banner_top {
		padding-top: 72px;
	}
}

.banner {
	overflow: hidden;
	width: 100%;
}

.banner img {
	width: 100%;
}

.banner .owl-carousel .owl-controls {
	position: absolute;
	bottom: 32px;
	width: 100%;
	height: 0;
	margin-top: 0;
}

@media (max-width: 480px) {
	.banner .owl-carousel .owl-controls {
		bottom: 22px;
	}
}

.banner .owl-carousel .owl-controls .owl-page.active span {
	border-color: #f8061d;
	background-color: #f8061d;
}

.banner .owl-carousel .owl-controls .owl-page span {
	width: 13px;
	height: 13px;
	opacity: 1;
	border: 2px solid #fff;
	background-color: transparent;
}

@media (max-width: 480px) {
	.banner .owl-carousel .owl-controls .owl-page span {
		width: 8px;
		height: 8px;
		border-width: 1px;
	}
}

@media (max-width: 1199px) {
	.banner .owl-carousel {
		width: 120%;
		max-width: 120%;
		margin-left: -10%;
	}
}

@media (max-width: 991px) {
	.banner .owl-carousel {
		width: 140%;
		max-width: 140%;
		margin-left: -20%;
	}
}

@media (max-width: 768px) {
	.banner .owl-carousel {
		width: 160%;
		max-width: 160%;
		margin-left: -30%;
	}
}

.banner-inner {
	overflow: hidden;
	width: 100%;
}

.banner-inner img {
	width: 100%;
}

.banner-inner .owl-carousel .owl-controls {
	position: absolute;
	bottom: 32px;
	width: 100%;
	height: 0;
	margin-top: 0;
}

@media (max-width: 480px) {
	.banner-inner .owl-carousel .owl-controls {
		bottom: 22px;
	}
}

.banner-inner .owl-carousel .owl-controls .owl-page.active span {
	border-color: #f8061d;
	background-color: #f8061d;
}

.banner-inner .owl-carousel .owl-controls .owl-page span {
	width: 13px;
	height: 13px;
	opacity: 1;
	border: 2px solid #fff;
	background-color: transparent;
}

@media (max-width: 480px) {
	.banner-inner .owl-carousel .owl-controls .owl-page span {
		width: 8px;
		height: 8px;
		border-width: 1px;
	}
}

@media (max-width: 1199px) {
	.banner-inner .owl-carousel {
		width: 120%;
		max-width: 120%;
		margin-left: -10%;
	}
}

@media (max-width: 991px) {
	.banner-inner .owl-carousel {
		width: 140%;
		max-width: 140%;
		margin-left: -20%;
	}
}

@media (max-width: 768px) {
	.banner-inner .owl-carousel {
		width: 160%;
		max-width: 160%;
		margin-left: -30%;
	}
}


/**
 * wrap
 */

.wrap {
	padding-top: 32px;
	padding-bottom: 32px;
}

.wrap p {
	margin-top: 0;
	color: #666;
}

.wrap .ueditor p {
	font-family: 'Georgia', 'Times New Roman', 'Helvetica Neue', Helvetica, Arial, 'Microsoft Yahei', sans-serif;
	font-size: 14px;
	line-height: 1.8;
	margin-top: 0;
	margin-bottom: 2px;
}

.wrap .ueditor img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.wrap .ueditor strong {
	color: #333;
}

@media (max-width: 768px) {
	.wrap .ueditor img {
		display: block;
	}
}

.wrap {
	background: -webkit-linear-gradient(top, #c7c7c7, #f6f6f6 200px);
	background: -moz-linear-gradient(top, #c7c7c7, #f6f6f6 200px);
	background: -ms-linear-gradient(top, #c7c7c7, #f6f6f6 200px);
	background: linear-gradient(top, #c7c7c7, #f6f6f6 200px);
}

.wrap>.container {
	overflow: hidden;
	padding-bottom: 20px;
}

@media (max-width: 768px) {
	.wrap {
		background: #f6f6f6;
		padding-top: 0;
	}
}

.content,
.sidebar {
	float: left;
	padding-top: 10px;
	padding-bottom: 10px;
}

.content .container-fluid,
.sidebar .container-fluid {
	box-shadow: 0 0 10px #ccc;
	background-color: #fff;
}

.content {
	width: 100%;
	padding-left: 256px;
}

@media (max-width: 768px) {
	.content {
		float: none;
		padding-left: 0;
	}
}

.content .container-fluid {
	padding-top: 20px;
	padding-right: 30px;
	padding-bottom: 32px;
	padding-left: 30px;
	border: 1px solid #e4e4e4;
}

@media (max-width: 480px) {
	.content .container-fluid {
		padding-right: 15px;
		padding-left: 15px;
	}
}

.content .mtitle {
	font-size: 16px;
	margin-top: 0;
	margin-bottom: 32px;
	color: #3d85b9;
}

.sidebar {
	width: 230px;
	margin-left: -100%;
}

.sidebar .container-fluid {
	padding-right: 0;
	padding-left: 0;
	border: 1px solid #d2d2d2;
}

.sidebar a {
	text-decoration: none;
	color: inherit;
}

@media (max-width: 768px) {
	.sidebar {
		display: none;
		float: none;
		margin-left: 0;
	}
}

.sidebar .cate-box {
	line-height: 28px;
	min-height: 200px;
	padding: 18px 12px 34px;
	border-top: 3px solid #3d85b9;
	background: -webkit-linear-gradient(bottom, #e6e6e6, #fff 150px);
	background: -moz-linear-gradient(bottom, #e6e6e6, #fff 150px);
	background: -ms-linear-gradient(bottom, #e6e6e6, #fff 150px);
	background: linear-gradient(bottom, #e6e6e6, #fff 150px);
}

.sidebar .cate-box .title {
	font-size: 18px;
	margin-top: 0;
	padding-left: 10px;
	color: #3d85b9;
}

.sidebar .cate-box .level-1 ul {
	display: none;
	background-color: #e4f3f9;
}

.sidebar .cate-box .level-1.active .level-1-a {
	background-image: url(../images/mtree-m1-active.png);
	border-bottom-color: #d6d6d6;
	color: #3d85b9;
}

.sidebar .cate-box .level-1:last-child .level-1-a {
	border-bottom-color: #d6d6d6;
}

.sidebar .cate-box .level-1-a {
	display: block;
	padding-left: 30px;
	line-height: 32px;
	border: 1px solid #d6d6d6;
	border-bottom-color: transparent;
	background: url(../images/mtree-m1.png) no-repeat;
	background-position: left bottom;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sidebar .cate-box .level-2:hover a,
.sidebar .cate-box .level-2.active a {
	background-color: #fff;
	color: #3d85b9;
}

.sidebar .cate-box .level-2-a {
	display: block;
	padding-left: 30px;
	line-height: 30px;
	ffont-size: 12px;
	/* // white-space: nowrap; */
	overflow: hidden;
	text-overflow: ellipsis;
}

.sidebar .contact {
	margin-top: 16px;
}

.sidebar .contact-box {
	background: -webkit-linear-gradient(bottom, #e7e7e7, #fff 200px);
	background: -moz-linear-gradient(bottom, #e7e7e7, #fff 200px);
	background: -ms-linear-gradient(bottom, #e7e7e7, #fff 200px);
	background: linear-gradient(bottom, #e7e7e7, #fff 200px);
}

.sidebar .contact-box .title {
	font-size: 18px;
	line-height: 44px;
	margin: 0;
	padding-left: 25px;
	color: #fff;
	background: url(../images/sidebar-contact-bg.png);
	background-size: contain;
}

.sidebar .contact-box .info {
	font-size: 12px;
	line-height: 2;
	min-height: 220px;
	padding: 90px 6px 20px;
	color: #686868;
	background: url(../images/sidebar-contact-info.jpg) no-repeat;
	background-position: top center;
	background-size: contain;
}

.sidebar .contact-box .info a:hover {
	text-decoration: underline;
}

.sidebar .contact-box .info p {
	margin-bottom: 0;
}


/**
 * tabs
 */

.tabs {
	font-size: 18px;
	line-height: 36px;
	margin-top: 0;
	padding: 0;
}

.tabs li {
	display: inline-block;
	min-width: 64px;
	margin-right: 5px;
	margin-bottom: 8px;
	border: 1px solid transparent;
	border-radius: 90px;
}

.tabs li.active,
.tabs li:hover {
	color: #3d85b9;
	border-color: currentColor;
}

.tabs a {
	display: block;
	padding: 0 12px;
	text-align: center;
	text-decoration: none;
	color: inherit;
}

@media (max-width: 768px) {
	.tabs {
		font-size: 16px;
		line-height: 28px;
	}
}


/**
 * [pagerWidth description]
 * @type {[type]}
 */

.pager {
	line-height: 26px;
	padding-top: 32px;
	padding-bottom: 32px;
	text-align: center;
}

.pager li {
	display: inline-block;
	margin: 2px;
	transition: all 0.2s ease-in;
	border: 1px solid #d1dae4;
	background-color: #fff;
}

.pager li.active,
.pager li:hover {
	border-color: #5580a1;
	background-color: #5580a1;
}

.pager li.active a,
.pager li:hover a {
	color: #fff;
}

.pager a {
	padding: 0 10px;
	text-decoration: none;
	color: #696969;
}

.nline {
	line-height: 1.5em;
	overflow: hidden;
	margin-top: 2em;
	padding: 1em 0;
	border-top: 1px solid #dfdfdf;
}

.nline a {
	display: block;
	text-decoration: none;
	color: #666;
}

.nline a.prev {
	float: left;
}

.nline a.next {
	float: right;
}

.nline a:hover {
	color: #3d85b9;
}

@media (max-width: 480px) {
	.nline a {
		float: none !important;
	}
}


/** feedback-form */

.feedback-form {
	width: 100%;
	position: relative;
}

.feedback-form::before {
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	width: 40%;
	height: 0;
	padding-bottom: 20.26666667%;
	background: url(../images/feedback.jpg) no-repeat;
	background-size: cover;
}

.feedback-form label {
	width: 80px;
	text-align: right;
	display: inline-block;
	margin: 12px 0;
	margin-right: 8px;
	vertical-align: top;
	padding: 6px 12px;
	line-height: 30px;
}

.feedback-form input[readonly] {
	color: #666;
}

.feedback-form input[type='text'],
.feedback-form textarea {
	line-height: 1.75;
	display: inline-block;
	width: 40%;
	margin: 12px 0;
	padding: 6px 12px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	border: 1px solid #e5e5e5;
	outline: none;
}

.feedback-form input[type='text']:focus,
.feedback-form textarea:focus {
	border-color: rgba(158, 158, 158, 0.96);
	outline: none;
}

.feedback-form input[type='text']:hover,
.feedback-form textarea:hover {
	border-color: rgba(158, 158, 158, 0.96);
	outline: none;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(158, 158, 158, 0.3);
}

.feedback-form textarea {
	width: 80%;
	height: 160px;
	max-height: 250px;
	resize: vertical;
}

.feedback-form .submit,
.feedback-form .reset {
	border: none;
	font-size: 1.6rem;
	margin-top: 1em;
	padding: 6px 18px;
	cursor: pointer;
	text-align: center;
	color: #fff;
	display: inline-block;
}

.feedback-form .submit:before,
.feedback-form .reset:before {
	font-size: 24px;
	margin-right: 4px;
	content: '\1F4E7';
}

.feedback-form .submit.disabled,
.feedback-form .reset.disabled {
	opacity: .8;
}

.feedback-form .submit {
	margin-left: 90px;
	margin-right: 12px;
	background: -webkit-linear-gradient(bottom, #345567, #b0d7ec);
	background: -moz-linear-gradient(bottom, #345567, #b0d7ec);
	background: -ms-linear-gradient(bottom, #345567, #b0d7ec);
	background: linear-gradient(bottom, #345567, #b0d7ec);
}

.feedback-form .reset {
	background: -webkit-linear-gradient(bottom, #a0a2a3, #d1d4d5);
	background: -moz-linear-gradient(bottom, #a0a2a3, #d1d4d5);
	background: -ms-linear-gradient(bottom, #a0a2a3, #d1d4d5);
	background: linear-gradient(bottom, #a0a2a3, #d1d4d5);
}

@media (max-width: 1199px) {
	.feedback-form::before {
		display: none;
	}
	.feedback-form label {
		margin: 0;
		padding: 0;
		text-align: left;
		line-height: 1;
	}
	.feedback-form input[type='text'],
	.feedback-form textarea {
		width: 100%;
	}
	.feedback-form .submit {
		margin-left: 0;
	}
}


/* category */

.category {
	position: relative;
	overflow: hidden;
	min-width: 100%;
	height: 48px;
	background: #ebeef6;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 16px;
	display: none;
}

.category ul {
	position: absolute;
	left: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.category li {
	line-height: 48px;
	position: relative;
	display: inline-block;
	overflow: hidden;
	height: 48px;
	list-style: none;
}

.category li a {
	font-size: 1.6rem;
	font-weight: bold;
	display: block;
	padding: 0 10px;
	text-decoration: none;
	color: #333;
}

.category li.active a {
	color: #3d85b9;
}

.category li.active::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -8px;
	content: '';
	border: 8px solid #fff;
	border-width: 0 8px 8px 8px;
	border-color: #fff transparent;
}

@media (max-width: 768px) {
	.category {
		display: block;
	}
}

.wrap-product {
	/**
 * wrap-product
 */
}

.wrap-product .list-grid {
	text-align: center;
}

.wrap-product .list-grid .item {
	margin-bottom: 32px;
}

.wrap-product .list-grid .thumb {
	padding: 3px;
	border: 1px solid #c1cfd0;
}

.wrap-product .list-grid .img-box {
	padding-bottom: 61.31386861%;
}

.wrap-product .list-grid .title {
	font-size: 14px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #686868;
}

.wrap-product .list-grid .title a {
	text-decoration: none;
	color: inherit;
}

.wrap-product .list-grid .title a:hover {
	color: #3d85b9;
}

.wrap-product .list-grid .title a::before {
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-right: 5px;
	content: '';
	vertical-align: middle;
	border-radius: 50%;
	background-color: #d2d2d2;
}

@media (max-width: 480px) {
	.wrap-product .list-grid .col-xs-6 {
		width: 100%;
	}
}

.wrap-product .ueditor h1 {
	font-size: 18px;
}

.wrap-product .ueditor h3 {
	font-size: 16px;
}

.wrap-product .ueditor .title {
	text-align: center;
}

.wrap-product .ueditor table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

.wrap-product .ueditor td {
	padding: 8px 12px;
	border: 1px solid #49acdf;
}


/*.wrap-product .ueditor td:first-child {
  background-color: #cce7f6;
}*/

.wrap-product .album .owl-carousel {
	padding: 3px;
	border: 1px solid #c1cfd0;
}

.wrap-product .album .owl-carousel img {
	width: 100%;
}

.wrap-product .album .owl-carousel-thumb {
	margin-top: 20px;
}

.wrap-product .album .owl-carousel-thumb ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: justify;
}

.wrap-product .album .owl-carousel-thumb .item {
	display: inline-block;
	width: 18%;
	margin-bottom: 12px;
	padding: 1px;
	border: 1px solid #c1cfd0;
}

.wrap-product .album .owl-carousel-thumb .item:hover,
.wrap-product .album .owl-carousel-thumb .item.active {
	border-color: #3d85b9;
}

.wrap-product .album .owl-carousel-thumb .item-fix {
	overflow: hidden;
	height: 0;
	margin: 0;
	padding: 0;
	border: none;
}

.wrap-product .album .owl-carousel-thumb .img-box {
	padding-bottom: 61.86440678%;
}

.wrap-product .ueditor-table {
	overflow-x: auto;
	padding-bottom: 5px;
	margin-bottom: 16px;
}

.wrap-product .ueditor-table td {
	word-break: normal !important;
	min-width: 120px;
}

.wrap-product .ueditor-table>div {
	margin-bottom: 16px;
}

.wrap-product .inquire {
	font-size: 16px;
	display: inline-block;
	border-radius: 4px;
	padding: 5px 20px;
	text-decoration: none;
	color: #fff;
	background: -webkit-linear-gradient(bottom, #345567, #b0d7ec);
	background: -moz-linear-gradient(bottom, #345567, #b0d7ec);
	background: -ms-linear-gradient(bottom, #345567, #b0d7ec);
	background: linear-gradient(bottom, #345567, #b0d7ec);
}

.wrap-product .inquire-form h3 {
	line-height: 2;
	border-bottom: 1px solid #666;
}

.wrap-product .feedback-form::before {
	display: none;
}

.wrap-product .feedback-form input[type='text'],
.wrap-product .feedback-form textarea {
	width: 100%;
}

.wrap-product .feedback-form .submit {
	margin-left: 0;
}

@media (max-width: 991px) {
	.wrap-product .feedback-form .col-sm-6 {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.wrap-product .feedback-form .col-sm-6 {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.wrap-product .feedback-form .col-sm-6 {
		width: 100%;
	}
}


/** wrap-about */

.wrap-about .carousel-box {
	margin-right: -15px;
	margin-left: -15px;
}

.wrap-about #owl-company-honor1,
.wrap-about #owl-company-honor2,
.wrap-about #owl-company-history {
	margin-bottom: 32px;
}

.wrap-about #owl-company-honor1 a,
.wrap-about #owl-company-honor2 a,
.wrap-about #owl-company-history a {
	text-decoration: none;
	color: inherit;
}

.wrap-about #owl-company-honor1 h4,
.wrap-about #owl-company-honor2 h4,
.wrap-about #owl-company-history h4 {
	font-size: 14px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: center;
}

.wrap-about #owl-company-honor1 .item,
.wrap-about #owl-company-honor2 .item,
.wrap-about #owl-company-history .item {
	margin: 15px;
}

.wrap-about #owl-company-honor1 .thumb,
.wrap-about #owl-company-honor2 .thumb,
.wrap-about #owl-company-history .thumb {
	border: 1px solid #e5e5e5;
}

.wrap-about #owl-company-honor1 .owl-buttons>div,
.wrap-about #owl-company-honor2 .owl-buttons>div,
.wrap-about #owl-company-history .owl-buttons>div {
	position: absolute;
	top: 30%;
	width: 28px;
	height: 28px;
	margin: 0;
	padding: 0;
	opacity: 1;
	border-radius: 0;
	background: url(../images/owl-bottons.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.wrap-about #owl-company-honor1 .owl-buttons .owl-prev,
.wrap-about #owl-company-honor2 .owl-buttons .owl-prev,
.wrap-about #owl-company-history .owl-buttons .owl-prev {
	left: -15px;
	background-position: 0px 0;
}

.wrap-about #owl-company-honor1 .owl-buttons .owl-prev:hover,
.wrap-about #owl-company-honor2 .owl-buttons .owl-prev:hover,
.wrap-about #owl-company-history .owl-buttons .owl-prev:hover {
	background-position: -28px 0;
}

.wrap-about #owl-company-honor1 .owl-buttons .owl-prev.disabled,
.wrap-about #owl-company-honor2 .owl-buttons .owl-prev.disabled,
.wrap-about #owl-company-history .owl-buttons .owl-prev.disabled {
	background-position: 0px 0;
}

.wrap-about #owl-company-honor1 .owl-buttons .owl-next,
.wrap-about #owl-company-honor2 .owl-buttons .owl-next,
.wrap-about #owl-company-history .owl-buttons .owl-next {
	right: -15px;
	background-position: -56px 0;
}

.wrap-about #owl-company-honor1 .owl-buttons .owl-next:hover,
.wrap-about #owl-company-honor2 .owl-buttons .owl-next:hover,
.wrap-about #owl-company-history .owl-buttons .owl-next:hover {
	background-position: -84px 0;
}

.wrap-about #owl-company-honor1 .owl-buttons .owl-next.disabled,
.wrap-about #owl-company-honor2 .owl-buttons .owl-next.disabled,
.wrap-about #owl-company-history .owl-buttons .owl-next.disabled {
	background-position: -56px 0;
}

.wrap-about #owl-company-honor1 .img-box {
	padding-bottom: 66.66666667%;
}

.wrap-about #owl-company-honor2 .img-box {
	padding-bottom: 150%;
}

.wrap-about #owl-company-history {
	margin-bottom: 0;
	margin-bottom: 190px;
}

.wrap-about #owl-company-history::after {
	bottom: 0;
	display: block;
	height: 2px;
	margin-top: -410px;
	margin-right: 15px;
	margin-left: 15px;
	content: '';
	background-color: #a9c7db;
}

@media (min-width: 1200px) {
	.wrap-about #owl-company-history::after {
		margin-top: -409px;
	}
}

.wrap-about #owl-company-history .img-box {
	padding-bottom: 66.66666667%;
}

.wrap-about #owl-company-history .item {
	position: relative;
	padding-bottom: 360px;
}

.wrap-about #owl-company-history .thumb {
	margin-bottom: 64px;
}

.wrap-about #owl-company-history .title {
	position: absolute;
	width: 100%;
}

.wrap-about #owl-company-history .title h4 {
	font-weight: normal;
	margin-top: 0;
	white-space: normal;
}

.wrap-about #owl-company-history .title em {
	font-size: 18px;
	font-style: normal;
	margin-right: 3px;
	color: #3d85b9;
}

.wrap-about #owl-company-history .title::before,
.wrap-about #owl-company-history .title::after {
	position: absolute;
	top: -30px;
	left: 50%;
	content: '';
	border-radius: 50%;
}

.wrap-about #owl-company-history .title::before {
	z-index: 98;
	width: 20px;
	height: 20px;
	margin-top: -4px;
	margin-left: -10px;
	border: 1px solid #4288bb;
	background: #fff;
}

.wrap-about #owl-company-history .title::after {
	z-index: 99;
	width: 12px;
	height: 12px;
	margin-left: -6px;
	background-color: #3d85b9;
}


/**
 * marketing
 */


/* .wrap-marketing .content .container-fluid {
   padding-bottom: 200px;
   background-image: url(../images/marketing.jpg);
   background-repeat: no-repeat;
   background-position: center bottom;
   background-size: contain;
}
@media (max-width: 768px) {
   .wrap-marketing .content .container-fluid {
      padding-bottom: 150px;
   }
}
@media (max-width: 480px) {
   .wrap-marketing .content .container-fluid {
      padding-bottom: 96px;
   }
} */

.wrap-marketing .content .container-fluid {
	padding-bottom: 410px;
	background-image: url(../images/marketing.jpg?v=3.4);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
}

@media (max-width: 1200px) {
	.wrap-marketing .content .container-fluid {
		padding-bottom: 320px;
	}
}

@media (max-width: 992px) {
	.wrap-marketing .content .container-fluid {
		padding-bottom: 220px;
	}
}

@media (max-width: 768px) {
	.wrap-marketing .content .container-fluid {
		padding-bottom: 45vw;
	}
}

.wrap-marketing .ueditor h3 {
	display: inline-block;
	padding: 2px 8px;
	color: #fff;
	border-radius: 4px;
	background-color: #4098be;
	box-shadow: 2px -2px 3px #427388;
}

.wrap-marketing .docs {
	margin-bottom: 32px;
}

.wrap-marketing .docs a {
	text-decoration: underline;
	color: #3d85b9;
}

.wrap-marketing .docs i {
	display: inline-block;
	width: 32px;
	height: 32px;
	margin-right: 6px;
	vertical-align: bottom;
	background: url(../images/docs.png) no-repeat;
	background-size: cover;
}


/**
 * marketing
 */

.wrap-news .ueditor h1 {
	font-size: 16px;
}

.wrap-news .ueditor h3 {
	font-size: 14px;
}

.wrap-news .ueditor .title {
	text-align: center;
}

.wrap-news .ueditor .info {
	margin-bottom: 16px;
	padding: 8px 0;
	text-align: center;
	color: #999;
	border: 1px dashed;
	border-color: #dbd4cd transparent;
}

.wrap-news .ueditor .info a {
	color: inherit;
	text-decoration: none;
}

.wrap-news .ueditor .info a:hover {
	text-decoration: underline;
	color: #3d85b9;
}

.wrap-news .ueditor #ncon p {
	font-size: 1em;
}

.wrap-news .ntop {
	overflow: hidden;
	padding-bottom: 16px;
	border-bottom: 1px solid #ccc;
}

.wrap-news .ntop .thumb {
	float: left;
	width: 250px;
}

.wrap-news .ntop .thumb .img-box {
	padding-bottom: 72%;
}

.wrap-news .ntop .info {
	margin-left: 270px;
}

.wrap-news .ntop .info .title {
	font-size: 16px;
	text-decoration: none;
	color: inherit;
}

.wrap-news .ntop .info .title:hover {
	color: #3d85b9;
}

.wrap-news .ntop .info .date {
	display: block;
	padding: 6px 0;
	color: #a3a3a3;
}

.wrap-news .ntop .info .note {
	line-height: 1.75;
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.wrap-news .ntop .info .more {
	line-height: 32px;
	display: block;
	margin-top: 16px;
	text-decoration: none;
	color: #474747;
}

.wrap-news .ntop .info .more:hover {
	color: #3d85b9;
}

.wrap-news .ntop .info .more:hover::after {
	background-position: -16px 0;
}

.wrap-news .ntop .info .more::after {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 4px;
	content: '';
	vertical-align: middle;
	background: url(../images/icon.png) no-repeat;
	background-size: cover;
}

.wrap-news .nlist .item {
	overflow: hidden;
	padding-top: 8px;
	padding-bottom: 8px;
	border-bottom: 1px dashed #ccc;
}

.wrap-news .nlist .title {
	display: inline-block;
	overflow: hidden;
	width: calc(100% - 100px);
	max-width: 80%;
	vertical-align: middle;
	white-space: nowrap;
	text-decoration: none;
	text-overflow: ellipsis;
	color: inherit;
}

.wrap-news .nlist .title:hover {
	color: #3d85b9;
}

.wrap-news .nlist .date {
	float: right;
}

@media (max-width: 480px) {
	.wrap-news .ntop .thumb {
		float: none;
		width: 100%;
		margin-bottom: 16px;
	}
	.wrap-news .ntop .info {
		margin-left: 0;
	}
	.wrap-news .nlist .title {
		float: left;
		width: 100%;
		max-width: 100%;
		white-space: normal;
	}
	.wrap-news .nlist .date {
		display: none;
	}
}

.wrap-contact .info {
	position: relative;
	min-height: 300px;
	padding-right: 50%;
}

.wrap-contact .info::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 0;
	padding-bottom: 36.15023474%;
	content: '';
	background: url(../images/contact.jpg) no-repeat;
	background-size: cover;
}

.wrap-contact .info a {
	text-decoration: none;
	color: inherit;
}

.wrap-contact .info a:hover {
	text-decoration: underline;
	color: #3d85b9;
}

.wrap-contact .info h2 {
	font-size: 16px;
	margin-top: 0;
}

@media (max-width: 1199px) {
	.wrap-contact .info {
		padding-right: 0;
	}
	.wrap-contact .info::before {
		display: none;
	}
}

.wrap-contact .info .address::before,
.wrap-contact .info .mobile::before,
.wrap-contact .info .phone::before,
.wrap-contact .info .fax::before,
.wrap-contact .info .wechat::before {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 6px;
	content: '';
	vertical-align: middle;
	border: 1px solid #797979;
	border-radius: 2px;
	background: url(../images/icon.png) no-repeat;
	background-size: cover;
}

.wrap-contact .info .whatsapp::before {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-right: 6px;
	vertical-align: middle;
	border: 1px solid #797979;
	border-radius: 2px;
	font-family: 'iconfont' !important;
	font-size: 14px;
	font-style: normal;
	color: #797979;
	content: '\e6d0';
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 20px;
	text-align: center;
}

.wrap-contact .info .address::before {
	background-position: -40px 0;
}

.wrap-contact .info .mobile::before {
	background-position: -60px 0;
}

.wrap-contact .info .phone::before {
	background-position: -80px 0;
}

.wrap-contact .info .fax::before {
	background-position: -100px 0;
}

.wrap-contact .info .wechat::before {
	background-position: -120px 0;
}

.wrap-index {
	/**
 * wrap-index
 */
}

.wrap-index .box .mtitle {
	font-size: 18px;
	line-height: 26px;
	position: relative;
	margin: 0;
	margin-bottom: 16px;
	padding-bottom: 6px;
	color: #197bb3;
	border-bottom: 2px solid #94c1d5;
}

.wrap-index .box .mtitle::before {
	line-height: inherit;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 5px;
	content: '';
	vertical-align: middle;
	background: url(../images/icon.png) no-repeat;
	background-position: -112px 0;
	background-size: cover;
}

.wrap-index .box .mtitle::after {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100px;
	height: 2px;
	content: '';
	border-right: 1px solid #fff;
	background: #3d98c0;
}

.wrap-index .box-about {
	padding-bottom: 16px;
}

.wrap-index .box-about .mtitle {
	margin-bottom: 16px;
}

.wrap-index .box-about .thumb {
	position: relative;
	float: left;
	width: 290px;
	margin-top: 10px;
	margin-bottom: 100px;
	padding: 4px;
	box-shadow: 0 0 10px #ccc;
}

.wrap-index .box-about .thumb .img-box {
	padding-bottom: 65.87837838%;
}

.wrap-index .box-about .thumb::after {
	position: absolute;
	bottom: -80px;
	left: 0;
	width: 100%;
	height: 76px;
	content: '';
	background: -webkit-linear-gradient(top, #d8e4ec, #ebebeb);
	background: -moz-linear-gradient(top, #d8e4ec, #ebebeb);
	background: -ms-linear-gradient(top, #d8e4ec, #ebebeb);
	background: linear-gradient(top, #d8e4ec, #ebebeb);
}

.wrap-index .box-about .info {
	line-height: 26px;
	margin-top: 10px;
	margin-left: 310px;
	color: #686868;
}

.wrap-index .box-about .info .more {
	line-height: 32px;
	position: relative;
	display: inline-block;
	float: right;
	margin-bottom: 16px;
	padding: 0 32px;
	padding-right: 16px;
	color: #fff;
	border-radius: 32px;
	background-color: #76b0d8;
	color: inherit;
	text-decoration: none;
}

.wrap-index .box-about .info .more::before {
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
	width: 10px;
	height: 10px;
	content: '';
	transform: rotate(-45deg);
	border: 2px solid #fff;
	border-top-width: 0;
	border-left-width: 0;
}

.wrap-index .box-about .video {
	padding: 5px;
	border-radius: 4px;
	background-color: #fff;
}

.wrap-index .box-about .video .img-box {
	padding-bottom: 66.66666667%;
}

.wrap-index .box-about .video iframe {
	display: none;
	width: 100%;
}

.wrap-index .box-about .video .play {
	position: relative;
	display: block;
}

.wrap-index .box-about .video .play:hover::before {
	background-color: rgba(0, 0, 0, 0.5);
}

.wrap-index .box-about .video .play::before {
	position: absolute;
	z-index: 98;
	display: block;
	width: 100%;
	height: 100%;
	content: '';
	background-color: rgba(0, 0, 0, 0.3);
}

.wrap-index .box-about .video .play::after {
	position: absolute;
	z-index: 99;
	top: 50%;
	left: 50%;
	display: block;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	content: '';
	background: url(../images/icon.png) no-repeat;
	background-position: -450px 0;
	background-size: cover;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.wrap-index .box-about .thumb {
		width: 180px;
	}
	.wrap-index .box-about .info {
		font-size: 12px;
		line-height: 20px;
		margin-left: 190px;
	}
}

@media (max-width: 480px) {
	.wrap-index .box-about .thumb {
		float: none;
		width: 100%;
		margin-bottom: 16px;
	}
	.wrap-index .box-about .thumb::after {
		display: none;
	}
	.wrap-index .box-about .info {
		margin-left: 0;
	}
}

.wrap-index .box-news .mtitle .more {
	font-size: 14px;
	font-weight: normal;
	line-height: inherit;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	color: #828282;
	color: inherit;
	text-decoration: none;
}

.wrap-index .box-news .mtitle .more::before {
	line-height: inherit;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 5px;
	content: '';
	vertical-align: middle;
	background: url(../images/icon.png) no-repeat;
	background-position: -128px 0;
	background-size: cover;
}

.wrap-index .box-news .mtitle .more:hover {
	color: #3d85b9;
}

.wrap-index .box-news .topnews {
	overflow: hidden;
	margin-bottom: 16px;
	padding: 5px;
	border: 1px solid #c8c8c8;
	background: -webkit-linear-gradient(bottom, #c8c8c8, #fff 100px);
	background: -moz-linear-gradient(bottom, #c8c8c8, #fff 100px);
	background: -ms-linear-gradient(bottom, #c8c8c8, #fff 100px);
	background: linear-gradient(bottom, #c8c8c8, #fff 100px);
	box-shadow: 0 0 10px #c5c5c5;
}

.wrap-index .box-news .topnews .thumb {
	float: left;
	width: 280px;
}

.wrap-index .box-news .topnews .thumb .img-box {
	padding-bottom: 69.64285714%;
}

.wrap-index .box-news .topnews .info {
	margin-left: 300px;
}

.wrap-index .box-news .topnews .more {
	position: relative;
	display: inline-block;
	float: right;
	padding-left: 16px;
}

.wrap-index .box-news .topnews .more::before {
	position: absolute;
	top: 5px;
	left: 0;
	display: block;
	width: 10px;
	height: 10px;
	content: '';
	transform: rotate(-45deg);
	border: 2px solid #5580a1;
	border-top-width: 0;
	border-left-width: 0;
}

.wrap-index .box-news .topnews .more:hover {
	color: #5580a1;
}

.wrap-index .box-news .topnews a {
	color: inherit;
	text-decoration: none;
}

.wrap-index .box-news .topnews a:hover {
	text-decoration: underline;
}

.wrap-index .box-news .topnews h4 {
	font-size: 16px;
	margin-top: 16px;
	margin-bottom: 8px;
	color: #3d85b9;
}

.wrap-index .box-news .topnews span {
	font-size: 12px;
	line-height: 26px;
	display: block;
	color: #aeaeae;
}

.wrap-index .box-news .topnews p {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #686868;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.wrap-index .box-news .contact {
	position: relative;
	margin-bottom: 16px;
	padding: 20px;
	border: 1px solid #c8c8c8;
	border-radius: 12px;
	background: #fafafa url(../images/zhejiao-02.png);
	background-repeat: repeat-x;
	background-position: bottom left;
	box-shadow: 0 0 10px #f8f8f8;
}

.wrap-index .box-news .contact a {
	color: inherit;
	text-decoration: none;
}

.wrap-index .box-news .contact a:hover {
	text-decoration: underline;
	color: #5580a1;
}

.wrap-index .box-news .contact p {
	line-height: 28px;
	margin: 0;
}

.wrap-index .box-news .contact::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	width: 16px;
	height: 20px;
	content: '';
	background: url(../images/zhejiao-03.png) no-repeat;
}

@media (min-width: 769px) and (max-width: 991px) {
	.wrap-index .box-news .topnews .thumb {
		float: none;
		width: 100%;
	}
	.wrap-index .box-news .topnews .info {
		margin-left: 0;
	}
}

@media (max-width: 480px) {
	.wrap-index .box-news .topnews .thumb {
		float: none;
		width: 100%;
	}
	.wrap-index .box-news .topnews .info {
		margin-left: 0;
	}
}

.wrap-index .box-product {
	padding-top: 32px;
}

.wrap-index .box-product h3.title {
	font-size: 18px;
	display: inline-block;
	margin: 0 48px 16px 0;
	color: #327da2;
}

@media (max-width: 480px) {
	.wrap-index .box-product h3.title {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.wrap-index .box-product h3.title {
		font-size: 22px;
		width: 100%;
		text-align: center;
	}
	.wrap-index .box-product h3.title::after {
		display: block;
		width: 76px;
		height: 2px;
		margin: 0 auto;
		margin-top: 12px;
		content: '';
		background: #3d85b9;
	}
}

.wrap-index .box-product h4.title {
	font-size: 16px;
	font-weight: normal;
	position: relative;
	display: inline-block;
	margin: 0 20px 16px 0;
	color: #444;
	border-radius: 5px;
	background-color: #fff;
}

.wrap-index .box-product h4.title a {
	display: block;
	padding: 8px 20px 8px 32px;
	color: inherit;
	text-decoration: none;
}

.wrap-index .box-product h4.title a:hover {
	color: #3d85b9;
}

.wrap-index .box-product h4.title::before {
	position: absolute;
	top: 50%;
	left: 12px;
	display: block;
	width: 9px;
	height: 10px;
	margin-top: -5px;
	padding-top: 2px;
	padding-bottom: 2px;
	content: '';
	border-top: 2px solid #86afcd;
	border-bottom: 2px solid #86afcd;
	background-color: #86afcd;
	background-clip: content-box;
}

.wrap-index .box-product h4.title::after {
	position: absolute;
	top: 50%;
	left: 14px;
	display: block;
	width: 1px;
	height: 10px;
	margin-top: -5px;
	content: '';
	background-color: #fff;
}

.wrap-index .box-product h4.title:last-child {
	margin-right: 0;
}

@media (max-width: 480px) {
	.wrap-index .box-product h4.title {
		font-size: 14px;
	}
}

.wrap-index .box-product .item {
	position: relative;
	overflow: hidden;
	margin-top: 16px;
	margin-bottom: 16px;
	padding: 20px;
	border: 1px solid #d1d1d1;
	background: -webkit-linear-gradient(bottom, #e6e6e6, #fff 200px);
	background: -moz-linear-gradient(bottom, #e6e6e6, #fff 200px);
	background: -ms-linear-gradient(bottom, #e6e6e6, #fff 200px);
	background: linear-gradient(bottom, #e6e6e6, #fff 200px);
	box-shadow: 0 0 10px #ccc;
	min-height: 250px;
}

.wrap-index .box-product .item.active,
.wrap-index .box-product .item:hover {
	border-top: 3px solid #3b97bf;
	background: -webkit-linear-gradient(bottom, #c7ebfb, #fff 200px);
	background: -moz-linear-gradient(bottom, #c7ebfb, #fff 200px);
	background: -ms-linear-gradient(bottom, #c7ebfb, #fff 200px);
	background: linear-gradient(bottom, #c7ebfb, #fff 200px);
}

.wrap-index .box-product .item.active .thumb,
.wrap-index .box-product .item:hover .thumb,
.wrap-index .box-product .item.active .links,
.wrap-index .box-product .item:hover .links {
	margin-top: 0;
}

.wrap-index .box-product .item::after {
	position: absolute;
	right: 1px;
	bottom: 1px;
	width: 0;
	height: 0;
	content: '';
	border: 4px solid;
	border-color: transparent #3d85b9 #3d85b9 transparent;
}

.wrap-index .box-product .thumb {
	float: left;
	width: 220px;
	margin-top: 2px;
	padding: 3px;
	border: 1px solid #c1cfd0;
}

.wrap-index .box-product .thumb .img-box {
	padding-bottom: 60.74766355%;
}

.wrap-index .box-product .links {
	margin-top: 2px;
	margin-left: 230px;
}

.wrap-index .box-product .links h4 {
	font-size: 16px;
	margin: 0;
	color: #3d85b9;
}

.wrap-index .box-product .links a {
	line-height: 26px;
	color: inherit;
	text-decoration: none;
}

.wrap-index .box-product .links a:hover {
	text-decoration: underline;
}

.wrap-index .box-product .links ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.wrap-index .box-product .links ul li {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}

.wrap-index .box-product .links ul a::before {
	line-height: 26px;
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-right: 5px;
	content: '';
	vertical-align: middle;
	border-radius: 50%;
	background: #d2d2d2;
}

.wrap-index .box-product .links .more {
	display: inline-block;
	float: right;
}

.wrap-index .box-product .topserach {
	line-height: 40px;
	position: relative;
	display: block;
	overflow: hidden;
	height: 40px;
	margin: 5px;
	margin-left: 0;
	margin-top: 36px;
	padding-left: 22px;
	border-radius: 8px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.64);
}

.wrap-index .box-product .topserach::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 22px;
	height: inherit;
	content: '';
	background: url(../images/topsearch.png) no-repeat left;
}

.wrap-index .box-product .topserach .text {
	display: block;
	width: 98%;
	height: inherit;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: url(../images/topsearch-02.png) repeat-x;
	background-color: transparent;
}

.wrap-index .box-product .topserach .submit {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 36px;
	height: inherit;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: url(../images/topsearch.png) no-repeat right;
}

@media (max-width: 991px) {
	.wrap-index .box-product .thumb {
		float: none;
		width: 100%;
	}
	.wrap-index .box-product .links {
		margin-left: 0;
	}
	.wrap-index .box-product .links h4 {
		margin-top: 16px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.wrap-index .box-product .links ul li {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.wrap-index .box-product .topserach {
		display: none;
	}
	.wrap-index .box-product h4.title {
		display: none;
	}
}

@media (max-width: 320px) {
	.wrap-index .box-product .links ul li {
		width: 100%;
	}
}

.footer {
	/**
 * footer
 */
	color: #525252;
	background-color: #aac6db;
	padding-top: 32px;
	padding-bottom: 32px;
}

.footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer a {
	text-decoration: none;
	color: inherit;
}

.footer a:hover {
	text-decoration: underline;
}

.footer .copyright {
	/* // float: left; */
	margin: 0;
	text-align: center;
}

.footer .copyright p {
	margin: 0;
}

.footer .links {
	line-height: 28px;
	/* // float: right; */
	margin-top: 6px;
	text-align: center;
}

.footer .links li {
	display: inline-block;
}

.footer .links li:first-child::after,
.footer .links li:last-child::after {
	display: none;
}

.footer .links span {
	margin-right: 6px;
}

@media (max-width: 768px) {
	.footer {
		text-align: center;
	}
	.footer .links {
		float: none;
	}
}

.kefu {
	width: 60px;
	position: fixed;
	background: #fff;
	padding: 1px;
	top: 40%;
	right: 20px;
	/* display: none; */
}

.kefu ul {
	padding: 0;
	list-style: none;
	margin: 0;
}

.kefu .item {
	position: relative;
	width: 58px;
	height: 58px;
	margin-bottom: 1px;
	background: url(../images/kefu.png) no-repeat;
	background-size: cover;
}

.kefu .item:last-child {
	margin-bottom: 0;
}

.kefu .item-qq {
	background-color: #2cbb01;
	background-image: none;
}

.kefu .item-qq:before {
	display: block;
	font-family: 'iconfont' !important;
	font-size: 38px;
	font-style: normal;
	color: #fff;
	content: '\e602';
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 58px;
	text-align: center;
}

.kefu .item-skype {
	background-position: -58px 0;
}

.kefu .item-phone {
	background-position: -116px 0;
}

.kefu .item-top {
	background-position: -174px 0;
}

.kefu .item-whatsapp {
	background-color: #00db40;
	background-image: none;
}

.kefu .item-whatsapp:before {
	display: block;
	font-family: 'iconfont' !important;
	font-size: 32px;
	font-style: normal;
	color: #fff;
	content: '\e6d0';
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 58px;
	text-align: center;
}

.kefu .item-phone {
	position: relative;
}

.kefu .item-phone a {
	cursor: default;
}

.kefu .item:hover .qrcode {
	display: block;
}

.kefu .item .qrcode {
	width: 200px;
	height: 200px;
	position: absolute;
	top: 0;
	right: 60px;
	overflow: hidden;
	display: none;
}

.kefu .item-phone img {
	display: block;
	width: 100%;
	height: 100%;
}

.kefu a {
	display: block;
	width: 100%;
	height: 100%;
}

.kefu .item .qrcode .hotline {
	font-size: 16px;
}

.kefu .item .qrcode .hotline a {
	color: #fff;
}

@media (min-width: 1200px) {
	.wrap-product .col-xs-12.col-sm-12.col-lg-8 {
		width: 100%;
		padding: 32px 120px;
	}
}

@media (max-width: 480px) {
	.kefu {
		display: none;
	}
}

.kefu .item-qq .qrcode {
	width: 120px;
	height: 120px !important;
}

.kefu .item-qq img {
	width: 100%;
}

.kefu .item-email {
	background: url(../images/email.png) no-repeat center;
}

.c_newlink {
	display: inline-flex;
	align-items: center;
}

.c_newlink svg {
	margin-right: 5px;
}

.header .links a {
	margin-right: 12px;
}

@media screen and (min-width:1200px) {
	.header .links a:hover {
		color: #5580A1;
	}
}

.header .links {
	display: flex;
	align-items: center;
}

.wrap-index .box-about .thumb::after {
	display: none;
}

@media (max-width: 768px) {
	.header .links {
		right: 100px;
		top: 20px;
	}
	.header .links a span {
		display: none;
	}
}