@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}
body {
	background-color: #f5f5f5;
	color: #333;
	font-size: 14px;
	line-height: 1.5;
}
body a{
	text-decoration: none;
	color:#4193db;
}
.container {
	max-width: 100%;
	padding: 15px;
	padding-top: 0rem;
}
.section-title {
	font-size: 18px;
	font-weight: bold;
	margin: 20px 0 15px;
	padding-left: 10px;
	border-left: 4px solid #1a73e8;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.more-btn {
    display: flex;
    align-items: center;
    color: #4193db;
    font-size: 14px;
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
	padding-top: 14px;
}

.more-btn:hover {
    background-color: #f5f5f5;
    color: #0d6ecc;
}

.more-btn .icon-more {
    margin-left: 4px;
    fill: currentColor;
}
.content-box {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	margin-bottom: 15px;
	overflow: hidden;
}
.content-item {
	padding: 15px;
	border-bottom: 1px solid #f0f0f0;
}
.content-item:last-child {
	border-bottom: none;
}
.item-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
}
.item-content {
	font-size: 14px;
	color: #666;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.item-footer {
	display: flex;
	align-items: center;
	font-size: 12px;
	color: #999;
}
.item-footer img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
	object-fit: cover;
}
.item-footer-info {
	flex: 1;
}
.doctor-name {
	font-weight: bold;
	color: #333;
}
.hospital {
	color: #666;
}
.level {
	color: #1a73e8;
}

/* 科室导航 */
.department-nav {
	margin: 0px 0;
	padding: 0 10px;
}
.department-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #333;
	padding-left: 5px;
	border-left: 3px solid #1E9FFF;
}
.department-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.department-btn {
	width: 24%;
	margin-bottom: 10px;
	padding: 10px 5px;
	background-color: #f8f8f8;
	border: 1px solid #eaeaea;
	border-radius: 4px;
	text-align: center;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s;
}
.department-btn:hover {
	background-color: #1E9FFF;
	color: #fff;
	border-color: #1E9FFF;
}
