.container {
    width: 1000px;
    margin: 0 auto;
}

.crumbs {
    padding-top: 25px;
    padding-bottom: 18px;
    border-bottom: none;
    background: none !important;
    font-size: 16px !important;
    display: flex;
    align-items: center;
}

.crumbs-content {
    display: flex;
    align-items: center;
    margin-right: 5px;

    img {
        width: 18px;
        height: 18px;
        margin-right: 5px;
    }

    div {
        font-weight: 500;
        color: #525252;
    }
}
/* 科室导航样式 */
.dept-navigation {
    width: 100vw;
    /* min-width: 1920px; */
    height: 1953px;
    background: #093182;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    overflow: hidden;
}

/* 标题 */
.dept-nav-title {
    text-align: center;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
}

.dept-nav-title h2 {
    font-size: 46px;
    color: #FFFFFF;
    line-height: 65px;
    font-weight: bold;
    margin: 0;
}

/* 容器 */
.dept-nav-container {
    width: 1000px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-top: 240px;
}

/* 科室列表 */
.dept-list {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.dept-list-left {
    align-items: flex-end;
    margin-right: 150px;
}

.dept-list-right {
    align-items: flex-start;
    margin-left: 150px;
}

/* 科室标签 */
.dept-tag {
    display: inline-block;
    width: 200px;
    height: 60px;
    background: rgba(255,255,255,0.09);
    border-radius: 34px 34px 34px 34px;
    border: 1px solid rgba(149,178,255,0.33);
    border-radius: 25px;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 60px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dept-tag:hover {
    background: #fff;
    color: #1e3c72;
    border-color: #fff;
    font-weight: bold;
}

.dept-tag.active {
    background: #fff;
    color: #1e3c72;
    border-color: #fff;
    font-weight: bold;
}

/* 人体模型 */
.dept-human-body {
    padding: 0 50px;
     position: absolute;
     top: 0px;
     left: 50%;
     transform: translateX(-50%);
}

.dept-human-body img {
    width: 1920px;
    height: 1953px;
}
@media screen and (max-width: 749px) {
    .dept-navigation{
        min-width: 1920px !important;
    }
}
