﻿/* pc样式 */
@media screen and (min-width: 1024px){
    .list-box {
        padding-top: 0.2rem;
    }
    .list-box li a{
        box-sizing: border-box;
        height: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 0.2rem;
        background-image: url(../icon/list_left_icon.png);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 0.1rem auto;
        border-bottom: 1px dashed #c4c3c2;
        transition: all .5s ease;
    }
    .list-box li:hover a{
        border-bottom: 1px dashed var(--zt_color--);
        transition: all .5s ease;
    }
    .list-box li:hover a h2{
        transition: all .5s ease;
        color: var(--zt_color--);
    }
    .list-box li:hover a p{
        transition: all .5s ease;
        color: var(--zt_color--);
    }

    .list-box li a h2{
        transition: all .5s ease;
        flex: 1;
        font-size: 0.18rem;
        color: #333333;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .list-box li a p{
        transition: all .5s ease;
        padding-left: 0.5rem;
        font-size: 0.18rem;
        color: #333333;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .list-box {
        padding-top: 0.2rem;
    }
    .list-box li a{
        box-sizing: border-box;
        height: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 20px;
        background-image: url(../icon/list_left_icon.png);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 10px auto;
        border-bottom: 1px dashed #c4c3c2;
    }
    .list-box li a h2{
        flex: 1;
        font-size: 16px;
        color: #333333;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .list-box li a p{
        padding-left: 10px;
        font-size: 16px;
        color: #333333;
    }
}