<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
}
.list_dt{
    background: #ededed;
    color: #000;
    width: 200px;
    padding: 0 40px 0 20px;
    height: 54px;
    line-height: 54px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid #fff;
}
.list_dt:hover{
    background: #fff;
}
.list_dt:hover ._after{
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #ededed;
}
#open{
    background: #ededed;
}
#open ._after{
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #ededed;
}
.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_li{
    background: #ededed;
    list-style-type: none;
    color: #000;
    width: 200px;
    padding: 0 30px;
    height: 54px;
    line-height: 54px;
    cursor: pointer;
    border-bottom: 1px solid #fff;
}
.list_li:hover{
    background: #fff;
}</pre></body></html>