/* Banner区域 - 100%宽度 */
	.banner {
		position: relative;
		height: 500px;
		overflow: hidden;
		width: 100%;
	}
	
	.banner-background {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		z-index: 1;
	}
	
	.banner-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.3);
		z-index: 2;
	}
	
	.banner-content {
		position: relative;
		height: 100%;
		display: flex;
		align-items: center;
		z-index: 3;
	}
	
	.slide-content {
		color: white;
	}
	
	.slide-title {
		font-size: 48px;
		font-weight: bold;
		margin-bottom: 20px;
		text-shadow: 0 2px 5px rgba(0,0,0,0.5);
		max-width: 700px;
	}
	
	.slide-desc {
		font-size: 20px;
		margin-bottom: 30px;
		max-width: 600px;
		text-shadow: 0 1px 3px rgba(0,0,0,0.5);
	}
	
	.btn {
		display: inline-block;
		padding: 15px 40px;
		background: #1095ce;
		color: white;
		text-decoration: none;
		border-radius: 30px;
		font-weight: bold;
		font-size: 18px;
		transition: all 0.3s;
	}
	
	.btn:hover {
		background: #e53935;
		transform: translateY(-3px);
		box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	}
	
	.banner-indicators {
		position: absolute;
		bottom: 30px;
		left: 0;
		right: 0;
		display: flex;
		justify-content: center;
		gap: 15px;
		z-index: 4;
	}
	
	.indicator {
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background: rgba(255,255,255,0.5);
		cursor: pointer;
		transition: all 0.3s;
	}
	
	.indicator.active {
		background: white;
		transform: scale(1.2);
	}
	
	/* 主要内容区域 */
	.main-content {
		padding: 60px 0;
		background: #fff;
	}
	
	.section {
		margin-bottom: 60px;
	}
	
	.section-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 30px;
		padding-bottom: 15px;
		border-bottom: 2px solid #1095ce;
	}
	
	.section-title {
		font-size: 32px;
		font-weight: bold;
		color: #1095ce;
		display: flex;
		align-items: center;
		gap: 15px;
	}
	
	.section-title i {
		color: #e53935;
		font-size: 28px;
	}
	
	.section-more {
		color: #15b5ea;
		text-decoration: none;
		font-size: 16px;
		transition: all 0.3s;
		font-weight: bold;
	}
	
	.section-more:hover {
		color: #e53935;
	}
	
	/* 病种导航 */
	.disease-grid {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 25px;
	}
	
	.disease-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 25px 15px;
		border-radius: 10px;
		background: #f8f9fa;
		transition: all 0.3s;
		text-align: center;
		cursor: pointer;
	}
	
	.disease-item:hover {
		background: #e3f2fd;
		transform: translateY(-5px);
		box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	}
	
	.disease-icon {
		width: 70px;
		height: 70px;
		border-radius: 50%;
		background: #e3f2fd;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 15px;
		color: #1095ce;
		font-size: 32px;
	}
	
	.disease-name {
		font-size: 18px;
		font-weight: bold;
		color: #333;
		margin-bottom: 5px;
	}
	
	.disease-desc {
		font-size: 14px;
		color: #666;
		margin-top: 5px;
	}
	
	/* 医生团队 */
	.doctor-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}
	
	.doctor-card {
		background: #fff;
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 0 8px 20px rgba(0,0,0,0.1);
		transition: all 0.3s;
	}
	
	.doctor-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 15px 30px rgba(0,0,0,0.15);
	}
	
	.doctor-img {
		height: 280px;
		background: #bbdefb;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #1095ce;
		font-size: 80px;
		position: relative;
		overflow: hidden;
	}
	
	.doctor-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.doctor-tag {
		position: absolute;
		top: 20px;
		right: 20px;
		background: #e53935;
		color: white;
		padding: 8px 20px;
		border-radius: 20px;
		font-size: 14px;
	}
	
	.doctor-info {
		padding: 25px;
		text-align: center;
	}
	
	.doctor-name {
		font-weight: bold;
		font-size: 22px;
		margin-bottom: 10px;
		color: #333;
	}
	
	.doctor-title {
		font-size: 16px;
		color: #e53935;
		margin-bottom: 15px;
	}
	
	.doctor-desc {
		font-size: 15px;
		color: #666;
		margin-bottom: 20px;
		line-height: 1.6;
		text-align:left;
	}
	
	.doctor-btn {
		display: inline-block;
		padding: 12px 30px;
		background: #15b5ea;
		color: white;
		text-decoration: none;
		border-radius: 5px;
		font-size: 15px;
		transition: all 0.3s;
	}
	
	.doctor-btn:hover {
		background: #1095ce;
	}
	
	/* 品牌介绍 */
	.brand-section {
		display: flex;
		gap: 40px;
		align-items: center;
	}
	
	.brand-image {
		flex: 1;
		height: 360px;
		border-radius: 10px;
		overflow: hidden;
		background-size: cover;
		background-position: center;
		position: relative;
	}
	
	.brand-content {
		flex: 1;
	}
	
	.brand-title {
		font-size: 28px;
		font-weight: bold;
		color: #1095ce;
		margin-bottom: 5px;
	}
	
	.brand-text {
		font-size: 17px;
		line-height: 1.8;
		color: #555;
		margin-bottom: 25px;
	}
	
	.brand-stats {
		display: flex;
		gap: 30px;
		margin-top: 40px;
	}
	
	.stat-item {
		text-align: center;
		flex: 1;
	}
	
	.stat-value {
		font-size: 42px;
		font-weight: bold;
		color: #1095ce;
		margin-bottom: 10px;
	}
	
	.stat-label {
		font-size: 16px;
		color: #666;
	}
	
	/* 院内新闻 */
	.news-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}
	
	.news-card {
		background: #fff;
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 0 8px 20px rgba(0,0,0,0.08);
		transition: all 0.3s;
	}
	
	.news-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 15px 30px rgba(0,0,0,0.15);
	}
	
	.news-img {
		height: 150px;
		background: #e3f2fd;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #15b5ea;
		background-size: cover;
		background-position: center;
		position: relative;
	}
	
	.news-date {
		position: absolute;
		bottom: 0;
		left: 0;
		background: rgba(13, 71, 161, 0.8);
		color: white;
		padding: 8px 20px;
		font-size: 14px;
	}
	
	.news-content {
		padding: 25px;
	}
	
	.news-title {
		font-size: 22px;
		font-weight: bold;
		margin-bottom: 15px;
		color: #333;
		line-height: 1.4;
	}
	
	.news-title a {
		color: inherit;
		text-decoration: none;
		transition: all 0.3s;
	}
	
	.news-title a:hover {
		color: #e53935;
	}
	
	.news-summary {
		font-size: 15px;
		color: #666;
		margin-bottom: 20px;
		line-height: 1.6;
	}
	
	.news-more {
		display: inline-block;
		color: #15b5ea;
		text-decoration: none;
		font-size: 15px;
		font-weight: bold;
		transition: all 0.3s;
	}
	
	.news-more:hover {
		color: #e53935;
	}
	
	/* 预约部分 */
	.appointment {
		background: linear-gradient(135deg, #15b5ea, #1095ce);
		padding: 70px 0;
		color: white;
		text-align: center;
		border-radius: 10px;
	}
	
	.appointment-title {
		font-size: 42px;
		font-weight: bold;
		margin-bottom: 25px;
	}
	
	.appointment-desc {
		font-size: 22px;
		max-width: 800px;
		margin: 0 auto 40px;
	}
	
	.appointment-btn {
		display: inline-block;
		padding: 18px 50px;
		background: white;
		color: #1095ce;
		text-decoration: none;
		border-radius: 30px;
		font-weight: bold;
		font-size: 22px;
		transition: all 0.3s;
	}
	
	.appointment-btn:hover {
		background: #e53935;
		color: white;
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(0,0,0,0.2);
	}