/* 幻灯片 */
	.news-details-banner{
		width: 100%;
		position: relative;
	}
	
	.news-details-banner img{
		width: 100%;
		height: 100%;
	}
	
	.news-details-banner img.mobile-image{
		display: none;
	}
	
	.news-details-banner img.computer-image{
		display: block;
	}

/* 新闻详情-内容 */
	.news-details-content{
		width: 100%;
		background-color: rgba(246, 246, 246, 1);
	}

	/* 新闻详情-内容-面包屑菜单 */
	.news-details-content .crumb-menu{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		border-bottom: 1px solid rgba(231, 231, 231, 1);
	}
	
	.news-details-content .crumb-menu a{
		max-width: 15%;
		font-size: 14px;
		line-height: 80px;
		-webkit-line-clamp: 1;
		color: rgba(60, 60, 60, 1);
	}
	
	.news-details-content .crumb-menu a:last-child{
		max-width: 50%;
	}
	
	.news-details-content .crumb-menu .line{
		width: 0.143%;
		margin: 0% 1.072%;
		padding: 0.536% 0%;
		background-color: rgba(60, 60, 60, 1);
	}

	/* 新闻详情-内容-新闻内容 */
	.news-details-content .content-wrapper{
		width: 100%;
		display: flex;
		align-items: flex-start;
		padding: 5.358% 0% 10.358%;
		justify-content: space-between;
	}
	
	.news-details-content .content-wrapper .content{
		width: 63.572%;
		border-radius: 10px;
		padding: 5% 5% 8.572%;
		background-color: rgba(255, 255, 255, 1);
	}
	
	.news-details-content .content-wrapper .content .name{
		width: 100%;
		font-size: 26px;
		line-height: 34px;
		text-align: center;
		color: rgba(16, 16, 16, 1);
	}
	
	.news-details-content .content-wrapper .content .text{
		font-size: 16px;
		line-height: 26px;
		margin-top: 5.618%;
		color: rgba(109, 109, 109, 1);
	}
	
	.news-details-content .content-wrapper .content .image{
		width: 100%;
		margin-top: 10.675%;
	}
	
	.news-details-content .content-wrapper .content .image img{
		width: 100%;
		height: 100%;
	}

	/* 新闻详情-内容-侧边栏 */
	.news-details-content .content-wrapper .sidebar{
		width: 24.286%;
	}

	/* 新闻详情-内容-侧边栏-热门新闻 */
	.news-details-content .content-wrapper .sidebar .hot-news{
		border-radius: 10px;
		padding: 10.295% 4.412%;
		background-color: rgba(255, 255, 255, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .title{
		line-height: 1;
		font-size: 24px;
		padding: 0% 4.839%;
		color: rgba(8, 74, 202, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .list{
		width: 100%;
		margin-top: 4.839%;
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .item{
		height: 75px;
		display: flex;
		padding: 0% 4.839%;
		align-items: center;
		justify-content: space-between;
		border-bottom: 1px solid rgba(226, 226, 226, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .item:last-child{
		border-bottom-width: 0px;
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .item .name{
		width: 64.286%;
		font-size: 14px;
		line-height: 20px;
		-webkit-line-clamp: 2;
		color: rgba(41, 41, 41, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .item .date{
		line-height: 1;
		font-size: 12px;
		color: rgba(96, 96, 96, 1);
	}

	/* 新闻详情-内容-侧边栏-分页器 */
	.news-details-content .content-wrapper .sidebar .pagination{
		display: flex;
		margin-top: 7.353%;
		align-items: center;
		border-radius: 10px;
		padding: 7.353% 8.824%;
		justify-content: space-between;
		background-color: rgba(255, 255, 255, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .pagination .item{
		gap: 15px;
		width: 50%;
		height: 50px;
		display: flex;
		font-size: 14px;
		align-items: center;
		justify-content: center;
		color: rgba(41, 41, 41, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .pagination .item span{
		color: rgba(197, 197, 197, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .pagination .item:first-child{
		border-right: 1px solid rgba(241, 241, 241, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .pagination .item:last-child{
		border-left: 1px solid rgba(241, 241, 241, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .pagination .item.disabled{
		pointer-events: none;
		color: rgba(200, 200, 200, 0.8);
	}

	/* 新闻详情-内容-侧边栏-热门新闻-悬停 */
	.news-details-content .content-wrapper .sidebar .hot-news .item.current-hover-item .name{
		color: rgba(8, 74, 202, 1);
	}

	/* 新闻详情-内容-侧边栏-分页器-悬停 */
	.news-details-content .content-wrapper .sidebar .pagination .item.current-hover-item{
		color: rgba(8, 74, 202, 1);
	}
	
	.news-details-content .content-wrapper .sidebar .pagination .item.current-hover-item span{
		color: rgba(8, 74, 202, 1);
	}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 幻灯片 */

/* 新闻详情-内容 */

	/* 新闻详情-内容-面包屑菜单 */
	.news-details-content .crumb-menu a{
		font-size: 12px;
		line-height: 70px;
	}
	
	.news-details-content .crumb-menu .line{
		width: 0.167%;
		margin: 0% 0.834%;
		padding: 0.626% 0%;
	}

	/* 新闻详情-内容-新闻内容 */
	.news-details-content .content-wrapper{
		padding: 5.417% 0% 10.417%;
	}
	
	.news-details-content .content-wrapper .content{
		width: 63.334%;
		border-radius: 8px;
		padding: 5% 5% 8.334%;
	}
	
	.news-details-content .content-wrapper .content .name{
		font-size: 22px;
		line-height: 30px;
	}
	
	.news-details-content .content-wrapper .content .text{
		font-size: 14px;
		line-height: 22px;
		margin-top: 5.264%;
	}
	
	.news-details-content .content-wrapper .content .image{
		margin-top: 10.527%;
	}

	/* 新闻详情-内容-侧边栏 */
	.news-details-content .content-wrapper .sidebar{
		width: 24.584%;
	}

	/* 新闻详情-内容-侧边栏-热门新闻 */
	.news-details-content .content-wrapper .sidebar .hot-news{
		border-radius: 8px;
		padding: 10.170% 5.085%;
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .title{
		font-size: 20px;
		padding: 0% 5.661%;
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .list{
		margin-top: 3.774%;
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .item{
		height: 70px;
		padding: 0% 5.661%;
	}
	
	.news-details-content .content-wrapper .sidebar .hot-news .item .name{
		width: 63.830%;
		font-size: 12px;
		line-height: 18px;
	}

	/* 新闻详情-内容-侧边栏-分页器 */
	.news-details-content .content-wrapper .sidebar .pagination{
		margin-top: 6.780%;
		border-radius: 8px;
		padding: 6.780% 10.170%;
	}
	
	.news-details-content .content-wrapper .sidebar .pagination .item{
		gap: 10px;
		height: 40px;
		font-size: 12px;
	}
}

/* 响应 1000 */
@media screen and (max-width: 1000px) {
/* 幻灯片 */

/* 新闻详情-内容 */

	/* 新闻详情-内容-面包屑菜单 */
	.news-details-content .crumb-menu a{
		line-height: 60px;
	}
	
	.news-details-content .crumb-menu .line{
		width: 0.145%;
		margin: 0% 0.724%;
		padding: 1.086% 0%;
	}

	/* 新闻详情-内容-新闻内容 */
	.news-details-content .content-wrapper{
		display: block;
		padding: 5.064% 0% 10.128%;
	}
	
	.news-details-content .content-wrapper .content{
		width: auto;
		border-radius: 6px;
		padding: 5.064% 5.064% 8.681%;
	}
	
	.news-details-content .content-wrapper .content .name{
		font-size: 18px;
		line-height: 26px;
	}
	
	.news-details-content .content-wrapper .content .text{
		font-size: 12px;
		line-height: 18px;
		margin-top: 4.025%;
	}
	
	.news-details-content .content-wrapper .content .image{
		margin-top: 7.245%;
	}

	/* 新闻详情-内容-侧边栏 */
	.news-details-content .content-wrapper .sidebar{
		width: 100%;
	}

	/* 新闻详情-内容-侧边栏-热门新闻 */
	.news-details-content .content-wrapper .sidebar .hot-news{
		display: none;
	}

	/* 新闻详情-内容-侧边栏-分页器 */
	.news-details-content .content-wrapper .sidebar .pagination{
		margin-top: 3.617%;
		border-radius: 6px;
		padding: 2.894% 3.617%;
	}
	
	.news-details-content .content-wrapper .sidebar .pagination .item{
		gap: 5px;
	}
}

/* 响应 750 */
@media screen and (max-width: 750px) {
/* 幻灯片 */
	.news-details-banner img.mobile-image{
		display: block;
	}
	
	.news-details-banner img.computer-image{
		display: none;
	}

/* 新闻详情-内容 */

	/* 新闻详情-内容-面包屑菜单 */
	.news-details-content .crumb-menu{
		display: none;
	}

	/* 新闻详情-内容-新闻内容 */
	.news-details-content .content-wrapper{
		padding: 5.229% 0% 10.458%;
	}
	
	.news-details-content .content-wrapper .content{
		padding: 5.229% 5.229% 9.151%;
	}
	
	.news-details-content .content-wrapper .content .name{
		font-size: 16px;
		line-height: 24px;
	}
	
	.news-details-content .content-wrapper .content .text{
		margin-top: 4.380%;
	}
	
	.news-details-content .content-wrapper .content .image{
		margin-top: 7.300%;
	}

	/* 新闻详情-内容-侧边栏 */

	/* 新闻详情-内容-侧边栏-热门新闻 */
	.news-details-content .content-wrapper .sidebar .hot-news{
		display: none;
	}

	/* 新闻详情-内容-侧边栏-分页器 */
	.news-details-content .content-wrapper .sidebar .pagination{
		margin-top: 2.615%;
		padding: 2.615% 3.922%;
	}
}