.list-warp {
    box-sizing: border-box;
    background-color: #fff;
}

.list-warp .warp-box {
    height: 100%;
}

.list-warp .menu-title {
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    font-weight: bolder;
    background-color: #1A439E;
    color: #fff;
}
.list-warp .area-box {
    overflow-y: auto;
}
.list-warp .area-btn {
    background-color: #E6E6E6;
    line-height: 40px;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}
/* 展开、收起图标 */
.list-warp .area-btn.unfolded::before {
    position: absolute;
    left: 5px;
    content: '+';
}
.list-warp .area-btn.unfolded.folded::before {
    position: absolute;
    left: 5px;
    content: '-';
}

.list-warp .area-btn.active, .list-warp .area-btn:hover {
    background-color: #6E8FD6;
    color: #fff;
}
.list-warp .search-box {
    line-height: 50px;
    background-color: #EBF4FB;
}
.list-warp .search-box .son {
    height: 30px;
    line-height: 30px;
    background-color: #fff;
}
.list-warp .search-box .select {
    width: 120px;
}
.list-warp .search-box .input {
    width: 150px;
}
.list-warp .search-box .time {
    display: inline-block;
}
.list-warp .search-box .btn {
    height: auto;
    line-height: normal;
    background-color: #1A439E;
    color: #fff;
}
.list-warp .table-box {
    overflow: auto;
    line-height: 40px;
    height: 90%;
}
.list-warp .table-box.head {
    background-color: #EBF4FB;
}
.list-warp .table-box .sort {
    width: 80px;
}
.list-warp .table-box .name {
    width: 400px;
    box-sizing: border-box;
    overflow:hidden;
    text-overflow:ellipsis;
    /*禁止换行显示*/
    white-space:nowrap;
}
.list-warp .table-box .dept {
    width: 120px;
}
.list-warp .table-box .text {
    width: 200px;
}
.list-warp .table-box .type {
    width: 150px;
}
.list-warp .table-box .time {
    width: 160px;
}
.list-warp .table-box .option {
    width: 140px;
}
.list-warp .table-box .btn {
    background-color: #1890FF;
    color: #fff;
}
.list-warp .table-box .head-box {
    line-height: 20px;
}
.list-warp .table-box .head-img {
    width: 87px;
    height: 101px;
}
.list-warp .page-box {
    line-height: 30px;
    font-size: 16px;
}
.list-warp .page-box .page-btn {
    display: inline-block;
    border: 1px solid #000;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}
.list-warp .page-box .page-btn:hover, .list-warp .page-box .page-btn.active {
    background-color: #1890FF;
    color: #fff;
}
.list-warp .page-box .page-btn.disabled, .list-warp .page-box .page-btn.disabled:hover, .list-warp .page-box .page-btn.disabled.active {
    background-color: #fff;
    color: #ccc;
    cursor: not-allowed;
}
.list-warp .page-box .page-btn.more, .list-warp .page-box .page-btn.more:hover, .list-warp .page-box .page-btn.more {
    background-color: #fff;
    color: #000;
    border: 0;
    font-size: 18px;
    font-weight: bolder;
    cursor: not-allowed;
}
.list-warp .page-box .select {
    height: 30px;
    line-height: 30px;
}
.list-warp .page-box .num {
    width: 48px;
    height: 30px;
    line-height: 30px;
}
.dw_title{
    width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    border: none;
}
.height_90{
    height: 90%;
}