﻿/* pc样式 */
@media screen and (min-width: 1024px){
    .imglist{}
    .imglist>ul>li>a{
        margin-bottom: 0.5rem;
        padding: 0.4rem;
        display: flex;
        justify-content: space-between;
        background-color: #ffffff;
	    border: solid 1px #e8e8e8;
    }

    .imglist-img {
        width: 3.3rem;
        height: 2.2rem;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 3.3rem auto;
        transition: all 1s ease;
    }
    .imglist-text {
        padding-left: 0.4rem;
        flex: 1;
    }
    .imglist-text>h2 {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-size: 0.22rem;
        color: #333333;
    }
    .imglist-text>h3 {
        margin-top: 0.15rem;
        font-size: 0.16rem;
        color: var(--zt_color--);
    }
    .imglist-line {
        margin: 0.15rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .imglist-line>img{
        height: 0.06rem;
    }
    .imglist-line>span{
        width: 100%;
        height: 1px;
	    background-color: #e3e3e3;
    }
    .imglist-text>p {
        line-height: 0.26rem;
        font-size: 0.16rem;
        color: #999999;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .imglist-button {
        font-size: 0.14rem;
        margin-top: 0.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--zt_color--);
        width: 1rem;
        height: 0.3rem;
        border: solid 1px #6c6d43;
    }
    .imglist>ul>li:hover>a>.imglist-img {
        background-size: 3.7rem auto;
        transition: all 1s ease;
    }

    .imglist>ul>li:hover>a>.imglist-text>h2{
        color: var(--zt_color--);
    }
    .imglist>ul>li:hover>a .imglist-button{
        color: #ffffff;
        background-color: #6c6d43;
    }

}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .imglist{}
    .imglist>ul>li>a{
        margin-bottom: 0.5rem;
        padding: 0.4rem;
        display: flex;
        justify-content: space-between;
        background-color: #ffffff;
	    border: solid 1px #e8e8e8;
    }

    .imglist-img {
        width: 3.3rem;
        height: 2.2rem;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 3.3rem auto;
        transition: all 1s ease;
    }
    .imglist-text {
        padding-left: 0.4rem;
        flex: 1;
    }
    .imglist-text>h2 {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-size: 0.22rem;
        color: #333333;
    }
    .imglist-text>h3 {
        margin-top: 0.15rem;
        font-size: 0.16rem;
        color: var(--zt_color--);
    }
    .imglist-line {
        margin: 0.15rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .imglist-line>img{
        height: 0.06rem;
    }
    .imglist-line>span{
        width: 100%;
        height: 1px;
	    background-color: #e3e3e3;
    }
    .imglist-text>p {
        line-height: 0.26rem;
        font-size: 0.16rem;
        color: #999999;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .imglist-button {
        font-size: 0.14rem;
        margin-top: 0.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--zt_color--);
        width: 1rem;
        height: 0.3rem;
        border: solid 1px #6c6d43;
    }
    .imglist>ul>li:hover>a>.imglist-img {
        background-size: 3.7rem auto;
        transition: all 1s ease;
    }

    .imglist>ul>li:hover>a>.imglist-text>h2{
        color: var(--zt_color--);
    }
    .imglist>ul>li:hover>a .imglist-button{
        color: #ffffff;
        background-color: #6c6d43;
    }

}

@media screen and (max-width: 800px) {
    .imglist>ul>li>a {
        margin-bottom: 0.2rem;
        padding: 0.1rem;
    }
    .imglist-img {
        width: 2.5rem;
        height: 2rem;
        background-size: auto 2rem;
    }
    .imglist-text{
        padding-left: 0.2rem;
    }
    .imglist-text>h3{
        margin-top: 0.1rem;
    }
    .imglist-line{
        margin: 0.1rem 0;
    }
    .imglist-text>p{

    }
    .imglist-button{
        margin-top: 0.05rem;
    }
}