/********右左图文**********/
.comp-fImgL {
}

.comp-fImgL .section-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.comp-fImgL .left {
    width: 450px;
    padding: 40px;
}

.comp-fImgL .right {
    width: 750px; /*要固定宽度，否则图片“网络慢还没有加载出来”之前，左边的list会到右边来*/
}

.comp-fImgL .right img {
    width: 100%;
    height: auto;
}

.comp-fImgL .item {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    margin-bottom: 25px;
    box-shadow: 0px 10px 30px rgb(0 0 0 / 8%);
}

.comp-fImgL .item:last-child {
    margin-bottom: 0;
}

.comp-fImgL .item .title {
    display: flex;
    align-items: center;
}

.comp-fImgL .item .title h2 {
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.comp-fImgL .item .title img {
    max-width: 35px;
    margin-right: 10px;
}

.comp-fImgL .item p {
    font-size: 13px;
    color: #333;
    text-align: left;
    margin-top: 10px;
    color: #666;
}