/*!
 * 调查征集
 * author:zzongyi
 * date:2021-10-29
 */

*,
::after,
::before {
    box-sizing: border-box;
}

/* 列表头部 */
.list-title {
    height: 42px;
    line-height: 42px;
    border-radius: 4px;
    margin: 20px 4px 0 4px;
    background-color: #f9e7e7;
    font-size: 16px;
}

.list-title li {
    float: left;
    text-align: center;
}

.list-title li:nth-child(1) {
    width: 64%;
    text-align: left;
    padding-left: 38px;
}

.list-title li:nth-child(2) {
    width: 18%;
}

.list-title li:nth-child(3) {
    width: 18%;
}

/* 列表内容 */

.list {
    margin: 0 4px;
    padding-top: 10px;
    font-size: 0;
    max-height: 690px;
    overflow: hidden;
}

.list-item > * {
    display: inline-block;
}

.list-item {
    height: 52px;
    line-height: 52px;
    border-radius: 5px;
    margin: 4px 0;
}

.list-item:hover {
    background-color: #fdf7f7;
}

.item-name {
    width: 64%;
    color: #333;
    padding-left: 38px;
    padding-right: 50px;
    vertical-align: top;
    font-size: 16px;
}

.item-status {
    color: #999;
}

.item-status,
.item-date {
    width: 18%;
    font-size: 16px;
    text-align: center;
}

.levy {
    color: #b01127;
}

.list-item:hover {
    color: #b01127;
}

.list-item:hover .item-status,
.list-item:hover .item-name {
    color: #b01127;
}

