﻿/* 解决方案CSS */
#wrap-news {
	overflow: auto;
	height: 100vh;
}

/* banner图 */
#wrap-news .banner-image {
	width: 100%;
}

/* 内容容器 */
#wrap-news .content-container {
	width: calc(100% * 0.83);
	margin: 0px auto;
	margin-top: 50px;
	margin-bottom: 100px;
	display: flex;
}

/* 左侧列表项 */
#wrap-news .list-item {
	width: 160px;
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	margin-bottom: 10px;
	cursor: pointer;
	text-align: center;
	border-radius: 5px;
	color: #fff;
	overflow: hidden;
	transition: background-color 0.2s ease 0s;
	background-color: #0760ab;
}

/* 列表交互效果 */
#wrap-news .list-item:hover {
	background-color: #00b277;
}

#wrap-news .list-checked {
	background-color: #00b277 !important;
}

/* 右侧内容容器 */
#wrap-news .detail-container {
	margin-left: 100px;
	width: 100%;
}
#wrap-news .detail-container[class$='hide']{
	display:none;
}
/* 内容标题 */
#wrap-news .detail-title {
	font-size: 20px;
	color: #0760ab;
	margin-bottom: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* 具体内容 */
#wrap-news .detail-info {
	color: #676767;
	font-size: 14px;
	line-height: 1.6rem;
}

/* 右侧p标签css */
#wrap-news .synopsis-item p {
	margin-bottom: 25px;
}

/* 说明 */
#wrap-news .explain-info {
	margin-bottom: 20px;
}

/* 标题小箭头 */
#wrap-news .scope-title {
	font-weight: bold;
	background: url(../img/list.gif) no-repeat 0 7px;
	padding-left: 15px;
	margin-top: 6px;
	margin-bottom: 6px;
}

/* 链接靠右 */
#wrap-news .detail-link {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

/* 查看详细方案按钮 */
#wrap-news .detail-button {
	width: 150px;
	text-align: center;
	line-height: 40px;
	height: 40px;
	border-radius: 20px;
	font-size: 15px;
	background-color: #f8f8f8;
	border: 1px #D9D9D9 solid;
	color: #666666;
}
/* 交互效果 */
#wrap-news .detail-button:hover {
	color: #0661ab;
}
/* 新闻列表 */
#wrap-news .news-list {
	/*width: calc(100% - 620px);*/
}

/* 新闻列表项 */
#wrap-news .news-item {
	display: flex;
	cursor: pointer;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px #e5e5e5 solid;
}

/* 新闻交互效果 */
#wrap-news .news-item:hover {
	color: #045DCC !important;
}

#wrap-news .news-item:hover .news-desc,
#wrap-news .news-item:hover .news-title,
#wrap-news .news-item:hover .time-day,
#wrap-news .news-item:hover .time-month {
	color: #045DCC !important;
}

/* 时间容器 */
#wrap-news .time-info {
	text-align: center;
	width: 80px;
	height: 75px;
	background-color: #f0f0f0;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

/* 日 */
#wrap-news .time-day {
	font-size: 30px;
	color: #666666;
}

/* 年月 */
#wrap-news .time-month {
	font-size: 16px;
	color: #686868;
}

/* 新闻信息 */
#wrap-news .news-info {
	margin-left: 20px;
	width: calc(100% - 100px);
}

/* 新闻标题 */
#wrap-news .news-title {
	font-size: 21px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}

/* 新闻描述 */
#wrap-news .news-desc {
	color: #666666;
	font-size: 16px;
	line-height: 20px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
#wrap-news .prduct-detail{
	display:none;
	margin-left:100px;
	width:100%;
}
#wrap-news .prduct-detail[class$='active']{
	display:block;
}
#wrap-news .news-audito{
    font-size: 13px;
    color: #666;
    border-top: 1px #8d8d8d dashed;
    border-bottom: 1px #8d8d8d dashed;
	display: flex;
    justify-content: center;
}
#wrap-news .new-detail{
	color:#000;
	font-size:15px;
    margin-top: 15px;

}
#wrap-news .news-detail-title{
	text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 15px;
    color: #0760ab;
}
#wrap-news .detail-title-item{
	margin-right:15px;
}
