﻿/* pc样式 */
@media screen and (min-width: 1024px){
    .content-right>ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 40px;
    }
    .content-right>ul>li{
        width: 31%;
	    height: 220px;
        border: solid 1px #a3b3bf;
        margin-bottom: 40px;
    }
    .content-right-title{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 55px;
        background-color: #023459;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
    }
    .content-right-text{
        padding: 15px 0 0 40px;
    }
    .content-right-text>p{
        font-size: 18px;
        line-height: 40px;
        color: #333333;
    }
    .content-right-text>p>span{
        color: var(--zt_color--);
    }
    .content-right-text>p>a{
        color: var(--zt_blue_color--);
    }
}

@media screen and (max-width: 1400px) {
    .content-right-text>p{
        font-size: 16px;
    }
    .content-right-text {
        padding: 15px 0 0 10px;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-right>ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-bottom: 40px;
    }
    .content-right>ul>li{
        width: 48%;
	    height: 220px;
        border: solid 1px #a3b3bf;
        margin-bottom: 40px;
    }
    .content-right-title{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 55px;
        background-color: #023459;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
    }
    .content-right-text{
        padding: 10px 0 0 10px;
    }
    .content-right-text>p{
        font-size: 16px;
        line-height: 40px;
        color: #333333;
    }
    .content-right-text>p>span{
        color: var(--zt_color--);
    }
    .content-right-text>p>a{
        color: var(--zt_blue_color--);
    }
}

@media screen and (max-width: 600px) {
    .content-right>ul>li{
        width: 100%;
	    height: 150px;
        margin-bottom: 20px;
    }
    .content-right-title{
        height: 30px;
        font-size: 16px;
    }
    .content-right-text>p {
        line-height: 30px;
    }
}