* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

body {
	background-color: #f8f9fa;
	color: #333;
	font-size: 14px;
	line-height: 1.6;
}

/* 全宽容器 */
.full-width {
	width: 100%;
}

/* 内容容器 */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* 顶部信息栏 - 100%宽度 */
.top-bar {
	background: #1095ce;
	color: white;
	padding: 8px 0;
	font-size: 13px;
}

.top-container {
	display: flex;
	justify-content: space-between;
}

.contact-info {
	display: flex;
	gap: 20px;
}

.contact-info span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	color: white;
	text-decoration: none;
	transition: all 0.3s;
}

.social-links a:hover {
	color: #64b5f6;
}

/* 头部区域 - 100%宽度 */
.header {
	background: white;
	padding: 15px 0;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-img {
	width: 70px;
	height: 70px;
	background: #1095ce;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 28px;
	font-weight: bold;
}

.hospital-info {
	display: flex;
	flex-direction: column;
}

.hospital-name {
	font-size: 28px;
	font-weight: bold;
	color: #1095ce;
	letter-spacing: 2px;
}

.hospital-slogan {
	font-size: 14px;
	color: #666;
	margin-top: 5px;
}

.header-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.hospital-phone {
	font-size: 24px;
	font-weight: bold;
	color: #e53935;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hospital-phone i {
	font-size: 20px;
}

.work-time {
	font-size: 13px;
	color: #666;
	margin-top: 5px;
}

/* 导航菜单 - 100%宽度 */
.nav-container {
	background: #15b5ea;
}

.nav {
	display: flex;
	position: relative;
}

.nav-item {
	position: relative;
	padding: 10px 20px;
	color: white;
	text-decoration: none;
	font-size: 16px;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-item:hover, .nav-item.active {
	background: #1095ce;
}

/* 医生团队下拉菜单样式 */
.nav-item.has-dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 240px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	z-index: 1000;
	border-radius: 0 0 5px 5px;
	overflow: hidden;
}

.dropdown-header {
	background: #1095ce;
	color: white;
	padding: 12px 20px;
	font-weight: bold;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.dropdown-header i {
	font-size: 14px;
}

.dropdown-menu a {
	display: block;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	border-bottom: 1px solid #eee;
	transition: all 0.3s;
}

.dropdown-menu a:hover {
	background: #e3f2fd;
	color: #1095ce;
	padding-left: 25px;
}

.dropdown-menu a i {
	margin-right: 8px;
	color: #15b5ea;
	width: 20px;
	text-align: center;
}




/* 底部样式 */
.footer {
	background: #333;
	color: #fff;
	padding: 60px 0 30px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-col h3 {
	font-size: 20px;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #15b5ea;
	color: white;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	gap: 15px;
}

.footer-contact i {
	color: #15b5ea;
	font-size: 20px;
	min-width: 25px;
}

.footer-links a {
	display: block;
	color: #ccc;
	text-decoration: none;
	margin-bottom: 15px;
	transition: all 0.3s;
	font-size: 15px;
}

.footer-links a:hover {
	color: #15b5ea;
	padding-left: 8px;
}

.footer-news li {
	display: flex;
	margin-bottom: 20px;
}

.footer-news-date {
	min-width: 80px;
	color: #15b5ea;
	font-weight: bold;
	font-size: 15px;
}

.footer-news-title {
	color: #ccc;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 15px;
}

.footer-news-title:hover {
	color: #15b5ea;
}

.copyright {
	text-align: center;
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px solid #444;
	color: #999;
	font-size: 14px;
}
