#my-header{
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-repeat: repeat-x;
    background-position: left top;
    background-color: rgba(0, 0, 0, .5);
    background-color: #3C7FE8;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    /* padding: 0 160px; */
    color: white;
    z-index: 10;
    padding: 0 50px;
}
#my-header a{
    text-decoration: none;
}
#my-header .logoDiv{
    flex: 1;
    margin-left: 20px;
    font-size: 20px;
    cursor: pointer;
}
#my-header .menuDiv{
    /* display: flex;
    flex-direction: row-reverse; */
}
#my-header .menuDiv .menuItem{
    color: #fff;
    font-size: 15px;
    /* border-bottom: 2px solid ; */
    padding-bottom: 5px;
    margin-right: 12px;
    opacity: 0.8;
    /* display: inline; */
    border-bottom: 2px solid transparent;
}
#my-header .menuDiv .menuItem img{
    height: 20px;
    margin-top: -5px;
}
#my-header .menuDiv .menuItem:hover{
    opacity: 1;
    border-bottom: 2px solid #fff;
}
#my-header .menuDiv .subMenuItem{
    font-size: 13px;
    height: 32px;
    line-height: 32px;
    display: block;
    word-break: break-all;
}
#my-header .online-div{
    margin: 0 20px;
    height: 30px;
    line-height: 30px;
    background: linear-gradient(90deg, #2367E0, #33D6FF);
    border-radius: 12px;
    padding: 0 20px;
    cursor: pointer;
    color: white;
}
#my-header .online-div a{
    color: white;
    font-size: 15px;
}
#my-header .dropdown {
    position: relative;
    display: inline-block;
}
#my-header .dropdown-content {
    display: none;
    position: absolute;
    min-width: 200%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    /* padding: 12px 16px; */
    z-index: 10;
    background-color: white;
    margin-top: 0px;
    padding: 5px 15px;
    border-radius: 3px;
    box-shadow: 0 0 5px #eee;
    width: max-content;
    margin-top: 3px;
}

#my-header .dropdown:hover .dropdown-content {
    display: block;
}

#my-header .subMenuItem {
    color: #333;
}

.header .logo{
    display: flex;
    align-items: center;
    font-size: 19px;
    margin-left: 20px;
}
.header .logo img{
    /* width: 36px; */
    height: 36px;
}
.header .vertical-line{
    width: 1px;
    height: 40px;
    background: linear-gradient(0deg, #3C7FE8, #ABBEDD, #3C7FE8);
    margin: 0 10px;
}