*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    width: 100%;
    height: 100%;
    min-width: 1366px;
}
/* body {
    display: flex;
    flex-direction: column;
} */
.container{
    width: 100%;
    min-width: 1200px;
    min-height: 100%;
    position: relative;  
    padding-bottom: 505px;
}
#header{
   
    width: 100%; 
    padding-top: 20px;  
    background: #fff;
    /* flex: 0 0 auto; */
    position:fixed;
    top:0;
    left:0;
    z-index:99;
    box-shadow:0 1px 3px rgba(0,0,0,.1)
    
}
.header_box{
	 height: 80px;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    min-width: 1200px;
    /* background: pink; */
}
.header .logo_box{
    width: 424px;
    height: 40px;
}
.header .logo_box img{
    width: 100%;
    height: 100%;
}
.nav_list{
    /* background: red; */
    width: 600px;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    font-size: 18px;
}
.nav_list a{
    padding: 5px 2px;
}
.nav_list a:hover{
	color:#296fbf;
}
.active{
    color: #296fbf;
    border-bottom: solid 3px #296fbf;
    transition: border 300ms;
    font-weight: bold;
    /* transition: all .5s ease-in; */
}
#footer{
    width: 100%;
    min-width: 1200px;
    /* height: 525px; */
    background: #21232A;
    color: #fff;
    /* flex: 0 0 auto; */
    position: absolute;
    left: 0;
    bottom: 0;
}
.footer_box{
    width: 62%;
    min-width: 1200px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
}
.footer_box .title{
    font-size: 24px;
}
#footer a{
    display: block;
    font-size: 16px;
    color: #cccccc;
    margin-top: 10px;
    transition:all 300ms;
}
#footer a:hover{
	color:#fff;
	transition:all 300ms;
}
.footer_bot{
    background: #17181D;
    height: 114px;
    text-align: center;
    font-size: 14px;
	letter-spacing: 1px;
	color: #ffffff;
    opacity: 0.49;
    padding-top: 35px;
}
.footer_bot div{
    display: flex;
    -webkit-display:flex;
    justify-content: center;
    margin-top: 8px;
}
.footer_bot div .num{
    display: flex;
    -webkit-display:flex;
    align-items: center;
}
.footer_bot div .num::before{
    margin-left: 20px;
    content: "";
    display: block;
    width: 18px;
    height: 20px;
    background: url("../img/index/icp.png");
    margin-right: 10px;
}
