@charset "utf-8";
/* 专家咨询的页面样式 */
/* 专家列表 */
.expert-list {
	margin: 0;
	padding: 0 0 40px;
}

/* 每一条专家数据 */
.expert-list .expert-list-item {
	position: relative;
	height: 350px;
	padding-bottom: 20px;
	width: 364px;
	margin-left: 54px;
	padding-top: 56px;
	text-align: center;
	line-height: 0;
	font-size: 0;
	box-sizing: border-box;
	list-style: none;
}

.expert-list .expert-list-item a:focus,
.expert-list .expert-list-item a:hover {
	color: inherit;
	text-decoration: none!important;
}

/* 去掉每行第一个的margin-left */
.expert-list .expert-list-item:nth-child(3n + 1) {
	margin-left: 0;
}

/* 每行第一个元素的底部加上一条长线，即使这一行只有一个，线也是完整的 */
.expert-list .expert-list-item:nth-child(3n + 1)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1200px;
	height: 1px;
	border-bottom: 1px dashed #ddd;
}

.expert-list-item p {
	font-size: 14px;
}

/* 专家头像 */
/* 图片外层的div具有包裹性，紧包着图片 */
.expert-list .expert-list-item .photo-box {
	font-size: 0;
	line-height: 0;
	display: inline-block;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 0 0 9px #eee;
}

/* 写死图片的大小和圆角 */
.expert-list-item .photo-box img {
	width: 110px;
	height: 110px;
	border-radius: 50%;
}

.expert-list-item .expert-info {
	max-width: 180px;
	line-height: 2.6;
	color: #bbb;
}

/* 专家名字 */
.expert-list-item .name {
	font-size: 24px;
	font-weight: 700;
	line-height: 3;
	color: #333;
}

.expert-list-item .expert-intro {
	line-height: 1.9;
	text-align: left;
	color: #999;
}

/* 查看详情按钮 */
.detail-btn {
	width: 86px;
	height: 30px;
	display: block;
	margin: 26px auto;
	font-size: 14px;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
}