.labs-container {
    padding: 48px 70px;
    display: flex;
    gap: 40px;
}

.labs {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

/* 左侧导航样式 */
.labs-nav {
    width: 307px;
    height: auto;
    background: #9B2742;
    padding: 20px 0;
}

.labs-nav ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.labs-nav ul li {
    display: block;
    color: #ffffff;
    padding: 30px 20px;
    font-size: 19px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    transform: translateX(0);
}

.labs-nav ul li:hover {
    color: #646464;
    transform: translateX(20px);
    background: #FFFFFF;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.labs-nav ul li a {
    display: block;
    color: inherit;
    font-size: 19px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

/* 右侧内容区域样式 */
.labs-content {
    flex: 1;
    font-family: Inter, Inter;
    font-weight: 400;
    color: #000000;
}

.labs-content h2 {
    text-align: center;
    font-size: 23px;
    border-bottom: 2px dashed #949494;
    padding-bottom: 60px;
}

.labs-content p {
    padding-top: 40px;
    font-size: 14px;
    line-height: 1.3;
    text-align: justify;
    text-indent: 2em;
}

.labs-img {
    width: 100%;
    height: 270px;
    margin-top: 40px;
    padding-left: 360px;
    display: flex;
    flex-direction: row;
    gap: 60px;
}