/* pc样式 */
@media screen and (min-width: 1024px){
    .content-imglist {}
    .content-imglist>li>a {
        height: 2.3rem;
        display: flex;
        align-items: center;
        border-bottom: 1px dashed #9f9f9f;
    }
    .imglist-left {
        width: 0.7rem;
        border-top: 1px solid var(--zt_deep_color--);
        height: 1.8rem;
    }
    .imglist-left>p {
        font-size: 0.16rem;
        line-height: 0.36rem;
        color: #5b5b5b;
    }
    .imglist-left>h2 {
        font-size: 0.26rem;
        font-weight: 700;
        color: var(--zt_color--);
    }

    .imglist-right {
        padding-left: 0.4rem;
        flex: 1;
        display: flex;
    }

    .imglist-right-img{
        width: 3.2rem;
        height: 1.8rem;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto;
    }
    .imglist-right-text {
        flex: 1;
        padding-left: 0.3rem;
    }
    .imglist-right-text >h2 {
        line-height: 0.45rem;
        font-size: 0.18rem;
        color: #333333;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .imglist-right-text >p {
        font-size: 0.14rem;
        line-height: 0.25rem;
        color: #666666;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-imglist {}
    .content-imglist>li>a {
        height: 2.3rem;
        display: flex;
        align-items: center;
        border-bottom: 1px dashed #9f9f9f;
    }
    .imglist-left {
        width: 0.8rem;
        border-top: 1px solid var(--zt_deep_color--);
        height: 1.8rem;
    }
    .imglist-left>p {
        font-size: 0.2rem;
        line-height: 0.36rem;
        color: #5b5b5b;
    }
    .imglist-left>h2 {
        font-size: 0.3rem;
        font-weight: 700;
        color: var(--zt_color--);
    }

    .imglist-right {
        padding-left: 0.4rem;
        flex: 1;
        display: flex;
    }

    .imglist-right-img{
        width: 3.2rem;
        height: 1.8rem;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% auto;
    }
    .imglist-right-text {
        flex: 1;
        padding-left: 0.3rem;
    }
    .imglist-right-text >h2 {
        line-height: 0.45rem;
        font-size: 0.24rem;
        color: #333333;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
    .imglist-right-text >p {
        font-size: 0.22rem;
        line-height: 0.28rem;
        color: #666666;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
}

@media screen and (max-width: 700px) {
    .imglist-left {
        height: 1.5rem;
    }
    .imglist-right {
        padding-left: 0.1rem;
    }
    .imglist-right-img {
        width: 2rem;
        height: 1.5rem;
    }
    .imglist-right-text {
        flex: 1;
        padding-left: 0.2rem;
    }
}