.medical_list {
	background: #fff;
	margin: 10px 0 0;
}
.medical_list > li {
	border-top: 1px solid #ccc;
	cursor: pointer;
	font-size: .9rem;
	position: relative;
}
.medical_list > li h3 {
	padding: 15px 10px;
	min-height: 30px;
}
.medical_list > li:last-of-type {
	border-bottom: 1px solid #ccc;
}
.medical_list > li::after {
	align-items: center;
	background: #a2afbb;
	border-radius: 2px;
	color: #fff;
	content: '+';
	display: flex;
	justify-content: center;
	font-size: 1rem;
	height: 20px;
	right: 20px;
	position: absolute;
	top: 15px;
	width: 20px;
}
.medical_list > .active::after {
	background: #7b8b9a;
	content: '-';
}
.medical_list > .active h3 {
	background: #eee;
}

.list_in {
	display: none;
	margin: 10px 0;
	padding: 0 2% 10px;
}
.list_in li {
	margin-top: 10px;
}
.list_in a {
	border: 1px solid #ddd;
	box-sizing: border-box;
	box-shadow: 1px 2px 3px rgba(0,0,0,.1);
	color: #000;
	display: flex;
	justify-content: space-between;
	padding: 5px;
	width: 100%;
}
.list_in .img {
	align-self: stretch;
	border-radius: 5px;
	overflow: hidden;
	width: 30%;
}
.list_in .img img {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}
.list_in .txt {
	align-self: stretch;
	width: 67%;
}
.list_in h4 {
	font-size: 15px;
	font-weight: bold;
}
.list_in p {
	font-size: 11px;
}
.tags {
	display: flex;
	flex-wrap: wrap;
	font-size: 10px;
	margin-top: 10px;
}
.tags li {
	border: 1px solid#667a99;
	border-radius: 3px;
	color: #667a99;
	margin: 0 5px 3px 0 ;
	padding: 2px 5px;
}