

.news-list{
    padding-bottom: 30px;
}
.news-list li{
    display: flex;
    margin-bottom: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid #EFEFEF;
}
.news-list-img-box{
    flex:0 0 auto;
    /* width: 290px;
    height:188px; */
    border:1px solid #DDD;
    margin:0 24px;
}
.news-img{
    display: block;
    width: 290px;
    height: 188px;
}

.news-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 81px;
    height: 81px;
    overflow: hidden;
    object-fit: contain;
}

.news-list-content{
    flex:1 1 auto;
    overflow: hidden;
}
.news-list-title{
    margin-bottom: 16px;
    font-size: 20px;
    color: #111;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-list-date{
    margin-bottom: 32px;
    color:#9E9E9E;
}

.news-list-date span{
    vertical-align: middle;
}
.news-list-txt{
    display: -webkit-box;
    height: 92px;
    line-height: 24px;
    color: #666;
    white-space: normal;           /* 允许自动换行 */
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.news-detail-page{
    display: flex;
}
.news-detail-page .bread-box{
    padding-top: 12px;
    border-bottom: 1px solid #ececec;
}
.news-detail-page .bread-box::before{
    top:12px;
}

.news-detail-container{
    padding:0 30px;
}
.news-detail-page img{
    display: block;
}
.news-detail-page .base-box{
    padding:12px 0;
    margin-bottom: 12px;
    background: #FFF;
}
.news-detail-page .base-box-title{
    background-color: #FFF;
}
.news-detail-date{
    margin-bottom: 18px;
    text-align: right;
    color: #666;
}
.news-detail-page .base-box-main{
    padding:0 14px;
}
.page-left{
    flex:1 1 auto;
    margin-right: 30px;
    background: #FFF;
}
.page-right{
    flex:0 0 auto;
    width: 366px;
}
.news-detail-title{
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.detail-main{
    margin-bottom:40px;
    color:#444;
    font-size: 15px;
    line-height: 26px;
}
.detail-main p{
    margin-bottom: 20px;
    text-indent: 2em;
}
.detail-main p:has(> img){
    text-indent: 0;
}
.detail-nav{
    display: flex;
    justify-content: space-between;
    color: #999;
    line-height: 1.5;
}
.detail-nav div {
    margin-bottom: 10px;
}
.detail-nav a{
    color:#E13117;
}
.detail-nav-right{
    text-align: right;
}

.member-list{
    margin-bottom: 30px;
}
.member-list li{
    display: flex;
    align-items: center;
}
.member-list li::before{
    flex:0 0 auto;
}
.member-list-content{
    flex:1 1 auto;
    display: flex;
    width: 1256px;
}
.member-list-content a{
    flex:1 1 auto;
    padding-right:12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color:#171717;
}
.member-list-content .base-date {
    width: 98px;
    flex:0 0 auto;
}
.member-img-box{
    height:184px;
    background-image: url(../img/bg02.jpg);
    background-size: 1310px 184px;
    background-position: center center;
}
.member-img-box .base-img-bg{
    display: none;
}
.attachments-title{
    background-color: #f8f9fa !important;
}
.attachments{
    margin-bottom: 14px;
}
/* 自定义下载图标的样式 */
.download-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #007bff; /* 蓝色背景 */
    border-radius: 3px; /* 圆角 */
    margin-right: 5px; /* 图标与文字间距 */
    position: relative;
}

.download-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: white; /* 白色三角形 */
    clip-path: polygon(0 0, 100% 50%, 0 100%); /* 绘制三角形 */
}

/* 文件名和图标的容器样式 */
.download-container {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #007bff;
    font-size: 16px;
}

/* 鼠标悬停时的效果 */
.download-container:hover {
    text-decoration: underline;
}





@media screen and (max-width: 600px) {
  .page-main{
    width:100%;
  }
  .base-img-bg{
    top:0;
    left:0;
  }
  .news-img{
    width: 145px;
    height: 94px;
  }
  .news-list-title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制文本为2行 */
    white-space: inherit;
    overflow: hidden;
  }
  .news-list-img-box{
    height: 96px;
    margin:0 12px;
  }
  .news-list-txt{
    display: none;
  }
  .news-detail-page{
    display: block;
  }
  .page-right{
    width: 100%;
  }
  .member-list-content{
    width: calc(100% - 24px);
  }

}
