@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;

}
.list_dt{
    background: #f8f8f8;
    width:240px;
    padding: 0 40px 0 20px;
    height:46px;
    line-height:46px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative; font-size:16px;
    border-bottom: 1px solid #eee;
}
.list_dt:hover{
    background: #fff;
}
.list_dt:hover ._after{
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #558521;
}
#open{
    background: #fff;
}
#open ._after{
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #558521;
}
.list_dt_icon{
    position: absolute;
    right: 10px;
    top: 9px;
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/off.png") no-repeat;
}
#open .list_dt_icon{
    background: url("../images/open.png") no-repeat;
}
.list_dd{
    display: none;
}
.list_li{
    background: #f6f6f6;
    list-style-type: none;
    width:240px;
    padding: 0 10px;
    height: 38px;
    line-height: 38px;
    cursor: pointer; font-size:14px;
    border-bottom: 1px solid #eee;
}
.list_li:hover{ color:#FFF;
    background: #558521;
}
.list_li:hover a{ color:#FFF;
}