.the-main > .banner {
    background: url("../images/notice/banner-bg.jpg");
    height: 400px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.the-main > .banner .title {
    font-size: 32px;
}

.the-main > .banner .desc {
    font-size: 18px;
    margin-top: 24px;
}

.the-main > .article-list {
    padding: 40px 0;
}

.the-main > .article-list .article {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px dashed #ebeef5;
}

.the-main > .article-list .article:first-child {
    padding-top: 0;
}

.the-main > .article-list .article:last-child {
    padding-bottom: 0;
}

.the-main > .article-list .article img {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.the-main > .article-list .article .text {
    flex: 1;
    width: 0;
    margin-left: 24px;
}

.the-main > .article-list .article .title {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.the-main > .article-list .article .date {
    color: #606266;
    margin-top: 8px;
    font-size: 16px;
}

.the-main > .article-list .y-page {
    margin-top: 24px;
    justify-content: flex-end;
    display: flex;
}