/* 区块1 */
.news-section1-container{
    width: 100%;
    padding: 14.6875rem 0;
}
.news-section1-container-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section1-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 3.3125rem;
    font-weight: bold;
}
.news-section1-container-header-description{
    width: 100%;
    padding-top: 0.625rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    color: #a1a1a1;
}
.news-section1-container-body{
    width: 100%;
    padding-top: 5rem;
}
.news-section1-desc-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1.25rem;
    grid-row-gap: 5rem;
}
.news-section1-desc{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #000000;
    text-decoration: none;
}
.news-section1-desc-poster{
    width: 100%;
    height: 20.625rem;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-section1-desc-poster-img{
    width: 100%;
    height: 20.625rem;
    object-fit: cover;
}
.news-section1-desc-info{
    width: 100%;
    padding-top: 1.875rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.news-section1-desc-title{
    width: 100%;
    text-align: left;
    font-size: 1.625rem;
    font-weight: bold;
}
.news-section1-desc:hover .news-section1-desc-title{
    text-decoration: underline;
}
.news-section1-desc-info-footer{
    width: 100%;
    padding-top: 1.875rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section1-desc-description{
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: #a1a1a1;
    font-weight: 400;
}
.news-section1-desc:hover .news-section1-desc-description{
    text-decoration: underline;
}
.news-section1-desc-date{
    width: 100%;
    padding-top: 1.5625rem;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
}