﻿/* pc样式 */
@media screen and (min-width: 1024px){
    .content-right>ul{

    }
    .content-right>ul>li{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 200px;
        border-bottom: 1px solid #ccd6dd;
    }
    .content-right-img {
        width: 260px;
        height: 145px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 260px auto;
        transition: all 1s ease;
    }
    .content-right-img:hover {
        background-size: 300px auto;
        transition: all 1s ease;
    }
    .content-right-text {
        padding-left: 30px;
        flex: 1;
    }
    .content-right-text>a {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-weight: 700;
        font-size: 20px;
        color: var(--zt_blue_color--);
    }
    .content-right-text>p {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 5px;
        font-size: 14px;
        color: #333333;
        line-height: 24px;
    }
    .content-right-text>h5 {
        margin-top: 15px;
        font-size: 16px;
        color: var(--zt_color--);
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-right>ul{

    }
    .content-right>ul>li{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 200px;
        border-bottom: 1px solid #ccd6dd;
    }
    .content-right-img {
        width: 260px;
        height: 145px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 260px auto;
        transition: all 1s ease;
    }
    .content-right-img:hover {
        background-size: 300px auto;
        transition: all 1s ease;
    }
    .content-right-text {
        padding-left: 30px;
        flex: 1;
    }
    .content-right-text>a {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        font-weight: 700;
        font-size: 20px;
        color: var(--zt_blue_color--);
    }
    .content-right-text>p {
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-top: 5px;
        font-size: 14px;
        color: #333333;
        line-height: 24px;
    }
    .content-right-text>h5 {
        margin-top: 15px;
        font-size: 16px;
        color: var(--zt_color--);
    }
}

@media screen and (max-width: 800px) {
    .content-right>ul>li{
        width: 100%;
        height: 150px;
    }
    .content-right-img {
        width: 200px;
        height: 120px;
        background-size: 200px auto;
    }
    .content-right-img:hover {
        background-size: 250px auto;
    }
    .content-right-text {
        width: 60%;
        padding-left: 10px;
    }
    .content-right-text>a {
        font-size: 18px;
    }
    .content-right-text>p {
        margin-top: 5px;
        font-size: 12px;
        line-height: 20px;
    }
    .content-right-text>h5 {
        margin-top: 10px;
        font-size: 14px;
    }
}