/* 区块1 */
.news-section1-container{
    width: 100%;
    height: 57.1875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.news-section1-container-bg{
    width: 100%;
    height: 57.1875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-section1-container-bg-img{
    width: 100%;
    height: 57.1875rem;
    object-fit: cover;
}
.news-section1-container-content-wrap{
    width: 100%;
    height: 57.1875rem;
    position: absolute;
    top: 0;
    left: 0;
    /*background-color: rgba(0,0,0,0.4);*/
}
.news-section1-container-content{
    height: calc(57.1875rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.news-section1-container-sub-title{
    width: 100%;
    text-align: left;
    font-size: 1.5625rem;
    color: rgba(255,255,255,0.5);
}
.news-section1-container-title{
    width: 100%;
    padding-top: 1.5625rem;
    text-align: left;
    font-size: 3.75rem;
    color: #FFFFFF;
}

/* 区块2 */
.news-section2-container{
    width: 100%;
    padding: 6.875rem 0;
}
.news-section2-container-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section2-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 2.8125rem;
    font-weight: bold;
}
.news-section2-news-list{
    width: 100%;
}
.news-section2-news-group{
    width: 100%;
    padding-top: 6.125rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding-bottom: 7.5rem;
    border-bottom: #e7e7e7 solid 0.0625rem;
}
.news-section2-news-group:last-of-type{
    border-bottom: none;
}
.news-section2-news{
    width: calc(100% / 4);
    height: 32.625rem;
    border-radius: 1.875rem 0.625rem 1.875rem 0.625rem;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
}
.news-section2-news-bg{
    width: 100%;
    height: 32.625rem;
    /*display: flex;*/
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: none;
}
.news-section2-news-bg-img{
    width: 100%;
    height: 32.625rem;
    object-fit: cover;
}
.news-section2-news-content{
    width: calc(100% - 5rem);
    height: calc(32.625rem - 12.5rem);
    padding: 6.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
}
.news-section2-news-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section2-news-title{
    width: 100%;
    text-align: left;
    font-size: 1.75rem;
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section2-news-description{
    width: 100%;
    padding-top: 1.5625rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    color: #878787;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section2-news-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section2-news-date{
    width: 100%;
    text-align: left;
    font-size: 1rem;
    color: #000000;
}
.news-section2-news-date span{
    font-size: 2.8125rem;
    font-weight: bold;
    padding-right: 1.125rem;
}
.news-section2-news:hover .news-section2-news-bg{
    display: flex;
}
.news-section2-news:hover .news-section2-news-content{
    background-color: rgba(0,0,0,0.5);
}
.news-section2-news:hover .news-section2-news-date,
.news-section2-news:hover .news-section2-news-description,
.news-section2-news:hover .news-section2-news-title
{
    color: #FFFFFF;
}