/* 第四板块：病种 */
.disease-section {
	padding: 20px 15px;
	background-color: white;
	margin: 10px 0;
}

.disease-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.disease-item {
	text-align: center;
	border-radius: 8px;
	padding: 12px 5px;
	background-color: #f8f9fa;
	transition: all 0.3s ease;
	text-decoration: none;
	display: block;
}

.disease-item:hover, .disease-item:active {
	background-color: #e8f5e9;
	transform: translateY(-3px);
}

.disease-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #e3f2fd;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	color: #709ff9;
	font-size: 20px;
}

.disease-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.disease-name {
	font-size: 12px;
	color: #333;
}

/* 第五板块：医院概况 */
.about-section {
	padding: 20px 15px;
	background-color: white;
	margin: 10px 0;
	display: flex;
	flex-direction: column;
}

.about-image {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-content {
	position: relative;
}

.about-content h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #709ff9;
}

.about-content p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	text-align: justify;
	margin-bottom: 10px;
}

.read-more {
	display: block;
	text-align: right;
	font-size: 14px;
	color: #709ff9;
	text-decoration: none;
	font-weight: bold;
	margin-top: 10px;
}

.read-more:hover {
	text-decoration: underline;
}

/* 第六板块：医生介绍 */
.doctors-section {
	padding: 20px 15px;
	background-color: white;
	margin: 10px 0;
}

.doctors-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.doctor-link {
	display: block;
	text-decoration: none;
}

.doctor-item {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.doctor-item:hover, .doctor-item:active {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.doctor-img {
	width: 100%;
	height: 150px;
	overflow: hidden;
}

.doctor-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doctor-info {
	padding: 15px;
}

.doctor-name {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
	color: #333;
}

.doctor-desc {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}

/* 第七板块：院内新闻 */
.news-section {
	padding: 20px 15px;
	background-color: white;
	margin: 10px 0;
}

.news-list {
	list-style: none;
}

.news-item {
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.news-item:last-child {
	border-bottom: none;
}

.news-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.news-link i {
	color: #709ff9;
	margin-right: 10px;
	font-size: 14px;
}

.news-title {
	font-size: 15px;
	color: #333;
	flex: 1;
}

.news-date {
	font-size: 12px;
	color: #999;
	margin-left: 10px;
}
