.menu{
    display: flex;
    align-items: center;
    height: 100%;
    /* background-color: ; */
}

.menu .menuItem{
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 16px;
    color: #212121;
    margin: 0 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all ease 0.2s;
    height: 100%;
}
.menu .menuItem a{

    color: #212121;
    text-decoration: none;
}
.menu .menuItem a:hover {
    color: #E40D0D;
}
.menu .menuItem .dropIcon{
    width: 14px;
    height: 8px;
    display: block;
    margin-left: 5px;
    margin-top: 2px;
}

.menu .active{
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 16px;
    color: #E40D0D;
}

.menu .hasChildren{
    position: relative;
}

.menu .popOver{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,100%) scaleY(0);
    transform-origin: top;
    background-color: #FFFFFF;
    box-sizing: content-box;
    padding: 20px;
    border-radius: 5px;
    transition: all ease 0.2s;
}
.menu .popOver a{
    line-height: 30px;
    color: #000;
    text-decoration: none;
}

.menu .popOver a:hover {
    line-height: 30px;
    color: #E40D0D;
    text-decoration: none;
}
.menu .hasChildren:hover .popOver{
    transform: translate(-50%,100%) scaleY(1);
}