
.notice {
    box-sizing: border-box;
    padding: 0 24px;
    margin: 20px auto 60px;
    width: 1200px;
    min-height: calc(100vh - 313px);
    background: #ffffff;
    border-radius: 8px;
}

.notice-title {
    height: 26px;
    font-size: 16px;
    font-weight: bold;
    color: #111;
    line-height: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
}
.notice-item {
    padding: 24px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f7f7f7;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.notice-item:hover {
    background: rgba(0, 0, 0, 0.05);
}
.notice-item-left {
    width: 752px;
    color: #111;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.notice-item-right {
    position: relative;
    padding-right: 24px;
    color: #999;
}
.notice-item-right::after {
    content: '';
    position: absolute;
    top: 48%;
    right: 10px;
    margin-top: -2.5px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    transform: rotate(45deg);
}
