/*列表页*/
.list ul li{
    line-height: 40px;
    font-size: 14px;
    overflow: hidden;
    padding-left: 15px;
    position: relative;
}
.list ul li:before{
    content: "";
    position: absolute;
    top: 17px;
    left: 0;
    display: block;
    width: 5px;
    height: 5px;
    background: #ff9900;
    border-radius: 50%;
}
.list ul li a{
    display: block;
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}
.list ul li span{
    float: right;
    color: #999999;
}


/*手机*/
@media all and (max-width: 700px) {
    
}

