.dq-verified{
    padding: calc(var(--content-gap) + 100px) 0 var(--content-gap) 0;
}
.dq-verified .ver-list{
    display: flex;
    justify-content: space-between;
}
.ver-list .ver-left{
    width: 547px;
    display: flex;
}
.ver-left .ver-item{
    flex: 1;
}
.ver-left .ver-item img{
    width: 100%;
    aspect-ratio: 188/451;
    object-fit: cover;
}
.ver-left .ver-item .img0{
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
}
.ver-left .ver-item .img1{
    clip-path: polygon(0 0,100% 0,80% 100%,20% 100%);
    transform: translateY(-100px);
}
.ver-left .ver-item .img2{
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.ver-list .ver-right{
    width: 815px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.ver-right .logo{
    width: 430px;
    object-fit: contain;
}
.ver-right .right-title{
    color: var(--primary-color);
    font-family: var(--title-font-family);
    font-size: var(--title-size-h1);
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.ver-right .right-desc{
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--title-size-h5);
    font-style: normal;
    font-weight: 250;
    line-height: normal;
}
.ver-right .deqing-btn{
    background: var(--primary-color);
}
.ver-right .deqing-btn:hover{
    color: #fff !important;
}

@media screen and (max-width: 1500px) {
    .dq-verified .ver-list{
        gap: 20px;
    }
}
@media screen and (max-width: 992px) {
    .dq-verified .ver-list{
        flex-direction: column;
        gap: 30px;
    }
    .ver-list .ver-left,
    .ver-list .ver-right{
        width: 100%;
    }
    .ver-right .logo{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .ver-left .ver-item .img1{
        transform: translateY(-50px);
    }
}