#about{
    padding-top: 192px;
}

.aboutBackground{
    width: 100%;
    /* height: 350px; */
    /* object-fit: cover; */
    /* height: 350px;
    background: url(../images/aboutBackground.png)no-repeat;
    background-size: cover; */
    
}
.aboutBackground img{
    width: 100%;
    height: 100%;
}
.aboutContent{
    padding: 79px 12.4% 37px 12.4%;
    display: flex;
    gap: 24px;
}

.aboutContent h3{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}
.aboutContentLeft h5{
    color: #4D4D4D;
    line-height: 26px;
    font-size: 20px;
    margin-bottom: 8px;
}
.aboutContentLeft p{
    font-size: 13px;
    line-height: 22px;
    
/* 1. 文字两端对齐 */
    text-align: justify;
    
    /* 2. 改善英文断字 */
    word-break: break-word;      /* 长单词换行时自动断字 */
    hyphens: auto;               /* 自动添加连字符（英文） */
    text-justify: inter-word;    /* 单词间对齐（英文优化） */
    
    /* 3. 增加段落间距10px */
    margin-bottom: 10px;         /* 段落之间的间距 */
}

/* 可选：最后一个段落不需要底部间距 */
.aboutContentLeft p:last-child {
    margin-bottom: 0;
}
.aboutContentLeft{
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 40%;
}
.aboutContentRight{
    width: 60%;
}
.aboutContentRight img{
    width: 100%;
    height: auto;
    /* height: 100%; */
    /* object-fit: cover; */
}