.banner {
    width: 100%;
    min-width: 830px;
    /* background: url('https://meitr.oss-cn-shanghai.aliyuncs.com/official/images/news/news-banner.png') no-repeat; */
    background: url('https://meitr.oss-cn-shanghai.aliyuncs.com/official/images/news-banner.png') no-repeat;
    background-size: 100% 100%;
    height: 274px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner .title {
    font-size: 50px;
    font-family: Source Han Serif CN, Source Han Serif CN;
    font-weight: bold;
    color: #0B9BAC;
    margin-bottom: 22px;
}

.banner .subtitle {
    font-size: 24px;
    font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
    font-weight: 300;
    color: #717171;
}

.news-content {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news-content .news-item {
    padding: 20px 0;
    border-bottom: 1px solid #D8D8D8;
    display: flex;
    /* align-items: center; */
    margin-bottom: 26px;
    cursor: pointer;
}

.news-item .time-info {
    display: flex;
    align-items: center;
}

.news-item .time-info .day {
    font-size: 20px;
    font-family: HarmonyOS Sans SC-Regular, HarmonyOS Sans SC;
    font-weight: 400;
    color: #000000;
}

.news-item .time-info .line {
    width: 2px;
    height: 37px;
    background-color: #999;
    margin: 0 8px;
}

.news-item .time-info .time {
    font-size: 12px;
    font-family: HarmonyOS Sans SC-Regular, HarmonyOS Sans SC;
    font-weight: 400;
    color: #999999;
}

.news-item .time-info .time img {
    width: 14px;
    height: 14px;
    margin-top: 5px;
}

.news-item .news-img {
    width: 287px;
    height: 162px;
    margin: 0 10px;
}

.news-item .news-img img {
    width: 100%;
    height: 100%;
}

.news-item .news-article {
    width: 474px;
    font-size: 12px;
    font-family: HarmonyOS Sans SC-Regular, HarmonyOS Sans SC;
    font-weight: 400;
    color: #717171;
    padding-left: 15px;
}

.news-item .news-article .title {
    font-size: 18px;
    font-family: HarmonyOS Sans SC-Medium, HarmonyOS Sans SC;
    font-weight: 600;
    color: #000000;
    padding-top: 5px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-article .deputyTitle {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    margin: 10px 0;
}

/* 富文本 */
.news-article .describe {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}