@charset "UTF-8";
/**!
* 管理制度
* date:2021-07-09
* author: qianyuting;
*/

/* 列表 */

.info-list {
    margin: 0 20px;
}

.list-item {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    border-bottom: 1px dashed #dedede;
}

.list-item:last-child {
    border-bottom: 0;
}

.list-item a {
    position: relative;
    display: block;
    padding-left: 10px;
    color: #666;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list-item a:before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    width: 5px;
    height: 5px;
    margin-top: -2.5px;
    background-color: #666;
    border-radius: 50%;
}

.list-item a:hover {
    color: #106ace;
}

.list-item a:hover:before {
    background-color: #106ace;
}