.container {
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.crumbs {
    padding-top: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E5E5E5;
    background: none !important;
    font-size: 16px !important;
    display: flex;
    align-items: center;
}

.crumbs-content {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.crumbs-content img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.crumbs-content div {
    font-weight: 500;
    color: #525252;
}

/* 左侧栏目 */
.leftCategorize {
    width: 190px;
    background: #fff;
    border: 1px solid #E5E5E5;
}

.categorizeTitle {
    width: 190px;
    height: 50px;
    background: #4472C4;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.categorizeTitle:hover {
   background: #4472C4 !important;
   color: #FFFFFF !important;
}

.subTitle {
    display: block;
    margin: 0 15px;
    padding: 15px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #E5E5E5;
    cursor: pointer;
    text-decoration: none;
    background: #fff;
    text-align: center;
}

.subTitle:last-child {
    border-bottom: none;
}

.subTitle:hover {
    color: #4472C4;
}

.active {
    color: #4472C4 !important;
}

/* 右侧内容 */
.rightList {
    margin-left: 20px;
    width: 800px;
    background: #fff;
    padding: 20px;
}

/* 科室名称 */
.dept-name {
    font-size: 24px;
    font-weight: bold;
    color: #4472C4;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    /* border-bottom: 2px solid #4472C4; */
}

/* 科室区块 */
.dept-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #4472C4;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4472C4;
    display: inline-block;
}

.section-title-link {
    text-decoration: none;
    display: inline-block;
}

.section-title-link:hover .section-title {
    color: #2E5AAC;
    border-bottom-color: #2E5AAC;
}

.section-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* 诊疗特色列表 */
.feature-list {
    padding-left: 20px;
    margin: 0;
}

.feature-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* 专家介绍网格 */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.expert-item {
    text-align: center;
    text-decoration: none;
    display: block;
    transition: transform 0.3s;
}

.expert-item:hover {
    transform: translateY(-5px);
}

.expert-item:hover .expert-name {
    color: #4472C4;
}

.expert-img-box {
    width: 180px;
    height: 246px;
    /* background: #f5f5f5; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.31);
}

.expert-img-box img {
    width: 166px;
    height: 232px;
    object-fit: cover;
}

.expert-info {
    margin-top: 10px;
}

.expert-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

.expert-title {
    font-size: 14px;
    color: #666;
}
.nav-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 25px 0;
}
.nav-focus-card {
    position: relative;
    display: block;
    /* border-radius: 8px; */
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4 / 3;
}
.nav-focus-img {
    width: 100%;
    height: 100%;
}
.nav-focus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nav-focus-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 12px 12px;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    box-sizing: border-box;
    pointer-events: none;
}
.nav-focus-title {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
    .nav-focus {
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
    }
    .nav-focus-grid {
        grid-template-columns: 1fr;
    }
}
