/* 主内容区域布局 */
.main-content {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.content-wrapper {
    display: flex;
    gap: 2rem;
}

/* 左侧主要内容区域 */
.content-main {
    flex: 1;
    min-width: 0;
    /* 防止flex子项溢出 */
}

.path {
    margin-bottom: 1rem;
    line-height: 48px;
    padding: 0.2rem 1rem;
}

.path a {
    color: #999;
    font-size: 0.85rem;
}

/* 内容区样式 */
.content-box {
    min-height: 600px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.05);
}

.content-box .title {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-family: Roboto;
    font-weight: 600;
    color: #212529;
    padding-bottom: 1rem;
    border-bottom: 2px solid #4CAF47;
    position: relative;
}

.content-box .title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background-color: #3a5a38;
}

.content-box .fs-5 {
    color: #2c3338;
    line-height: 1.8;
    letter-spacing: 0.2px;
    text-align: justify;
    text-justify: inter-word;
}

.content-box .fs-5 p {
    margin-bottom: 1.25rem;
    text-align: justify;
    text-justify: inter-word;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .content-box {
        padding: 1.25rem !important;
    }

    .content-box h4 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
}