body{
    background-color: #f7f4eb;
}
/* 页面主容器 */
.news-page-container{
    width: 100%;
    padding-top: calc(14.8125rem + 5rem);
    padding-bottom: 4.375rem;
}
.news-page-container-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.news-page-container-left{
    width: 21.6875rem;
    margin-top: 6.25rem;
    /*height: 21.6875rem;*/
}
.news-page-container-left-wrap{
    /*position: fixed;*/
    /*left: 10vw;*/
    /*top: calc(16.0625rem + 5rem);*/
    /*z-index: 99;*/
}
.news-page-container-left-wrap-top2{
    position: fixed;
    left: 10vw;
    z-index: 99;
    top: calc(4.375rem + 5rem);
}
.news-page-container-right{
    width: calc(100% - 21.6875rem - 4.0625rem);
    margin-left: 4.0625rem;
}
.news-page-container-title{
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: "Misticaly",sans-serif;
    color: #000000;
}
.news-page-container-header{
    width: 100%;
    padding-top: 1.625rem;
    margin-top: 5.375rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    border-top: #2d343c solid 0.0625rem;
}
.news-page-container-header-left{
    width: calc(100% - 36.125rem - 3.75rem);
    margin-right: 3.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 18.375rem;
}
.news-page-container-header-actions{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.news-page-container-header-action{
    padding: 0 1.5625rem;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 0.625rem;
    background-color: #343e4a;
    color: #d09520;
    font-size: 1rem;
    text-decoration: none;
    border: #c1a774 solid 0.1875rem;
}
.news-page-container-header-action:hover{
    background-color: #d09520;
    color: #343e4a;
}
.news-page-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 2.1875rem;
    line-height: 2.5rem;
    font-weight: 500;
    font-family: "Roboto Medium",sans-serif;
    color: #271f1e;
}
.news-page-container-header-desc{
    width: 100%;
    text-align: left;
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    font-weight: 300;
    font-family: "Roboto Light",sans-serif;
    color: #271f1e;
    margin-top: 3.125rem;
}
.news-page-container-header-right{
    width: 36.125rem;
}
.news-page-container-header-poster{
    width: 36.125rem;
    height: 18.375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-page-container-header-poster-img{
    width: 36.125rem;
    height: 18.375rem;
    object-fit: cover;
}

/* 新闻列表 */
.news-list-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 6.875rem;
}
.news-list{
    width: 100%;
    padding-bottom: 1.875rem;
}
.news-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 1.875rem;
}
.news-group:last-of-type{
    margin-bottom: 0;
}
.news{
    width: calc(100% / 3 - 1.25rem);
    margin-right: 1.875rem;
    text-decoration: none;
    padding-bottom: 2.5rem;
    border-bottom: #c8c8c8 solid 0.0625rem;
}
.news:last-of-type{
    margin-right: 0;
}
.news-poster{
    width: 100%;
    height: 25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-poster-img{
    width: 100%;
    height: 25rem;
    object-fit: cover;
}
.news-title{
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 500;
    font-family: "Roboto Medium",sans-serif;
    color: #271f1e;
    margin-top: 1.875rem;
}
.news-desc{
    width: 100%;
    text-align: left;
    margin-top: 1.875rem;
    font-size: 0.9375rem;
    line-height: 1.5625rem;
    font-weight: 300;
    font-family: "Roboto Light",sans-serif;
    color: #271f1e;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

/* 新闻分类列表 */
.news-category-list-container{
    width: 21.6875rem;
    background-color: #f9f9f9;
    /*position: fixed;*/
    top: calc(7.1875rem + 7.125rem);
    max-height: 50vh;
    overflow: auto;
    z-index: 99;
}
.news-page-container-left-wrap-top2 .news-category-list-container{
    max-height: 70vh;
}
.news-category-list-container-header{
    width: calc(100% - 1.875rem);
    padding: 0 0.9375rem;
    height: 3.75rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: #c1a774;
}
.news-category-list-container-header-icon{
    width: 1.375rem;
    height: 1.375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.news-category-list-container-header-icon-img{
    width: 1.375rem;
    height: 1.375rem;
    object-fit: contain;
}
.news-category-list-container-header-title{
    width: calc(100% - 1.375rem - 0.9375rem);
    padding-left: 0.9375rem;
    text-align: left;
    height: 3.75rem;
    line-height: 3.75rem;
    font-size: 1.125rem;
    color: #343e4a;
    font-weight: bold;
}
.news-category-list{
    width: calc(100% - 2.5rem);
    padding: 1.875rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.news-category{
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 300;
    font-family: "Roboto Light",sans-serif;
    color: #271f1e;
    padding: 0.625rem 0;
    text-decoration: none;
}
.news-category:last-of-type{
    margin-bottom: 0;
}
.news-category-active, .news-category:hover{
    color: #000000;
    font-weight: 500;
    font-family: "Roboto Medium",sans-serif;
}