/* 全局 */
body {
	font-family: Arial, Tahoma, Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 0;
}
p {
	margin-top: 0;
	margin-bottom: 0;
}
ol, ul, dl {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
}
li {
	list-style: none;
}
a {
	color: #333;
	text-decoration: none;
	background-color: transparent;
	outline: none;
	transition: all 0.5s ease;
}
a:focus,
a:hover {
	color: #4882cc;
	text-decoration: none;
}

/* header */
header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 10;
	height: 80px;
	background: #fff;
}

.btn-slideMenu {
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	background-color: #4882cc;
	margin-left: -15px;
}
.btn-slideMenu::before,
.btn-slideMenu::after {
	content: '';
	position: absolute;
	left: 26px;
	display: block;
	width: 28px;
	height: 2px;
	background: #fff;
	transition: all 0.5s ease;
}
.btn-slideMenu::before {
	top: 29px;
}
.btn-slideMenu::after {
	bottom: 29px;
}
.btn-slideMenu span {
	position: absolute;
	top: 39px;
	left: 26px;
	display: block;
	width: 28px;
	height: 2px;
	background: #fff;
	transition: all 0.5s ease;
}
.btn-slideMenu.active::before {
	top: 39px;
	transform: rotate(45deg);
}
.btn-slideMenu.active::after {
	bottom: 39px;
	transform: rotate(-45deg);
}
.btn-slideMenu.active span {
	opacity: 0;
}
.spmenu {
	position: fixed;
	top: 80px;
	z-index: 20;
	width: 250px;
	height: 100%;
	background: #fff;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.spmenu h3 {
	font-size: 2.4rem;
	color: #000;
	padding: 20px 30px;
}
.spmenu ul li {
	line-height: 40px;
	padding: 0 30px;
	border-bottom: 1px solid #f5f5f5;
}
.spmenu ul li a {
	font-size: 1.6rem;
	color: #666;
}
.spmenu ul li a:hover {
	color: #4882cc;
}
.spmenu-left {
	left: -250px;
}
/* Shows menu after event */
.spmenu-left.spmenu-open {
	left: 0px;
}

.logo {
	margin-left: -50px;
}

.header-navbar {
	float: right;
}
.header-navbar > ul > li {
	float: left;
	margin-left: 60px;
}
.header-navbar > ul > li > a {
	display: block;
	font-size: 1.6rem;
	line-height: 80px;
	color: #323232;
	text-transform: uppercase;
}
.header-navbar > ul > li > a:hover,
.header-navbar > ul > li > a.active {
	color: #4882cc;
}

#p1 #h1,
#p2 #h2,
#p3 #h3,
#p4 #h4,
#p42 #h4,
#p43 #h4,
#p44 #h4,
#p45 #h4,
#p46 #h4,
#p47 #h4,
#p48 #h4,
#p5 #h5,
#p6 #h6,
#p7 #h7 {
	color: #4882cc;
}

.children-menu {
	position: absolute;
	top: 80px;
	left: 50%;
	z-index: 10;
	display: none;
	width: 150px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-left: -75px;
	background: #fff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.children-menu li a {
	display: block;
	font-size: 1.3rem;
	line-height: 40px;
	color: #000;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.children-menu li a:hover {
	color: #fff;
	background: #4882cc
}

/* search */
.cd-search-trigger {
	position: relative;
	display: block;
	float: right;
	width: 40px;
	height: 40px;
	overflow: hidden;
	color: transparent;
	z-index: 3;
	margin-top: 20px;
}
.cd-search-trigger::before,
.cd-search-trigger::after {
	/* search icon */
	content: '';
	position: absolute;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.cd-search-trigger::before {
	top: 9px;
	left: 9px;
	width: 18px;
	height: 18px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 3px solid #bebebe;
}
.cd-search-trigger::after {
	/* handle */
	height: 3px;
	width: 8px;
	background: #bebebe;
	bottom: 12px;
	right: 10px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.cd-search-trigger span {
	/* container for the X icon */
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
.cd-search-trigger span::before,
.cd-search-trigger span::after {
	/* close icon */
	content: '';
	position: absolute;
	display: inline-block;
	height: 3px;
	width: 22px;
	top: 50%;
	margin-top: -2px;
	left: 50%;
	margin-left: -11px;
	background: #bebebe;
	opacity: 0;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
}
.cd-search-trigger span::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.cd-search-trigger span::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.cd-search-trigger.search-is-visible::before,
.cd-search-trigger.search-is-visible::after {
	/* hide search icon */
	-moz-opacity: 0;
	opacity: 0;
}
.cd-search-trigger.search-is-visible span::before,
.cd-search-trigger.search-is-visible span::after {
	/* show close icon */
	-moz-opacity: 1;
	opacity: 1;
}
.cd-search-trigger.search-is-visible span::before {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.cd-search-trigger.search-is-visible span::after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.cd-search {
	position: fixed;
	width: 100%;
	top: 80px;
	left: 0;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-search input {
	border-radius: 0;
	border: none;
	background: #fff;
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	font-size: 1em;
	padding: 2em;
	color: #999;
	letter-spacing: 3px;
}
.cd-search input::-webkit-input-placeholder {
	color: #333 !important;
}
.cd-search input::-moz-placeholder {
	color: #fff !important;
}
.cd-search input:-moz-placeholder {
	color: #fff !important;
}
.cd-search input:-ms-input-placeholder {
	color: #fff !important;
}
.cd-search input:focus {
	outline: none;
}
.cd-search.is-visible {
	-moz-opacity: 1;
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}

/* 导航语言版本 */
.language {
	height: 80px;
	line-height: 80px;
	margin-right: -15px;
	background-color: #3c3c3c;
	text-align: center;
}
.language a {
	display: block;
}
.language span {
	color: #fff;
	vertical-align: middle;
}
.language span:first-of-type {
	font-size: 2rem;
}
.language span:last-of-type {
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 1.4rem;
	margin-left: 15px;
}

/* 手机导航 */
#sideMenu {
	position: fixed;
	top: 30px;
	right:15px;
	z-index:99999;
	display: none;
	font-size:2rem;
	color:#999;
}
#sideMenu .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
	background-color: #888;
    border-radius: 1px;
	transition: 0.2s ease;
}
#sideMenu .icon-bar+.icon-bar {
	margin-top:4px;
}
#sideMenu.hamburger-icon span:nth-of-type(1) {
    transition: 0.2s ease;
    transform: translateY(4px) rotate(42deg);
}
#sideMenu.hamburger-icon span:nth-of-type(2) {
    display: none;
    transition: 0.2s ease;
}
#sideMenu.hamburger-icon span:nth-of-type(3) {
    transition: 0.2s ease;
    transform: translateY(-2px) rotate(-42deg);
}
#sideMenuContainer {
	position: fixed;
	top: 80px;
	right: -100%;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: #fff;
	border-top:1px solid #ccc;
}
.accordion>li {
	margin:0 15px;
}
.accordion .link {
	position: relative;
	font-size: 1.5rem;
	color: #333;
	border-bottom: 1px solid #eee;
	padding: 15px 15px 15px 20px;
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.accordion .link {
	text-transform: uppercase;
}
.accordion>li>a {
	display:block;
	font-size: 1.5rem;
	color: #333;
	border-bottom: 1px solid #eee;
	padding: 15px 15px 15px 20px;
	cursor: pointer;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.accordion li span {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 1.6rem;
	color: #ccc;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.accordion li.open .link,
.accordion li.open .link a {
	color: #4882cc;
}
.accordion li.open span {
	color: #4882cc;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
/**
 * Submenu
 -----------------------------*/
.submenu {
	display: none;
 	font-size: 1.4rem;
	padding-left:20px;
}
.submenu li {
 	border-bottom: 1px solid #f0f0f0;
}
.submenu a {
 	display: block;
 	text-decoration: none;
 	color: #555;
 	padding: 12px;
 	padding-left: 30px;
 	-webkit-transition: all 0.25s ease;
 	-o-transition: all 0.25s ease;
 	transition: all 0.25s ease;
}
.submenu a:hover {
 	color: #4882cc;
}

/* banner */
.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 0;
}
#banner {
	margin-top: 80px;
}
#banner .owl-item {
	overflow: hidden;
}
#banner .owl-nav.disabled+.owl-dots {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
}
#banner .owl-dots .owl-dot span {
	width: 16px;
	height: 16px;
	background: #fff;
}
#banner .owl-dots .owl-dot.active span,
#banner .owl-dots .owl-dot:hover span {
	background: #4882cc;
}
.banner-img {
	width: 100%;
	height: 100%;
	transform: scale(1.15);
	-webkit-transform: scale(1.15);
	animation: scal 8s ease infinite alternate;
	-webkit-animation: scal 8s ease infinite alternate;
}
.banner-img img {
	margin-right: auto;
	margin-left: auto;
}
@keyframes scal {
	from {
		-webkit-transform: scale(1.15);
	}
	to {
		-webkit-transform: scale(1);
	}
}
@-webkit-keyframes scal {
	from {
		-webkit-transform: scale(1.15);
	}
	to {
		-webkit-transform: scale(1);
	}
}

