
/* PC端头部 */
.header {
	width: 100%;
	height: 5.625rem;
	position: fixed;
	z-index: 99;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
}

/* logo */
.header .logo {
	position: absolute;
	left: 5%;
	top: 0;
	width: 21.25rem;
	height: 100%;
}
.header .logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

/*  PC导航 */
.nav {}
.nav .navMain {
	padding: 0 25.125rem;
	height: 90px;
	line-height: 90px;
}
.nav .m {
	float: left;
	width: 12%;
	text-align: center;
	padding-right: 1px;
	position: relative;
}
.nav .m>a {
	color: #fff;
	position: relative;
	z-index: 2;
	display: inline-block;
}
.nav .m>a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	background: #fff;
	width: 100%;
	transition: transform 0.3s;
	transform: scale(0, 1);
	transform-origin: right bottom;
}
.nav .m:hover>a,
.nav .cur>a,
.nav .on>a {
	color: #fff;
}
.nav .m:hover>a:after,
.nav .cur>a:after,
.nav .on>a:after {
	transform: scale(1);
	transform-origin: left bottom;
}
.nav .navSub {
	position: absolute;
	left: 0;
	top: 100%;
	background: #383c3e;
	line-height: 35px;
	width: 100%;
	color: #fff;
	font-size: .875em;
	transform: scale(0, 1);
	transition: all 0.4s;
	opacity: 0;
}
.nav .navSub li {
	border-bottom: 1px solid #282828;
}
.nav .navSub a {
	color: #fff;
	display: block;
}
.nav .navSub a:hover {
	background: #2c52b3;
	color: #fff;
}
.nav .m:hover .navSub {
	transform: scale(1);
	opacity: 1;
}

/* 右侧搜索图标 */
.headR {
	width: 210px;
	position: absolute;
	right: 5%;
	top: 0;
	height: 90px;
	padding-top: 33px;
}
.headR a {
	display: inline-block;
	width: 26px;
	height: 40px;
	margin-left: 35px;
	background: url('../image/ticon.png') no-repeat;
	position: relative;
	z-index: 5;
	font-size: .875rem;
	opacity: .8;
}
.headR .sIcon {
	background-position: -52px 0;
}
.headR a:hover {
	opacity: 1;
}

/* PC端搜索 */
.search {
	position: absolute;
	padding: 20px;
	background: #1d2088;
	background: rgba(0, 0, 0, .5);
	left: 0;
	top: 90px;
	display: none;
	width: 100%;
	padding-top: 0;
}
.search form {
	width: 40%;
	margin: 0 auto;
	margin-top: 15px;
	background: #fff;
	height: 50px;
	line-height: 50px;
	padding: 0 50px 0 65px;
}
.search .txt {
	width: 100%;
	height: 50px;
	line-height: 40px;
	color: #666;
	float: left;
}
.search .btn {
	float: left;
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: all 0.3s;
	background: #333 url('../image/sicon.png') no-repeat center;
	border-left: 1px solid #666;
	margin-right: -50px;
}
.search .btn:hover {
	background-color: #2c52b3;
}
.searSelect {
	float: left;
	width: 55px;
	color: #333;
	padding-left: 10px;
	position: relative;
	font-size: 12px;
	cursor: pointer;
	border-right: 1px solid #ddd;
	margin-left: -65px;
}
.searSelect span {
	position: relative;
	display: block;
}
.searSelect span:after {
	content: "";
	position: absolute;
	right: 5px;
	top: 25px;
	border: 4px solid transparent;
	border-top-color: #333;
}
.searSelect ul {
	position: absolute;
	top: 38px;
	left: 0;
	background: #fff;
	text-align: center;
	width: 55px;
	display: none;
}
.searSelect ul li {
	line-height: 25px;
	border-top: 1px solid #f5f5f5;
}

