﻿/* pc样式 */
@media screen and (min-width: 1024px){
    .content-right-content {
        padding-top: 0.3rem;
    }
    .list-box{}
    .list-box>li{}
    .list-box>li:hover>a{
        background-image: linear-gradient(90deg, 
		#298657 0%, 
		#00b9cf 100%);
        transition: all 1s ease;
    }
    .list-box>li:hover>a>.list-date {
        color: #fff;
        transition: all 0.3s ease;
        background-image: url(../icon/list_time_icon_bai.png);
    }
    .list-box>li:hover>a>.list-text {
        color: #fff;
        transition: all 0.3s ease;
    }
    .list-box>li>a{
        padding: 0.3rem;
        display: flex;
        justify-content: space-between;
        background-color: #f3f3f3;
        transition: all 1s ease;
    }
    .list-box>li:nth-child(2n)>a {
        background-color: #fff;
    }

    .list-date {
        display: flex;
        align-items: center;
        padding-left: 0.25rem;
        background-image: url(../icon/list_time_icon.png);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 0.2rem auto;
        font-size: 0.16rem;
        width: 1.2rem;
        border-right: 0.01rem solid var(--zt_color--);
        transition: all 0.3s ease;
        color: var(--zt_color--);

    }
    .list-text {
        color: #333;
        transition: all 0.3s ease;
        flex: 1;
        padding-left: 0.3rem;
        font-size: 0.18rem;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-right-content {
        padding-top: 0.3rem;
    }
    .list-box{}
    .list-box>li{}
    .list-box>li:hover>a{
        background-image: linear-gradient(90deg, 
		#298657 0%, 
		#00b9cf 100%);
        transition: all 1s ease;
    }
    .list-box>li:hover>a>.list-date {
        color: #fff;
        transition: all 0.3s ease;
        background-image: url(../icon/list_time_icon_bai.png);
    }
    .list-box>li:hover>a>.list-text {
        color: #fff;
        transition: all 0.3s ease;
    }
    .list-box>li>a{
        padding: 0.3rem;
        display: flex;
        justify-content: space-between;
        background-color: #f3f3f3;
        transition: all 1s ease;
    }
    .list-box>li:nth-child(2n)>a {
        background-color: #fff;
    }

    .list-date {
        display: flex;
        align-items: center;
        padding-left: 0.25rem;
        background-image: url(../icon/list_time_icon.png);
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 0.2rem auto;
        font-size: 0.16rem;
        width: 1.2rem;
        border-right: 0.01rem solid var(--zt_color--);
        transition: all 0.3s ease;
        color: var(--zt_color--);

    }
    .list-text {
        color: #333;
        transition: all 0.3s ease;
        flex: 1;
        padding-left: 0.3rem;
        font-size: 0.18rem;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }
}

