.one-line {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list {
    --hover: #5c4882;
    margin-bottom: 49px;
}

.list li {
    margin: 9px auto;
    width: 1100px;
    height: 160px;
    padding: 16px 16px;
    background: #f9f7f9;
    border-radius: 8px;
    display: flex;
    padding-right: 39px;
    box-sizing: border-box;
    align-items: center;
    cursor: pointer;
}

.list li .time {
    width: 250px;
    align-self: stretch;
    background: linear-gradient(90deg, rgba(92, 72, 130, 0) 0%, #5c4882 100%);
    border-radius: 4px;
}

.list li .summary {
    flex: 1;
    align-self: stretch;
    padding-top: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: 42px;
}

.list li .summary .timer {
    font-size: 19px;
    font-family: Bahnschrift;
    font-weight: normal;
    color: #5c4882;
}

.list li .summary .title {
    font-size: 20px;
    font-family: GlowSansSC;
    font-weight: bold;
    color: #000000;
    line-height: 1.5;
    text-overflow: ellipsis;
    overflow: hidden;
}

.list li .summary .summary-txt {
    font-size: 16px;
    color: #000000;
    margin-top: 16px;
    font-weight: normal !important;
    white-space: normal;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list * {
    transition: all 0.3s;
}

.list li .more {
    width: 26px;
    height: 17px;
    background: url("../images/news/link.png") no-repeat center;
    background-size: contain;
}

.list li:hover,
.list li.active {
    background: var(--hover);
    color: #fff;
}

.list li:hover .summary,
.list li.active .summary {
    color: #fff;
    transition: none;
}

.list li:hover .summary .timer,
.list li.active .summary .timer,
.list li:hover .summary .title,
.list li.active .summary .title,
.list li:hover .summary .summary-txt,
.list li.active .summary .summary-txt {
    color: #fff;

}

.list p {
    transition: none;
}

.list li:hover .more,
.list li.active .more {
    background: url("../images/news/link-act.png") no-repeat center;
}
