/* 咨询中心 */
header {
	background-color: #fff;
	.logo {
		background: url("../../images/logoDark.png") center center / cover no-repeat;
	}
	#cssmenu > ul > li > a, .topTel {
		color: rgb(51, 51, 51);
	}
}
.consultCenterTop {
  width: 100%;
  height: 340px;
  background: url("../../images/consultCenter/banner.jpg") no-repeat center/cover;
  margin-top: 80px;
}
// 新闻动态内容区域
.consultCenterContent {
	padding-top: 52px;
	.left {
		float: left;
		width: 930px;
		.tab {
			width: 100%;
			border-bottom: 2px solid #E6E5E5;
			display: flex;
			.active {
				font-weight: bold;
				font-size: 26px;
				color: #FC3D21;
				line-height: 20px;
				border-bottom: 4px solid #FC3D21;
				cursor: pointer;
			}
			a {
				display: block;
				font-size: 22px;
				color: #222;
				line-height: 24px;
				width: 104px;
				height: 36px;
				margin: 0 20px;
				text-decoration: none;
			}
		}
		// 新闻格式
		.newsMain {
			margin-bottom: 10px;
			.item {
			  display: flex;
			  border-bottom: 1px solid #E7E7E7;
			  padding: 40px 0;
			  cursor: pointer;
			  .img {
				display: block;
				width: 460px;
				height: 246px;
			    img {
					width: 100%;
					height: 100%;
					border-radius: 10px;
				}
			  }
			  .item-content {
				margin-left: 10px;
				h3 {
				  font-weight: bold;
				  font-size: 26px;
				  color: #222;
				  margin: 20px 0;
				}
				// 只显示3行，剩下的文字隐藏加省略号...
				p{
				  color: #666;
				  line-height: 24px;
				  text-indent: 30px;
				  display: -webkit-box;
				  -webkit-line-clamp: 3;
				  -webkit-box-orient: vertical;
				   overflow: hidden;
				}
				.item-footer {
				  margin-top: 20px;
				  em {
					color: #999;
				  }
				  a {
					color: #FC3D21;
					float: right;
				  }
				}
			  }
			}
		}
		// 新闻详情
		.newsDetail {
			h4 {
				font-weight: bold;
				font-size: 24px;
				color: #222;
				margin: 40px 0 15px 0;
			}
			em {
				font-size: 14px;
				color: #999;
				font-weight: bold;
				letter-spacing: 2px;
				margin-bottom: 5px;
				display: block;
			}
			p {
				color: #666;
				line-height: 24px;
				text-indent: 28px;
			}
			img {
				display: block;
				max-width: 100%;
				border-radius: 10px;
				margin: 10px auto;
			}
		}
		// 页码
		.pager {
			padding: 20px 0 50px 0;
		}
		.pager li>a, .pager li>span {
			border: none;
			color: #222;
		}
		.pager li>a:focus, .pager li>a:hover {
			text-decoration: none;
			background-color: #00000000;
			color: #999;
		}
		.pager li a.active {
			color: #FC3D21;
		}
		.pager li a.page {
			border-radius: 0;
			border: 1px solid #E7E7E7;
			padding: 2px 8px;
		}
	}
	// 新闻详情专用样式 left
	.leftDetails {
		width: 782px;
	}
	.right {
		float: right;
		position: relative;
		width: 212px;
		// 二维码
		.ewm {
			width: 212px;
			height: 260px;
			background-color: #FFFFFF;
			background-image: url("../../images/consultCenter/ewmBg.png");
			background-repeat: no-repeat;
			background-size: auto;
			background-position: bottom;
			box-shadow: 0px 5px 18px 0px rgba(1,4,19,0.14);
			border-radius: 5px;
			padding-top: 28px;
			margin-top: 36px;
		}
		img.ewmImg {
			display: block;
			width: 136px;
			height: 136px;
			margin: 0 auto 15px;
		}
		h4 {
			font-size: 18px;
			color: #222;
			text-align: center;
			margin-bottom: 15px;
		}
		p {
			font-size: 12px;
			color: #767575;
			text-align: center;
		}
		// 新闻缩略列表
		.newsList {
			h3 {
				font-weight: bold;
				font-size: 24px;
				color: #222;
				line-height: 24px;
				margin-bottom: 24px;
			}
			ul {
				li {
					margin-bottom: 20px;
					a {
						display: flex;
						// text-decoration: none;
						.leftList {
							width: 110px;
							height: 80px;
							img {
								display: block;
								width: 110px;
								height: 80px;
								border-radius: 10px;
							}
						}
						.rightList {
							padding-left: 12px;
							width: 206px;
							p {
								font-weight: bold;
								font-size: 14px;
								color: #222;
								line-height: 22px;
								text-align: left;
								padding-top: 10px;
								display: -webkit-box;
								-webkit-line-clamp: 2;
								-webkit-box-orient: vertical;
								overflow: hidden;
							}
							i {
								font-size: 14px;
								color: #767575;
								line-height: 20px;
							}
						}
					}
				}
			}
		}
	}
	.right::after {
		content: "";
		clear: both;
	}
	// 新闻详情专用样式 right
	.rightDetails {
		width: 385px;
		height: 880px;
		background-color: #fff;
		box-shadow: 0px 5px 18px 0px rgba(1,4,19,0.14);
		border-radius: 5px;
		padding: 40px 40px 0px 20px;
		overflow-y: scroll;
		margin-top: 36px;
	}
}
/* 笔记本电脑 1366 */
@media (max-width: 1366px){
    .consultCenterTop {
        height: 366px;
    }
    .consultCenterTop {
        margin-top: -22px;
    }
}
/* 移动端 */
@media(max-width: 768px) {
	header {
		background-color: #01071c;
	}
	.consultCenterTop {
	  background: url("../../images/consultCenter/bannerMobile.jpg") no-repeat center/cover;
	  height: 162px;
	  margin-top: 52px;
	}
	// 新闻动态内容区域
	.consultCenterContent {
		padding-top: 20px;
		.left {
			float: none;
			width: 100%;
			.tab {
				width: 100%;
				border-bottom: 2px solid #E6E5E5;
				display: flex;
				.active {
					font-size: 20px;
					line-height: 20px;
				}
				a {
					height: 30px;
					margin: 0 10px;
					font-size: 16px;
					width: 90px;
					text-align: center;
				}
			}
			// 新闻格式
			.newsMain {
				margin-bottom: 10px;
				.item {
				  display: block;
				  padding: 20px 0;
				  .img {
					display: block;
					width: 100%;
					height: auto;
				  }
				  .item-content {
					margin-left: 0;
					h3 {
						font-size: 20px;
						margin: 20px 0 10px 0;
					}
					// 只显示3行，剩下的文字隐藏加省略号...
					p{
					  line-height: 20px;
					  text-indent: 20px;
					  display: -webkit-box;
					  -webkit-line-clamp: 2;
					}
				  }
				}
			}
			// 新闻详情
			.newsDetail {
				h4 {
					font-size: 20px;
					margin: 15px 0;
				}
				p {
					color: #666;
					line-height: 24px;
					text-indent: 28px;
				}
				img {
					display: block;
					max-width: 100%;
					border-radius: 10px;
					margin: 10px auto;
				}
			}
			// 页码
			.pager {
				padding: 20px 0 50px 0;
			}
			.pager li>a, .pager li>span {
				border: none;
				color: #222;
			}
			.pager li>a:focus, .pager li>a:hover {
				text-decoration: none;
				background-color: #00000000;
				color: #999;
			}
			.pager li a.active {
				color: #FC3D21;
			}
			.pager li a.page {
				border-radius: 0;
				border: 1px solid #E7E7E7;
				padding: 2px 8px;
			}
		}
		// 新闻详情专用样式 left
		.leftDetails {
			width: 100%;
		}
		.right {
			display: none;
		}
		.right::after {
			content: "";
			clear: both;
		}
		// 新闻详情专用样式 right
		.rightDetails {
			width: 385px;
			height: 880px;
			background-color: #fff;
			box-shadow: 0px 5px 18px 0px rgba(1,4,19,0.14);
			border-radius: 5px;
			padding: 40px 40px 0px 20px;
			overflow-y: scroll;
			margin-top: 36px;
		}
	}
}