/* 面包屑导航样式 */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 15px 0;
    margin-top: 56px;
}
.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #333333;
    line-height: 21px;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #333333;
}

/* 案例详情内容样式 */
.plan-detail-container {
    background-color: white;
    padding: 40px 0 60px;
}

.plan-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 15px; */
}
.plan-title {
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 46px;
    color: #333333;
    line-height: 65px;
    margin-bottom: 20px;

}
.line{
     margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}
.plan-text{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 32px;
}
.plan-text p{
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 32px;
    text-align: left;
    font-style: normal;
}
/* 返回按钮样式 */
.back-button-container {
    background-color: white;
    padding-top: 40px;
    text-align: center;
}
.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #e9ecef;
    color: #333333;
}