
/* 侧边栏样式 */
.side-bar {
    position: fixed;
    right: 0;
    top: 90%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    transition: right 0.3s ease-in-out;
}

.side-bar-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 4.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-bar .qr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1.54rem;
    height: 1.84rem;
    background: url(../../../images/pc/code-bg.png) no-repeat;
    background-size: cover;
}

.side-bar .qr-title {
    font-size: 0.19rem;
    color: #fff;
    white-space: nowrap;
    line-height: 0.35rem;
}

.side-bar .qr-item img {
    width: 1.44rem;
    height: 1.44rem;
    object-fit: contain;
        border: 0.01rem solid #cfe2f8;
}

.side-bar-toggle {
    cursor: pointer;
    transition: transform 0.3s ease;

}



.side-bar-toggle img {
    width: 0.58rem;
    height: auto;
    display: block;
    transform: rotate(180deg);
}
.side-bar.collapsed {
    right: 0;
    top: 50%;
}

.side-bar.collapsed .side-bar-content {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0.5rem);
}

.side-bar.collapsed .side-bar-toggle img {
    transform: rotate(0deg);
}

.newsPage{
  background: url(../../../images/pc/other-bg.jpg) center no-repeat;
  background-size: cover;
  width: 100%;
  height:100%;
  position: relative;
}
.header {
    width: 96%;
    padding: 0 0.4rem;
    margin: 0 auto;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header img {
    width: 4rem;
    height: 1.6rem;
    object-fit: cover;
}

.header a {
    display: inline-block;
    width: 3.08rem;
    height: 0.72rem;
    background: url(../../../images/pc/header-btn.png) no-repeat;
    background-size: cover;
}

/* News List Styles */
.main {
    width: 12.36rem;
    margin: 0 auto;
    padding-top: 12%;
}



.breadcrumbs {
    color: #204066;
    font-weight: bold;
    text-shadow:
        0 0 3px rgba(255, 255, 255, 1),
        0 0 9px rgba(255, 255, 255, 0.85);
        line-height: 0.45rem;
}
.breadcrumbs p {
   display: flex;
   align-items: center;
}
.breadcrumbs a {
    color: #204066;
    font-weight: bold;
    font-size: 0.2rem;
    text-shadow:
        0 0 3px rgba(255, 255, 255, 1),
        0 0 9px rgba(255, 255, 255, 0.85);
}
.breadcrumbs a.active{
    color: #892323;
    text-shadow:
        0 0 3px rgba(255, 255, 255, 1),
        0 0 9px rgba(255, 255, 255, 0.85);
}

.newsList {
   width: 12.36rem;
   height: 6.09rem;
   background: url(../../../images/pc/news-border2.png) no-repeat;
   background-size: cover;
}

.news-header {
width: 10.61rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 0.13rem;
    border-bottom: 0.02rem solid #3d79bf;
}

.news-tabs {
    width: 5.6rem;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.news-tabs li {
    width: 1.4rem;
    text-align: center;
    font-size: 0.24rem;
    font-weight: bold;
    color: #204066;
    cursor: pointer;
    border-radius: 0.3rem;
    transition: all 0.3s ease;
    line-height: 0.65rem;
}

.news-tabs li:hover {
    filter: brightness(120%)
}

.news-tabs li.active {
    color: #3d79bf;

}


.news-container{
    width: 10rem;
    margin: 0 auto;
}
.news-items {
    list-style: none;
    padding: 0.2rem 0;
    margin: 0;
    height: 4.18rem;
}

.news-items li {

color: #393939;
    font-size: 0.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 0.45rem;
    font-family: 'Heavy';
    font-weight: 600;
}
.news-items li .text{
 display: flex;
    align-items: center;
}



.news-items li .news-type {
    /* font-size: 0.24rem;
    color: #0a5d75;
    padding: 0.08rem 0.25rem;
    border-radius: 0.4rem;
    margin-right: 0.15rem;
    width: 0.98rem;

    text-align: center;
    background-color: #64ffef; */
}

.news-items li .news-title {
    flex: 1;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-page{
   width: 3.65rem;
   margin: 0.2rem auto 0;
}
.news-page .news-page-list{

    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.2rem;
    color: #393939;
}

.news-page .news-page-list a{
    color: #393939;
    text-decoration: underline;
}
.news-page .news-page-list .pagination{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-page .news-page-list input{
    display: inline-block;
width: 0.3rem;
height: 0.08rem;
border: 0.01rem solid #393939;
background: transparent;
padding: 0.1rem;
margin: 0 0.05rem;
}
.news-page .news-page-list .go{
    display: flex;
}
.news-page .news-page-list .go p{
    cursor: pointer;
}

