/* 区块1 */
.news-section1-container{
    width: 100%;
    margin-top: 1px;
}
.news-section1-container-header{
    width: 100%;
    padding: 2.5rem 0;
    background: #1e235a;
}
.news-section1-container-header-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.news-section1-container-header-poster{
    width: 29.375rem;
    height: 15.625rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-section1-container-header-poster-img{
    width: 29.375rem;
    height: 15.625rem;
    object-fit: cover;
}
.news-section1-container-header-info{
    flex: 1;
    padding-right: 5rem;
    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: 3rem;
    font-weight: bold;
    color: #ffffff;
}
.news-section1-container-header-date{
    width: 100%;
    padding-top: 1.25rem;
    text-align: left;
    font-size: 1rem;
    color: #ffffff;
}
.news-section1-container-body{
    width: 100%;
    padding: 2.5rem 0;
}
.news-section1-container-content{
    font-size: 1rem;
    text-align: left;
    line-height: 1.7;
}
.news-section1-container-content a{
    text-decoration: none;
    color: #e9511d;
}
.news-section1-container-footer{
    width: 100%;
    padding-top: 2.5rem;
}
.news-section1-container-navigations{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.news-section1-container-navigation{
    text-decoration: none;
    color: #e9511d;
    font-size: 1rem;
}

/* 区块2 */
.news-section2-container{
    width: 100%;
    padding: 5rem 0 2.5rem;
}
.news-section2-share-btn-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-section2-share-btn{
    width: 2.25rem;
    height: 2.25rem;
    background: #000000;
    border-radius: 1.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 0.625rem;
}
.news-section2-share-btn:last-of-type{
    margin-right: 0;
}
.news-section2-share-btn:hover{
    background: rgba(233,81,29,1);
}
.news-section2-share-btn-icon{
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-section2-share-btn-icon-img{
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}
.news-section2-recommend-news-list{
    width: 100%;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}
.news-section2-recommend-news{
    width: calc(100% / 3 - 2.5rem);
    margin-right: 3.75rem;
    background: #1e235a;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-section2-recommend-news:last-of-type{
    margin-right: 0;
}
.news-section2-recommend-news-poster{
    width: 100%;
    height: 14.0625rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-section2-recommend-news-poster-img{
    width: 100%;
    height: 14.0625rem;
    object-fit: cover;
}
.news-section2-recommend-news-info{
    flex: 1;
    width: calc(100% - 2.5rem);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.news-section2-recommend-news-title{
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    color: #ffffff;
}
.news-section2-recommend-news-description{
    width: 100%;
    padding-top: 0.625rem;
    text-align: left;
    font-size: 1.125rem;
    color: #ffffff;
}
.news-section2-recommend-news-btn{
    margin-top: 1.25rem;
    width: max-content;
    max-width: 80%;
    text-align: left;
    padding: 0.625rem 1.875rem;
    border: rgba(233,81,29,1) solid 1px;
    border-radius: 0 3.75rem 0 0;
    color: #ffffff;
    text-decoration: none;
    background: rgba(233,81,29,1);
}