section {
	background: #fff;
	display: flex;
	flex-direction: column;
	padding-top: 20px;
}

.header {
	padding: 10px;
	display: -webkit-box;
	overflow-x: scroll;
	height: 120px;
	flex-shrink: 0;
}

.header:after {
	content: '';
	width: 1px;
	display: block;
}

.header>a {
	width: 33%;
	height: 100px;
	margin-right: 10px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(120, 85, 42, .17);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-size: 14px;
}

.header>a .img_box {
	height: 45px;
	width: 45px;
	overflow: hidden;
	margin-bottom: 5px;
	display: flex;
	justify-content: center;
}

.header>a .img_box img {
	height: 100%;
}

.header .selected {
	background: #78552A;
	color: #fff;
}

.header .selected .img_box img {
	transform: translateX(-100px);
	filter: drop-shadow(100px 0 #fff);
}

.doctor_head {
	height: 90px;
	width: 90px;
	border-radius: 5px;
}

.main {
	padding: 10px;
	height: 100%;
	/*局部滚动还是全局滚动*/ 
	overflow-y: auto;
}

.doctor_list {
	padding: 15px 0;
	border-bottom: 1px solid #f2f2f2;
	display: flex;
}

.doctor_head {
	flex-shrink: 0;
	margin-right: 15px;
	display:inline-block;
	overflow: hidden;
}

.doctor_head img {
	width: 100%;
}

.doctor_info {
display:inline-block;
width:calc(100% - 110px);
}

.doctor_info h4 {
	font-size: 16px;
	color: #353535;
	font-weight: 500;
}

.doctor_info span {
	font-size: 12px;
	color: #78552A;
	opacity: 0.5;
}

.doctor_info p {
	color: #a7a7a7;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}