/* 首页关于我们 */
.title::after {
	content: '';
	display: inline-block;
	width: 28px;
	height: 3px;
	margin-top: 47px;
	background: rgba(255,255,255,0.8);
}
.title h1 {
	font-size: 3.6rem;
	color: #fff;
	text-transform: uppercase;
}
.title span {
	display: block;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 1.8rem;
	color: #fff;
	margin-top: 13px;
	text-transform: uppercase;
	opacity: 0.4;
}
.index-about {
	position: relative;
	height: 740px;
}
.index-about::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	display: block;
	width: 50%;
	height: 100%;
	background-color: #4882cc;
}
.index-about-img {
	position: absolute;
	top: 58px;
	left: 60px;
	width: 810px;
}
.index-about-img li {
	float: left;
	margin-right: 102px;
}
.index-about-img li h5 {
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 1.4rem;
	color: #aaa;
	text-transform: uppercase;
}
.index-about-img li h5::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: #aaa;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 8px;
}
.index-about-img li h4 {
	font-size: 1.6rem;
	color: #3c3c3c;
	margin-top: 7px;
	margin-left: 14px;
}
#index-about-slide {
	margin-top: 43px;
}
#index-about-slide .owl-nav.disabled+.owl-dots {
	position: absolute;
	right: 0;
	bottom: 21px;
	left: 0;
}
#index-about-slide .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	background: none;
	border: 2px solid #fff;
}
#index-about-slide .owl-dots .owl-dot.active span,
#index-about-slide .owl-dots .owl-dot:hover span {
	background: #fff;
}
.index-about-text {
	float: right;
	width: 72%;
	margin-top: 58px;
}
.index-about-text .title {
	text-align: right;
}
.index-about-text h3 {
	font-size: 2.4rem;
	color: #fffefe;
	margin-top: 49px;
	margin-bottom: 31px;
	text-align: right;
}
.index-about-text p {
	font-size: 1.4rem;
	line-height: 2.45;
	color: #fff;
	opacity: 0.8;
}

/* 首页产品 */
.index-product {
	position: relative;
	padding-bottom: 89px;
}
.index-product::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 50%;
	height: 100%;
	background-color: #e6e6e6;
}
.index-product-text {
	margin-top: 90px;
}
.index-product-text .title::after {
	background: #999;
}
.index-product-text .title h1 {
	color: #333;
}
.index-product-text .title span {
	color: #666;
	opacity: 1;
}
.index-product-text p {
	width: 72%;
	font-size: 1.4rem;
	line-height: 2.2;
	color: #333;
	margin-top: 119px;
}
.index-product-text a {
	display: inline-block;
	font-size: 1.4rem;
	color: #111;
	margin-top: 91px;
}

.gravity-well {
	position: relative;
	width: 610px;
	height: 610px;
	border: 1px solid #ddd;
	border-radius: 50%;
	animation: spin 60s linear infinite;
	margin-top: 95px;
}
.planet {
	position: absolute;
	width: 19px;
	height: 19px;
	background-color: #fff;
	border: 1px solid #4882cc;
	border-radius: 50%;
	left: 50%;
	top: -9.5px;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.index-product .slideTxtBox {
	position: relative;
}
.index-product .slideTxtBox .hd {
	position: relative;
	float: right;
	padding-top: 34px;
	padding-bottom: 10px;
	margin-top: 83px;
}
.index-product .slideTxtBox .hd::after {
	content: '';
	position: absolute;
	top: 0;
	right: 51px;
	z-index: -1;
	width: 0;
	height: 100%;
	border-left: 1px dashed #a1a1a1;
}
.index-product .slideTxtBox .hd ul li {
	height: 50px;
	margin-bottom: 23px;
	cursor: pointer;
}
.index-product .slideTxtBox .hd ul li h4 {
	float: left;
	width: 110px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
	color: #333;
	margin-top: 4px;
	margin-right: 16px;
	text-align: right;
}
.index-product .slideTxtBox .hd ul li h4 span {
	display: block;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 1.4rem;
	font-weight: normal;
	color: #323232;
}
.index-product .slideTxtBox .hd ul li figure {
	position: relative;
	float: left;
	width: 50px;
	height: 50px;
	margin-right: 15px;
}
.index-product .slideTxtBox .hd ul li figure img {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}
.index-product .slideTxtBox .hd ul li figure .image1 {
	opacity: 0;
}
.index-product .slideTxtBox .hd ul li i {
	display: block;
	float: left;
	width: 19px;
	height: 19px;
	background-color: #fff;
	border: 1px solid #a3a3a3;
	border-radius: 50%;
	margin-top: 13px;
	margin-right: 10px;
}
.index-product .slideTxtBox .hd ul li i::before {
	content: '';
	display: block;
	width: 9px;
	height: 9px;
	background-color: #fff;
	border-radius: 50%;
	margin: 4px;
}
.index-product .slideTxtBox .hd ul li > span {
	display: block;
	float: left;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 1.4rem;
	line-height: 50px;
	color: #a1a1a1;
}
.index-product .slideTxtBox .hd ul li.on h4 {
	color: #4882cc;
}
.index-product .slideTxtBox .hd ul li.on figure .image0 {
	opacity: 0;
}
.index-product .slideTxtBox .hd ul li.on figure .image1 {
	opacity: 1;
}
.index-product .slideTxtBox .hd ul li.on i {
	border-color: #4882cc;
}
.index-product .slideTxtBox .hd ul li.on i::before {
	background-color: #4882cc;
}
.index-product .slideTxtBox .bd {
	position: relative;
	left: -44px;
	z-index: 2;
	float: left;
	margin-top: 95px;
}
.index-product .slideTxtBox .bd div {
	padding: 33px;
}
.index-product .slideTxtBox .bd div img {
	background-color: #fff;
	border-radius: 50%;
	padding: 37px;
	box-shadow: 0 0 28px rgba(0,0,0,0.5);
}
.index-product .slideTxtBox .spin {
	position: absolute;
	top: 0;
	left: -44px;
	z-index: 1;
}

/* 首页新闻 */
.index-news {
	padding-top: 55px;
	padding-bottom: 90px;
	background-color: #f5f5f5;
}
.index-news-title h1 {
	font-size: 3.6rem;
	font-weight: bold;
	color: #333;
}
.index-news-title span {
	display: block;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 1.8rem;
	color: #666;
	text-transform: uppercase;
	margin-top: 15px;
}
#index-news {
	margin-top: 56px;
}
#index-news .item {
	position: relative;
}
#index-news .item article {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100px;
}
#index-news .item article time {
	float: left;
	width: 15%;
	height: 100%;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 2.4rem;
	line-height: 100px;
	color: #fff;
	background: rgba(72,130,204,0.9);
	text-align: center;
}
#index-news .item article time span {
	font-size: 3.6rem;
}
#index-news .item article h6 {
	float: right;
	width: 85%;
	height: 100%;
	line-height: 100px;
	background: rgba(0,0,0,0.4);
	padding: 0 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#index-news .item article h6 a {
	font-size: 1.6rem;
	color: #fff;
}
#index-news .owl-nav.disabled+.owl-dots {
	position: absolute;
	right: 13px;
	bottom: 35px;
	text-align: right;
}
#index-news .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	background: #fff;
}
#index-news .owl-dots .owl-dot.active span,
#index-news .owl-dots .owl-dot:hover span {
	background: #4882cc;
}

