.announcement-list {
    padding: 0;
    margin: 0;
}

.announcement-item {
    display: inline-block;
    font-family: 'Source Han Sans CN', sans-serif;
    font-size: 18px;
    font-weight: 400;
    width: 100%;
}

.announcement-item + .announcement-item {
    border-top: 1px solid #e0e0e0;
}

.announcement-item a {
    text-decoration: none;
    display: flex;
    height: 70px;
    align-items: center;
    padding-left: 36px;
    position: relative;
}

.announcement-item a:hover .announcement-title {
    color: #c7020b;
}

.announcement-item a::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    width: 6px;
    background-color: #F3A036;
    border-radius: 50%;
}

.announcement-title {
    flex: 1;
    color: #333;
    text-decoration: none;
    display: block;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Source Han Sans CN;
    font-weight: 400;
}

.announcement-date {
    width: 30%;
    text-align: right;
    color: #999999;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
}