.desq-pic-text {
    padding: 95px 0 70px;
    background: #fff;
    display: flex; 
    flex-direction: column; 
    position: relative; 
}

.desq-pic-text .tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desq-pic-text .tit h3 {
    font-size: 34px;
    color: var(--title-text-color);
    font-weight: 700;
    line-height: 1;
    position: relative;
}

.desq-pic-text .tit h3::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #666;
    display: inline-block;
    position: absolute;
    left: -48px;
    top: calc(50% - 1px);
}

.desq-pic-text .tit a {
    font-size: 13px;
    color: #2e2e2e;
    line-height: 25px;
    border-bottom: 1px solid #2E2E2E;
}

.desq-pic-text .tit a i {
    font-size: 18px;
    vertical-align: middle;
}

.desq-pic-text .tit a:hover {
    color: rgba(46, 46, 46, 0.6);
    border-bottom-color: rgba(46, 46, 46, 0.6);
}

.desq-pic-text .txt {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    position: relative;
    flex-wrap: wrap;
}

.desq-pic-text .t {
    /* flex: 1; */
    margin-right: 50px;
    font-size: 20px;
    line-height: 2.2;
    color: #666;
    width: 100%;
    margin-top: 30px;
}

.desq-pic-text img {
    width: 246px;
    margin-top: auto;
    margin-bottom: 0;
    margin-left: calc(100% - 320px);
}

@media screen and (max-width: 1400px) {
    .desq-pic-text .tit h3 {
        font-size: 32px;
    }
}

@media screen and (max-width: 1280px) {
    .desq-pic-text {
        padding: 70px 0;
    }
}

@media screen and (max-width: 768px) {
    .desq-pic-text .tit h3 {
        font-size: 28px;
    }

    .desq-pic-text {
        padding: 30px 0;
    }

    .desq-pic-text .txt {
        flex-direction: column; 
        align-items: flex-start;
    }

    .desq-pic-text img {
        width: 200px; 
        margin-top: 20px; 
    }

    .desq-pic-text .t {
        width: 100%;
     

