.pub-banner-new-button-box{
	background: #0ab875;
    display: flex;
    height: clamp(90px, 6.77vw, 132px);
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    justify-content: center;
	position: relative;
}
.pub-banner-new-button-text{
	position: absolute;
    height: clamp(90px, 6.77vw, 132px);
    line-height: clamp(90px, 6.77vw, 132px);
    top: clamp(-132px, -6.77vw, -90px);
    font-size: clamp(16px, 1.875vw, 36px);
    color: #fff;
    text-shadow: 0px 1px 1px rgba(11, 44, 11, 0.67);
}
.pub-banner-new-button{
	background: #176258;
	min-width: 18.23vw;
    text-align: center;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    font-size:  clamp(16px, 1.5625vw, 32px);
	cursor: pointer;
	padding:0.5vw;
}

.banner {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    margin-bottom: 80px;
}
.news-center-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-content {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-content h1{
    font-size: 104px;
    margin: 0;
    line-height: 1;
    margin-bottom: 44px;
}
.banner-content p{
    font-size: 48px;
    margin: 0;
    line-height: 1;
}
.sub-banner{
	margin-top: 100px;
    margin-bottom: 60px;
}
.sub-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 新闻列表布局 */
.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    /*justify-content: center;*/
}
.news-item {
    width: calc(50% - 25px);
    overflow: hidden;
    margin-bottom: 30px;
}
.news-link {
    text-decoration: none;
    display: block;
    height: 100%;
}
.news-img {
    width: 100%;
    height: 324px;
    overflow: hidden;
    position: relative;
}
.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 72px;
    line-height: 1.5;
}
.news-desc {
    color: #393939;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    line-height: 1.5;
}

.platform-banner{
    width: 100%;
    margin-bottom: 70px;
}
.platform-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .platform-banner-new {
      width: 100%;
      height: 14.8958vw;
      display: flex;
      align-items: center;
      justify-content: center;
	  margin-bottom: 0;
	  margin-top:0px
    }

    .platform-banner-new-content {
      margin-left: 29vw;
      box-sizing: border-box;
      width: 33.3vw;
      height: 100%;
      color: #fff;
      display: flex;
      flex-direction: column;
    }

    .platform-banner-new-title {
      font-size: 3.33vw;
      font-weight: 900;
      line-height: 100%;
      margin-top: 2.6vw;
    }

    .platform-banner-new-desc {
      font-size: 0.8333vw;
      text-align: justify;
      line-height: 1.198vw;
      margin-top: 1.1458vw;
    }

    .platform-banner-new-btns {
      display: flex;
      align-items: center;
      margin-top: 1.3vw;
    }

    .platform-banner-new-btns-title {
      font-size: 0.8333vw;
    }

    .platform-banner-channels {
      display: flex;
      gap: 1.5625vw;
      flex: 1;
      margin-left: 2vw;
    }

    .platform-banner-channels-item {
      position: relative;
      width: 2.5vw;
      height: 2.5vw;
      cursor: pointer;
    }

    .platform-banner-channels-item-logo {
      width: 100%;
      height: 100%;
      border-radius: 2vw;
    }

    .platform-banner-channels-item-qrcode {
      display: none;
      width: 5.4vw;
      height: 5.4vw;
      max-width: 5.4vw;
      position: absolute;
      top: 3.8vw;
      left: 50%;
      transform: translateX(-50%);
    }

    .platform-banner-channels-item:hover .platform-banner-channels-item-qrcode {
      display: block;
    }
/* 视频栏目中的图文 */
.video-list .video-item .news-img{
	height:210px;
}
.video-list .video-item video{
	height:210px;
}
/*视频*/
.video-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    /*height: 200px;*/
}
.video-item {
    width: calc((100% - 60px) / 3); /* 60px = 2 * 30px */
    margin-right: 30px;
    margin-bottom: 30px;
    /*height: 100%;*/
    overflow: hidden;
    margin-bottom: 30px;
    /*background: #ff6b6b;*/
}
.video-item:nth-child(3n) {
    margin-right: 0;
}

