@charset "utf-8";

/*=========
  基本默认值
  ==========*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-word-break: normal !important;
	word-break: normal !important;
	word-wrap: break-word !important;
}

@font-face {

	src: url("MyriadPro-Light.TTF");
}

html {
	min-height: 100%;
}

body {
	min-height: 100%;
	font-size: 12px;
	color: #000;

	overflow-x: hidden;
	line-height: 1.2;
}

li {
	list-style: none;
}

img {
	border: none;
	vertical-align: middle;
	max-width: 100%;
}

a {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	color: #000;
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s;
}

:after,
:before {
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s;
}

table {
	border-collapse: collapse;
}

input,
textarea,
select {

	font-size: 12px;
	outline: none;
}

/* =========
  工具样式
  ========== */
.clearfix:before,
.clearfix:after {
	content: "";
	display: block;
}

.clearfix:after {
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.donghua {
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-ms-transition: all .5s;
}

.mandonghua {
	-webkit-transition-property: all;
	-o-transition-property: all;
	-moz-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
}

/* =========

  首页

  ========== */
.wrap {
	width: 94%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	max-width: 1200px;
	overflow: hidden;
}

/*头部*/
.header {
	position: fixed;
	height: 90px;
	line-height: 90px;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 111;
	background-color: #fff;
}

.header .inbox {
	overflow: visible;
	position: relative;
}

.header .inbox .logo {
	float: left;
}

.header .inbox .logo img {
	width: 218px;
	height: 50px;
}

.header .inbox .nav {
	float: right;
}

.header .inbox .nav .nLi {
	float: left;
	margin-right: 50px;
	position: relative;
}

.header .inbox .nav .nLi:nth-child(8) {
	margin-right: 25px;
}

.header .inbox .nav .nLi:nth-child(9) {
	margin-right: 0;
}

.header .inbox .nav .nLi .a1 {
	font-size: 14px;
	color: #383838;
	font-weight: bold;
	display: block;
}

.header .inbox .nav .nLi .line {
	position: absolute;
	bottom: -1px;
	left: 0;
	height: 3px;
	width: 0;
	background-color: #4184f5;
}

.header .inbox .nav .nLi.on .a1 {
	color: #4184f5;
}

.header .inbox .nav .nLi.on .line {
	width: 100%;
}

.header .inbox .nav .nLi .sub {
	position: fixed;
	top: 90px;
	left: 0;
	width: 100%;
	background-color: #fff;
	border-top: 1px solid #d9d9d9;
	text-align: center;
	line-height: 1;
	display: none;
	white-space: nowrap;
}

.header .inbox .nav .nLi .sub .inli {
	display: inline-block;
	margin-right: 45px;
	position: relative;
}

.header .inbox .nav .nLi .sub .inli:last-child {
	margin-right: 0;
}

.header .inbox .nav .nLi .sub .inli .a2 {
	display: block;
	font-size: 13px;
	color: #737373;
	height: 60px;
	line-height: 60px;
}

.header .inbox .nav .nLi .sub .inli .a2.on {
	color: #383838;
}

.header .inbox .nav .nLi .sub .inli .insub {
	position: fixed;
	top: 142px;
	left: 0;
	width: 100%;
	background-color: #fff;
	white-space: nowrap;
	text-align: left;
	text-align: center;
	padding-bottom: 20px;
	display: none;
}

.header .inbox .nav .nLi .sub .inli .insub li {
	display: inline-block;
	width: 270px;
	white-space: normal;
	text-align: left;
}

.header .inbox .nav .nLi .sub .inli .insub li a {
	display: inline-block;
	margin-right: 40px;
	font-size: 13px;
	color: #737373;

	line-height: 1.8;
}

.header .inbox .nav .nLi .sub .inli .insub li a:nth-child(2n+0) {
	margin-right: 0;
}

.header .inbox .nav .nLi .sub .inli .insub li a {
	font-size: 13px;
	color: #737373;
}

.header .inbox .nav .yy {
	padding: 0 25px;
	cursor: pointer;
	float: left;
	position: relative;
}

.header .inbox .nav .yy:after {
	content: "";
	position: absolute;
	left: 0;
	top: 25px;
	height: 40px;
	width: 1px;
	background-color: #dedede;
}

.header .inbox .nav .yy:before {
	content: ">";

	position: absolute;
	top: 0;
	right: 2px;
	font-size: 12px;
	color: #8b8b8b;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.header .inbox .nav .yy.on:before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.header .inbox .nav .yy .word {
	font-size: 12px;
	color: #8b8b8b;
}

.header .inbox .nav .yy .word img,
.header .inbox .nav .yy .sub2 .inli1 .a3 img {
	width: 23px;
	height: 16px;
	margin-right: 5px;
}

.header .inbox .nav .yy .sub2 {
	position: absolute;
	top: 66px;
	border-left: 1px solid #dedede;
	border-right: 1px solid #dedede;
}

.header .inbox .nav .yy .sub2 .inli1 {
	border-bottom: 1px solid #dedede;
}

.header .inbox .nav .yy .sub2 .inli1 .a3 {
	display: block;
	height: 40px;
	line-height: 40px;
	color: #8b8b8b;
}

.header .inbox .nav .yy .sub2 .inli1 .a3 span {
	display: inline-block;
	width: 36px;
	text-align: center;
}

.header .search {
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #fff;
	height: 52px;
	line-height: 52px;
	padding-right: 15px;
}

.header .search:before {
	content: "";
	width: 50px;
	height: 52px;
	position: absolute;
	top: 0;
	left: -50px;
	background-image: url(../images/icon21.png);
}

.header .search form {
	line-height: 1;
}

.header .search form .input-box {
	position: relative;
	margin-top: 5px;
}

.header .search form .input-box input[type="text"] {
	width: 295px;
	height: 36px;
	border: 1px solid #cccccc;
	text-indent: 15px;
}

.header .search form .input-box input[type="submit"] {
	position: absolute;
	cursor: pointer;
	width: 58px;
	top: 0;
	right: 0;
	border: 0;
	border-left: 1px solid #cccccc;
	background-color: transparent;
	height: 100%;
	background-image: url(../images/icon20.png);
	background-repeat: no-repeat;
	background-position: center;
}

.header .li4 {
	float: left;
	margin-left: 10px;
	display: none;
	cursor: pointer;
	width: 30px;
	text-align: center;
}

.header .li4 img {
	width: 15px;
	height: 15px;
}

/*小屏幕搜索展开*/
.header .mm-searchBox {
	position: fixed;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.header .mm-searchBox .mask {
	position: absolute;
	top: 51px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
}

.header .mm-searchBox .mm-inbox {
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	background-color: #fff;
}

.header .mm-searchBox .input-box {
	position: relative;
}

.header .mm-searchBox .input-box input[type="text"] {
	width: 100%;
	height: 36px;
	text-indent: 10px;
	border: 0;
	background-color: transparent;
	color: #000;
	border-bottom: 1px solid #4184f5;
}

.header .mm-searchBox .input-box input[type="submit"] {
	position: absolute;
	top: 17px;
	right: 20px;
	width: 16px;
	height: 16px;
	background-image: url(../images/icon22.png);
	background-repeat: no-repeat;
	border: 0;
	background-color: transparent;
	cursor: pointer;
}

/*小屏幕搜索展开 End*/
/*小屏幕导航展开*/
.header .inbox .navBox .li3 {
	display: none;
	float: left;
	width: 24px;
	cursor: pointer;
	margin-left: 10px;
}

.header .inbox .navBox .li3 .box {
	height: 16px;
	position: relative;
}

.header .inbox .navBox .li3 .box .line {
	width: 24px;
	height: 2px;
	background-color: #4184f5;
	position: absolute;
	left: 0px;
	top: 7px;
}

.header .inbox .navBox .li3 .box .line1 {
	margin-top: -7px;
}

.header .inbox .navBox .li3 .box .line3 {
	margin-top: 7px;
}

.header .inbox .navBox .li3 .box[data-active="on"] .line1 {
	margin-top: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.header .inbox .navBox .li3 .box[data-active="on"] .line2 {
	display: none;
}

.header .inbox .navBox .li3 .box[data-active="on"] .line3 {
	margin-top: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mm-navBox {
	position: fixed;
	top: 50px;
	right: 0;
	background-color: #111;
	height: 100%;
	display: none;
}

.mm-navBox .mask {
	position: fixed;
	top: 0px;
	right: 100%;
	width: 1000px;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	display: none;
}

.mm-navBox .inmmbox {
	height: 100%;
	overflow-y: auto;
}

.mm-navBox .mm-nav {
	min-height: 100%;
}

.mm-navBox .mm-nav .mmli1 {
	line-height: 50px;
	position: relative;
}

.mm-navBox .mm-nav .mmli1 .linbox {
	border-bottom: 1px solid #fff;
}

.mm-navBox .mm-nav .mmli1 .abox {
	position: relative;
}

.mm-navBox .mm-nav .mmli1 .abox:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 6px;
	height: 6px;
	margin-top: -5px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mm-navBox .mm-nav .mmlinone .abox:after {
	display: none;
}

.mm-navBox .mm-nav .mmli1 .abox .click {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mm-navBox .mm-nav .mmli1 .mma1 {
	font-size: 16px;
	color: #fff;
	position: relative;
	z-index: 1;
}

.mm-navBox .mm-nav .mmlinone .mma1 {
	display: block;
}

.mm-navBox .mm-nav .mmli1 .mmsub {
	-webkit-transition: all .5s cubic-bezier(0, 1, 0.5, 1);
	-moz-transition: all .5s cubic-bezier(0, 1, 0.5, 1);
	-ms-transition: all .5s cubic-bezier(0, 1, 0.5, 1);
	-o-transition: all .5s cubic-bezier(0, 1, 0.5, 1);
	transition: all .5s cubic-bezier(0, 1, 0.5, 1);
	max-height: 0;
	overflow: hidden;
}

.mm-navBox .mm-nav .mmli1 .mmsub li {
	border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.mm-navBox .mm-nav .mmli1 .mmsub li a {
	color: rgba(255, 255, 255, .8);
	display: block;
	font-size: 12px;
	overflow: hidden;
	height: 32px;
	line-height: 32px;
}

.mm-navBox .mm-nav .mmli1 .mmsub li .mma2 {
	display: inline;
	position: absolute;
	border-bottom: 0;
	z-index: 10;
}

.mm-navBox .mm-nav .mmli1 .mmsub li .mmclickbox {
	position: relative;
	height: 32px;
	line-height: 32px;
}

.mm-navBox .mm-nav .mmli1 .mmsub li .mmclickbox:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 6px;
	height: 6px;
	margin-top: -5px;
	border-left: 1px solid #b3b3b3;
	border-bottom: 1px solid #b3b3b3;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mm-navBox .mm-nav .mmli1 .mmsub li .mmclickbox .mmclick {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mm-navBox .mm-nav .mmli1 .mmsub li ul {
	margin-bottom: 10px;
	display: none;
}

.mm-navBox .mm-nav .mmli1 .mmsub li ul li a {
	color: rgba(255, 255, 255, .6);
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.mm-navBox .mm-nav .mmli1 .mmsub li[data-on="active"] .mmclickbox:after {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.mm-navBox .mm-nav .mmli1 .mmsub li[data-on="active"] ul {
	display: block;
}

/*小屏幕导航展开 End*/
@media only screen and (min-width: 600px) {
	.header .inbox .nav .nLi .sub .inli:hover .a2 {
		color: #383838;
	}

	.header .inbox .nav .nLi:hover .a1 {
		color: #4184f5;
	}

	.header .inbox .nav .nLi:hover .line {
		width: 100%;
	}
}

@media only screen and (max-width: 1280px) {
	.header .inbox .nav .nLi {
		margin-right: 40px;
	}
}

@media only screen and (max-width: 1200px) {
	.header .inbox .nav .nLi {
		margin-right: 25px;
	}
}

@media only screen and (max-width: 1023px) {
	.header {
		height: 50px;
		line-height: 50px;
	}

	.header .inbox .logo img {
		height: 36px;
		width: 157px;
	}

	.header .search {
		display: none;
	}

	.header .inbox .nav .li1 {
		display: none;
	}

	.header .inbox .nav .yy:after {
		display: none;
	}

	.header .inbox .navBox .li3 {
		display: block;
		margin-top: 17px;
	}

	.mm-navBox {
		display: block;
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
		width: 400px;
	}

	.mm-navBox[data-active="on"] {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}

	.header .mm-searchBox {
		display: block;
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
		opacity: 0;
	}

	.header .mm-searchBox[data-active="on"] {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}

	.mm-navBox .mm-nav .mmli1[data-active="on"] .mmsub {
		max-height: none;
	}

	.mm-navBox .mm-nav .mmli1[data-active="on"] .abox:after {
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		transform: rotate(135deg);
	}

	.mm-navBox .mask {
		display: block;
		opacity: 0;
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
	}

	.mm-navBox[data-active="on"] .mask {
		opacity: 1;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}

	/*小屏幕语言点击*/
	.header .inbox .nav .yy .sub2 {
		top: 50px;
		opacity: 0;
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
		background-color: #fff;
		width: 100%;
		text-align: center;
		left: 12px;
	}

	.header .inbox .navBox .yy[data-active="on"] .sub2 {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}

	.header .inbox .nav .yy.on:before {
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}

	.header .inbox .nav .yy[data-active="on"]:before {
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	/*小屏幕语言点击 End*/
	.header .li4 {
		display: block;
	}
}

@media only screen and (max-width: 600px) {
	.mm-navBox .mm-nav .mmli1 {
		line-height: 40px;
	}

	.mm-navBox .mm-nav .mmli1 .mma1 {
		font-size: 14px;
	}

	.mm-navBox {
		width: 70%;
	}

	.header .li4,
	.header .inbox .navBox .li3 {
		margin-left: 5px;
	}

	.header .inbox .nav .yy {
		padding-left: 0;
		padding-right: 20px;
	}

	.header .inbox .logo img {
		width: 130px;
		height: 30px;
	}

	.header .inbox .nav .yy .sub2 {
		left: 0;
	}
}

/*头部 End*/
/*中间广告轮播*/
.all {
	max-width: 100%;
	overflow: hidden;
}

.banner {
	position: relative;
	margin-top: 90px;
	max-width: 100%;
}

.banner .my-swiper {
	background-color: #e8e8e8;
	height: 660px;
	width: 100%;
}

.banner .my-swiper .swiper-slide {
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	display: block;
}

.banner .my-swiper .swiper-slide img {
	width: 100%;
	display: none;
}

.banner .my-swiper .swiper-slide .inbox {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner .my-swiper .swiper-slide .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.banner .my-swiper .swiper-slide .box {
	height: auto;
	width: 450px;
	padding: 24px;
	background: -webkit-linear-gradient(to right, #3465b7 0px, #4e80d7 50%, #4184f5 100%);
	background: -moz-linear-gradient(to right, #3465b7 0px, #4e80d7 50%, #4184f5 100%);
	background: -ms-linear-gradient(to right, #3465b7 0px, #4e80d7 50%, #4184f5 100%);
	background: linear-gradient(to right, #3465b7 0px, #4e80d7 50%, #4184f5 100%);
}

.banner .my-swiper .swiper-slide .box .title {
	display: block;
	font-size: 25px;
	color: #fff;
	line-height: 1.2;
	overflow: hidden;

	height: 33px;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 70px;
	position: relative;
}

.banner .my-swiper .swiper-slide .box .title:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 40px;
	width: 15px;
	height: 15px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-top: -8px;
}

.banner .my-swiper .swiper-slide .box .desc {
	font-size: 12px;
	color: #ffffff;
	line-height: 21px;
	overflow: hidden;
	max-height: 42px;
	margin-top: 15px;
	margin-bottom: 25px;
}

.banner .my-swiper .swiper-slide .box .more {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	height: 34px;
	line-height: 34px;
	text-align: center;
	background-color: #363842;
	position: relative;
	padding-left: 42px;
	padding-right: 30px;
}

.banner .my-swiper .swiper-slide .box .more:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	width: 16px;
	height: 2px;
	background-color: #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.banner .my-swiper .swiper-slide .box .more:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 16px;
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	margin-top: -6px;
}

.banner .swiper-pagination {
	bottom: 32px;
	width: 100%;
	z-index: 1;
}

.banner .swiper-pagination .swiper-pagination-bullet {
	margin: 0;
	margin-right: 100px;
	background-color: #fff;
	width: 10px;
	height: 10px;
	opacity: 1;
	position: relative;
}

.banner .swiper-pagination .swiper-pagination-bullet:after {
	content: "";
	position: absolute;
	left: 100%;
	top: 50%;
	height: 1px;
	background-color: #fff;
	width: 100px;
}

.banner .swiper-pagination .swiper-pagination-bullet:last-child {
	margin-right: 0;
}

.banner .swiper-pagination .swiper-pagination-bullet:last-child:after {
	display: none;
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #1a73bc;
}

.banner .my-swiper .btn {
	position: absolute;
	top: 50%;
	margin-top: -30px;
	height: 60px;
	width: 60px;
	z-index: 10;
	cursor: pointer;
}

.banner .my-swiper .btn:before {
	content: "";
	width: 26px;
	height: 26px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -13px;
	margin-left: -13px;
}

.banner .my-swiper .my-prev:before {
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
}

.banner .my-swiper .my-next:before {
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
}

.banner .my-swiper .my-prev {
	left: 2.6%;
}

.banner .my-swiper .my-next {
	right: 2.6%;
}

@media only screen and (max-width: 1600px) {
	.banner .my-swiper {
		height: 600px;
	}
}

@media only screen and (max-width: 1440px) {
	.banner .my-swiper .my-prev {
		left: 10px;
	}

	.banner .my-swiper .my-next {
		right: 10px;
	}
}

@media only screen and (max-width: 1320px) {
	.banner .my-swiper .btn {
		display: none;
	}
}

@media only screen and (max-width: 1280px) {
	.banner .my-swiper {
		height: 550px;
	}

	.banner .my-swiper .my-prev {
		left: 3%;
	}

	.banner .my-swiper .my-next {
		right: 3%;
	}
}

@media only screen and (max-width: 1024px) {
	.banner .my-swiper {
		height: 500px;
	}

	.banner .my-swiper .swiper-slide .box {
		width: 67%;
	}

	.banner .my-swiper .swiper-slide .box .title {
		font-size: 32px;
		height: 38px;
	}

	.banner .my-swiper .swiper-slide .box .desc {
		font-size: 14px;
		line-height: 24px;
		max-height: 48px;
		margin-top: 10px;
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 1023px) {
	.banner {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 800px) {
	.banner .my-swiper {
		height: auto;
		overflow: visible;
	}

	.banner .my-swiper .swiper-slide img {
		display: block;
	}

	.banner .my-swiper .swiper-slide .inbox {
		height: auto;
		top: 100%;
	}

	.banner .swiper-pagination {
		display: none;
	}

	.banner .my-swiper .swiper-slide .box {
		width: 100%;
	}

	.banner .my-swiper .swiper-slide .wrap {
		width: 100%;
		-webkit-align-items: flex-end;
		align-items: flex-end;
	}

	.banner .my-swiper .swiper-slide .wrap .box {
		padding: 3% 3% 10px;
	}

	.banner .my-swiper .swiper-slide .box .more {
		width: 100%;
		text-align: left;
		padding-left: 40px;
		font-size: 14px;
		height: 40px;
		line-height: 40px;
	}

	.banner .my-swiper .swiper-slide .box .title {
		padding-right: 0;
	}

	.banner .my-swiper .swiper-slide .box .title:after {
		right: 6px;
	}

	.banner .my-swiper .btn {
		display: block;
		height: 40px;
		width: 40px;
		margin-top: -20px;
	}

	.banner .my-swiper .btn:before {
		width: 16px;
		height: 16px;
		margin-top: -8px;
		margin-left: -8px;
	}
}

@media only screen and (max-width: 600px) {
	.banner .my-swiper .swiper-slide .box .title {
		font-size: 24px;
		height: 28px;
	}

	.banner .my-swiper .swiper-slide .box .title:after {
		width: 10px;
		height: 10px;
		margin-top: -5px;
	}

	.banner .my-swiper .swiper-slide .box .desc {
		font-size: 12px;
		line-height: 20px;
		max-height: 40px;
		margin-top: 5px;
		margin-bottom: 10px;
	}

	.banner .my-swiper .swiper-slide .box .more {
		font-size: 12px;
		height: 30px;
		line-height: 30px;
	}
}

@media only screen and (max-width: 500px) {
	.banner .my-swiper {
		height: 172px;
	}

	.banner .my-swiper .swiper-slide img {
		display: none;
	}

	.banner .my-swiper .swiper-slide .box .title {
		font-size: 20px;
		height: 24px;
	}

}

/*中间广告轮播 End*/
/*新闻*/
.index-news {
	margin-top: 40px;
	position: relative;
}

.index-news .title {
	height: 30px;
	line-height: 30px;
	max-width: 1000px;
	width: 94%;
	margin-left: auto;
	margin-right: auto;
}

.index-news .title .left {
	font-size: 20px;
	color: #2b2b2b;

	float: left;
}

.index-news .title .more {
	display: block;
	float: right;
	color: #949393;
	font-size: 13px;
}

.index-news .title .more .zt {

	margin-left: 5px;
}

.news-swiper {
	margin-top: 32px;
	max-width: 1000px;
	width: 94%;
	margin-left: auto;
	margin-right: auto;
}

.news-swiper .line {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: #dddddd;
}

.news-swiper .swiper-slide {
	padding-right: 5%;
}

.news-swiper .swiper-slide:nth-child(2n+0) {
	padding-right: 0;
	padding-left: 5%;
}

.news-swiper .swiper-slide a {
	display: block;
}

.news-swiper .swiper-slide .title2 {

	font-size: 20px;
	color: #2b2b2b;
	line-height: 1.5;
	max-height: 60px;
	overflow: hidden;
}

.news-swiper .swiper-slide .data {
	font-size: 12px;
	color: #aaaaaa;
	font-weight: bold;
	margin-top: 24px;
	margin-bottom: 8px;
}

.index-news .btn {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.index-news .news-prev {
	left: 0;
}

.index-news .news-next {
	right: 0;
}

.index-news .btn:after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.index-news .news-prev:after {
	border-top: 2px solid #d2d4d7;
	border-left: 2px solid #d2d4d7;
}

.index-news .news-next:after {
	border-bottom: 2px solid #d2d4d7;
	border-right: 2px solid #d2d4d7;
}

@media only screen and (max-width: 1024px) {
	.index-news {
		margin-top: 4%;
	}

	.news-swiper {
		margin-top: 3.2%;
	}

	.news-swiper .swiper-slide .title2 {
		font-size: 18px;
		max-height: 54px;
	}

	.news-swiper .swiper-slide .data {
		margin-top: 15px;
		margin-bottom: 5px;
	}

	.index-news .btn {
		width: 20px;
		height: 20px;
	}

	.index-news .btn:after {
		margin-left: 0;
		left: 3px;
		width: 8px;
		height: 8px;
		margin-top: -4px;
	}
}

@media only screen and (max-width: 800px) {
	.index-news {
		margin-top: 210px;
		overflow: visible;
	}

	.index-news .news-prev {
		left: -1.5%;
	}

	.index-news .news-next {
		right: -1.5%;
	}

	.news-swiper .line {
		display: none;
	}

	.news-swiper .swiper-slide {
		padding-right: 0;
		margin-bottom: 10px;
	}

	.news-swiper .swiper-slide:nth-child(2n+0) {
		padding-left: 0;
	}

	.news-swiper .swiper-slide .data {
		margin-top: 8px;
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 600px) {
	.index-news {
		margin-top: 160px;
	}

	.news-swiper .swiper-slide .title2 {
		font-size: 16px;
		max-height: 48px;
	}
}

@media only screen and (max-width: 500px) {
	.index-news {
		margin-top: 145px;
	}

	.news-swiper .swiper-slide .title2 {
		font-size: 14px;
		max-height: none;
		height: 21px;
		white-space: nowrap;
		-ms-text-overflow: ellipsis;
		text-overflow: ellipsis;
	}

	.news-swiper .swiper-slide .data {
		margin-top: 4px;
	}

	.news-swiper .swiper-slide {
		margin-bottom: 5px;
	}

	.index-news .title .left {
		height: 24px;
		line-height: 24px;
	}

	.news-swiper {
		margin-top: 1%;
	}
}

@media only screen and (max-width: 414px) {
	.index-news {
		margin-top: 140px;
	}
}

/*新闻 ENd*/
/*产品*/
.index-product {
	padding-top: 50px;
	padding-bottom: 65px;
	background-color: #ebf0f5;
	margin-top: 45px;
}

.index-product .btitle {
	font-size: 36px;
	color: #2b2b2b;

	text-align: center;
}

.index-product .bdesc {
	text-align: center;
	font-size: 20px;
	color: #2b2b2b;

	margin-top: 12px;
	margin-bottom: 55px;
}

.index-product .ininbox {
	padding: 15px 8.3% 15px 20px;
	overflow: hidden;
	border: 1px solid #d6d6d6;
	background-color: #fff;
	position: relative;
	height: 152px;
}

.index-product .ininbox .product-swiper {
	height: 100%;
}

.product-swiper .swiper-slide a {
	display: block;
	height: 100%;
}

.product-swiper .swiper-slide a .left {
	width: 200px;
	float: left;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
}

.product-swiper .swiper-slide a .left .inleft {
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: inline-block;
}

.product-swiper .swiper-slide a .left img {
	max-width: 100%;
}

.product-swiper .swiper-slide a .right {
	float: right;
	width: calc(100% - 220px);
}

.product-swiper .swiper-slide a .right .title {
	font-size: 18px;
	color: #2b2b2b;

	line-height: 1.5;
	height: 27px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin-top: 12px;
}

.product-swiper .swiper-slide a .right .line {
	width: 15px;
	height: 2px;
	background-color: #000;
	margin-top: 10px;
	margin-bottom: 15px;
}

.product-swiper .swiper-slide a .right .desc {
	font-size: 12px;
	color: #696969;
	line-height: 1.5;
	height: 18px;
	margin-bottom: 10px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;

}

.product-swiper .swiper-slide a .right .more {
	font-size: 12px;
	color: #4184f5;

}

.index-product .ininbox .btn {
	position: absolute;
	right: 20px;
	width: 30px;
	height: 20px;
	cursor: pointer;
}

.index-product .ininbox .product-prev {
	top: 50px;
}

.index-product .ininbox .product-next {
	top: 80px;
}

.index-product .ininbox .btn:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 50%;
	left: 50%;
	margin-top: -5px;
	margin-left: -6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.index-product .ininbox .product-prev:before {
	content: "";
	width: 24px;
	background-color: #4184f5;
	height: 1px;
	position: absolute;
	left: 3px;
	top: 25px;
}

.index-product .ininbox .product-prev:after {
	border-top: 2px solid #cbced2;
	border-right: 2px solid #cbced2;
}

.index-product .ininbox .product-next:after {
	border-bottom: 2px solid #cbced2;
	border-left: 2px solid #cbced2;
}

@media only screen and (max-width: 1024px) {
	.index-product .btitle {
		font-size: 32px;
	}

	.index-product {
		margin-top: 4.5%;
		padding-top: 6%;
		padding-bottom: 6.5%;
	}

	.index-product .bdesc {
		font-size: 18px;
		margin-bottom: 5.5%;
		margin-top: 10px;
	}
}

@media only screen and (max-width: 800px) {
	.product-swiper .swiper-slide a .right .desc {
		display: none;
	}

	.product-swiper .swiper-slide a .right .line {
		display: none;
	}

	.index-product .bdesc {
		font-size: 16px;
	}

	.index-product .btitle {
		font-size: 28px;
	}

	.product-swiper .swiper-slide a .right .title {
		margin-top: 20px;
		margin-bottom: 10px;
	}

	.product-swiper .swiper-slide a .left {
		width: 160px;
	}

	.product-swiper .swiper-slide a .left .inleft {
		width: 96px;
	}

	.index-product .ininbox {
		height: 128px;
	}

	.product-swiper .swiper-slide a .right {
		width: calc(100% - 180px);
	}

	.index-product .ininbox .product-prev {
		top: 35px;
	}

	.index-product .ininbox .product-next {
		top: 65px;
	}
}

@media only screen and (max-width: 600px) {
	.index-product .btitle {
		font-size: 24px;
	}

	.index-product .bdesc {
		font-size: 14px;
	}

	.product-swiper .swiper-slide a .right .title {
		font-size: 16px;
		line-height: 24px;
		margin-top: 10px;
		margin-bottom: 25px;
	}

	.index-product .ininbox {
		padding: 10px 8.3% 10px 10px;
		height: 118px;
	}

	.index-product .ininbox .product-prev {
		top: 30px;
	}

	.index-product .ininbox .product-next {
		top: 60px;
	}

	.index-product .ininbox .btn {
		right: 10px;
	}
}

@media only screen and (max-width: 500px) {
	.index-product .ininbox {
		height: 94px;
	}

	.product-swiper .swiper-slide a .right {
		width: calc(100% - 135px);
	}

	.product-swiper .swiper-slide a .right .title {
		margin-bottom: 15px;
		font-size: 14px;
		line-height: 21px;
		height: 21px;
	}

	.index-product .ininbox .product-prev {
		top: 18px;
	}

	.index-product .ininbox .product-next {
		top: 48px;
	}

	.product-swiper .swiper-slide a .left {
		width: 120px;
	}

	.product-swiper .swiper-slide a .left .inleft {
		width: 72px;
	}
}

/*产品分类*/
.indexproduct-class {
	margin-top: 40px;
	padding-bottom: 100px;
	position: relative;
}

.pclass-swiper .swiper-slide a {
	display: block;
}

.pclass-swiper .swiper-slide .left {
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.pclass-swiper .swiper-slide .left img {
	width: 100%;
}

.pclass-swiper .swiper-slide .title {
	font-size: 18px;
	color: #2b2b2b;

	line-height: 1.5;
	height: 27px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin-top: 15px;
}

.pclass-swiper .swiper-slide .line {
	width: 16px;
	height: 1px;
	background-color: #000000;
	margin-top: 10px;
	margin-bottom: 20px;
}

.pclass-swiper .swiper-slide .desc a {
	font-size: 13px;
	color: #4184f5;

	line-height: 20px;
	height: 20px;
	overflow: hidden;
	float: left;
	margin-bottom: 3px;
}

.pclass-swiper .swiper-slide .desc a span {
	margin-left: 15px;
	margin-right: 15px;
}

.pclass-swiper .swiper-slide .desc a:last-child span {
	display: none;
}

.indexproduct-class .btn {
	position: absolute;
	bottom: 0;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 10;
}

.indexproduct-class .pclass-prev {
	left: 0;
}

.indexproduct-class .pclass-next {
	right: 0;
}

.indexproduct-class .btn:after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 10px;
	margin-top: -10px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.indexproduct-class .pclass-prev:after {
	border-top: 2px solid #a4a8ac;
	border-left: 2px solid #a4a8ac;
}

.indexproduct-class .pclass-next:after {
	border-bottom: 2px solid #a4a8ac;
	border-right: 2px solid #a4a8ac;
}

.indexproduct-class .pclass-pagination {
	text-align: center;
	bottom: 10px;
	position: absolute;
	left: 0;
	width: 100%;
}

.indexproduct-class .pclass-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin-right: 25px;
}

.indexproduct-class .pclass-pagination .swiper-pagination-bullet:last-child {
	margin-right: 0;
}

.indexproduct-class .pclass-pagination .swiper-pagination-bullet-active {
	background-color: #4184f5;
}

@media only screen and (max-width: 800px) {
	.indexproduct-class {
		margin-top: 5%;
		padding-bottom: 80px;
	}

	.pclass-swiper .swiper-slide .title {
		margin-top: 10px;
	}

	.pclass-swiper .swiper-slide .line {
		margin-top: 5px;
		margin-bottom: 12px;
	}
}

@media only screen and (max-width: 640px) {
	.indexproduct-class {
		padding-bottom: 60px;
	}

	.pclass-swiper .swiper-slide .desc a span {
		display: none;
	}

	.pclass-swiper .swiper-slide .desc a {
		margin-right: 10px;
	}
}

/*产品分类 End*/

/*产品 End*/

/*关于我们*/
.index-about {
	height: 480px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	padding-top: 85px;
}

.index-about .title {
	color: #fff;
	font-size: 36px;

	line-height: 48px;
	height: 48px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	text-align: center;
}

.index-about .desc {
	font-size: 20px;
	color: #ffffff;

	line-height: 1.5;
	height: 30px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	text-align: center;
}

.index-about .more {
	display: block;
	width: 135px;
	height: 50px;
	line-height: 52px;
	margin: 200px auto 0;
	background-color: #1f212d;
	text-align: center;
	color: #fff;
	font-size: 13px;

}

@media only screen and (max-width: 1024px) {
	.index-about {
		height: 420px;
		padding-top: 60px;
	}
}

@media only screen and (max-width:800px) {
	.index-about .title {
		font-size: 30px;
		line-height: 40px;
		height: 40px;
	}

	.index-about .desc {
		font-size: 18px;
		height: 27px;
	}
}

@media only screen and (max-width:600px) {
	.index-about {
		height: 360px;
		padding-top: 40px;
	}

	.index-about .more {
		margin-top: 170px;
	}

	.index-about .title {
		font-size: 24px;
		line-height: 36px;
		height: 36px;
	}

	.index-about .desc {
		font-size: 16px;
		height: 24px;
	}
}

@media only screen and (max-width:414px) {
	.index-about {
		height: 300px;
	}

	.index-about .more {
		margin-top: 120px;
		font-size: 12px;
		height: 44px;
		line-height: 46px;
	}
}

@media only screen and (max-width:360px) {
	.index-about .title {
		font-size: 20px;
		line-height: 30px;
		height: 30px;
	}

	.index-about .desc {
		font-size: 14px;
		height: 21px;
	}
}

/*关于我们 End*/
/*联系我们*/
.index-contact {
	margin-top: 70px;
	margin-bottom: 75px;
}

.index-contact .title {
	font-size: 36px;
	color: #2b2b2b;

	text-align: center;
}

.index-contact .desc {
	font-size: 20px;
	color: #2b2b2b;

	line-height: 1.5;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 32px;
}

.index-contact .inbox {
	text-align: center;
}

.index-contact .inbox .item {
	display: inline-block;
	width: 400px;
	vertical-align: top;
}

.index-contact .inbox .left {
	margin-right: 30px;
}

.index-contact .inbox .item .stitle {
	font-size: 13px;
	color: #787878;

	line-height: 20px;
	height: 40px;
	overflow: hidden;
	padding-left: 5%;
	padding-right: 5%;
}

.index-contact .inbox .item .more {
	display: block;
	width: 100%;
	height: 72px;
	line-height: 72px;
	color: #fff;

	font-size: 20px;
	background-color: #4d5665;
	border-radius: 5px;
	margin-top: 15px;
}

.index-contact .inbox .item .more span {

	margin-left: 10px;
}

@media only screen and (max-width:1280px) {
	.index-contact {
		margin-top: 55px;
		margin-bottom: 60px;
	}
}

@media only screen and (max-width:1024px) {
	.index-contact .inbox .item {
		width: 41%;
	}

	.index-contact {
		margin-top: 5.5%;
		margin-bottom: 6%;
	}
}

@media only screen and (max-width:800px) {
	.index-contact .title {
		font-size: 30px;
	}

	.index-contact .desc {
		font-size: 18px;
		margin-top: 10px;
		margin-bottom: 25px;
	}

	.index-contact .inbox .item .more {
		height: 56px;
		line-height: 56px;
	}
}

@media only screen and (max-width:600px) {
	.index-contact .title {
		font-size: 24px;
	}

	.index-contact .desc {
		font-size: 15px;
		margin-bottom: 15px;
	}

	.index-contact .inbox .item .stitle {
		padding: 0;
	}

	.index-contact .inbox .item .more {
		height: 44px;
		line-height: 44px;
		font-size: 18px;
	}

	.index-contact .inbox .item {
		width: 47%;
		float: left;
	}

	.index-contact .inbox .left {
		margin-right: 0;
	}

	.index-contact .inbox .right {
		float: right;
	}
}

@media only screen and (max-width:414px) {
	.index-contact .inbox .item .more {
		height: 34px;
		line-height: 34px;
		font-size: 15px;
	}
}

/*联系我们 End*/
/*底部*/
.footer {
	padding-top: 50px;
	padding-bottom: 20px;
	background: -webkit-linear-gradient(to right, #1f212d 0px, #1f212d 100%, #1f212d 100%);
	background: -moz-linear-gradient(to right, #1f212d 0px, #1f212d 100%, #1f212d 100%);
	background: -ms-linear-gradient(to right, #1f212d 0px, #1f212d 100%, #1f212d 100%);
	background: linear-gradient(to right, #1f212d 0px, #1f212d 100%, #1f212d 100%);
}

.footer .upper {
	overflow: visible;
}

.footer .upper .left {
	float: left;
	width: 50%;
}

.footer .upper .left .ul1 .li1 {
	float: left;
	width: 151px;
}

.footer .upper .left .ul1 .li2 {
	width: 220px;
}

.footer .upper .left .ul1 .li1 .a1 {
	display: block;
	font-size: 13px;
	color: #4184f5;

	margin-bottom: 30px;
}

.footer .upper .left .ul1 .li1 ul li {
	margin-bottom: 25px;
}

.footer .upper .left .ul1 .li1 ul li a {
	display: block;
	color: #fff;
	font-size: 13px;

	height: 15px;
	overflow: hidden;
}

.footer .upper .left .ul1 .li2 ul li {
	float: left;
	width: 145px;
}

.footer .upper .left .ul1 .li2 ul li:nth-child(2n+0) {
	width: 75px;
}

.footer .upper .right {
	float: right;
	max-width: 50%;
}

.footer .upper .right .title {
	font-size: 13px;
	color: #fff;

}

.footer .upper .right .toolbar {
	margin-top: 30px;
	padding-bottom: 15px;
	margin-bottom: 45px;
	position: relative;
}

.footer .upper .right .toolbar .line {
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../images/icon07.png);
	background-repeat: repeat-x;
	width: 100%;
	height: 1px;
}

.footer .upper .right .toolbar .weixin {
	position: relative;
	background-image: url(../images/icon06.png);
	background-repeat: no-repeat;
	cursor: pointer;
}

.footer .upper .right .toolbar .weixin .ewm {
	position: absolute;
	bottom: 100%;
	width: 100px;
	height: 100px;
	left: -45px;
	max-width: none;
	-webkit-transform: scale(0.0001);
	-moz-transform: scale(0.0001);
	-ms-transform: scale(0.0001);
	-o-transform: scale(0.0001);
	transform: scale(0.0001);
}

.footer .upper .right .toolbar .weixin:hover .ewm {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.footer .upper .right .toolbar .tool {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 30px;
	vertical-align: middle;
}

.footer .upper .right .toolbar .weixin {
	margin-left: 0;
}

.footer .upper .right .img img {
	height: 95px;
	margin-left: 15px;
}

.footer .upper .right .img img:first-child {
	margin-left: 0;
}

.footer .line2 {
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, .3);
	margin-bottom: 20px;
	margin-top: 60px;
}

.footer .bottom .left {
	float: left;
	width: 50%;
	color: #ffffff;
	font-size: 12px;

	line-height: 2;
	width: calc(100% - 90px);
}

.footer .bottom .right {
	float: right;
	font-size: 12px;
	color: #ffffff;

	line-height: 32px;
	cursor: pointer;
}

.footer .bottom .right .word {
	display: inline-block;
	margin-right: 10px;
	border-bottom: 1px solid #fff;
	vertical-align: middle;
	line-height: 20px;
}

@media only screen and (max-width:1024px) {
	.footer .line2 {
		margin-top: 6%;
	}
}

@media only screen and (max-width:800px) {
	.footer .upper .left .ul1 .li1 {
		width: 100%;
	}

	.footer .upper .left .ul1 .li1 ul li {
		float: left;
		width: 50%;
		padding-right: 3%;
		margin-bottom: 20px;
	}

	.footer .upper .left .ul1 .li1 ul li:nth-child(2n+0) {
		padding-right: 0;
		width: 50%;
	}

	.footer .upper .left .ul1 .li1 .a1 {
		margin-bottom: 25px;
	}

	.footer {
		padding-top: 40px;
	}
}

@media only screen and (max-width:600px) {

	.footer .upper .left,
	.footer .upper .right {
		float: none;
		width: 100%;
		max-width: 100%;
	}

	.footer .upper .right .toolbar .weixin {
		display: none;
	}

	.footer .upper .right .toolbar .tool:nth-child(2) {
		margin-left: 0;
	}

	.footer {
		padding-top: 6.6%;
	}

	.footer .upper .left .ul1 .li1 .a1 {
		margin-bottom: 15px;
	}

	.footer .upper .left .ul1 .li1 ul li {
		margin-bottom: 10px;
	}

	.footer .upper .right .toolbar {
		margin-top: 20px;
		margin-bottom: 20px;
		padding: 0;
	}

	.footer .upper .right .toolbar .line {
		display: none;
	}

	.footer .line2 {
		margin-bottom: 10px;
	}

	.footer .upper .right .img img {
		height: 50px;
	}

	.footer .upper .right .toolbar {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.footer .upper .right .toolbar .tool {
		margin-left: 10px;
	}
}

@media only screen and (max-width:414px) {
	.footer .upper .left .ul1 .li1 .a1 {
		margin-bottom: 10px;
	}

	.footer .upper .left .ul1 .li1 ul li {
		margin-bottom: 6px;
	}
}

/*底部 End*/
/*侧边工具栏*/
.toolbar-box {
	position: fixed;
	bottom: 50px;
	right: 20px;
	z-index: 99;
}

.toolbar-box .ul1 {
	border-bottom: 1px solid #d6d6d6;
}

.toolbar-box .ul1 li .a1 {
	display: block;
	width: 48px;
	height: 44px;
	border: 1px solid #d6d6d6;
	border-bottom: 0;
}

.toolbar-box .ul1 li:last-child .a1 {
	border-bottom: none;
}

.toolbar-box .ul1 li .qq {
	width: 48px;
	height: 44px;
	position: relative;
	border: 1px solid #d6d6d6;
	border-bottom: 0;
}

.toolbar-box .ul1 li .icon {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 60px;
	text-align: center;
	cursor: pointer;
	background-color: #fff;
	position: relative;
}

.toolbar-box .ul1 li .icon img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 21px;
	height: 21px;
	margin-top: -10px;
	margin-left: -10px;
}

.toolbar-box .ul1 li .icon .img1 {
	z-index: 1;
}

.toolbar-box .ul1 li .icon .img2 {
	opacity: 0;
}

.toolbar-box .ul1 li .weixin {
	position: relative;
}

.toolbar-box .ul1 li .weixin .ewm {
	position: absolute;
	top: -44px;
	left: -134px;
	width: 132px;
	height: 132px;
	-webkit-transform: scale(0.0001);
	-moz-transform: scale(0.0001);
	-ms-transform: scale(0.0001);
	-o-transform: scale(0.0001);
	transform: scale(0.0001);
	max-width: none;
}

.toolbar-box .ul1 li .qq .hover-box {
	position: absolute;
	top: -20px;
	right: 60px;
	width: 142px;
	border: 1px solid #d9d9d9;
	background-color: #fff;
	font-size: 12px;
	color: #e94f25;
	line-height: 24px;
	z-index: 12;
	text-align: center;
	padding: 15px 0;
	border-radius: 5px;
	-webkit-transform: scale(0.0001);
	-moz-transform: scale(0.0001);
	-ms-transform: scale(0.0001);
	-o-transform: scale(0.0001);
	transform: scale(0.0001);
}

.toolbar-box .ul1 li .qq .hover-box:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -10px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-left: 10px solid #d9d9d9;
	border-bottom: 10px solid transparent;
	margin-top: -10px;
}

.toolbar-box .ul1 li .qq .hover-box:after {
	content: " ";
	position: absolute;
	top: 50%;
	right: -9px;
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-left: 9px solid #fff;
	border-bottom: 9px solid transparent;
	margin-top: -9px;
}

.toolbar-box .ul1 li .qq .hover-box .hb-span {
	font-size: 14px;
	color: #515151;
	font-weight: bold;

}

.toolbar-box .ul1 li .qq .hover-box a {
	font-size: 14px;
	color: #4184f5;
	font-weight: bold;
	display: block;
}

.toolbar-box .ul1 .back-top {
	display: none;
}

@media only screen and (min-width: 600px) {
	.toolbar-box .ul1 li .icon:hover .img1 {
		z-index: -1;
		opacity: 0;
	}

	.toolbar-box .ul1 li .icon:hover .img2 {
		opacity: 1;
	}

	.toolbar-box .ul1 li .weixin:hover .ewm,
	.toolbar-box .ul1 li .qq:hover .hover-box {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
}

@media only screen and (max-width: 600px) {
	.toolbar-box {
		right: 10px;
	}

	.toolbar-box .ul1 li .weixin[data-on="hover"] .ewm,
	.toolbar-box .ul1 li .qq[data-on="hover"] .hover-box {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}

	.toolbar-box .ul1 li .weixin[data-on="hover"] .icon .img1,
	.toolbar-box .ul1 li .qq[data-on="hover"] .icon .img1 {
		z-index: -1;
		opacity: 0;
	}

	.toolbar-box .ul1 li .weixin[data-on="hover"] .icon .img2,
	.toolbar-box .ul1 li .qq[data-on="hover"] .icon .img2 {
		opacity: 1;
	}
}

/*侧边工具栏 End*/
/* =========

  背景大图

  ========== */
.allbg {
	margin-top: 90px;
	height: 500px;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	background-color: #ccc;
}

.allbg .box .title {
	font-size: 48px;
	color: #ffffff;

}

@media only screen and (max-width: 1600px) {
	.allbg {
		height: 450px;
	}
}

@media only screen and (max-width: 1440px) {
	.allbg {
		height: 416px;
	}
}

@media only screen and (max-width: 1280px) {
	.allbg {
		height: 375px;
	}

	.allbg .box .title {
		font-size: 42px;
	}
}

@media only screen and (max-width: 1024px) {
	.allbg {
		height: 333px;
		margin-top: 50px;
	}

	.allbg .box .title {
		font-size: 36px;
	}
}

@media only screen and (max-width: 600px) {
	.allbg {
		height: 300px;
	}

	.allbg .box .title {
		font-size: 32px;
	}
}

@media only screen and (max-width: 414px) {
	.allbg {
		height: 250px;
	}

	.allbg .box .title {
		font-size: 26px;
	}
}

/* =========

  关于我们

  ========== */
.innav {
	height: 78px;
	line-height: 78px;
	border-bottom: 1px solid #e6e6e6;
	font-size: 13px;
}

.innav .inbox .gt {
	color: #b2b2b2;

	margin: 0 5px 0 8px;
}

.innav .inbox a {
	color: #2b2b2b;

}

.innav .inbox .active {
	color: #4184f5;
}

.comContent {
	margin-top: 45px;
	margin-bottom: 85px;
}

.comContent .title {
	font-size: 36px;
	color: #2b2b2b;

}

.comContent .desc {
	font-size: 16px;
	color: #5e5e5e;

	margin-top: 10px;
	line-height: 1.5;
}

.about-profileBox {
	color: #2b2b2b;
	font-size: 14px;
	line-height: 2;
}

.comLinkBox {
	margin-top: 95px;
	margin-bottom: 110px;
}

.comLinkBox .title {
	font-size: 30px;
	color: #2b2b2b;

	text-align: center;
	margin-bottom: 30px;
}

.comLinkBox .inbox {
	max-width: 1000px;
	margin: 0 auto;
}

.comLinkBox .inbox .item {
	display: block;
	float: left;
	width: calc(50% - 6px);
	height: 42px;
	line-height: 42px;
	position: relative;
	background-color: #efefef;
	padding-left: 15px;
	color: #212121;
	font-size: 14px;

	margin-bottom: 10px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.comLinkBox .inbox .item:after {
	content: ">";

	color: #4184f5;
	font-size: 14px;
	position: absolute;
	top: 0;
	right: 15px;
}

.comLinkBox .inbox .item:nth-child(2n+0) {
	float: right;
}

@media only screen and (max-width:1024px) {
	.innav {
		height: 64px;
		line-height: 64px;
	}

	.comContent {
		margin-top: 4.5%;
		margin-bottom: 6.5%;
	}

	.comContent .title {
		font-size: 32px;
	}

	.comLinkBox {
		margin-top: 9%;
		margin-bottom: 10%;
	}

	.comLinkBox .title {
		font-size: 26px;
		margin-bottom: 25px;
	}
}

@media only screen and (max-width:800px) {
	.innav {
		height: 52px;
		line-height: 52px;
	}

	.comContent .title {
		font-size: 28px;
	}

	.comLinkBox .title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.comLinkBox .inbox .item {
		height: 36px;
		line-height: 36px;
	}
}

@media only screen and (max-width:600px) {
	.comContent .title {
		font-size: 24px;
	}

	.comLinkBox .title {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.comContent .desc {
		font-size: 14px;
	}

	.comLinkBox .inbox .item {
		height: 30px;
		line-height: 30px;
		font-size: 12px;
	}
}

@media only screen and (max-width:500px) {
	.comLinkBox .inbox .item {
		padding-left: 8px;
	}

	.comLinkBox .inbox .item:after {
		right: 8px;
		font-size: 12px;
	}
}

@media only screen and (min-width:500px) {
	.comLinkBox .inbox .item:hover {
		color: #4184f5;
	}
}

/*about-historyBox*/
.aboutComBox .title {
	font-size: 18px;
	color: #4184f5;
	font-weight: bold;

	margin-bottom: 15px;
}

.about-historyBox .itemBox {
	border-top: 1px dotted #292929;
	padding-top: 30px;
	margin-bottom: 45px;
}

.about-historyBox .itemBox:last-child {
	margin-bottom: 0;
}

.about-historyBox .itemBox .left {
	font-size: 24px;
	color: #bbbbbb;
	font-weight: bold;
	float: left;
	width: 19%;
}

.about-historyBox .itemBox .left span {
	margin: 0 5px;
}

.about-historyBox .itemBox .right {
	float: left;
	width: 81%;
}

.about-historyBox .itemBox .right .item {
	font-size: 14px;
	color: #2b2b2b;

	margin-bottom: 15px;
}

.about-historyBox .itemBox .right .item .data {
	float: left;
	width: 70px;
	line-height: 1.5;
}

.about-historyBox .itemBox .right .item .desc {
	float: right;
	width: calc(100% - 70px);
	line-height: 1.5;
}

@media only screen and (max-width:1024px) {
	.about-historyBox .itemBox {
		margin-bottom: 4.5%;
	}

	.about-historyBox .itemBox .right .item {
		margin-bottom: 12px;
	}

	.about-historyBox .itemBox .left {
		font-size: 20px;
	}
}

@media only screen and (max-width:800px) {
	.about-historyBox .itemBox {
		padding-top: 3.75%;
	}

	.about-historyBox .itemBox .left {
		font-size: 18px;
		width: 130px;
	}

	.about-historyBox .itemBox .right {
		width: calc(100% - 130px);
	}

	.about-historyBox .itemBox .right .item .data {
		width: 55px;
	}

	.about-historyBox .itemBox .right .item .desc {
		width: calc(100% - 55px);
	}

	.about-historyBox .itemBox .right .item {
		margin-bottom: 8px;
	}
}

@media only screen and (max-width:600px) {

	.about-historyBox .itemBox .left,
	.about-historyBox .itemBox .right {
		float: none;
		width: 100%;
	}

	.about-historyBox .itemBox .left {
		margin-bottom: 3%;
	}
}

/*about-historyBox End*/

/*about-honorBox*/
.about-honorBox .dotted {
	border-bottom: 1px dotted #292929;
}

.about-honorBox .imgBox {
	margin-top: 50px;
}

.about-honorBox .imgBox .item {
	float: left;
	width: 30.16%;
	margin-right: 4.76%;
	margin-bottom: 60px;
	cursor: pointer;
}

.about-honorBox .imgBox .item:nth-child(3n+0) {
	margin-right: 0;
}

.about-honorBox .imgBox .item .itemimg {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}

.about-honorBox .imgBox .item .itemimg img {
	width: 100%;
}

.about-honorBox .imgBox .item .item-title {
	font-size: 14px;
	color: #4a4a4a;

	text-align: center;
	margin-top: 40px;
	line-height: 1.5;
	height: 21px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.layui-layer-content img {
	max-width: 724px;
	width: 100%;
}

.layui-layer-content .intitle {
	font-size: 20px;
	text-align: center;
	height: 30px;
	line-height: 1.5;
	background-color: #fff;

}

/*分页*/
.fenye {
	text-align: center;
}

.fenye a {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	font-size: 12px;
	color: #666666;
	border: 1px solid #dedede;
	margin-right: 2px;
	background-color: #fafafa;
}

.fenye a.active {
	color: #4184f5;
	border: 0;
	font-weight: bold;
}

.fenye a.more {
	border: 0;
	color: #666666;
}

.fenye .prev,
.fenye .next {
	/*width: 72px;*/
	width: auto;
	padding: 0 10px;
	color: #666666;
	font-size: 12px;

}

.fenye .prev span,
.fenye .next span {

	margin-right: 5px;
}

.fenye .next span {
	margin-left: 5px;
	margin-right: 0;
}

.fenye .disable {
	color: #cccccc;
	border-color: #cccccc;
}

@media only screen and (min-width:500px) {
	.fenye a:hover {
		color: #4184f5;
		border-color: #4184f5;
	}

	.fenye .disable:hover {
		color: #cccccc;
		border-color: #cccccc;
	}
}

@media only screen and (max-width:1280px) {
	.about-honorBox .imgBox .item {
		margin-bottom: 50px;
		width: 31%;
		margin-right: 3.5%;
	}

	.about-honorBox .imgBox .item .item-title {
		margin-top: 30px;
	}
}

@media only screen and (max-width:1024px) {
	.about-honorBox .imgBox {
		margin-top: 5%;
	}

	.about-honorBox .imgBox .item {
		width: 32%;
		margin-right: 2%;
	}

	.about-honorBox .imgBox .item .item-title {
		margin-top: 3%;
	}

	.about-honorBox .imgBox .item {
		margin-bottom: 5%;
	}
}

@media only screen and (max-width:800px) {
	.about-honorBox .imgBox .item {
		width: 49%;
	}

	.about-honorBox .imgBox .item:nth-child(3n+0) {
		margin-right: 2%;
	}

	.about-honorBox .imgBox .item:nth-child(2n+0) {
		margin-right: 0;
	}
}

@media only screen and (max-width:500px) {
	.fenye {
		margin-top: 3%;
	}

	.layui-layer-content .intitle {
		font-size: 16px;
		line-height: 30px;
	}
}

/*分页 End*/
/*about-honorBox*/
/*about-cultureBox*/
.about-cultureBox {
	margin-top: 90px;
	font-size: 14px;
	color: #2b2b2b;
	line-height: 2;
	overflow: hidden;
}

@media only screen and (max-width:1280px) {
	.about-cultureBox {
		margin-top: 70px;
	}
}

@media only screen and (max-width:1024px) {
	.about-cultureBox {
		margin-top: 7%;
	}
}

/*about-cultureBox End*/
/* =========

  联系我们

  ========== */
.contact-upper-title {
	font-size: 30px;
	color: #4184f5;

	line-height: 1.4;
	margin-bottom: 15px;
}

.contact-upper {
	color: #747474;
	line-height: 2;
	padding-bottom: 60px;
	border-bottom: 1px solid #e6e6e6;
	position: relative;
}

.contact-upper .line {
	position: absolute;
	height: 1px;
	width: 1px;
	left: 0;
	bottom: 90px;
}

.contact-bottom {
	margin-top: 50px;
}

.contact-bottom .title {
	font-size: 16px;
	color: #5e5e5e;
	margin-bottom: 40px;
	line-height: 1.5;
}

.contact-bottom .contact-form .input-box {
	width: 32.08%;
	float: left;
	margin-right: 1.88%;
	margin-bottom: 20px;
}

.contact-bottom .contact-form .input-box:nth-child(3) {
	margin-right: 0;
}

.contact-bottom .contact-form .label {
	font-size: 14px;
	color: #2b2b2b;

	font-weight: bold;
	display: block;
	margin-bottom: 12px;
}

.contact-bottom .contact-form .input-box input[type="text"] {
	border: 0;
	width: 100%;
	height: 30px;
	background-color: #eceeef;
	text-indent: 10px;
}

.contact-bottom .contact-form .text-title {
	margin-top: 40px;
	font-size: 14px;
	color: #888888;
	display: block;
}

.contact-bottom .contact-form textarea {
	height: 160px;
	width: 100%;
	border: 0;
	background-color: #eceeef;
	text-indent: 10px;
	padding-top: 10px;
}

.contact-bottom .contact-form input[type="submit"] {
	width: 120px;
	height: 36px;
	border: 0;
	font-size: 13px;
	font-weight: bold;

	color: #fff;
	cursor: pointer;
	background-color: #4184f5;
	margin-top: 40px;
}

@media only screen and (max-width:1024px) {
	.contact-upper {
		padding-bottom: 6%;
	}

	.contact-bottom {
		margin-top: 5%;
	}

	.contact-bottom .title {
		margin-bottom: 4%;
	}

	.contact-bottom .contact-form input[type="submit"] {
		margin-top: 4%;
	}

	.contact-upper-title {
		font-size: 24px;
		margin-bottom: 10px;
	}
}

@media only screen and (max-width:800px) {
	.contact-upper-title {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.contact-upper .line {
		bottom: 50px;
	}
}

@media only screen and (max-width:500px) {
	.contact-bottom .title {
		font-size: 14px;
	}

	.contact-bottom .contact-form .input-box {
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 12px;
	}

	.contact-upper-title {
		font-size: 18px;
		margin-bottom: 0px;
	}
}

/*careerBox*/
.careerBox .title {
	font-size: 24px;
	color: #4a4a4a;

	margin-bottom: 15px;
}

.careerBox .th {
	font-size: 14px;
	color: #4a4a4a;

	font-weight: bold;
	height: 48px;
	line-height: 48px;
	background-color: #eceeef;
}

.careerBox .comth .td1 {
	float: left;
	width: calc(100% - 510px);
	padding-left: 20px;
	height: 100%;
	overflow: hidden;
}

.careerBox .comth .td4,
.careerBox .comth .td3,
.careerBox .comth .td2 {
	float: left;
	width: 140px;
	text-align: center;
	height: 100%;
}

.careerBox .comth .td5 {
	float: left;
	width: 90px;
	text-align: center;
	height: 100%;
}

.careerBox .item .desc {
	padding-left: 20px;
	color: #4a4a4a;
	font-size: 13px;
	line-height: 2;
	border-top: 1px solid #dadada;
	padding-top: 20px;
	padding-bottom: 30px;
	display: none;
	padding-right: 20px;
}

.careerBox .item {
	border-bottom: 1px dotted #dadada;
}

.careerBox .item:nth-child(2n+0) .ith {
	background-color: #f9f9f9;
}

.careerBox .item .ith {
	color: #7d7d7d;
	font-size: 14px;

	height: 42px;
	line-height: 42px;
	cursor: pointer;
}

.careerBox .item .ith .itd1 {
	color: #4184f5;
}

.careerBox .item .ith .itd5 {
	position: relative;
}

.careerBox .item .ith .itd5:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 50%;
	width: 2px;
	height: 12px;
	background-color: #4184f5;
	margin-left: -1px;
}

.careerBox .item .ith .itd5:before {
	content: "";
	position: absolute;
	top: 20px;
	left: 50%;
	width: 12px;
	height: 2px;
	background-color: #4184f5;
	margin-left: -6px;
}

.careerBox .item[data-on="active"] .ith .itd5:after,
.careerBox .item[data-on="active"] .ith .itd5:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media only screen and (max-width:800px) {

	.careerBox .comth .td4,
	.careerBox .comth .td3,
	.careerBox .comth .td2 {
		width: 100px;
	}

	.careerBox .comth .td5 {
		width: 70px;
	}

	.careerBox .comth .td1 {
		width: calc(100% - 370px);
	}
}

@media only screen and (max-width:600px) {
	.careerBox .th {
		height: 42px;
		line-height: 42px;
	}

	.careerBox .item .ith {
		height: 36px;
		line-height: 36px;
		font-size: 12px;
	}

	.careerBox .item .ith .itd5:before {
		top: 17px;
	}

	.careerBox .item .ith .itd5:after {
		top: 12px;
	}

	.careerBox .item .desc {
		padding: 10px 10px 20px;
	}

	.careerBox .comth .td1 {
		padding-left: 10px;
		width: calc(100% - 275px);
	}

	.careerBox .comth .td5 {
		width: 50px;
	}

	.careerBox .comth .td3,
	.careerBox .comth .td2 {
		width: 70px;
	}

	.careerBox .comth .td4 {
		width: 85px;
	}
}

@media only screen and (max-width:414px) {

	.careerBox .comth .td3,
	.careerBox .comth .td2 {
		width: 60px;
	}

	.careerBox .comth .td4 {
		width: 70px;
	}

	.careerBox .comth .td5 {
		width: 45px;
	}

	.careerBox .comth .td1 {
		width: calc(100% - 235px);
	}
}

/*careerBox End*/
/* =========

  新闻

  ========== */
.newsBox .comContent {
	margin-bottom: 60px;
}

.newsBox .leftArea {
	float: left;
	width: 70%;
}

.newsBox .rightArea {
	float: left;
	width: 30%;
	padding-left: 2%;
}

.newsBox-swiper .swiper-slide {
	border-right: 1px solid #fff;
}

.newsBox-swiper .btn {
	position: absolute;
	top: 50%;
	width: 20px;
	height: 20px;
	cursor: pointer;
	z-index: 10;
	margin-top: -10px;
}

.newsBox-swiper .btn:after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	top: 50%;
	left: 50%;
	margin-top: -4px;
	margin-left: -4px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.newsBox-swiper .newsBox-prev {
	left: 5px;
}

.newsBox-swiper .newsBox-next {
	right: 5px;
}

.newsBox-swiper .newsBox-prev:after {
	border-top: 2px solid #4184f5;
	border-left: 2px solid #4184f5;
}

.newsBox-swiper .newsBox-next:after {
	border-bottom: 2px solid #4184f5;
	border-right: 2px solid #4184f5;
}

.newsBox-swiper .swiper-button-disabled {
	display: none;
}

.newsBox-swiper .swiper-slide a {
	display: block;
	background-color: #eceeef;
	height: 54px;
	line-height: 54px;
	text-align: center;
	font-size: 16px;
	color: #555555;

}

.newsBox-swiper .active a {
	border-top: 3px solid #4184f5;
	background-color: #fff;
}

.newsBox .newul {
	margin-top: 25px;
	border-bottom: 1px solid #d1d6d8;
}

.newsBox .newul li a {
	display: block;
	padding: 25px 12px;
}

.newsBox .newul li:nth-child(2n+0) a {
	background-color: #f9f9f9;
}

.newsBox .newul li a .left {
	float: left;
	width: 200px;
}

.newsBox .newul li a .left img {
	width: 200px;
	height: 120px;
}

.newsBox .newul li a .right {
	float: right;
	width: calc(100% - 225px);
}

.newsBox .newul li a .right .data {
	font-size: 14px;
	color: #898888;
}

.newsBox .newul li a .right .title {
	font-size: 18px;
	color: #4184f5;

	line-height: 1.5;
	height: 27px;
	overflow: hidden;
	white-space: nowrap;
	overflow: hidden;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin-top: 8px;
	margin-bottom: 12px;
	padding-left: 16px;
	position: relative;
}

.newsBox .newul li a .right .title:after {
	content: ">";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 14px;

	color: #4184f5;
	line-height: 27px;
}

.newsBox .newul li a .right .desc {
	font-size: 13px;
	color: #5e5e5e;

	line-height: 1.5;
	height: 57px;
	overflow: hidden;
}

.newsBox .fenye {
	margin-top: 25px;
	margin-bottom: 140px;
	text-align: right;
}

.newsBox .rightArea .btitle {
	font-size: 24px;
	color: #4e4e4e;

	margin-top: 50px;
}

.newsBox .rightArea .commendul {
	margin-top: 10px;
	padding-top: 25px;
	border-top: 1px solid #eceff1;
}

.newsBox .rightArea .commendul li {
	margin-bottom: 15px;
}

.newsBox .rightArea .commendul li a {
	display: block;
	border-bottom: 1px dotted #dadada;
}

.newsBox .rightArea .commendul li a .data {
	font-size: 12px;
	color: #898888;
}

.newsBox .rightArea .commendul li a .title {
	font-size: 13px;
	color: #4184f5;
	line-height: 1.5;
	overflow: hidden;
	padding-left: 15px;
	margin-top: 12px;
	margin-bottom: 12px;
	position: relative;
	max-height: 38px;
}

.newsBox .rightArea .commendul li a .title:after {
	content: ">";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 13px;

	color: #4184f5;
}

.newsBox .rightArea .contact {
	margin-top: 25px;
	background-color: #f6f7f7;
}

.newsBox .rightArea .contact .ctitle {
	height: 48px;
	line-height: 48px;
	background-color: #4184f5;
	color: #fff;
	font-size: 14px;

	padding-left: 12px;
}

.newsBox .rightArea .contact .content {
	padding: 13px 10px 13px 20px;
	line-height: 2;
	color: #6d6d6d;
}

@media only screen and (max-width:1024px) {
	.newsBox .rightArea .btitle {
		margin-top: 13%;
	}

	.newsBox .fenye {
		margin-bottom: 14%;
	}
}

@media only screen and (max-width:840px) {
	.newsBox .rightArea {
		display: none;
	}

	.newsBox .leftArea {
		float: none;
		width: 100%;
	}

	.newsBox .fenye {
		text-align: center;
	}

	.newsBox .comContent {
		margin-bottom: 6%;
	}
}

@media only screen and (max-width:600px) {
	.newsBox-swiper .swiper-slide a {
		height: 42px;
		line-height: 42px;
		font-size: 14px;
	}

	.newsBox .newul {
		margin-top: 10px;
	}

	.newsBox .newul li a {
		padding: 4.5% 2.5%;
	}

	.newsBox .newul li a .left {
		width: 150px;
	}

	.newsBox .newul li a .left img {
		width: 150px;
		height: 89px;
	}

	.newsBox .newul li a .right {
		width: calc(100% - 165px);
	}

	.newsBox .newul li a .right .title {
		font-size: 16px;
		height: 24px;
		margin-top: 4px;
		margin-bottom: 7px;
	}

	.newsBox .newul li a .right .title:after {
		line-height: 24px;
	}

	.newsBox .newul li a .right .desc {
		font-size: 12px;
		height: 54px;
	}
}

@media only screen and (max-width:500px) {
	.newsBox .newul li a .left {
		width: 100px;
	}

	.newsBox .newul li a .left img {
		width: 100px;
		height: 60px;
	}

	.newsBox .newul li a .right {
		width: calc(100% - 110px);
	}

	.newsBox-swiper .swiper-slide a {
		height: 36px;
		line-height: 36px;
	}

	.newsBox .newul li a .right .title {
		font-size: 14px;
		height: 21px;
		margin-bottom: 4px;
	}

	.newsBox .newul li a .right .title:after {
		line-height: 21px;
	}
}

/* =========

  新闻详情

  ========== */
.newsDetBox .leftArea .title {
	font-size: 40px;

	color: #2b2b2b;
	line-height: 1.5;
	height: 60px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin-top: 30px;
	margin-bottom: 20px;
}

.newsDetBox .leftArea .item .back {
	display: block;
	padding: 0 12px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	background-color: #4184f5;
	font-size: 12px;
	color: #fff;
	font-weight: bold;

	float: left;
}

.newsDetBox .leftArea .item .data {
	color: #898888;
	font-size: 14px;
	float: left;
	line-height: 32px;
	margin-left: 18px;
}

.newsDetBox .leftArea .item .line {
	float: left;
	font-size: 14px;
	color: #898888;
	margin: 0 18px;
	line-height: 32px;
}

.newsDetBox .leftArea .item .bshare-custom {
	float: left;
	color: #898888;
	line-height: 32px !important;
}

.newsDetBox .leftArea .item .bshare-custom .word {
	float: left;
}

.newsDetBox .leftArea .item .bshare-custom .bshare-weixin,
.newsDetBox .leftArea .item .bshare-custom .bshare-sinaminiblog,
.newsDetBox .leftArea .item .bshare-custom .bshare-more.more-style-addthis {
	float: left;
	height: 17px;
	padding-left: 17px;
	margin-top: 8px;
	background: url(../images/icon14.png);
	margin-left: 12px;
}

.newsDetBox .leftArea .item .bshare-custom .bshare-sinaminiblog {
	background: url(../images/icon16.png);
}

.newsDetBox .leftArea .item .bshare-custom .bshare-more.more-style-addthis {
	background: url(../images/icon15.png);
}

.newsDetBox .leftArea .content {
	line-height: 2;
	font-size: 14px;
	color: #555555;
	min-height: 200px;
	margin-top: 60px;
	margin-bottom: 130px;
}

@media only screen and (max-width:1280px) {
	.newsDetBox .leftArea .title {
		font-size: 34px;
		height: 51px;
	}
}

@media only screen and (max-width:1024px) {
	.newsDetBox .leftArea .content {
		margin-top: 9%;
		margin-bottom: 21%;
	}
}

@media only screen and (max-width:840px) {
	.newsDetBox .leftArea .content {
		margin-top: 6%;
		margin-bottom: 13%;
	}

	.newsDetBox .leftArea .title {
		font-size: 30px;
		height: 45px;
		margin-top: 4%;
		margin-bottom: 3%;
	}
}

@media only screen and (max-width:600px) {
	.newsDetBox .leftArea .title {
		font-size: 24px;
		height: auto;
		max-height: 72px;
		white-space: normal;
		-ms-text-overflow: clip;
		text-overflow: clip;
	}
}

@media only screen and (max-width:414px) {
	.newsDetBox .leftArea .title {
		font-size: 20px;
		max-height: 60px;
	}

	.newsDetBox .leftArea .item .data {
		margin-left: 0;
		float: none;
		margin-top: 8px;
	}

	.newsDetBox .leftArea .item .line {
		display: none;
	}

	.newsDetBox .leftArea .item .back {
		display: inline-block;
	}

	.newsDetBox .leftArea .item .back,
	.newsDetBox .leftArea .item .bshare-custom {
		float: none;
	}

	.newsDetBox .leftArea .item .bshare-custom .bshare-weixin,
	.newsDetBox .leftArea .item .bshare-custom .bshare-sinaminiblog,
	.newsDetBox .leftArea .item .bshare-custom .bshare-more.more-style-addthis {
		margin-left: 6px;
	}
}

/* =========

  技术支持

  ========== */
.technologyContent {
	margin-bottom: 60px;
}

.technologyBox {
	font-size: 13px;
	color: #656565;
	line-height: 2;
}

@media only screen and (max-width: 1024px) {
	.technologyContent {
		margin-bottom: 6%;
	}
}

/*常见问题*/
.questionBox {
	border-top: 1px solid #dadada;
}

.questionBox li {
	border-bottom: 1px solid #dadada;
}

.questionBox li .title {
	font-size: 14px;
	color: #303131;
	height: 54px;
	line-height: 54px;

	position: relative;
	padding-right: 30px;
}

.questionBox li .title:after {
	content: "";
	position: absolute;
	top: 21px;
	right: 16px;
	width: 2px;
	height: 12px;
	background-color: #4184f5;
}

.questionBox li .title:before {
	content: "";
	position: absolute;
	top: 26px;
	right: 11px;
	width: 12px;
	height: 2px;
	background-color: #4184f5;
}

.questionBox li .title[data-on="active"]:after,
.questionBox li .title[data-on="active"]:before {
	webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.questionBox li .title .color {
	color: #4184f5;

	margin-right: 8px;
	margin-left: -6px;
}

.questionBox li .desc {
	font-size: 13px;
	line-height: 2;
	color: #535353;
	padding: 10px 30px 20px 15px;
	display: none;
}

@media only screen and (max-width: 1024px) {
	.questionBox li .title {
		height: 44px;
		line-height: 44px;
	}

	.questionBox li .title:after {
		top: 16px;
	}

	.questionBox li .title:before {
		top: 21px;
	}

	.questionBox li .desc {
		padding-top: 0;
	}
}

@media only screen and (max-width: 600px) {
	.questionBox li .title {
		height: 36px;
		line-height: 36px;
	}

	.questionBox li .title:after {
		top: 12px;
		right: 11px;
	}

	.questionBox li .title:before {
		top: 17px;
		right: 6px;
	}

	.questionBox li .desc {
		padding-bottom: 10px;
		padding-left: 7px;
	}

	.questionBox li .title .color {
		margin-right: 0;
	}

}

/*常见问题 End*/
/*下载*/
.downloadBox .dtitle {
	font-size: 24px;
	color: #4a4a4a;

}

.downloadBox .dth {
	background-color: #eceeef;
	height: 50px;
	line-height: 50px;
	border-bottom: 1px solid #dadada;
	font-size: 13px;
	color: #4a4a4a;
	font-weight: bold;

	margin-top: 15px;
}

.downloadBox .comth .dtd1 {
	float: left;
	width: calc(100% - 400px);
	padding-left: 20px;
	overflow: hidden;
	height: 100%;
	padding-right: 10px;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.downloadBox .comth .dtd2 {
	float: left;
	width: 336px;
}

.downloadBox .comth .dtd3 {
	float: left;
	width: 64px;
	text-align: center;
}

.downloadBox .dtr {
	height: 44px;
	line-height: 44px;
	color: #4184f5;

	font-size: 13px;
	border-bottom: 1px dotted #dadada;
}

.downloadBox .dtr:last-child {
	border-bottom: 1px solid #dadada;
}

.downloadBox .dtr:nth-child(2n+0) {
	background-color: #f9f9f9;
}

.downloadBox .dtr .dtd2 span {
	display: inline-block;
	height: 20px;
	line-height: 20px;
	border: 1px solid #dcdcdc;
	padding: 0 9px;
	margin-right: 45px;
	cursor: pointer;
	color: #7d7d7d;

}

.downloadBox .dtr .dtd2 span.active {
	background-color: #4184f5;
	color: #fff;
	border-color: #4184f5;
}

.downloadBox .dtr .dtd2 .s3 {
	margin-right: 0;
}

.downloadBox .dtr .dtd3 {
	cursor: pointer;
}

@media only screen and (max-width: 1024px) {
	.downloadBox .dtr .dtd2 span {
		margin-right: 30px;
	}

	.downloadBox .comth .dtd2 {
		width: 286px;
	}

	.downloadBox .comth .dtd1 {
		width: calc(100% - 350px);
	}
}

@media only screen and (max-width: 800px) {
	.downloadBox .dtr .dtd2 span {
		margin-right: 15px;
		padding: 0 5px;
	}

	.downloadBox .comth .dtd2 {
		width: 236px;
	}

	.downloadBox .comth .dtd1 {
		width: calc(100% - 300px);
	}
}

@media only screen and (max-width: 600px) {
	.downloadBox .comth .dtd1 {
		padding-left: 10px;
		width: calc(100% - 230px);
	}

	.downloadBox .comth .dtd3 {
		width: 44px;
	}

	.downloadBox .comth .dtd2 {
		width: 186px;
	}
}

@media only screen and (max-width: 500px) {
	.downloadBox .dtr .dtd2 span {
		margin-right: 5px;
	}

	.downloadBox .comth .dtd2 {
		width: 156px;
	}

	.downloadBox .comth .dtd1 {
		width: calc(100% - 200px);
	}
}

/*下载 ENd*/
/* =========

  方案

  ========== */
.pargramBox {
	border-top: 1px solid #e6e6e6;
	padding-top: 70px;
}

.pargramBox li {
	float: left;
	width: calc(33.333% - 0.66px);
	margin-right: 1px;
	margin-bottom: 70px;
	overflow: hidden;
}

.pargramBox li:nth-child(3n+0) {
	margin-right: 0;
}

.pargramBox li a {
	display: block;
}

.pargramBox li a .imgbox {
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.pargramBox li a .imgbox:before {
	content: "";
	position: absolute;
	left: 100%;
	top: 100%;
	width: 100%;
	height: 100%;
	background-image: url(../images/img04.png);
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
}

.pargramBox li a .imgbox:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -20px;
	margin-top: -38px;
	background-image: url(../images/img05.png);
	background-repeat: no-repeat;
	display: block;
	width: 41px;
	height: 76px;
	opacity: 0;
	-webkit-transition-delay: .25s;
	-o-transition-delay: .25s;
	-moz-transition-delay: .25s;
	-ms-transition-delay: .25s;
	transition-delay: .25s;
}

.pargramBox li a .imgbox img {
	width: 100%;
}

.pargramBox li a .title {
	font-size: 18px;
	color: #4184f5;

	text-align: center;
	line-height: 1.5;
	height: 27px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin-top: 20px;
}

.pargramBox li a .title .inline {
	display: inline-block;
	border-bottom: 1px solid transparent;
	line-height: 27px;
	height: 27px;
}

@media only screen and (min-width: 500px) {
	.pargramBox li:hover a .imgbox:before {
		opacity: 1;
		top: 0;
		left: 0;
	}

	.pargramBox li:hover a .imgbox:after {
		opacity: 1;
	}

	.pargramBox li:hover a .imgbox:after {
		opacity: 1;
	}

	.pargramBox li:hover a .title .inline {
		border-bottom-color: #4184f5;
		;
	}
}

/*pgmlistBox*/
.pgmlistBox {
	margin-bottom: 25px;
}

.pgmlistBox li {
	float: left;
	width: 31.25%;
	margin-right: 3.125%;
	margin-bottom: 35px;
}

.pgmlistBox li:nth-child(3n+0) {
	margin-right: 0;
}

.pgmlistBox li a {
	display: block;
}

.pgmlistBox li a .imgbox {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}

.pgmlistBox li a .imgbox img {
	width: 100%;
}

.pgmlistBox li a .title {
	font-size: 16px;
	color: #4184f5;
	height: 54px;
	line-height: 54px;
	padding-left: 12px;

	background-color: #ebf0f5;
	position: relative;
	overflow: hidden;
	padding-right: 15px;
}

.pgmlistBox li a .title:after {
	content: ">";
	position: absolute;
	top: 0;
	right: 10px;
	font-size: 16px;
	color: #4184f5;

}

.pgmContent {
	margin-bottom: 45px;
}

.pgmLinkBox {
	margin-top: 115px;
	margin-bottom: 130px;
}

@media only screen and (max-width: 1280px) {
	.pgmLinkBox {
		margin-top: 100px;
		margin-bottom: 110px;
	}

	.pgmlistBox li {
		width: 32%;
		margin-right: 2%;
	}
}

@media only screen and (max-width: 1024px) {
	.pgmContent {
		margin-bottom: 4.5%;
	}

	.pgmLinkBox {
		margin-top: 10%;
		margin-bottom: 11%;
	}

	.pgmlistBox li {
		margin-bottom: 3.5%;
	}
}

@media only screen and (max-width: 800px) {
	.pgmlistBox li {
		width: 49%;
	}

	.pgmlistBox li:nth-child(3n+0) {
		margin-right: 2%;
	}

	.pgmlistBox li:nth-child(2n+0) {
		margin-right: 0;
	}
}

@media only screen and (max-width: 600px) {
	.pgmlistBox li a .title {
		height: 44px;
		line-height: 44px;
		font-size: 14px;
	}

	.pgmlistBox li a .title:after {
		font-size: 14px;
	}
}

@media only screen and (max-width: 500px) {
	.pgmlistBox li a .title {
		height: 36px;
		line-height: 36px;
		font-size: 12px;
	}

	.pgmlistBox li a .title:after {
		font-size: 12px;
	}
}

/*pgmlistBox End*/
/*pgviewBox*/
.pgviewBox {
	margin-top: 50px;
	margin-bottom: 140px;
}

.pgcomBox .left {
	float: left;
	width: 27.75%;
	position: relative;
	z-index: 10;
}

.pgcomBox .left .top ul li a {
	display: block;
	background-color: #4184f5;
	font-size: 14px;
	color: #ffffff;
	padding-left: 10px;
	height: 38px;
	line-height: 38px;
	position: relative;

}

.pgcomBox .left .top ul li a:after {
	content: ">";

	font-size: 12px;
	color: #fff;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	position: absolute;
	top: 0;
	right: 10px;
}

.pgcomBox .left .pgnav {
	margin-top: 30px;
}

.pgcomBox .left .pgnav .pgnLi {
	position: relative;
	padding-left: 10px;
	border-bottom: 1px solid #e8e8e8;
}

.pgcomBox .left .pgnav .pgnLi.on {
	background-color: #4184f5;
}

.pgcomBox .left .pgnav .pgnLi.on .a1 {
	color: #fff;
}

.pgcomBox .left .pgnav .pgnLi.on:after {
	color: #fff;
}

.pgcomBox .left .pgnav .pgnLi:after {
	content: ">";

	position: absolute;
	top: 0;
	right: 10px;
	line-height: 38px;
	font-size: 12px;
	color: #4184f5;
}

.pgcomBox .left .pgnav .pgnLi .a1 {
	display: block;
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	color: #2b2b2b;

}

.pgcomBox .left .pgnav .pgnLi .pgsub {
	position: absolute;
	left: 100%;
	top: 0;
	background-color: #4184f5;
	display: none;
}

.pgcomBox .left .pgnav .pgnLi .pgsub li a {
	display: block;
	height: 38px;
	line-height: 38px;
	font-size: 12px;

	white-space: nowrap;
	color: #fff;
	padding: 0 15px;
}

.pgcomBox .left .pgcselect {
	width: 100%;
	height: 24px;
	border: 0;
	border-bottom: 1px solid #e8e8e8;
	background-color: transparent;
	margin-top: 1%;
	font-size: 12px;
	color: #2b2b2b;
	display: none;
}

.pgviewBox .right {
	float: right;
	width: 70%;
}

.pgviewBox .right .imgbox {
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.pgviewBox .right .imgbox img {
	width: 100%;
}

.pgviewBox .right .title {
	font-size: 44px;
	color: #2b2b2b;

	line-height: 1.5;
	height: 66px;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-bottom: 20px;
}

.pgviewBox .right .desc {
	font-size: 14px;
	color: #2b2b2b;

	line-height: 2;
}

.pgviewBox .right .rtitle {
	margin-top: 80px;
	font-size: 24px;
	color: #606060;

}

.pgviewBox .right .pgbanner {
	margin-top: 15px;
	border-top: 1px solid #e6e6e6;
	border-bottom: 1px solid #e6e6e6;
	padding: 20px 50px;
	position: relative;
}

.pgviewBox .right .pgbanner .pgr-swiper .swiper-slide a {
	display: block;
}

.pgviewBox .right .pgbanner .pgr-swiper .swiper-slide a .rimgbox {
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.pgviewBox .right .pgbanner .pgr-swiper .swiper-slide a .rimgbox img {
	width: 100%;
}

.pgviewBox .right .pgbanner .pgr-swiper .swiper-slide a .title2 {
	font-size: 14px;
	color: #717171;

	text-align: center;
	margin-top: 5px;
}

.pgviewBox .right .pgbanner .btn {
	position: absolute;
	top: 50%;
	width: 34px;
	height: 34px;
	cursor: pointer;
	margin-top: -17px;
	border-radius: 50%;
	background-color: #4184f5;
	line-height: 34px;
}

.pgviewBox .right .pgbanner .pgr-prev {
	left: 0;
}

.pgviewBox .right .pgbanner .pgr-next {
	right: 0;
}

.pgviewBox .right .pgbanner .btn:after {
	color: #fff;

	font-size: 14px;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	width: 100%;
	font-weight: bold;
}

.pgviewBox .right .pgbanner .pgr-prev:after {
	content: "<";
}

.pgviewBox .right .pgbanner .pgr-next:after {
	content: ">";
}

@media only screen and (min-width: 500px) {
	.pgcomBox .left .pgnav .pgnLi .pgsub li a:hover {
		background-color: #0f58d6;
	}
}

@media only screen and (max-width: 1280px) {
	.pgviewBox .right .title {
		font-size: 40px;
		height: 60px;
	}
}

@media only screen and (max-width: 1024px) {
	.pgviewBox {
		margin-top: 5%;
		margin-bottom: 14%;
	}

	.pgviewBox .right .title {
		font-size: 36px;
		height: 54px;
		margin-top: 5.8%;
		margin-bottom: 2.9%;
	}

	.pgviewBox .right .rtitle {
		margin-top: 11.6%;
	}
}

@media only screen and (max-width: 800px) {

	.pgcomBox .left,
	.pgviewBox .right {
		float: none;
		width: 100%;
	}

	.pgcomBox .left {
		margin-bottom: 5%;
	}

	.pgviewBox .right .title {
		margin-top: 4%;
		margin-bottom: 2%;
		font-size: 32px;
		height: 48px;
	}

	.pgviewBox .right .rtitle {
		margin-top: 8%;
	}

	.pgcomBox .left .pgnav {
		display: none;
	}

	.pgcomBox .left .pgcselect {
		display: block;
	}
}

@media only screen and (max-width: 600px) {
	.pgviewBox .right .title {
		font-size: 28px;
		height: 42px;
	}
}

@media only screen and (max-width: 414px) {
	.pgviewBox .right .title {
		font-size: 24px;
		height: 36px;
	}

	.pgviewBox .right .rtitle {
		font-size: 20px;
	}

	.pgviewBox .right .pgbanner {
		margin-top: 10px;
	}
}

/*pgviewBox End*/
/* =========

  产品

  ========== */
/*productclassBox*/
.productContent {
	position: relative;
}

.productContent .download {
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	padding: 0 50px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	border: 1px solid #4184f5;
	font-size: 18px;
	color: #282828;

	border-radius: 5px;
}

.productContent .desc {}

.productContent .download .gt {
	color: #4184f5;

	margin-right: 5px;
}

.productclassBox {
	margin-bottom: 80px;
	border-top: 1px solid #e6e6e6;
	padding-top: 70px;
}

.productclassBox li {
	float: left;
	width: 31.25%;
	margin-right: 3.125%;
	margin-bottom: 36px;
}

.productclassBox li:nth-child(3n+0) {
	margin-right: 0;
}

.productclassBox li .imgbox {
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.productclassBox li .imgbox img {
	width: 100%;
}

.productclassBox li .title {
	display: block;
	font-size: 18px;
	color: #2b2b2b;

	line-height: 1.5;
	height: 27px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin-top: 15px;
}

.productclassBox li .line {
	width: 15px;
	height: 1px;
	background-color: #000;
	margin-top: 10px;
	margin-bottom: 24px;
}

.productclassBox li .list {
	min-height: 84px;
}

.productclassBox li .list a {
	display: inline-block;
	color: #4184f5;
	font-size: 13px;

	padding-right: 15px;
	margin-right: 15px;
	position: relative;
	line-height: 16px;
	margin-bottom: 12px;
}

.productclassBox li .list a:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: #4184f5;
}

@media only screen and (max-width: 1024px) {
	.productclassBox {
		margin-bottom: 8%;
		padding-top: 7%;
	}

	.productclassBox li {
		width: 32%;
		margin-right: 2%;
		margin-bottom: 4.5%;
	}
}

@media only screen and (max-width: 820px) {
	.productContent .download {
		position: static;
		margin-top: 4%;
		display: inline-block;
		padding: 0 30px;
	}

	.productclassBox li {
		width: 49%;
	}

	.productclassBox li:nth-child(3n+0) {
		margin-right: 2%;
	}

	.productclassBox li:nth-child(2n+0) {
		margin-right: 0;
	}

	.productContent .desc {
		width: 100%;
	}
}

@media only screen and (max-width: 600px) {
	.productContent .download {
		font-size: 16px;
		height: 44px;
		line-height: 44px;
		padding: 0 15px;
	}

	.productclassBox li .title {
		margin-top: 10px;
	}

	.productclassBox li .line {
		margin-top: 5px;
		margin-bottom: 14px;
	}

	.productclassBox li .list a {
		margin-bottom: 6px;
		font-size: 12px;
		line-height: 15px;
		margin-right: 10px;
		padding-right: 0px;
	}

	.productclassBox li .list a:after {
		display: none;
	}

	.productclassBox li .title {
		font-size: 16px;
		height: 24px;
	}

	.productclassBox li .list {
		min-height: 63px;
	}
}

@media only screen and (max-width: 414px) {
	.productContent .download {
		line-height: 36px;
		height: 36px;
		padding: 0 10px;
		font-size: 14px;
	}

	.productclassBox li .title {
		font-size: 14px;
		height: 21px;
	}
}

/*productclassBox End*/
/*productBox*/
.bproductBox {
	margin-top: 52px;
	border-top: 1px solid #e6e6e6;
}

.bproductBox .selectbox {
	margin: 50px 0;
}

.bproductBox .selectbox select {
	float: left;
	width: 334px;
	height: 48px;
	background-color: #eceeef;
	border: 0;
	font-size: 14px;
	color: #2b2b2b;
	padding-left: 15px;
}

.bproductBox .selectbox .down {
	float: right;
	display: block;
	padding: 0 54px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border: 1px solid #2e89d4;
	color: #282828;
	font-size: 18px;
	border-radius: 5px;

}

.bproductBox .selectbox .down .gt {

	color: #2e89d4;
	padding-right: 5px;
}

.productBox {
	margin-bottom: 100px;
}

.productBox li {
	float: left;
	width: 17.5%;
	margin-right: 3.125%;
	border: 1px solid #dedede;
	margin-bottom: 40px;
}

.productBox li:nth-child(5n+0) {
	margin-right: 0;
}

.productBox li a {
	display: block;
}

.productBox li a .imgbox {
	width: 100%;
	text-align: center;
}

.productBox li a .imgbox .ininmbox {
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	display: inline-block;
}

.productBox li a .imgbox img {
	max-width: 100%;
}

.productBox li a .title {
	font-size: 14px;
	color: #4184f5;

	line-height: 2;
	height: 28px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	margin-bottom: 3px;
	padding-left: 14px;
}

.productBox li a .title .gt {
	color: #d11f1f;

	margin-right: 7px;
}

@media only screen and (max-width: 1024px) {
	.bproductBox {
		margin-top: 5.2%;
	}

	.bproductBox .selectbox {
		margin: 5% 0;
	}

	.productBox li {
		width: 18.4%;
		margin-right: 2%;
		margin-bottom: 4%;
	}

	.productBox {
		margin-bottom: 10%;
	}
}

@media only screen and (max-width: 800px) {
	.productBox li {
		width: 23.5%;
	}

	.productBox li:nth-child(5n+0) {
		margin-right: 2%;
	}

	.productBox li:nth-child(4n+0) {
		margin-right: 0;
	}

	.bproductBox .selectbox select {
		height: 40px;
		width: 280px;
	}

	.bproductBox .selectbox .down {
		height: 40px;
		line-height: 40px;
		padding: 0 40px;
	}
}

@media only screen and (max-width: 600px) {
	.bproductBox .selectbox select {
		float: none;
		height: 36px;
		width: 100%;
	}

	.bproductBox .selectbox .down {
		float: none;
		margin-top: 3%;
		height: 36px;
		line-height: 36px;
		font-size: 16px;
		display: inline-block;
		padding: 0 30px;
	}

	.productBox li {
		width: 32%;
	}

	.productBox li:nth-child(4n+0) {
		margin-right: 2%;
	}

	.productBox li:nth-child(3n+0) {
		margin-right: 0;
	}
}

@media only screen and (max-width: 414px) {
	.productBox li {
		width: 49%;
	}

	.productBox li:nth-child(3n+0) {
		margin-right: 2%;
	}

	.productBox li:nth-child(2n+0) {
		margin-right: 0;
	}

	.bproductBox .selectbox select {
		height: 30px;
	}

	.bproductBox .selectbox .down {
		height: 30px;
		line-height: 30px;
		padding: 0 20px;
		font-size: 14px;
	}
}

/*productBox End*/
/*pddetBox*/
.pddetBox {
	margin-top: 50px;
	margin-bottom: 100px;
}

.pddetBox .rightArea {
	float: right;
	width: 70%;
}

.pddetBox .rightArea .pdbanner {
	border: 1px solid #dedede;
	background-color: #f5f5f5;
	position: relative;
}

.pddetBox .rightArea .pdbanner .inbox {
	width: 48%;
	max-width: 400px;
	margin: 0 auto;
	position: relative;
}

.pddetBox .rightArea .pdbanner .inbox:after,
.pddetBox .rightArea .pdbanner .inbox:before {
	content: "";
	position: absolute;
	top: 0;
	left: -30px;
	background-image: url(../images/img06.png);
	background-position: center;
	width: 30px;
	height: 100%;
}

.pddetBox .rightArea .pdbanner .inbox:before {
	right: -30px;
	left: auto;
	background-image: url(../images/img07.png);
}

.pddetBox .rightArea .pdbanner .pddet-swiper .swiper-slide .rimgbox {
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-color: #fff;
}

.pddetBox .rightArea .pdbanner .pddet-swiper .swiper-slide .rimgbox img {
	width: 100%;
}

.pddetBox .rightArea .pdbanner .btn {
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	cursor: pointer;
	margin-top: -30px;
}

.pddetBox .rightArea .pdbanner .pddet-prev {
	left: 7.5%;
}

.pddetBox .rightArea .pdbanner .pddet-next {
	right: 7.5%;
}

.pddetBox .rightArea .pdbanner .btn:after {
	content: "";
	position: absolute;
	width: 25px;
	height: 25px;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -12px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-radius: 2px;
}

.pddetBox .rightArea .pdbanner .pddet-prev:after {
	border-top: 3px solid rgba(83, 157, 218, .5);
	border-left: 3px solid rgba(83, 157, 218, .5);
}

.pddetBox .rightArea .pdbanner .pddet-next:after {
	border-bottom: 3px solid rgba(83, 157, 218, .5);
	border-right: 3px solid rgba(83, 157, 218, .5);
}

.pddetBox .rightArea .title {
	font-size: 44px;
	color: #2b2b2b;

	margin-top: 30px;
	margin-bottom: 10px;
	line-height: 1.5;
	height: 66px;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.pddetBox .rightArea .desc {
	font-size: 14px;
	color: #2b2b2b;
	line-height: 2;
	margin-bottom: 55px;
}

.pddetBox .rightArea .chosebox {
	background-color: #f9f9f9;
	border-bottom: 1px solid #e6e6e6;
}

.pddetBox .rightArea .chosebox .top .d1 {
	width: 50%;
	float: left;
	background-color: #eceeef;
	text-align: center;
	height: 54px;
	line-height: 51px;
	font-size: 16px;
	color: #555555;

	cursor: pointer;
	border-top: 3px solid #eceeef;
}

.pddetBox .rightArea .chosebox .top .d1.active {
	background-color: #fff;
	border-top-color: #4184f5;
}

.pddetBox .rightArea .chosebox .dd1 {
	display: none;
	padding: 40px 30px;
	line-height: 2;
}

.pddetBox .rightArea .chosebox .dd1.dactive {
	display: block;
}

@media only screen and (max-width: 1024px) {
	.pddetBox {
		margin-top: 5%;
		margin-bottom: 10%;
	}

	.pddetBox .rightArea .pdbanner .btn {
		width: 40px;
		height: 40px;
		margin-top: -20px;
		margin-left: -20px;
	}

	.pddetBox .rightArea .pdbanner .btn:after {
		width: 18px;
		height: 18px;
		margin-top: -9px;
		margin-left: -9px;
	}

	.pddetBox .rightArea .title {
		font-size: 36px;
		height: 54px;
		margin-top: 25px;
	}

	.pddetBox .rightArea .desc {
		margin-bottom: 45px;
	}

	.pddetBox .rightArea .pdbanner .pddet-prev {
		left: 9%;
	}

	.pddetBox .rightArea .pdbanner .pddet-next {
		right: 5.5%;
	}
}

@media only screen and (max-width: 800px) {
	.pddetBox .rightArea .title {
		margin-top: 20px;
	}

	.pddetBox .rightArea {
		float: none;
		width: 100%;
	}

	.pddetBox .rightArea .chosebox .dd1 {
		padding: 30px 20px;
	}

	.pddetBox .rightArea .chosebox .top .d1 {
		height: 50px;
		line-height: 47px;
	}

	.pddetBox .rightArea .desc {
		margin-bottom: 4.5%;
	}
}

@media only screen and (max-width: 600px) {
	.pddetBox .rightArea .title {
		font-size: 30px;
		line-height: 45px;
		height: 45px;
		margin-top: 15px;
		margin-bottom: 5px;
	}

	.pddetBox .rightArea .chosebox .top .d1 {
		height: 40px;
		line-height: 37px;
		font-size: 14px;
	}

	.pddetBox .rightArea .chosebox .dd1 {
		padding: 20px 10px;
	}
}

@media only screen and (max-width: 414px) {
	.pddetBox .rightArea .chosebox .dd1 {
		padding: 10px 10px;
	}

	.pddetBox .rightArea .title {
		font-size: 24px;
		line-height: 36px;
		height: 36px;
		margin-top: 10px;
		margin-bottom: 0;
	}
}

/*pddetBox End*/


/*搜索*/
.searchbg {
	margin-top: 90px;
	height: 220px;
	background-color: #f2f2f2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.searchbg .box .title {
	font-size: 48px;
	color: #383838;

}

.search-main img {
	max-width: 100%;
}

.search-main {
	width: 94%;
	max-width: 1200px;
	margin: auto;
	padding: 30px 0;
	min-height: 300px;
}

.search-main .list {
	margin-bottom: 30px;
}

.search-main .type {
	line-height: 50px;
	font-size: 30px;
	color: #000;
	font-weight: bold;
}

.search-main .list ul li {
	display: block;

	overflow: hidden;
	font-size: 14px;
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
}

.search-main .list ul li.nothing {
	height: 100px;
	border: 0px;
	line-height: 100px;
	text-align: center;
	font-size: 18px;
	color: #999;
}

.search-main .list ul li a .text .title {
	font-size: 18px;
	margin-bottom: 10px;
	color: #4184f5;
}

.search-main .list ul li a .text .demo {
	font-size: 12px;
	opacity: .7;
	line-height: 1.8;
	margin-bottom: 20px;
}

.search-main .list ul li a .text .rq {
	font-size: 14px;
	opacity: .7;
	line-height: 1.8;
	margin-bottom: 10px;
}

.search-main .list ul li a .tu {
	margin-bottom: 20px;
}

@media only screen and (min-width:600px) {
	.search-main .list ul li a {

		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-direction: row;
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-box-orient: horizontal;
		-ms-box-orient: horizontal;
		box-orient: horizontal;
	}

	.search-main .list ul li a .tu {
		width: 200px;
		margin-right: 30px;
		margin-bottom: 0px;
	}

	.search-main .list ul li a .text {
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		-webkit-box-flex: 1;
	}
}

.search-main .list ul li a span {
	float: right;
	margin-right: 20px;
}

@media only screen and (max-width:1023px) {
	.searchbg {
		margin-top: 50px;
	}

	.searchbg .box .title {
		font-size: 42px;
	}
}

@media only screen and (max-width:800px) {
	.searchbg .box .title {
		font-size: 36px;
	}

	.searchbg {
		height: 200px;
	}
}

@media only screen and (max-width:600px) {
	.search-main .list ul li a .text .demo {
		margin-bottom: 0;
	}
}

@media only screen and (max-width:500px) {
	.searchbg .box .title {
		font-size: 30px;
	}

	.searchbg {
		height: 180px;
	}

	.search-main .type {
		font-size: 22px;
	}

}