.header-container{
    width: 100%;
    height: 80px;
    background:#fff url('../img/3.png') repeat-x center bottom;
    border-bottom: 5px solid #0050c7;
}
.header-container-position{
    width: 1200px;
    height: inherit;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    width: 198px;
    height: 33px;
    background: url("../img/1.png") no-repeat center center;
}
.header-menu-container ul{
    line-height: 33px;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    justify-content: space-around;
}
.header-menu-container ul li{
    position: relative;
}
.header-menu-container ul li a{
    display: block;
    padding: 0 40px;
    letter-spacing: 0.05em;

}
.header-menu-container ul li:before{
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 23px;
    top: 5px;
    right: -1px;
    background-color: #d4d4d4;
}
.header-menu-container ul li:last-child:before{
    background-color: transparent;
}