@charset "utf-8";
/* CSS Document */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background-color: #0348b2;
}
::-webkit-scrollbar-track {
    background-color: #ddd;
}
::-webkit-scrollbar-thumb:horizontal {
    background-color: #2b2b2b;
}
::-webkit-scrollbar-track:horizontal {
    background-color: #2b2b2b;
}
::-webkit-scrollbar-corner {
    background-color: #2b2b2b;
}
*{
	box-sizing: border-box;
	outline: none;
}
html, body{
	width:100%;
	height: 100%;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Noto Sans SC', Arial, "Microsoft YaHei", sans-serif;
	font-weight: 300;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /*修正手持设备字体变化*/
	-webkit-text-size-adjust: none;
	margin: 0px;
	padding: 0px;
}
body, td, th {
	color:#2b2b2b;
	line-height: 26px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Noto Sans SC', Arial, "Microsoft YaHei", sans-serif;
	font-weight: 300;
	font-size: 100%;
}
address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-family: 'Noto Sans SC', Arial, "Microsoft YaHei", sans-serif;
	font-weight: 300;
}
img {
	border: none;
}
ol, ul, li {
	list-style: none;
}
input, textarea, select, button {
	font-family: 'Noto Sans SC', Arial, "Microsoft YaHei", sans-serif;
	font-size: 16px;
}
input, textarea, select {
    *font-size:100%;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
	color:#2b2b2b;
	text-decoration:none;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #0348b2;
}
a:active {
	text-decoration: none;
}
dl, dd, dt {
	margin: 0px;
	padding: 0px;
}
/* css common */
.rel {
    position: relative;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
	overflow: hidden;
}
.clearfix {
    *zoom: 1;
}
.lt, .left {
	float: left;
}
.rt, .right {
	float: right;
}
.clear, .clr {
	clear: both;
}
.f-cb{
    zoom:1;
}
.f-cb:after{
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
    overflow:hidden;
    content:".";
}
.fl {
    float:left;
    display: inline;
}
.fr {
    float:right;
    display: inline;
}
.por{
    position: relative;
}
.poa{
    position: absolute;
}
.poa-f{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.ovh{
    overflow: hidden;
}
.noselect{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.z1{
    z-index: 1;
}
.z2{
    z-index: 2;
}
.z3{
    z-index: 3;
}
.dn{
    display: none;
}
.width-full{
    width: 100%;
}
.height-full{
    height: 100%;
}
.dib{
    display: inline-block;
}
.wrap{
	width: 84%;
	margin:0 auto;
}
.wrap94{
	width: 94%;
	margin:0 auto;
}
.indent{
	text-indent: 2em;
}
.ptb90{
	padding:90px 0;
}
@media (max-width: 1480px) {
	body, td, th {
		font-size: 14px;
		line-height: 24px;
	}
	input, textarea, select, button{
		font-size: 14px;
	}
	.wrap{
		width: 94%;
		margin:0 auto;
	}
}

/* Header */
header{
	width: 100%;
	background: rgba(0, 0, 0, .4);
	transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
    display: flex;
    justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 1000;
	top: 0;
}
header.on,
header.fixed{
	background: #fff;
}
header a{
	color: #fff;
}
header.on a,
header.fixed a{
	color: #2b2b2b;
}
header > .wrap94{
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
header .logo{
	display: block;
	width: 200px;
	height: 80px;
	background:url(../images/logo.png) no-repeat center;
	background-size: 100%;
	transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
}
header.on .logo,
header.fixed .logo{
	background: url(../images/logo-black.png) no-repeat center;
}
header .header-menu{

}
header .header-menu > ul{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
header .header-menu > ul > li{
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
}
header .header-menu > ul > li > a{
	margin:0 30px;
	display: block;
	font-weight: 700;
	line-height: 80px;
	position: relative;
}
header .header-menu > ul > li > a:after{
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	background: #0348b2;
	bottom: 0;
	left:0;
	transform-origin: center;
    transform: scale(0, 1);
    transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
header .header-menu > ul > li:hover > a, 
header .header-menu > ul > li.current > a{
	color: #0348b2;
}
header .header-menu > ul > li:hover > a:after, 
header .header-menu > ul > li.current > a:after{
	transform-origin: center;
    transform: scale(1);
}
header .header-menu > ul > li > ul{
	width: 100%;
	height: calc(100% - 80px);
    padding:20px 0 40px 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: transform .3s cubic-bezier(1, 0, 0, 1);
    -webkit-backface-visibility: hidden;
}
header.on .header-menu > ul > li > ul{
	display: block;
	opacity: 1;
	visibility: visible;
}
header .header-menu > ul > li:hover > ul{
	background: #f7f7f7;
}
header .header-menu > ul > li > ul > li{
	line-height: 32px;
}
header .header-menu > ul > li > ul > li > a{
	font-size: 14px;
	color: #2b2b2b;
}
header .header-menu > ul > li > ul > li:hover > a{
	color: #0348b2;
	font-weight: 700;
}
header .header-tools{
	height: 80px;
	display: flex;
	align-items: center;
}
header .header-tools a{
	display: block;
	margin-left: 30px;
}
header .header-tools a:first-child{
	margin-left: 0;
}
header .header-tools i{
	font-size: 24px;
	display: block;
}
header .header-menu-bg{
	position:absolute;
	background: #eeee;
	width: 100%;
	height: 1px;
	top:80px;
	z-index: 1;
	display: none;
	opacity: 0;
	visibility: hidden;
}
header.on .header-menu-bg{
	display: block;
	opacity: 1;
	visibility: visible;
}

.search-box{
	width: 100%;
	height: 100%;
	background: #0348b2;
	position: fixed;
	top:0;
	left: 0;
	z-index: 1001;
	display: none;
}
.search-box .box-main{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.search-box .box-main .out-box{
	width: 820px;
    height: 100px;
    border-radius: 50px;
    box-sizing: border-box;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
}
.search-box .box-main .out-box form {
    width: 100%;
    height: 100%;
    line-height: 87px;
    padding-left: 35px;
    border-radius: 40px;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-box .box-main .out-box form input {
    background-color: transparent;
    height: 60px;
    width: calc(100% - 80px);
    border: 0;
    border-radius: 0;
    font-size: 20px;
}
.search-box .box-main .out-box form button{
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 0;
    cursor: pointer;
    background: none;
}
.search-box .box-main .out-box form button i{
	font-size: 24px;
	color: #ff0000;
}
.search-box .box-main .close-search{
    margin-top: 180px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #ff0000;
    border-radius: 50%;
}
.search-box .box-main .close-search i{
	font-size: 24px;
}

/* Footer */
footer{
	width: 100%;
	color: rgba(255, 255, 255, .5);
	overflow: hidden;
}
footer a{
	color: rgba(255, 255, 255, .5);
}
footer a:hover{
	color: #fff;
}
footer .footer-box1{
	width: 100%;
	height: 546px;
	background: url(../images/footer-bg.jpg) no-repeat center;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
footer .footer-box1 .line{
	width: 48%;
	height: 15px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #0348b2;
}
footer .footer-box1 .line:after{
	content: "";
	position: absolute;
	bottom: 0;
	right: -15px;
	width: 0; 
	height: 0;
    border-color: transparent #0348b2; /*上下颜色 左右颜色*/
    border-width: 0 0 15px 15px;
    border-style: solid;
}
footer .footer-box1 .out-box{
	width: 62.5%;
	height: 100%;
	margin:0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
}
footer .footer-box1 .out-box h1{
	font-size: 42px;
	line-height: 42px;
	font-weight: 700;
}
footer .footer-box1 .out-box h2{
	margin:30px 0;
	text-align: center;
	line-height: 32px;
}
footer .footer-box1 .out-box h3 a{
    width: 158px;
    height: 44px;
    background: #0348b2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
footer .footer-box1 .out-box h3 a:hover{
	background: #fe9207;
}
footer .footer-box2{
	width: 100%;
	background: #333333;
	overflow: hidden;
}
footer .footer-box2 .box-div1{
	width: 100%;
	padding:90px 0;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
}
footer .footer-box2 .box-div1 .footer-menu{
	display: block;
	width: calc(100% - 428px);
	padding-right: 100px;
}
footer .footer-box2 .box-div1 .footer-menu > ul{
	display: flex;
	justify-content: space-between;
}
footer .footer-box2 .box-div1 .footer-menu > ul > li > a{
    color: #fff;
    line-height: 48px;
}
footer .footer-box2 .box-div1 .footer-menu > ul > li > ul > li > a{
	font-size: 14px;
	line-height: 32px;
}
footer .footer-box2 .box-div1 .footer-contact{
	border-left: 1px solid rgba(255, 255, 255, .1);
	width: 428px;
	padding-left: 100px;
	color: #fff;
	line-height: 32px;
}
footer .footer-box2 .box-div1 .footer-contact .contact-div1{
	display: flex;
	align-items: center;
}
footer .footer-box2 .box-div1 .footer-contact .contact-div1 .left{
	margin-right: 20px;
}
footer .footer-box2 .box-div1 .footer-contact .contact-div1 .left img{
	display: block;
}
footer .footer-box2 .box-div1 .footer-contact .contact-div1 .right h2{
	font-size: 14px;
}
footer .footer-box2 .box-div1 .footer-contact .contact-div2{
	margin-top: 40px;
}
footer .footer-box2 .box-div2{
	width: 100%;
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding:24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .footer-box2 .box-div2 .right a{
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .footer-box2 .box-div2 .right img{
	display: block;
	opacity: .5;
	-webkit-transition:all 200ms linear;
    -moz-transition:all 200ms linear;
    -o-transition:all 200ms linear;
    transition:all 200ms linear;
}
footer .footer-box2 .box-div2 .right a:hover img{
	opacity: 1;
}