/*  手机端导航按钮 */
.navTrigger {
	display: none;
	position: absolute;
	top: 22px;
	left: 15px;
	width: 28px;
	overflow: hidden;
	white-space: nowrap;
	color: transparent;
	z-index: 20;
	cursor: pointer;
}
.navTrigger span {
	display: block;
	height: 2px;
	background: #2c52b3;
	margin-bottom: 6px;
	transition: all 0.3s;
	-webkit-transform-origin: 0% 50%;
	-moz-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	-o-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
}
.navTrigger span:nth-child(3) {
	margin-bottom: 0;
}
.navTrigger-on span:nth-child(1) {
	transform: translateX(4px) translateY(0px) rotate(45deg);
}
.navTrigger-on span:nth-child(2) {
	opacity: 0;
}
.navTrigger-on span:nth-child(3) {
	transform: translateX(2px) translateY(2px) rotate(-45deg);
}

/*  手机端主导航 */
.wapNav {
	overflow-y: auto;
	height: 100%;
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.6s;
	background: #333;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 40;
	padding: 60px 0;
}
.wapNav li {
	position: relative;
}
.wapNav li a {
	display: block;
	padding-left: 20px;
	color: #fff;
	height: 50px;
	line-height: 50px;
	border-top: 1px solid #222;
	position: relative;
}
.wapNav li i {
	font-family: "iconfont";
	color: #888;
	font-size: 1.2em;
	font-style: normal;
	padding: 0 15px;
	position: absolute;
	right: 0;
	top: 0px;
	line-height: 50px;
}
.wapNav li.cur>a,
.wapNav .cur>a:hover {
	background: #0e3a81;
	color: #fff;
}
.wapNav li :hover i,
.wapNav .cur i {
	color: #fff;
}
.wapNav .navSub {
	display: none;
	background: #161616;
}
.wapNav .navSub li a {
	height: 40px;
	line-height: 40px;
	padding-left: 40px;
	font-size: .875em;
}
.wapNav .navSub ul {
	background: #050505;
}
.wapNav .navSub ul li a {
	height: 34px;
	line-height: 34px;
	padding-left: 60px;
}
.wapNav .menu {
	overflow: hidden;
	font-size: 1rem;
}
.wapNav .menu a {
	float: left;
	width: 50%;
	text-align: center;
	line-height: 50px;
	border-right: 1px solid #000;
	color: #fff;
	border-bottom: 1px solid #000;
	color: #fff;
}
.wapNav .menu a i {
	font-family: "iconfont";
	margin-right: 5px;
	position: relative;
	font-style: normal;
	color: #fff;
	font-size: 1.4rem;
}
.wSearch {
	background: #222;
	height: 80px;
	overflow: hidden;
	padding: 0 15px;
}
.wSearch form {
	margin: 0 auto;
	margin-top: 15px;
	background: #fff;
	height: 40px;
	overflow: hidden;
	padding-right: 60px;
}
.wSearch .sear_text {
	width: 100%;
	float: left;
	height: 40px;
	line-height: 40px;
	color: #666;
	padding-left: 10px;
}
.wSearch .sear_btn {
	float: left;
	width: 60px;
	height: 40px;
	cursor: pointer;
	text-align: center;
	background: #333;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s;
	margin-right: -60px;
	border-radius: 0!important;
}
.wSearch .sear_btn:hover {
	background: #014099;
}

@media all and (max-width:1600px) {
	.nav .navMain {
		padding: 0 380px 0 340px;
	}
	.headR {
		width: 340px;
	}
}
@media all and (max-width:1440px) {
	.header .logo,
	.headR{
		width: 200px;
	}
	.nav .navMain {
		padding: 0 280px;
	}
}
@media all and (max-width:1200px) {
	.header .logo,
	.headR {
		width: 160px;
	}
	.header .logo img {
		height: 36px;
	}
	.nav .navMain {
		padding: 0 210px;
	}
}
@media all and (max-width:1024px) {
	body {
		padding-top: 60px;
	}
	.header {
		height: 60px;
		line-height: 60px;
		position: fixed;
		padding: 0 100px;
		top: 0;
		left: 0;
	}
	.header .logo {
		position: static;
		line-height: 60px;
		width: auto;
		border-right: none;
		height: 60px;
	}
	.header .logo img {
		height: 30px;
	}
	.nav,
	.headR {
		display: none;
	}
	.navTrigger {
		display: block;
	}
	.nav_on {
		opacity: 1;
		transform: translateX(0);
	}
}

