.news-content{
    padding-top: 100px;
}
.news-page-head{
    width: 100vw;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.news-page-head-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-page-head-box-left{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.news-page-head-box-left a{
    display: block;
    height: 77px;
    margin-right: 50px;
    border-bottom: 3px solid transparent;
    font-size: 18px;
    text-decoration: none;
    line-height: 80px;
    color: #333333;
    transition: all 0.3s ease;
}
.news-page-head-box-left a:hover, .news-page-head-box-left a.active{
    color: #48877A;
    border-bottom: 3px solid #48877A;
}
.news-page-head-box-right{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    color: #666666;
}
.news-page-head-box-right a{
    color: inherit;
}

.news-top{
    height: 475px;
    background: #f5f5f5;
    padding: 100px 0;
}
.news-top-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-top-cover{
    width: 670px;
    height: 475px;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}
.news-top-cover img{
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s;
}
.news-top-box:hover img{
    transform: scale(1.1);
}
.news-top-content{
    width: 930px;
    height: 375px;
    padding: 50px 0;
    background: #ffffff;
    border-radius: 0 10px 10px 0;
}
.news-top-time{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 50px;
}
.news-top-time span:first-child{
    font-size: 30px;
    color: #48877A;
    padding-bottom: 2px;
    border-bottom: 2px solid #48877A;
}
.news-top-time span:last-child{
    font-size: 16px;
    color: #666666;
    margin-left: 10px;
}

.news-top-title{
    font-size: 24px;
    color: #333333;
    margin-top: 20px;
    padding: 0 50px;
    transition: color 0.3s;
}
.news-top-box:hover .news-top-title{
    color: #48877A;
}
.news-top-next{
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 50px 0;
}
.news-top-summary{
    font-size: 18px;
    color: #999999;
    margin-top: 20px;
    line-height: 30px;
    padding: 0 50px;
}
.news-top-detail{
    padding-left: 50px;
    margin-top: 30px;
    color: #666666;
}

.news-list{
    padding-bottom: 50px;
}
.news-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
}
.news-item-content{
    width: 840px;
    height: 353px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news-item-cover{
    width: 500px;
    height: 354px;
    overflow: hidden;
    border-radius: 10px;
}
.news-item-cover img{
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s;
}
.news-item:hover img{
    transform: scale(1.1);
}
.news-item-time{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.news-item-time span:first-child{
    font-size: 30px;
    color: #48877A;
    padding-bottom: 2px;
    border-bottom: 2px solid #48877A;
}
.news-item-time span:last-child{
    font-size: 16px;
    color: #666666;
    margin-left: 10px;
}

.news-item-title{
    font-size: 24px;
    color: #333333;
    margin-top: 40px;
    transition: color 0.3s;
}
.news-item-box:hover .news-top-title{
    color: #48877A;
}
.news-item-summary{
    font-size: 18px;
    color: #999999;
    margin-top: 50px;
    line-height: 30px;
}

/* 分页样式 */
.news-pages{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0 100px 0;
}

.news-pages-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.news-pages-item{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-pages-item:hover{
    color: #48877A;
    border-color: #48877A;
    background: rgba(72, 135, 122, 0.1);
}

.news-pages-item.active{
    color: #ffffff;
    background: #48877A;
    border-color: #48877A;
}

.news-pages-item.disabled{
    color: #cccccc;
    border-color: #f0f0f0;
    background: #f9f9f9;
    cursor: not-allowed;
}

.news-pages-item.disabled:hover{
    color: #cccccc;
    border-color: #f0f0f0;
    background: #f9f9f9;
}

.news-pages-dots{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #999999;
}

.expo-list{
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
}
.expo-item{
    width: 450px;
    background: #F6F7F7;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.expo-item-cover{
    width: 450px;
    height: 240px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px 10px 0 0;
}
.expo-item-cover img{
    width: 100%;
}
.expo-item-content{
    padding: 0 40px;
    height: 280px;
}
.expo-item-title{
    font-size: 22px;
    padding: 30px 0;
}
.expo-item-ul{
    padding-bottom: 40px;
    line-height: 30px;
    font-size: 16px;
}
.expo-item-li span{
    color: #48877A;
}
.expo-item-detail{
    font-size: 16px;
    color: #48877A;
    cursor: pointer;
    transition: all 0.3s ease;
}
.expo-item-detail:hover{
    color: #48877A;
    text-decoration: underline;
}

.expo-item-markup{
    width: 200px;
    height: 130px;
    background: rgba(72, 135, 122, 0.9);
    position: absolute;
    bottom: 280px;
    right: 0;
    color: #ffffff;
}
.expo-item-markup p:nth-child(1){
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
}
.expo-item-markup p:nth-child(2){
    font-size: 20px;
    color: #ffffff;
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #365952;
    margin: 10px 20px;
}
.expo-item-markup p:nth-child(3){
    font-size: 16px;
    color: #ffffff;
    text-align: right;
    padding-right: 20px;
}

/* 空状态样式 */
.news-empty{
    height: 400px;
    padding: 120px 0 160px 0;
    background: #ffffff;
}
.news-empty-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666666;
}
.news-empty-box .iconfont{
    font-size: 60px;
    color: #E6F1EF;
}
.news-empty-title{
    font-size: 22px;
    color: #333333;
    margin-top: 20px;
}
.news-empty-desc{
    font-size: 16px;
    color: #999999;
    margin-top: 10px;
}