.product-detail-container{
}
.title{
    position: relative;
    padding: 20px 0;
    font-size: 24px;
    font-weight: bold;
}
.title::after{
    position: absolute;
    left: 50%; /* 居中横线 */
    transform: translateX(-50%); /* 居中横线 */
    bottom: 0;
    content: "";
    width: 200px; /* 控制横线的长度 */
    height: 2px;
    background: var(--blue);
    border-radius: 10px;
}

.content{

}
.content h1{
    position: relative;
    line-height: 40px;
    margin-top: 20px;
    padding-left: 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--blue);
}
.content h1::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 20px;
    background-color: var(--blue);
}

@media (max-width: 768px) {
    .title{
        padding: 20px 0;
        font-size: 16px;
        font-weight: normal;
    }
    .content{
        font-size: 12px;
    }
    .content h1{
        position: relative;
        line-height: 40px;
        padding-left: 20px;
        font-size: 14px;
        font-weight: normal;
    }
    .content p{
        line-height: 20px;
    }
}