/* 产品 */
.zdjBox2 {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 900px;
	overflow: hidden;
	color: #fff;
	position: relative;
	text-align: center;
}
.zdjBox2 .container{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 100%;
}
.zdjBox2 .zdjTie {
	text-align: center;
	color: #fff;
	font-size: 1.3rem;
}
.zdjBox2 .zdjTie span {
	display: block;
	font-size: 2.5rem;
	margin-bottom: 0.625rem;
}
.zdjBox2 .word-list{
	margin-top: 1.875rem;
}
.zdjBox2 .word-list span{
	font-size: 1.0625rem;
	margin-right: 2.5rem;
	letter-spacing: 0.03125rem;
}
.zdjBox2 .word-list span:last-child{
	margin-right: 0;
}
.zdjBox2 .list{
	margin-top: 3.75rem;
	font-size: 0;
}
.zdjBox2 .list .pic {
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
	height: 0;
	padding-bottom: 28%;
	overflow: hidden;
	position: relative;
}
.zdjBox2 .list .pic img{
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
.zdjBox2 .canshu-list {
	max-width: 66.25rem;
	margin: 3.75rem auto 0;
	font-size: 0;
}
.zdjBox2 .canshu-list li {
	display: inline-block;
	vertical-align: top;
	width: 32%;
	margin-right: 2%;
	text-align: center;
	border: 1px solid #015fb1;
	padding: 0.875rem 0;
}
.zdjBox2 .canshu-list li:last-child{
	margin-right: 0;
}
.zdjBox2 .canshu-list li strong {
	font-size: 1.3rem;
	font-weight: bold;
	display: block;
	line-height: 100%;
}
.zdjBox2 .canshu-list li span {
	display: block;
	font-size: 0.875rem;
	line-height: 100%;
	margin-top: 0.875rem;
}

@media all and (max-width:750px) {
	.zdjBox2 .word-list span{
		margin-right: 0;
		display: block;
		line-height: 1.875rem;
	}
}
@media all and (max-width:600px) {
	.zdjBox2 .zdjTie span{
		font-size: 2.2rem;
	}
	.zdjBox2 .list .pic {
		width: 100%;
		padding-bottom: 50%;
		margin-bottom: 30px;
	}
	.zdjBox2 .list .pic:last-child{
		margin-bottom: 0;
	}
	.zdjBox2 .canshu-list li strong{
		font-size: 1rem;
	}
	.zdjBox2 .canshu-list li span{
		font-size: 0.75rem;
	}
}

/* 应用案例 */
.solution {
	padding-top: 5.625rem;
	padding-bottom: 5.625rem;
	overflow: hidden;
}
.solution ul {
	margin-right: -20px;
	overflow: hidden;
}
.solution li {
	float: left;
	width: 33.333%;
	height: 248px;
	padding-right: 20px;
	font-size: .875rem;
	margin-top: 20px;
}
.solution li:nth-child(1) {
	width: 50%;
	height: 516px;
}
.solution li:nth-child(3) {
	float: right;
	height: 516px;
}
.solution li:nth-child(2),
.solution li:nth-child(3),
.solution li:nth-child(4) {
	width: 25%;
}
.solution li a {
	color: #fff;
	padding: 0 6%;
	z-index: 2;
}
.solution li a:after {
	content: "";
	position: absolute;
	background: #2767bf;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.5;
	transition: all 0.4s;
}

.solution li h3 {
	font-size: 1.75rem;
	padding-bottom: 0.9375rem;
	margin-bottom: 2.5rem;
	position: relative;
}
.solution li h3:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	background: #fff;
	width: 1.5rem;
	transition: all 0.4s;
}
.solution li h3 span {
	display: block;
	font-size: .75rem;
	opacity: .8;
}
.solution li a:hover h3 {
	opacity: 0;
}
.solution li p {
	opacity: 0;
	transition: all 0.4s;
	position: relative;
	top: 15px;
	font-size: 0.875rem;
}
.solution li a:hover p {
	opacity: 1;
	top: 0;
	transition-delay: .18s;
}
.solution li a:hover h3:after {
	width: 3.75rem;
}
.solution li a:hover:after {
	opacity: .9;
}
.solution li .video {
	opacity: 0.5;
	transition: all 0.4s;
	position: relative;
	top: 45%;
	text-align: center;
	z-index: 5;
}
.solution li a:hover .video {
	opacity: 1;
	top: 35%;
	transition-delay: .18s;
}
@media all and (max-width:1600px) {
	.solution li h3{
		font-size: 1.25rem;
	}
}
@media all and (max-width:1440px) {
	.solution ul {
		margin-right: -10px;
	}
	.solution li {
		padding-right: 10px;
		margin-top: 10px;
	}
	.solution li:nth-child(1) {
		height: 506px;
	}
	.solution li:nth-child(3) {
		height: 506px;
	}
}
@media all and (max-width:1200px) {
	.solution {
		padding-top: 3.75rem;
		padding-bottom: 3.75rem;
	}
	.solution li {
		height: 190px;
	}
	.solution li:nth-child(1) {
		height: 390px;
	}
	.solution li:nth-child(3) {
		height: 390px;
	}
}
@media all and (max-width:768px) {
	.solution {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}
	.solution li h3{
		font-size: 1.125rem;
	}
}
@media all and (max-width:640px) {
	.solution li {
		width: 50%!important;
		height: 200px!important;
	}
	.solution li:first-child{
		width: 100%!important;
	}
	.solution li h3 {
		font-size: 1rem;
	}
}

