﻿/* pc样式 */
@media screen and (min-width: 1024px){
    .content-right-text {
        font-size: 18px;
        line-height: 36px;
        font-weight: 700;
        color: #333333;
    }
    .content-right {

    }  
    .content-right>ul {
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }  
    .content-right>ul>li {
        margin-bottom: 50px;
    }  
    .content-right>ul>li>a {
        position: relative;
        display: block;
        width: 330px;
        height: 210px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 330px auto;
        transition: all 1s ease;
    }
    .content-right>ul>li:hover>a {
        background-size: 380px auto;
        transition: all 1s ease;
    }
    .content-right>ul>li:hover>a>.list_item_title {
        background-image: url(../imgs/mt_title_bj_red.png);
        color: #fff;
    }


    .list_item_title {
        background-size: auto 50px;
        display: flex;
        align-items: center;
        position: absolute;
        left: 0;
        bottom: 0;
        box-sizing: border-box;
        width: 100%;
        height: 50px;
        background-image: url(../imgs/mt_title_bj.png);
        background-repeat: no-repeat;
        background-position: left center;
        font-size: 20px;
        font-weight: 700;
        color: var(--zt_blue_color--);
        padding-left: 20px;
    }  
}

@media screen and (max-width: 1400px) {
    .content-right-text {
        font-size: 18px;
        line-height: 36px;
        font-weight: 700;
        color: #333333;
    }
    .content-right {

    }  
    .content-right>ul {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }  
    .content-right>ul>li {
        margin-bottom: 30px;
    }  
    .content-right>ul>li>a {
        position: relative;
        display: block;
        width: 280px;
        height: 180px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 280px auto;
        transition: all 1s ease;
    }
    .content-right>ul>li:hover>a {
        background-size: 330px auto;
        transition: all 1s ease;
    }
    .content-right>ul>li:hover>a>.list_item_title {

        background-image: url(../imgs/mt_title_bj_red.png);
        color: #fff;
    }


    .list_item_title {
        background-size: 95% auto;
        display: flex;
        align-items: center;
        position: absolute;
        left: 0;
        bottom: 0;
        box-sizing: border-box;
        width: 100%;
        height: 40px;
        background-image: url(../imgs/mt_title_bj.png);
        background-repeat: no-repeat;
        background-position: left center;
        font-size: 18px;
        font-weight: 700;
        color: var(--zt_blue_color--);
        padding-left: 15px;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-right>ul>li {
        width: 48%;
    }
    .content-right>ul>li>a {
        background-size: auto 220px;
        height: 220px;
        width: 100%;
    }
    .content-right>ul>li:hover>a {
        background-size: auto 270px;
    }
}

@media screen and (max-width: 600px) {
    .content-right-text {
        font-size: 16px;
        line-height: 25px;
    }
    .content-right>ul>li {
        margin-bottom: 20px;
    }
    .content-right>ul>li>a {
        background-size: auto 140px;
        height: 140px;
        width: 100%;
    }
    .content-right>ul>li:hover>a {
        background-size: auto 180px;
    }
    .list_item_title {
        background-size: 98% auto;
        height: 30px;
        font-size: 14px;
        padding-left: 5px;
    }
}