@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    
}
.more{
    width: 80px;
    float: right;
    margin-top: -20px;
    font-size: 16px;
}
.more a{
    color: #666;
}
.list_dt{
    /*background: #fff; */
    color: #a51c30;
    width: 100%;
    padding: 0 40px 0 20px;
    height: 44px;
    line-height: 44px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    /* border-bottom: 1px solid #a51c30;*/
    
}
.list_dt:hover{
    background: #fff;
border-left: #b7b7b7 2px solid;
    color: #555555;
    font-weight: bold;
}
.list_dt:hover ._after{
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff;
    border-left: #b7b7b7 2px solid;
    color: #555555;
    font-weight: bold;
}
#open{
    background: #fff;
border-left: #a51c30 2px solid;
}
#open ._after{
    display: block;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
}
.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: #f5f5f5;
    list-style-type: none;
    color: #a51c30;
    width: 120px;
    padding: 0 30px;
    height: 24px;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
    /* border-bottom: 1px solid #a51c30;
}
.list_li:hover{
    background: #fff;
}