/* 医疗网络页面特定样式 */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 76px;
}

.network-map {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 3rem;
}

.map-container {
    height: 500px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.hospital-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.hospital-marker:hover {
    transform: scale(1.2);
    background: var(--accent-color);
}

.hospital-marker.county {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
}

.hospital-marker.town {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
}

.hospital-marker.village {
    width: 40px;
    height: 40px;
    background: var(--success-color);
}

.hospital-list {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.hospital-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hospital-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.1);
    transform: translateY(-2px);
}

.hospital-level {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.level-county {
    background: rgba(231, 76, 60, 0.1);
    color: var(--accent-color);
}

.level-town {
    background: rgba(74, 144, 226, 0.1);
    color: var(--secondary-color);
}

.level-village {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.filter-tabs {
    margin-bottom: 2rem;
}

.filter-tab {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary-color);
    color: white;
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.stats-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.6;
}