.index-news-content {
	margin-top: 56px;
	margin-left: 70px;
}
.index-news-content .hd ul li{
	float:left;
	width: 160px;
	height: 40px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 40px;
	color: #5a5a5a;
	background-color: #dcdcdc;
	text-align: center;
	cursor:pointer;
}
.index-news-content .hd ul li.on {
	color: #fff;
	background-color: #4882cc;
}
.index-news-content .bd ul {
	margin-top: 19px;
}
.index-news-content .bd li {
	line-height: 48px;
	border-bottom: 1px dashed #dcdcdc;
	padding: 0 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.index-news-content .bd li a {
	font-size: 1.4rem;
}
.index-news-content .bd li a time {
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 1.4rem;
	color: #464646;
	margin-right: 24px;
}
.index-news-content .bd li a:hover time {
	color: #4882cc;
}
.index-news-content .more {
	display: block;
	width: 100%;
	height: 40px;
	font-size: 1.4rem;
	line-height: 40px;
	color: #fff;
	background-color: #3c3c3c;
	text-align: center;
	margin-top: 11px;
}

/* 首页地图 */
.map {
	position: relative;
	height: 600px;
}
#container {
	width: 100%;
	height: 100%;
}
.map-text {
	position: absolute;
	top: 135px;
	right: 150px;
	width: 640px;
	height: 330px;
	background-color: #fff;
	padding: 56px 90px;
}
.map-text h3 {
	font-size: 2rem;
	color: #4882cc;
}
.map-text address {
	font-size: 1.4rem;
	line-height: 3.6;
	color: #646464;
	border-top: 2px solid #f0f0f0;
	padding-top: 18px;
	margin-top: 28px;
}
.map-text address img {
	margin-right: 24px;
}

/* footer */
.footerBox {
	padding-top: 76px;
	padding-bottom: 57px;
	background: #212121;
}
.footer-menu dl {
	float: left;
	width: 20%;
}
.footer-menu dl dt {
	font-size: 1.6rem;
	font-weight: normal;
	color: #fff;
	margin-bottom: 16px;
}
.footer-menu dl dd {
	line-height: 1.8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.footer-menu dl dd a {
	font-size: 1.4rem;
	color: #787878;
}
.footer-menu dl dd a:hover {
	color: #4882cc;
}
.footer-info h3 {
	font-size: 1.6rem;
	color: #fff;
}
.footer-info address {
	float: left;
	font-size: 1.4rem;
	line-height: 1.9;
	color: #787878;
	margin-top: 19px;
}
.footer-info img {
	float: right;
	margin-top: 27px;
}

.copyright {
	font-size: 1.4rem;
	line-height: 80px;
	color: #787878;
}
.copyright a {
	color: #787878;
}
.copyright a:hover {
	color: #4882cc;
}

.fixed-nav {
	width: 100%;
	height: 60px;
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: #141414;
	z-index: 100;
	display: none;
}
.fixed-nav ul li {
	width: 25%;
	height: 60px;
	float: left;
	border-right: solid 1px #FFF;
	text-align: center;
}
.fixed-nav ul li:last-of-type {
	border-right: none;
}
.fixed-nav ul li a {
	display: block;
	padding-top: 5px;
}
.fixed-nav ul li a span {
	display: block;
	font-size: 2rem;
}
.fixed-nav ul li:nth-of-type(2) a span {
	transform: rotateY(180deg);
}
.fixed-nav ul li a h4 {
	font-size: 1.4rem;
	padding-top: 2px;
}
.fixed-nav ul li a span, .fixed-nav ul li a h4 {
	color: #FFF;
}

/* 首页footer */
.footerBox.index {
	background: none;
}
.footerBox.index .footer-menu dl dt,
.footerBox.index .footer-info h3 {
	color: #1e1e1e;
}

footer.index .copyright {
	line-height: 79px;
	border-top: 1px solid #d2d2d2;
}

/* 内页 */
.inside-banner {
	position: relative;
	margin-top: 80px;
}
.inside-banner .mobile {
	display: none;
}
.inside-banner article {
	position: absolute;
	top: 40%;
	right: 0;
	left: 0;
}
.inside-banner article h1 {
	font-size: 4.8rem;
	font-weight: bold;
	color: #fff;
}
.inside-banner article p {
	font-size: 1.8rem;
	color: #fff;
	margin-top: 13px;
}

.inside-list {
	height: 60px;
	background-color: #4882cc;
}
.inside-list ul {
	font-size: 0;
	text-align: center;
}
.inside-list ul li {
	display: inline-block;
}
.inside-list ul li a {
	display: block;
	font-size: 1.6rem;
	line-height: 60px;
	color: #fff;
	padding: 0 30px;
}
.inside-list ul li a:hover {
	background-color: #366eb8;
}
#p3 #t1,
#p4 #ss1,
#p42 #ss2,
#p43 #ss3,
#p44 #ss4,
#p45 #ss5,
#p46 #ss6,
#p47 #ss7,
#p48 #ss8,
#p5 #n1 {
	background-color: #366eb8;
}

.section {
	padding-top: 70px;
	padding-bottom: 80px;
}

.inside-title h2 {
	font-size: 3rem;
	color: #333;
}

.fy {
	height: 32px;
	line-height: 32px;
	margin-top: 20px;
	text-align: center;
}
.fy a {
	color: #60483c;
	background-color: #fff;
	border: 1px solid #999;
	padding: 5px 10px;
	margin: 0 5px;
}
.fy a:hover {
	color: #fff;
	background-color: #4882cc;
	border-color: #4882cc;
}
.fy span.current {
	color: #fff;
	background-color: #4882cc;
	border: 1px solid #4882cc;
	padding: 5px 11px;
	margin: 0 5px;
}
.fy span.disabled {
	color: #ccc;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 5px 10px;
	margin: 0 5px;
}

