
#header{
    height: 100px;
    line-height: 100px;
    background-image: url("/ccb/server/AutoFlex-Dock/public/nav_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-family: "Times New Roman",Georgia,Serif!important;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 2000;
    overflow: hidden;
    /* width: 100%; */
}
#header a{
    text-decoration: none;
    color: white;
}
#header a:hover{
    text-decoration: none!important;
    color: white;
}
#header > div{
    height: 100px!important;
    line-height: 100px!important;
    margin-top: 0!important;
    margin-bottom: 0!important;
    padding-top: 0!important;
    padding-bottom: 0!important;
    font-size: 36px;
}
#header > div > img{
    width: 100%;
    height: 100%;
}
#header > ul{
    height: 100px;
    line-height: 100px;
    display: flex;
    justify-content: space-between;
}
#header > ul li{
    width: 140px;
    font-size: 23px;
    text-align: center;
    cursor: pointer;
}
#header > ul a {
    position: relative;
}
#header > ul .active i{
    display: block;
    height: 2px;
    width: 140px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: orange;
}
#header > ul a:hover{
    background-color: rgba(81,131,148, 0.5);
}
#header > ul a.active, #header > ol li.active{
    background-color: rgba(81,131,148, 0.5);
    color: orange;
}
@media only screen and (max-width: 1400px) {
    #header {
        padding: 0 60px;
    }
}
@media only screen and (max-width: 1200px) {
    #header > div{
        display: none;
    }
    #header > ul {
        width: 100%;
    }
    #header {
        padding-left: 80px;
        padding-right: 80px;
    }
}
@media only screen and (max-width: 1100px) {
    #header {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (max-width: 1000px) {
    #header {
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media only screen and (max-width: 960px) {
    #header {
        padding-left: 60px;
        padding-right: 60px;
    }
    #header > div {
        display: block;
    }
    #header > ul {
        display: none;
    }
    #header > #menu{
        display: block!important;
    }
}
@media only screen and (max-width: 560px) {
    #header {
        padding-left: 60px;
        padding-right: 60px;
    }
    #header > ol{
        width: 100%!important;
    }
}
#header > #menu{
    width: 100px;
    height: 100px;
    cursor: pointer;
    display: none;
    position: static!important;
}
#header > #menu > img{
    width: 40px;
    height: 40px;
    margin: 30px 30px;
}
#header > #menu {
    transition: all .3s 0s linear;
}
#header > ol{
    width: 300px;
    position: fixed;
    top: 100px!important;
    right: 0!important;
    font-size: 23px;
    text-align: center;
    transform: translateX(600px);
    transition: all .4s 0s linear;
}
#header > ol a{
    display: block;
    background-image: url("/ccb/server/AutoFlex-Dock/public/nav_bg.png");
}
#header > ol li{
    height: 60px;
    line-height: 60px;
    border: 1px solid lightgray;
    border-top: none;
    color: white;
    cursor: pointer;
}
#header > #menu:hover+ol{
    transform: translateX(0);
}
#header > ol:hover{
    transform: translateX(0);
}
#header > ol li:hover{
    background-color: rgba(81,131,148, 0.5);
}