.video-item h3{
    font-size: 22px;
	text-align: justify;
}
.video-item p{
    font-size: 18px;
    color: #272727;
    line-height: 1;
    margin: 0;
}
.author-icon{
    width: 25px;
    margin-right: 10px;
}
.author-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-info{
    margin-bottom: 50px;
}
.news-info h2{
    font-size: 27px;
    margin: 0;
    margin-bottom: 22px;
}
.info-list{
    height: 328px;
}
.info-item{
    position: relative;
    width: 36%;
    height: calc((328px - 40px) / 3);
    float: left;
    padding-left: 25px;
}
.info-item .info-title h3{
	color:#00291F;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    line-height: 1.5;
	text-align: justify;
}
.info-item:not(:last-child) {
    margin-bottom: 20px; /* 项目之间的间隔 */
}
.info-item .article-meta{
    position: absolute;
    bottom: 0;
}

.media-attention{margin-top:70px;} 

.info-more {
	float:right;
    padding: 8px 30px;
    background: #DE9E4A;
    color: #fff;
    font-size: 15px;
    border-radius: 20px;
}

.info-item:nth-child(1){
    width: 64%;
    background: #F2F2F2;
    padding: 25px;
    height: 100%;
    margin-bottom: 0;
}
.info-item:nth-child(1) .box{
    width: 100%;
}
.info-item:nth-child(1) .info-img{
    flex: 0 0 50%;
    height: 278px;
}
.info-item:nth-child(1) .info-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.info-item:nth-child(1) .info-content{
    flex: 0 0 50%;
    position: relative;
    padding-left: 20px;
}
.info-item:nth-child(1) .info-title{
    min-height: 101.4px;
    margin-bottom: 10px;
}
.info-item:nth-child(1) .info-title h3{
    font-size: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    line-height: 1.3;
	text-align: justify;
}
.info-item:nth-child(1) .info-content p{
    font-size: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #393939;
	text-align: justify;
}
.info-item:nth-child(1) .info-content .article-meta{
    position: absolute;
    bottom: 0;

}
.info-item:nth-child(1) .info-content .article-meta span{
    color: #393939;
}
@media screen and (max-width:1024px){
.video-item{
width:100% !important;
}
.video-item h3{
font-size:16px !important;
}
.video-item{
width:100%;
margin-right:0 !important;
margin-bottom:15px !important;
}
.video-list .video-item video{
width:100% !important;
height:auto !important;
}
.info-list{
height:auto !important;
flex-wrap:wrap;
display:flex;
}
.info-item:nth-child(1){
margin-bottom:30px !important;
padding:15px !important;
}
.info-item{
width:100% !important;
height:auto !important;

}
.info-item:not(:first-child){
padding-left:0 !important;
border-bottom:1px solid #ccc !important;
padding-bottom:15px !important;
}



.info-item:nth-child(1) .box{
flex-wrap:wrap;
}
.info-item:nth-child(1) .info-img{
flex:none;
width:100%;
height:auto;
}
.info-item:nth-child(1) .info-content{
flex:none;
width:100%;
padding-left:0 !important;
margin-top:15px ;
}
.info-item:nth-child(1) .info-title{
min-height:initial !important;
}
.info-item:nth-child(1) .info-title h3{
font-size:16px !important;
}
.info-item:nth-child(1) .info-content p{
line-height:1.6 !important;
}
.info-item .article-meta{
position:initial !important;
text-align:right !important;
margin-top:3px;
}
.info-item .info-title h3{
font-size:16px !important;
}
.news-info h2{
font-size:22px !important;
}
.media-attention h2,.video h2,.news-info h2{
font-size:18px !important;

}
.media-attention{
margin-top:30px !important;
}
.info-more{
padding:0 !important;
background:transparent !important;
color:gray!important;
font-weight:normal !important;
font-size:14px !important;
line-height:1.6 !important;
}
.author{
display:none;
}
.video-list{
margin-bottom:15px !important;
}

}