﻿.menuUl{
    padding: 0;
    margin:0;
    list-style: none;
}
.menuLi{
    position: relative;
    width: 270px;
    height: 45px;
    line-height: 45px;
    cursor: pointer;
    border-bottom: solid 1px #DCDCDC;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menuLi i{
    display:inline-block;
    width: 8px;
    height: 12px;
    background: url('../Images/箭头-未选中.png') no-repeat center center;
}
.menuLi:hover>span{
    color: #E9222A;
}
.menuLi:hover i{
    background: url('../Images/箭头-选中.png') no-repeat center center;
}
.no-data i{
    display:none;
}
.menuLi span{
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
}
.menuLi:hover{
    color: #E9222A;
}
.menuDiv{
    position: absolute;
    left: 100%;
    padding-left: 20px;
    top:-1px;
    display:none;
}