/* 关于长城 */
.about-text {
	margin-top: 43px;
}
.about-text p {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #666;
	text-indent: 2em;
	margin-bottom: 25px;
}
.about-number {
	padding-top: 22px;
	padding-bottom: 31px;
	margin-top: 10px;
	border-right: 1px solid #ddd;
}
.about-number:last-of-type {
	border-right: none;
}
.about-number h6 {
	font-size: 1.4rem;
	color: #666;
}
.about-number h6 span {
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 4.8rem;
	color: #4882cc;
}
.about-number h5 {
	font-size: 1.8rem;
	color: #000;
	margin-top: 24px;
}

.about-idea {
	background: url(../images/img/about-ideabg.jpg) center no-repeat;
	background-size: cover;
}
.about-idea .inside-title h2 {
	color: #fff;
}
.about-ideabox {
	margin-top: 49px;
}
.about-ideabox img {
	border: 2px solid #fff;
	border-radius: 50%;
}
.about-ideabox h5 {
	font-size: 1.4rem;
	color: #fff;
	margin-top: 28px;
}

.about-history-text {
	padding: 16px 0 17px 30px;
	margin-top: 41px;
	background-color: #f0f0f0;
}
.about-history-text p {
	font-size: 1.4rem;
	line-height: 1.95;
	color: #666;
}

.about-history-record {
	margin-top: 30px;
	border-top: 1px solid #ddd;
}
.about-history-record li {
	padding-top: 23px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ddd;
}
.about-history-record li h3 {
	font-size: 2.4rem;
	color: #333;
}
.about-history-record li h3 span {
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 3rem;
}
.about-history-record li h3 strong {
	color: #4882cc;
	margin-left: 14px;
}
.about-history-record li p {
	font-size: 1.4rem;
	line-height: 1.8;
	color: #666;
	text-indent: 2em;
	margin-top: 22px;
}
.about-history-record li img {
	margin-top: 18px;
}

/* 产品世界 */
.owl-theme .owl-nav {
	margin-top: 0;
}
#product {
	margin-top: 80px;
}
#product .item a {
	position: relative;
	display: block;
	transition: all 2s;
}
#product .item a::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: all 2s;
}
#product .item article {
	position: absolute;
	right: 0;
	bottom: -240px;
	left: 0;
	height: 240px;
	padding-top: 39px;
	background-color: #4882cc;
}
#product .item article h1 {
	font-size: 3.6rem;
	color: #fff;
}
#product .item article h5 {
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 1.6rem;
	color: #ccc;
	text-transform: uppercase;
	margin-top: 14px;
}
#product .item article h5::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: #fff;
	margin: 0 auto;
	margin-top: 23px;
}
#product .item article span {
	display: inline-block;
	width: 132px;
	height: 38px;
	font-size: 1.4rem;
	line-height: 36px;
	color: #fff;
	border: 1px solid #fff;
	margin-top: 28px;
}
#product .owl-nav [class*=owl-] {
	position: absolute;
	top: 50%;
	font-family: sans-serif;
	font-size: 8rem;
	padding: 0;
	margin: 0;
	margin-top: -57px;
	background: none;
}
#product .owl-nav .owl-prev {
	left: 10px;
}
#product .owl-nav .owl-next {
	right: 10px;
}
#product .item a:hover,
#product .item a.active {
	margin-top: -240px;
}
#product .item a:hover::before,
#product .item a.active::before {
	opacity: 0;
}

.productlist {
	background-color: #f0f0f0;
}
.productlist-list {
	margin-top: 11px;
	margin-bottom: 30px;
}
.productlist-list ul {
	font-size: 0;
	text-align: center;
}
.productlist-list ul li {
	display: inline-block;
	margin: 14px 7px 0;
}
.productlist-list ul li a {
	display: block;
	font-size: 1.4rem;
	color: #333;
	padding: 10px 25px;
	background-color: #fff;
	border-radius: 50px;
}
.productlist-list ul li a:hover,
.productlist-list ul li a.active {
	color: #fff;
	background-color: #3c3c3c;
}

.productbox {
	margin-bottom: 20px;
}
.productbox article {
	padding: 17px 29px;
	background: linear-gradient(to bottom, #f0f0f0, #ffffff);
}
.productbox article h4 {
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 1.8rem;
	color: #4882cc;
	margin-bottom: 11px;
}
.productbox article h5 {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #666;
}
.productbox article h5:last-of-type {
	height: 25px;
	overflow: hidden;
}
.productbox article h5 span {
	vertical-align: middle;
}
.productbox article h5 img {
	margin-right: 6px;
	border-radius: 5px;
}
.productbox article>img {
	margin-top: 10px;
	margin-right: 10px;
}

.productshow-img img {
	margin-right: auto;
	margin-left: auto;
}
.productshow h4 {
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 2.4rem;
	color: #4882cc;
	margin-top: 10px;
	margin-bottom: 11px;
}
.productshow h5 {
	font-size: 1.4rem;
	line-height: 2;
	color: #666;
}
.productshow h5 span {
	vertical-align: middle;
}
.productshow h5 img {
	margin-right: 6px;
	border-radius: 5px;
}
.productshow>img {
	margin-top: 10px;
}

/* 服务和支持 */
.service-text {
	margin-top: 44px;
}
.service-text h1 {
	font-size: 3.6rem;
	font-weight: bold;
	color: #4882cc;
	text-shadow:2px 2px 2px rgba(0,0,0,0.2); 
}
.service-text p {
	font-size: 1.4rem;
	line-height: 1.7;
	color: #666;
	margin-top: 28px;
}
.service-society {
	background-color: #f0f0f0;
}
.service-society-text {
	position: relative;
	height: 360px;
	margin-top: 39px;
	background: url(../images/img/service-societybg.jpg) center no-repeat;
	background-size: cover;
}
.service-society-text::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	width: 0;
	height: 0;
	border-bottom: 160px solid #1e64e6;
	border-left: 160px solid transparent;
}
.service-society-text h1 {
	position: absolute;
	top: 151px;
	right: 205px;
	font-size: 3.6rem;
	font-weight: bold;
	color: #1e64e6;
	text-shadow:2px 2px 2px rgba(0,0,0,0.2); 
}
.service-society-text a {
	position: absolute;
	right: 20px;
	bottom: 24px;
	z-index: 1;
	display: block;
	font-size: 1.6rem;
	color: #fff;
}
.service-society-text a span {
	display: block;
	font-size: 2.4rem;
}
.service-morebox {
	width: 49.166666%;
	margin-top: 39px;
}
.service-morebox a {
	position: relative;
	display: block;
	margin-bottom: 10px;
}
.service-morebox a h2,
.service-morebox a h3 {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	font-weight: bold;
	transform: translateY(-50%);
	text-align: center;
}
.service-morebox a h2 {
	font-size: 3rem;
}
.service-morebox a h3 {
	font-size: 2.4rem;
}
.service-morebox a .light-black {
	color: #333;
}
.service-morebox a .white {
	color: #fff;
}
.service-morebox-img a {
	width: 49.166666%;
}

