.news-nav {
    width: 100%;
    position: absolute;
    top: -0.2083rem;
}
.news-nav-section{
    width: 8.8958rem;
    height:.4167rem;
    /* background: linear-gradient(to right, #a91c1c, #e67e7e);
    padding: 0 0.3125rem; */
   background: linear-gradient( 90deg, #A6141C 0%, #FDA865 66%);
    clip-path: polygon(0 0, calc(100% - .625rem) 0, 100% .9375rem, 100% 100%, 0 100%);
}
.news-nav-container {
    width: 7.8177rem;
    height: .4167rem;
    margin: 0 auto;
    border-radius: 0px 0px 0px 0px;
    position: absolute;
    left: 0;
    right: 0;
}

.news-nav-item {
    width: .9375rem;
    height: .4167rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.news-nav-item span {
    color: #fff;
    font-size: .1146rem;
    font-weight: bold;
}

.news-nav-item.active {
    background-color: #f8f1e8;
}

.news-nav-item.active span {
    color: #a91c1c;
}
.list-banner {
    height: 3.2292rem;
}

.list-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-home {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: -.7135rem;
}
.news-nav-item-container {
    width: 7.8177rem;
    margin: 0 auto;
display:flex;
}

.news-list {
    width: 100%;
    padding-top: .4688rem;
}

.news-list-content {
    width: 7.8177rem;
    margin: 0 auto;
}

.news-list-item {
    height: .5208rem;
    display: flex;
    margin-bottom: .1094rem;
    background: #ffffff;
    align-items: center;
}

.news-date {
    width: .8854rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #9B0D14;
    padding-right: 0.1563rem;
}

.news-date-day {
    font-size: .1615rem;
    font-weight: bold;
    color: #9B0D14;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.news-date-year {
    font-size: .1042rem;
    color: #9B0D14;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.news-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 0.1042rem;
}

.news-title {
    font-size: .1146rem;
    color: #333;
    text-decoration: none;
    line-height: 1.5;
    font-family: 'Alegreya', serif;
}

.news-title span {
    background: linear-gradient(to right, #ffffff, #ffffff);
    background-size: 0 .0052rem;
    background-repeat: no-repeat;
    background-position: right bottom;
    transition: background-size 1.5s;
    cursor: pointer;
}

.news-list-item:hover span {
    background-size: 100% .0052rem;
    background-position: left bottom;
}

.news-list-item:hover {
    background: #9B0D14;
    box-shadow: 0 .026rem .0417rem 0 #9B0D14;
}
.news-list-item:hover .news-date{
    border-right: 1px solid #ffffff;
}
.news-list-item:hover .news-date-day {
    color: #ffffff;
}

.news-list-item:hover .news-date-year {
    color: #ffffff;
}
.news-list-item:hover .news-title  {
    color: #ffffff;
}
.list-news-header{
    width: 7.8177rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: .3125rem;
}
.list-news-header-title{
    font-size: .2292rem;
    color: #FFFFFF;
}
.list-news-header-address{
    font-size: .0833rem;
    color: #FFFFFF;
background:url(../img/news-cur-icon.svg) left center no-repeat;
 padding-left: .1771rem;
    background-size: .1198rem .1198rem;
 padding-right: .6771rem;
}
.list-news-header-address a{
    color: #FFFFFF;
    text-decoration: none;
}
.news-list-section{
    background: url(../img/news-list-bg.png) #f0eadf ;
    background-size: 100%;
    position: relative;
padding-bottom:.4167rem;
}


/* 自定义滚动条样式 */
::-webkit-scrollbar {
    width: .0313rem; /* 滚动条宽度 */
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05); /* 滚动条轨道背景色 */
    border-radius: .0156rem;
}

::-webkit-scrollbar-thumb {
    background: #9B0D14; /* 滚动条滑块颜色，与返回顶部按钮一致 */
    border-radius: .0156rem;
}

::-webkit-scrollbar-thumb:hover {
    background: #7b0a10; /* 鼠标悬停时的颜色 */
}

/* Firefox滚动条样式 */
body {
    scrollbar-width: thin;
    scrollbar-color: #9B0D14 rgba(0, 0, 0, 0.05);
}
.back-to-top {
    position: fixed;
    right: .2604rem;
    bottom: .5208rem;
    width: .2396rem;
    height: .2396rem;
    background: url(../img/back-top.svg)#9B0D14 center center no-repeat;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background-size: .1094rem .1094rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}