* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
	background-color: #f8f9fa;
	color: #333;
	line-height: 1.5;
}

.container {
	max-width: 100%;
	overflow-x: hidden;
}

/* 第四板块：病种 */
.disease-section {
	padding: 20px 15px;
	background-color: white;
	margin: 0px 0px 10px 0;
}

.disease-grid {
	margin-top:10px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 5px;
}
.disease-grid a{text-decoration:none;}
.disease-item {
	text-align: center;
	border-radius: 8px;
	padding: 10px 3px;
	background-color: #f8f9fa;
	transition: all 0.3s ease;
}

.disease-item:hover, .disease-item:active {
	background-color: #e3f2fd;
	transform: translateY(-3px);
}

.disease-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #efefef;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	color: #875c1b;
	font-size: 28px;
}

.disease-name {
	font-size: 14px;
	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 h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #875c1b;
}

.about-content p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	text-align: justify;
}

/* 第六板块：医生介绍 */
.doctors-section {
	padding: 20px 15px;
	background-color: white;
	margin: 10px 0;
}

.doctors-grid {
	margin-top:10px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.doctors-grid a{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-section a{text-decoration:none;}
.news-list {
	list-style: none;
}

.news-item {
	padding: 15px 0;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.news-item:last-child {
	border-bottom: none;
}

.news-item i {
	color: #875c1b;
	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;
}


/* 响应式调整 */
@media (min-width: 768px) {
	.container {
		max-width: 768px;
		margin: 0 auto;
	}
	
	.banner-section {
		height: 250px;
	}
	
	.about-section {
		flex-direction: row;
	}
	
	.about-image {
		width: 40%;
		margin-right: 20px;
		margin-bottom: 0;
	}
	
	.about-content {
		width: 60%;
	}
}