.society-box {
	height: 180px;
	padding: 30px;
	margin-top: 30px;
	background: url(../images/img/society-boxbg.jpg) left top repeat;
}
.society-box i {
	display: block;
	float: left;
	width: 60px;
	height: 60px;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 3.6rem;
	font-style: normal;
	line-height: 60px;
	color: #569cec;
	border: 2px solid #569cec;
	border-radius: 50%;
	text-align: center;
}
.society-box article {
	float: left;
	width: 72%;
	margin-left: 24px;
}
.society-box article h4 {
	font-size: 1.8rem;
	line-height: 1.8;
	color: #333;
}
.society-box article p {
	font-size: 1.4rem;
	line-height: 1.7;
	color: #666;
}

.customize-text {
	margin-top: 30px;
}
.customize-text p {
	font-size: 1.4rem;
	line-height: 1.9;
	color: #666;
}
.customize-text h4 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #4882cc;
	margin-top: 29px;
}
.customize-list {
	position: relative;
	padding-right: 30px;
	padding-left: 30px;
	margin-top: 32px;
}
.customize-list::before {
	content: '';
	position: absolute;
	top: -5px;
	left: 50%;
	display: block;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	background-color: #ccc;
	border-radius: 100%;
}
.customize-list li {
	position: relative;
	padding: 50px 120px;
}
.customize-list li::before {
	content: '';
	position: absolute;
	top: 0;
	display: block;
	width: 50%;
	height: 100%;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.customize-list li:nth-of-type(odd)::before {
	left: 0;
	border-left: 1px solid #ccc;
	border-top-left-radius: 200px;
	border-bottom-left-radius: 200px;
}
.customize-list li:nth-of-type(even) {
	margin-top: -1px;
}
.customize-list li:nth-of-type(even)::before {
	right: 0;
	border-right: 1px solid #ccc;
	border-top-right-radius: 200px;
	border-bottom-right-radius: 200px;
}
.customize-list li::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 50%;
	display: block;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	background-color: #ccc;
	border-radius: 100%;
}
.customize-list li i {
	position: absolute;
	top: 50%;
	display: block;
	width: 60px;
	height: 60px;
	font-size: 2rem;
	font-style: normal;
	line-height: 60px;
	color: #fff;
	text-align: center;
	margin-top: -30px;
	background-color: #4882cc;
	border-radius: 100%;
}
.customize-list li:nth-of-type(odd) i {
	left: -30px;
}
.customize-list li:nth-of-type(even) i {
	right: -30px;
}
.customize-list li:nth-of-type(odd) img,
.customize-list li:nth-of-type(odd) article {
	float: left;
}
.customize-list li:nth-of-type(odd) article {
	width: 65%;
	margin-left: 50px;
}
.customize-list li:nth-of-type(even) img,
.customize-list li:nth-of-type(even) article {
	float: right;
}
.customize-list li:nth-of-type(even) article {
	width: 65%;
	text-align: right;
	margin-right: 50px;
}
.customize-list li article h4 {
	font-size: 1.8rem;
	color: #000;
	margin-top: 7px;
}
.customize-list li article p {
	font-size: 1.4rem;
	line-height: 1.7;
	color: #666;
	margin-top: 12px;
}
.customize-list li article p strong {
	display: block;
	font-size: 1.4rem;
	color: #666;
}
.customize-info {
	margin-top: 45px;
}
.customize-info p {
	font-size: 1.4rem;
	color: #666;
}
.customize-info h5 {
	font-size: 1.4rem;
	color: #333;
	margin-top: 26px;
}
.customize-info ul {
	margin-top: 32px;
}
.customize-info li {
	display: inline-block;
	width: 320px;
	height: 160px;
	line-height: 1.9;
	padding: 22px 40px;
	margin: 0 38px;
	background-color: #eee;
}
.customize-info li img {
	margin-right: 10px;
}
.customize-info li span {
	color: #666;
	vertical-align: middle;
}

.qc-list li {
	margin-top: 50px;
	border: 1px solid #ccc;
	transform: skewX(-10deg);
}
.qc-list li img {
	width: 24.6%;
}
.qc-list li:nth-of-type(odd) img {
	float: left;
	margin-left: 49px;
}
.qc-list li:nth-of-type(even) img {
	float: right;
	margin-right: 49px;
}
.qc-list li article {
	width: 55%;
	transform: skewX(10deg);
}
.qc-list li:nth-of-type(odd) article {
	float: right;
	margin-right: 99px;
}
.qc-list li:nth-of-type(even) article {
	float: left;
	margin-left: 99px;
}
.qc-list li article h4 {
	font-size: 1.8rem;
	color: #000;
	margin-top: 88px;
}
.qc-list li article p {
	font-size: 1.4rem;
	line-height: 1.9;
	color: #666;
	margin-top: 20px;
}

.help {
	background-color: #f0f0f0;
}
.help-text {
	padding: 50px 70px;
	margin-top: 39px;
	background-color: #fff;
}
.help-text article {
	margin-top: 44px;
}
.help-text article h4 {
	font-size: 1.8rem;
	color: #4882cc;
	margin-bottom: 17px;
}
.help-text article p {
	font-size: 1.4rem;
	line-height: 1.7;
	color: #666;
	text-indent: 2em;
}

.history {
	background-color: #f0f0f0;
}
.history-text {
	padding: 30px 70px;
	margin-top: 39px;
	background-color: #fff;
}
.history-text h4 {
	font-size: 1.8rem;
	color: #4882cc;
	margin-bottom: 17px;
}
.history-text p {
	font-size: 1.4rem;
	line-height: 1.7;
	color: #666;
	text-indent: 2em;
	margin-bottom: 30px;
}
.history-text li {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	margin: 0 30px;
}
.history-text li h5 {
	font-size: 1.4rem;
	color: #666;
	margin-top: 20px;
}

.download-main {
	margin-top: 40px;
}
.download-main .table>thead>tr>th {
	color: #fff;
	background-color: #3c3c3c;
	border-bottom: none;
}
.download-main .table>tbody>tr>th,
.download-main .table>tbody>tr>td {
	border-top: none;
}
.download-main .table>tbody>tr:nth-of-type(even) {
	background-color: #f0f0f0;
}
.download-main .table>tbody>tr>td>a {
	color: #4882cc;
}

.track-form form {
	margin-top: 68px;
}
.track-form form select {
	width: 150px;
	height: 44px;
	font-size: 1.4rem;
	color: #000;
	padding: 10px;
	margin: 0 5px 10px;
}
.track-form form input {
	width: 250px;
	height: 44px;
	padding: 10px;
	margin: 0 5px 10px;
}
.track-form form button {
	width: 120px;
	height: 44px;
	font-size: 1.4rem;
	color: #fff;
	padding: 0;
	margin: 0 5px;
	background-color: #3c3c3c;
	border: none;
	transition: all 0.5s;
}
.track-form form button:hover {
	background-color: #4882cc;
}
.order-detail {
	position: relative;
	width: 50%;
	padding-bottom: 10px;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}
.order-detail::before {
	content: '';
	position: absolute;
	top: 0;
	left: 10px;
	width: 2px;
	height: 100%;
	background-color: #eee;
}
.order-detail li {
	position: relative;
	padding: 10px 0 10px 50px;
	border-bottom: 1px solid #eee;
}
.order-detail li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 6px;
	width: 10px;
	height: 10px;
	background-color: #ccc;
	border: 2px solid #fff;
	border-radius: 50%;
}


