*{
	margin: 0;
	padding: 0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-weight: 300;
}
html,body{
	width: 100%;
	background-color: #fff;
	color: #404d53;
	min-width: 1200px;
}
h1,h2,h3,h4,h5,h6{
	font-weight: normal;
}
ul,li{
	list-style: none;
}
a:link,a:hover,a:active,a:visited{
	text-decoration: none;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
p{
	word-break: break-word;
}
.cl-fix{
	content: '';
	display: block;
	width: 0;
	height: 0;
	visibility: hidden;
	clear: both;
}
.clear:after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	visibility: hidden;
	clear: both;
}
.fl{float: left;}
.fr{float: right;}
.none{
	display: none;
}
.pointer{
	cursor: pointer;
}
.cc-btn {
    background-color: #47a4f2;
    border: none;
    outline: none;
    border-radius: 2px;
    text-align: center;
    color: white;
    cursor: pointer;
    font-size: 14px;
}
.cc-btn:hover{
	background-color: #5bb4ff;
}
.cc-btn:active{
	background-color: #2c89d7;
}
body .btn-no,body .btn-no:hover,body .btn-no:hover:active{
	color: #b7b7b7;
    border: 1px solid #d8dfe6;
    background: #f3f6f9;
    cursor: default;
}
.b{display:block;}
.ib{display:inline-block;}
/*箭头反转*/
body .arr-0{
	transform: rotate(0deg);
}
body .arr-180{
	transform: rotate(180deg);
}
/*滚动条*/
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/  
::-webkit-scrollbar  
{  
    width: 10px;  
    height: 10px;  
    background-color: white;  
}  
/*定义滚动条轨道 内阴影+圆角*/  
::-webkit-scrollbar-track  
{   
    border-radius: 0px;  
    background-color: white;  
} 
/*定义滑块 内阴影+圆角*/  
::-webkit-scrollbar-thumb  
{  
    border-radius: 0px;   
    background-color: #bac5d3;  
}
/*头部*/
.header{
	width: 100%;
	min-width: 1040px;
	background: rgb(255,255,255,0.98);
	height: 78px;
	position: fixed;
	top: 0px;
	z-index: 5;
	border-bottom: 1px solid #e0e0e0;
}
.header-con{
	position: relative;
	width: 1200px;
	height: 100%;/*60px*/
	margin: 0 auto;
	padding: 0 20px;
}
.header-tab{
	float: left;
	height: 77px;
	line-height: 77px;
	position: relative;
	margin-left: 40px;
	font-size: 18px;
	cursor: pointer;
	color: #1F247C;
	font-weight: bold;
}
.header-tab .header-tab-line{
	width: 0;
	height: 2px;
	position: absolute;
	bottom: 15px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #1F247C;
}
.header-tab .header-tab-line.line{
	width: 100%;
}
.header-tab .header-tab-line.line-on{
	width: 100%;
	-moz-animation: line_on 0.2s 1 linear;
	-webkit-animation: line_on 0.2s 1 linear;
	-o-animation: line_on 0.2s 1 linear;
}
.header-tab .header-tab-line.line-off{
	width: 0;
	-moz-animation: line_off 0.2s 1 linear;
	-webkit-animation: line_off 0.2s 1 linear;
	-o-animation: line_off 0.2s 1 linear;
}
.icon-company{
	width: 62px;
    height: 46px;
    border-radius: 6px;
    float: left;
    cursor: pointer;
    background: url(../images/icon-header.png) no-repeat;
    background-size: 100% 100%;
    margin-top: 16px;
    margin-right: 13px;
}
.header-title{
	height: 78px;
	float: left;
	cursor: pointer;
}
.header-title-text{
	letter-spacing: 1px;
	font-size: 18px;
	color: #1F247C;
	line-height: 78px;
	font-weight: bold;
	float: left;
}
.container{
	padding-top: 78px;
}
/*动画*/
@keyframes line_on{
	0%{
		width: 0%;
	}
	50%{
		width:50%;
	}
	100%{
		width:100%;
	}
}
@-webkit-keyframes line_on{
	0%{
		width: 0%;
	}
	50%{
		width:50%;
	}
	100%{
		width:100%;
	}
}
@-moz-keyframes line_on{
	0%{
		width: 0%;
	}
	50%{
		width:50%;
	}
	100%{
		width:100%;
	}
}
@-o-keyframes line_on{
	0%{
		width: 0%;
	}
	50%{
		width:50%;
	}
	100%{
		width:100%;
	}
}
@keyframes line_off{
	0%{
		width: 100%;
	}
	50%{
		width:50%;
	}
	100%{
		width:0%;
	}
}
@-webkit-keyframes line_off{
	0%{
		width: 100%;
	}
	50%{
		width:50%;
	}
	100%{
		width:0%;
	}
}
@-moz-keyframes line_off{
	0%{
		width: 100%;
	}
	50%{
		width:50%;
	}
	100%{
		width:0%;
	}
}
@-o-keyframes line_off{
	0%{
		width: 100%;
	}
	50%{
		width:50%;
	}
	100%{
		width:0%;
	}
}
/* 底部 */
.footer{
	min-width: 1040px;
	position: relative;
}
.footer-info{
	background-color: #3e3e3e;
}
.footer-content{
	width: 1200px;
	background: #3e3e3e;
	padding: 50px 20px;
	color: #fff;
	font-size: 16px;
	line-height: 26px;
	margin: 0 auto;
}
.footer-content-icon{
	width: 20px;
    height: 20px;
    margin-right: 9px;
    display: inline-block;
    background-size: 100% 100%;
    position: relative;
    top: 5px;
}
.footer-content a,.footer-content a:visited{
	color: #fff;
}
.footer-content a:hover,.footer-content a:active{
    color: #29abe2;
}
.mr-for-icon{
	margin-right: 29px;
}
.mb-for-footer{
	margin-bottom: 5px;
}
.footer-content .fl{
}
.footer-content .fr{
}
.icon-call{
	background-image: url(../images/icon-call.png);
}
.icon-phone{
	background-image: url(../images/icon-phone.png);
}
.icon-fax{
	background-image: url(../images/icon-fax.png);
}
.icon-location{
	background-image: url(../images/icon-location.png);
}
.icon-build{
	background-image: url(../images/icon-build.png);
}
.icon-email{
	background-image: url(../images/icon-email.png);
}
.icon-time{
	background-image: url(../images/icon-time.png);
}
.icon-wechat{
	background-image: url(../images/icon-wechat.png);
}
.icon-public-account{
	background-image: url(../images/icon-public-account.png);
}
.footer-mark{
    width: 100%;
    height: 40px;
    background-color: #353434;
	line-height: 40px;
	text-align: center;
	color: #8d8d8d;
	font-size: 12px;
}
.footer-contact{
	line-height: 30px;
    font-size: 35px;
    margin-bottom: 10px;
}
.footer-contact-tips{
    line-height: 30px;
    font-size: 18px;
    margin-bottom: 30px;
}
.qr-code-box{
	padding-left: 29px;
}
.footer-content-box-3 .qr-code{
	width: 78px;
	height: 78px;
	margin-right: 15px;
	position: relative;
    top: 5px;
}
.footer-content-box-3 .qr-code-1{
	background-image: url(../images/code-albert.png);
	background-size: cover;
}
.footer-content-box-3 .qr-code-2{
	background-image: url(../images/code-vance.png);
	background-size: cover;
}
.footer-content-box-1{
	width: 360px;
}
.footer-content-box-2{
	width: 236px;
}
.footer-content-box-3{
	width: 242px;
}
.footer-content-box-4{
	width: 242px;
}
.footer-content-box-4 .qr-code-public-account{
	background-image: url(../images/public-account.jpg);
	background-size: cover;
	width: 78px;
	height: 78px;
	position: relative;
    top: 5px;
}