.color-blue{
	color: #0254fe;
}
.color-white{
	color: #FFFFFF;
}
.color-gray{
	color: #666666;
}
.bg-blue{
	background: #0254fe;
}
.content_width{
	max-width: 1200px;
	margin: 0 auto;
}
.justify_around{
	display: flex;
	justify-content: space-around;
}
.justify_between{
	display: flex;
	justify-content: space-between;
}
.justify_center{
	display: flex;
	justify-content: center;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.cursor{
    cursor:pointer;
}
/*header*/
header{
    height: 86px;
    line-height: 84px;
    padding: 0 50px;
}
.navigate{
    list-style: none;
    margin: 0;
}
.navigate li{
    position: relative;

}
.navigate .nav_item {
    display:inline-block;
    width: 112px;
    height: 48px;
    line-height: 48px;
    color:#333;
    background: transparent;
    text-align: center;
    border-radius: 30px;
}
.navigate .nav_item:hover {
    width: 112px;
    height: 48px;
    color: #fff;
    background: #0254fe;
    text-decoration: none;
    box-shadow: 0px 0px 1px 1px #3e2fc6;
}
.active{
    color: #fff !important;
    background: #0254fe !important;
    text-decoration: none;
    box-shadow: 0px 0px 1px 1px #3e2fc6;
}
.sec_nav{
     position: absolute;
     width: 100%;
     text-align: center;
     line-height: 40px;
     background: #fff;
     display: none;
     z-index: 99;
}
.sec_nav li a{
    color: #333 !important;
}
.sec_nav li:hover{
    background: #0254fe;
}
.sec_nav li:hover a{
    color: #fff !important;
    text-decoration: none;
}
.navigate li:hover .sec_nav{
    display: block;
}

/*banner*/
.banner{
    min-height: 370px;
}
.banner>img{
    width: 100%;
    min-height: 370px;
    display: block;
    max-width: 100%;
    min-width: 1200px;
}
/*footer*/
footer{
    min-height: 330px;
    margin-top: 100px;
    background: url('../img/footer_bg.png');
    padding-top: 86px;
}
footer p a{
     color: #a6a7a9 !important;
}
footer .list{
    font-size: 12px;
}
footer .list a{
    color: #8d8d8d !important;
}