.order-detail dl{ overflow: hidden; }
.order-detail dd{ width: 20%; float: left; margin: 2.5% 5% 2.5% 0 }
.order-detail dd img{ width: 100% }

/* 新闻资讯 */
.news {
	background-color: #f0f0f0;
}
.news-main {
	margin-top: 40px;
}
.newsbox {
	display: block;
	padding: 45px 50px;
	background-color: #fff;
	transition: all 0.5s;
	margin-bottom: 10px;
}
.newsbox img {
	float: left;
	max-width: 160px;
}
.newsbox article {
	float: left;
	width: 60%;
	margin-left: 50px;
}
.newsbox article h4 {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.9;
	color: #666;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.5s;
}
.newsbox article p {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #999;
	margin-top: 4px;
}
.newsbox time {
	position: relative;
	display: block;
	float: right;
	width: 160px;
	height: 110px;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 2.4rem;
	color: #aaa;
	background-color: #f3f3f3;
	padding: 10px 40px;
	transition: all 1s;
	overflow: hidden;
}
.newsbox time::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 1px;
	height: 1px;
	background-color: #ddd;
	border-radius: 50%;
	transition: all 1s cubic-bezier(0.7, 0.01, 0.3, 1);
	-webkit-transition: all 1s cubic-bezier(0.7, 0.01, 0.3, 1);
	-moz-transition: all 1s cubic-bezier(0.7, 0.01, 0.3, 1);
	-o-transition: all 1s cubic-bezier(0.7, 0.01, 0.3, 1);
	margin-top: -0.5px;
	margin-left: -0.5px;
}
.newsbox time span {
	position: relative;
	z-index: 3;
}
.newsbox time span:first-of-type {
	line-height: 1.8;
}
.newsbox time span:last-of-type {
	display: block;
	line-height: 2;
	border-top: 1px solid #ddd;
}
.newsbox:hover {
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.newsbox:hover article h4 {
	color: #4882cc;
}
.newsbox:hover time {
	color: #fff;
}
.newsbox:hover time::before {
	background-color: #4882cc;
	transform: scale(200);
	-webkit-transform: scale(200);
	-moz-transform: scale(200);
	-o-transform: scale(200);
}

.newsshow {
	background-color: #fff;
	padding: 50px 30px;
	margin-top: 40px;
}
.newsshow h4 {
	font-size: 2.4rem;
	color: #4882cc;
}
.newsshow time {
	display: block;
	color: #555;
	padding-top: 10px;
}
.newsshow time span {
	margin-right: 5px;
}
.newsshow article {
	line-height: 1.7;
	border-top: 1px dashed #eee;
	padding-top: 15px;
	margin-top: 20px;
	margin-bottom: 40px;
}
.newsshow article p {
	text-indent: 2em;
}

/* 加入长城 */
.idea-text {
	margin-top: 35px;
}
.idea-text h1 {
	font-size: 3.6rem;
	font-weight: bold;
	color: #4882cc;
}
.idea-text p {
	font-size: 1.4rem;
	line-height: 1.7;
	color: #666;
	margin-top: 29px;
}

.principle {
	background-color: #f0f0f0;
}
.principle-main {
	margin-top: 38px;
}
.principle-main img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 332px;
	height: 333px;
	margin: auto;
}
.principle-group {
	margin-top: 110px;
}
.principle-group:first-of-type {
	margin-top: 0;
}
.principlebox {
	width: 250px;
}
.principlebox h3 {
	font-size: 2rem;
	font-weight: bold;
	line-height: 2.1;
	border-bottom: 2px solid transparent;
	margin-bottom: 7px;
}
.principlebox p {
	font-size: 1.4rem;
	line-height: 2;
	color: #666;
}
.color-green h3 {
	color: #8dc21f;
	border-color: #8dc21f;
}
.color-purple h3 {
	color: #5f1985;
	border-color: #5f1985;
}
.color-light-blue h3 {
	color: #00a0e8;
	border-color: #00a0e8;
}
.color-red h3 {
	color: #e5270f;
	border-color: #e5270f;
}
.color-orange h3 {
	color: #f29600;
	border-color: #f29600;
}
.color-blue h3 {
	color: #1f65e7;
	border-color: #1f65e7;
}

.training-text {
	margin-top: 33px;
}
.training-text h1 {
	font-size: 3.6rem;
	font-weight: bold;
	color: #4882cc;
	margin-bottom: 30px;
}
.training-text p {
	font-size: 1.4rem;
	line-height: 1.6;
	color: #666;
}
.training-list {
	margin-top: 36px;
}
.training-list li {
	float: left;
	width: 25%;
	height: 260px;
	padding-top: 37px;
}
.training-list li:nth-of-type(odd) {
	background-color: #f0f0f0;
}
.training-list li:nth-of-type(even) {
	background-color: #f7f9fa;
}
.training-list li span {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	margin-top: 18px;
}
.training-list li h5 {
	font-size: 2rem;
	font-weight: bold;
	margin-top: 16px;
}
.training-list li p {
	font-size: 1.4rem;
	line-height: 1.25;
	color: #666;
	margin-top: 14px;
}
.training-list li:nth-of-type(1) span,
.training-list li:nth-of-type(1) h5 {
	color: #5f1985;
}
.training-list li:nth-of-type(2) span,
.training-list li:nth-of-type(2) h5 {
	color: #f29600;
}
.training-list li:nth-of-type(3) span,
.training-list li:nth-of-type(3) h5 {
	color: #1f65e7;
}
.training-list li:nth-of-type(4) span,
.training-list li:nth-of-type(4) h5 {
	color: #8dc21f;
}

