/* 区块1 */
.news-section1-container{
    width: 100%;
    height: 36.875rem;
    position: relative;
}
.news-section1-bg{
    width: 100%;
    height: 36.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-section1-bg-img{
    width: 100%;
    height: 36.875rem;
    object-fit: cover;
}
.news-section1-info{
    width: 100%;
    height: calc(36.875rem - 16.875rem);
    padding: 8.4375rem 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
}
.news-section1-info-wrap{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section1-title{
    width: 100%;
    text-align: left;
    font-size: 2.875rem;
    color: #FFFFFF;
}
.news-section1-date{
    width: 100%;
    padding-top: 2.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* 区块2 */
.news-section2-container{
    width: 100%;
    padding: 4.375rem 0;
}
.news-section2-container-body{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.news-section2-container-body-left{
    flex: 1;
    padding-right: 6.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section2-detail{
    width: 100%;
    text-align: left;
    font-size: 1rem;
    line-height: 1.7;
}
.news-section2-detail h1,
.news-section2-detail h2,
.news-section2-detail h3,
.news-section2-detail h4,
.news-section2-detail h5,
.news-section2-detail h6{
    font-weight: bold;
    font-size: 2.875rem;
}
.news-section2-detail p{
    white-space: pre-line;
}
.news-section2-container-body-right{
    width: 27.125rem;
}
.news-section2-recommends{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section2-recommends-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section2-recommends-header-title{
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    font-weight: bold;
}
.news-section2-recommend-list{
    width: 100%;
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section2-recommend{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #000000;
    text-decoration: none;
    margin-bottom: 2.8125rem;
}
.news-section2-recommend:last-of-type{
    margin-bottom: 0;
}
.news-section2-recommend-poster{
    width: 100%;
    height: 20.625rem;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-section2-recommend-poster-img{
    width: 100%;
    height: 20.625rem;
    object-fit: cover;
}
.news-section2-recommend-info{
    width: 100%;
    padding-top: 1.875rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.news-section2-recommend-title{
    width: 100%;
    text-align: left;
    font-size: 1.625rem;
    font-weight: bold;
}
.news-section2-recommend:hover .news-section2-recommend-title{
    text-decoration: underline;
}
.news-section2-recommend-info-footer{
    width: 100%;
    padding-top: 1.875rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section2-recommend-description{
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: #a1a1a1;
    font-weight: 400;
}
.news-section2-recommend:hover .news-section2-recommend-description{
    text-decoration: underline;
}
.news-section2-recommend-date{
    width: 100%;
    padding-top: 1.5625rem;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
}