/*底部 */
.footer {
	background: #f5f5f5;
	font-size: .875rem;
	color: #999;
}
.footMain {
	padding: 70px 15px 45px;
	overflow: hidden;
}
.footLogo {
	padding-top: 15px;
	padding-right: 40px;
}
.footLogo a{
	display: block;
}
.footContact {
	line-height: 2;
	text-align: left;
}
.footR {
	width: 260px;
	overflow: hidden;
	text-align: center;
}
.footR img {
	width: 130px;
	height: 130px;
	border: 1px solid #ddd;
	border-left: none
}
.footR .fl {
	border: 1px solid #ddd;
	width: 130px;
	height: 130px;
	padding-top: 35px;
}
.footer_xia ul h2 {
	font-size: 16px;
	color: #424242;
	padding-bottom: 20px;
}
.footer_xia ul {
	float: left;
	margin-right: 55px;
}
.footer_xia li {
	line-height: 30px;
}
.footer_xia li a {
	color: #757575;
	font-size: 13px;
	transition: 0.3s;
}
.footer_xia li a:hover {
	color: #2c52b3;
}
.footer_xia2 {
	text-align: left;
	max-width: 500px;
}
.footer_xia2 p {
	font-size: 14px;
	color: #848484;
	padding-bottom: 15px;
}
.footer_xia2 h3 {
	text-align: left;
	font-size: 24px;
	color: #2c52b3;
}
.firendLink {
	padding: 20px 0;
	overflow: hidden;
	border-top: 1px solid #ddd;
	background: #f0f0f0;
	font-size: .875rem;
	color: #757575;
}
.firendLink a {
	margin: 0 6px;
	color: #757575;
}
.footer a {
	color: #757575;
}
.firendLink a:hover,
.footer a:hover {
	color: #fff;
}
.back{
	display: none;
	position: fixed;
	width: 45px;
	height: 45px;
	background-color: #177992;
	background: url(../image/up1.png) no-repeat center;
	background-size: cover;
	right: 5%;
	bottom: 10%;
	cursor: pointer;
	font-size: 0;
}
@media all and (max-width:1600px) {
	.footLogo{
		padding-right: 20px;
	}
	.footer_xia ul{
		margin-right: 30px;
	}
}
@media all and (max-width:1440px) {
	.footLogo{
		display: none;
	}
}
@media all and (max-width:1200px) {
	.footer {
		font-size: .75rem;
	}
	.footMain {
		padding-top: 45px;
	}
	.footR{
		width: auto;
	}
	.footR img{
		width: 110px;
		height: 110px;
	}
	.footR .fl{
		display: none;
	}
	.firendLink {
		font-size: .75rem;
	}
}

@media all and (max-width:1024px) {
	.footMain {
		display: none;
	}
}