.careers {
	background-color: #f0f0f0;
}
.careers-text {
	padding: 60px 70px;
	margin-top: 39px;
	background-color: #fff;
}
.careers-list li {
	position: relative;
	padding-bottom: 38px;
	margin-bottom: 90px;
	border-bottom: 1px solid #a8a8a8;
}
.careers-list li::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #4882cc;
	transition: all 1s;
}
.careers-list li h3 {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.4;
	color: #333;
}
.careers-list li h3::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #333;
	margin-right: 20px;
	transform: rotate(45deg);
}
.careers-list li>span {
	display: inline-block;
	font-size: 1.4rem;
	color: #666;
	margin-top: 20px;
	margin-right: 36px;
}
.careers-list li>span:first-of-type {
	margin-left: 30px;
}
.careers-content {
	display: none;
	margin-left: 30px;
}
.careers-content strong {
	display: block;
	margin-top: 20px;
}
.careers-content p {
	line-height: 1.8;
	color: #666;
}
.careers-more {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 150px;
	height: 45px;
	font-size: 1.4rem;
	line-height: 43px;
	color: #666;
	border: 1px solid #8a8a8a;
	text-align: center;
	transition: all 1s;
}
.careers-more span {
	color: #ddd;
	margin-right: 10px;
}
.careers-text .more {
	display: block;
	font-size: 1.4rem;
	line-height: 40px;
	color: #333;
	background-color: #ddd;
	text-align: center;
}
.careers-list li:hover::after {
	width: 100%;
}
.careers-list li:hover .careers-more {
	color: #fff;
	background: linear-gradient(to right, #366eb8, #4c8ada);
	border: none;
}
.careers-list li:hover .careers-more span {
	color: #ddd;
}
.careers-text .more:hover {
	color: #fff;
	background-color: #4882cc;
}

/* 联系我们 */
.contact {
	padding: 105px 0;
}
.contact-map {
	max-width: 100%;
}
.contact-info {
	top: 200px;
	left: 0;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.contact-info img {
	float: left;
}
.contact-info article {
	float: right;
	width: 480px;
	height: 290px;
	padding-top: 59px;
	padding-left: 80px;
	background-color: #fff;
}
.contact-info article h4 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #4882cc;
}
.contact-info article address {
	font-size: 1.4rem;
	line-height: 2;
	color: #787878;
	margin-top: 16px;
}

/* responsive */
@media (min-width: 1440px) {
	.index-about .container,
	.index-product .container,
	.index-news .container,
	.footerBox .container,
	footer .container {
		width: 1350px;
	}
}
@media (min-width: 1920px) {
	.index-about .container,
	.index-product .container,
	.index-news .container,
	.footerBox .container,
	footer .container {
		width: 1650px;
	}
}
/* 1440 */
@media (max-width: 1600px) {
	.logo {
		margin-left: 0;
	}
	.header-navbar > ul > li {
		margin-left: 40px;
	}
	.index-about {
		height: 650px;
	}
	.index-about-img {
		left: 0;
		width: 710px;
	}
	.index-about-img li {
		margin-right: 90px;
	}
	.index-about-text {
		width: 90%;
	}
	.gravity-well {
		width: 510px;
		height: 510px;
	}
	.index-product .slideTxtBox .bd div img {
		width: 444px;
	}
	.index-news-content {
		margin-left: 0;
	}
	.map-text {
		right: 100px;
		width: 500px;
		height: 300px;
		padding: 30px 60px;
	}
	.inside-banner article h1 {
		font-size: 3.6rem;
	}
	.service-text h1 {
		font-size: 3.6rem;
	}
	.service-society-text h1 {
		font-size: 3.6rem;
	}
	.idea-text h1 {
		font-size: 3.6rem;
	}
	.training-text h1 {
		font-size: 3.6rem;
	}
}
/* 1024 */
@media (max-width: 1439px) {
	.logo img {
		width: 180px;
	}
	.header-navbar > ul > li {
		margin-left: 20px;
	}
	.header-navbar > ul > li > a {
		font-size: 1.2rem;
	}
	.language span:first-of-type {
		font-size: 1.6rem;
	}
	.language span:last-of-type {
		font-size: 1.3rem;
		margin-left: 3px;
	}
	.title::after {
		margin-top: 30px;
	}
	.title h1 {
		font-size: 3rem;
	}
	.title span {
		margin-top: 10px;
	}
	.index-about {
		height: auto;
		padding-bottom: 30px;
	}
	.index-about-img {
		position: static;
		width: 100%;
		margin-top: 58px;
	}
	.index-about-img li {
		margin-right: 30px;
	}
	.index-about-text {
		float: none;
		width: 100%;
	}
	.index-about-text h3 {
		font-size: 1.8rem;
		margin-top: 30px;
		margin-bottom: 10px;
	}
	.index-about-text p {
		line-height: 2;
	}
	.index-product-text p {
		margin-top: 60px;
	}
	.index-product-text a {
		margin-top: 60px;
	}
	.gravity-well {
		width: 350px;
		height: 350px;
	}
	.index-product .slideTxtBox .bd div img {
		width: 284px;
	}
	.index-product .slideTxtBox .hd ul li {
		margin-bottom: 10px;
	}
	.index-news-title h1 {
		font-size: 3rem;
	}
	#index-news .item article {
		height: 70px;
	}
	#index-news .item article time {
		width: 20%;
		font-size: 1.8rem;
		line-height: 70px;
	}
	#index-news .item article time span {
		font-size: 3.6rem;
	}
	#index-news .item article h6 {
		width: 80%;
		line-height: 70px;
	}
	#index-news .owl-nav.disabled+.owl-dots {
		bottom: 20px;
	}
	.map {
		height: 500px;
	}
	.map-text {
		top: 100px;
		right: 50px;
		width: 400px;
		height: 280px;
		padding: 30px;
	}
	.footerBox {
		padding-bottom: 30px;
	}
	.footer-info address {
		float: none;
		margin-bottom: 0;
	}
	.footer-info img {
		margin-top: 0;
	}
	.inside-banner .laptop {
		display: none;
	}
	.inside-banner .mobile {
		display: block;
	}
	.inside-banner article h1 {
		font-size: 3rem;
	}
	.inside-list ul li a {
		font-size: 1.4rem;
		padding: 0 15px;
	}
	.about-number h6 span {
		font-size: 3.6rem;
	}
	#product .item article h1 {
		font-size: 3rem;
	}
	.service-text h1 {
		font-size: 3rem;
	}
	.service-society-text h1 {
		font-size: 3rem;
	}
	.service-morebox a h2 {
		font-size: 2.4rem;
	}
	.society-box i {
		width: 40px;
		height: 40px;
		font-size: 2.4rem;
		line-height: 40px;
	}
	.society-box article {
		width: 78%;
		margin-left: 10px;
	}
	.society-box article h4 {
		font-size: 1.6rem;
	}
	.society-box article p {
		font-size: 1.3rem;
	}
	.customize-list li {
		padding: 50px;
	}
	.qc-list li article h4 {
		margin-top: 40px;
	}
	.order-detail {
		width: 60%;
	}
	.idea-text h1 {
		font-size: 3rem;
	}
	.training-text h1 {
		font-size: 3rem;
	}
	.careers-text {
		padding: 60px 30px;
	}
	.contact-info {
		top: 100px;
	}
	.history-text li {
		margin: 0 20px;
	}
	.newsbox {
		padding: 30px;
	}
	.newsbox article {
		margin-left: 30px;
	}
}
/* 768 */
@media (max-width: 1023px) {
	.logo img {
		width: auto;
	}
	#sideMenu {
		display: block;
	}
	.index-about::after {
		display: none;
	}
	.index-about-img {
		margin-top: 30px;
	}
	#index-about-slide {
		margin-top: 30px;
	}
	.index-about-text {
		padding: 30px;
		margin-top: 0;
		background-color: #4882cc;
	}
	.title h1 {
		font-size: 2.4rem;
	}
	.title span {
		font-size: 1.4rem;
	}
	.index-about-text h3 {
		font-size: 1.6rem;
	}
	.index-product {
		padding-bottom: 30px;
	}
	.index-product::before {
		display: none;
	}
	.index-product-text {
		padding: 30px;
		margin-top: 0;
		background-color: #e6e6e6;
	}
	.index-product-text p {
		width: 100%;
		margin-top: 30px;
	}
	.index-product-text a {
		margin-top: 30px;
	}
	.index-news {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.index-news-title h1 {
		font-size: 2.4rem;
	}
	#index-news {
		margin-top: 30px;
	}
	.index-news-content {
		margin-top: 30px;
	}
	.map {
		height: 450px;
	}
	.footerBox {
		padding-top: 0;
		padding-bottom: 0;
	}
	footer {
		margin-bottom: 60px;
	}
	footer.index .copyright {
		font-size: 1.3rem;
		line-height: 80px;
		border-top: none;
	}
	.fixed-nav {
		display: block;
	}
	.inside-banner article h1 {
		font-size: 2.4rem;
	}
	.inside-banner article p {
		font-size: 1.4rem;
	}
	.inside-list {
		display: none;
	}
	.section {
		padding-top: 30px;
		padding-bottom: 40px;
	}
	.inside-title h2 {
		font-size: 2.4rem;
	}
	.about-text {
		margin-top: 30px;
	}
	.about-number h6 span {
		font-size: 3rem;
	}
	.about-number h5 {
		font-size: 1.4rem;
	}
	.about-ideabox {
		margin-top: 30px;
	}
	.about-history-record li h3 {
		font-size: 1.8rem;
	}
	.about-history-record li h3 span {
		font-size: 2.4rem;
	}
	#product .item article h1 {
		font-size: 2.4rem;
	}
	.productlist-list ul li a {
		font-size: 1.2rem;
		padding: 10px 20px;
	}
	.service-text {
		margin-top: 30px;
	}
	.service-text h1 {
		font-size: 2.4rem;
	}
	.service-society-text h1 {
		font-size: 2.4rem;
	}
	.service-morebox a h2,
	.service-morebox a h3 {
		font-size: 1.8rem;
	}
	.customize-list li:nth-of-type(odd) article {
		width: 55%;
		margin-left: 30px;
	}
	.customize-list li:nth-of-type(even) article {
		width: 55%;
		margin-right: 30px;
	}
	.customize-list li article h4 {
		font-size: 1.6rem;
	}
	.customize-list li article p {
		font-size: 1.3rem;
	}
	.customize-info li {
		margin: 0 10px;
	}
	.qc-list li:nth-of-type(odd) article {
		margin-right: 49px;
	}
	.qc-list li:nth-of-type(even) article {
		margin-left: 49px;
	}
	.qc-list li article h4 {
		font-size: 1.6rem;
		margin-top: 30px;
	}
	.qc-list li article p {
		font-size: 1.3rem;
	}
	.help-text {
		padding: 30px;
		margin-top: 30px;
	}
	.history-text {
		padding: 30px;
	}
	.history-text li {
		margin: 0 5px;
	}
	.order-detail {
		width: 70%;
	}
	.newsbox img {
		display: none;
	}
	.newsbox article {
		width: 70%;
		margin-left: 0;
	}
	.idea-text {
		margin-top: 30px;
	}
	.idea-text h1 {
		font-size: 2.4rem;
	}
	.principle-main img {
		display: none;
	}
	.principle-group {
		margin-top: 30px;
	}
	.training-text {
		margin-top: 30px;
	}
	.training-text h1 {
		font-size: 2.4rem;
	}
	.training-list li {
		height: 220px;
		padding-top: 20px;
	}
	.careers-list li>span {
		font-size: 1.3rem;
		margin-right: 10px;
	}
	.careers-text {
		padding: 30px;
		margin-top: 30px;
	}
	.careers-list li {
		padding-bottom: 30px;
		margin-bottom: 40px;
	}
	.careers-more {
		width: 120px;
		height: 40px;
		line-height: 38px;
	}
	.contact {
		padding: 30px 0;
	}
	.contact-info {
		position: static;
	}
	.contact-info img {
		width: 50%;
	}
	.contact-info article {
		width: 50%;
		height: auto;
		padding-top: 30px;
		padding-left: 30px;
	}
}
/* 425 */
@media (max-width: 767px) {
	.index-about-img li {
		margin-right: 20px;
	}
	#index-news .item article {
		height: 50px;
	}
	#index-news .item article time {
		font-size: 1.4rem;
		line-height: 50px;
	}
	#index-news .item article time span {
		font-size: 2.4rem;
	}
	#index-news .item article h6 {
		line-height: 50px;
		padding: 0 20px;
	}
	#index-news .item article h6 a {
		font-size: 1.4rem;
	}
	.index-news-content .hd ul li {
		width: 150px;
		font-size: 1.4rem;
	}
	.map {
		height: 300px;
	}
	.map-text {
		display: none;
	}
	.copyright,
	footer.index .copyright {
		font-size: 1.2rem;
		line-height: 1.4;
		padding: 10px 0;
	}
	.inside-banner article {
		top: 30%;
	}
	.productbox article {
		padding: 10px;
	}
	.service-morebox {
		width: 100%;
		margin-top: 30px;
	}
	.service-morebox a h2,
	.service-morebox a h3 {
		font-size: 1.6rem;
	}
	.society-box {
		height: auto;
	}
	.customize-list {
		padding-right: 0;
		padding-left: 0;
		margin-top: 30px;
	}
	.customize-list::before {
		display: none;
	}
	.customize-list li {
		padding: 0;
		margin-bottom: 20px;
	}
	.customize-list li:nth-of-type(odd)::before,
	.customize-list li:nth-of-type(even)::before {
		display: none;
	}
	.customize-list li::after {
		display: none;
	}
	.customize-list li i {
		display: none;
	}
	.customize-list li:nth-of-type(odd) img,
	.customize-list li:nth-of-type(odd) article,
	.customize-list li:nth-of-type(even) img,
	.customize-list li:nth-of-type(even) article {
		float: none;
	}
	.customize-list li:nth-of-type(odd) article {
		width: 100%;
		margin-left: 0;
	}
	.customize-list li:nth-of-type(even) article {
		width: 100%;
		text-align: left;
		margin-right: 0;
	}
	.customize-info li {
		margin: 0 10px 10px;
	}
	.qc-list li {
		margin-top: 30px;
	}
	.qc-list li img {
		display: none;
	}
	.qc-list li article {
		width: 100%;
		padding: 30px;
	}
	.qc-list li:nth-of-type(odd) article {
		margin-right: 0;
	}
	.qc-list li:nth-of-type(even) article {
		margin-left: 0;
	}
	.qc-list li article h4 {
		margin-top: 0;
	}
	.history-text p img {
		float: none!important;
		margin-right: auto;
		margin-left: auto;
	}
	.history-text li {
		display: block;
		text-align: center;
		margin: 0;
	}
	.history-text li img {
		margin-right: auto;
		margin-left: auto;
	}
	.order-detail {
		width: 100%;
	}
	.newsbox time {
		width: auto;
		height: auto;
		font-size: 1.4rem;
		padding: 10px;
	}
	.principlebox {
		width: 100%;
	}
	.training-list li {
		width: 50%;
	}
	.careers-list li>span:first-of-type {
		margin-left: 0;
	}
	.careers-more {
		width: 90px;
		height: 34px;
		line-height: 32px;
		font-size: 1.2rem;
	}
	.contact-info img {
		float: none;
		width: 100%;
	}
	.contact-info article {
		float: none;
		width: 100%;
		padding-top: 10px;
		padding-left: 10px;
	}
}
/* 375 */
@media (max-width: 424px) {
	.index-about-img li {
		margin-bottom: 10px;
	}
	.service-society-text h1 {
		right: 180px;
	}
	.service-morebox a h2,
	.service-morebox a h3 {
		font-size: 1.4rem;
	}
	.careers-list li h3 {
		font-size: 1.4rem;
	}
	.careers-list li>span {
		display: block;
	}
	.careers-more {
		height: 30px;
		line-height: 28px;
	}
}
/* 320 */
@media (max-width: 374px) {
	.service-society-text h1 {
		right: 150px;
	}
	.careers-more {
		width: 80px;
	}
	.customize-info li {
		width: 100%;
		margin: 0 0 10px;
	}
}
