/* pc样式 */
@media screen and (min-width: 1024px){
    .content-right-content {
        padding: 30px 0;
    }
    .js-list {
        display: flex;
        flex-wrap: wrap;
    }

    .js-list>li {
        margin:0 20px 50px 0;
    }

    .js-img {
        width: 200px;
        height: 260px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto 100%;
    }
    .js-text {
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 200px;
        height: 60px;
        background-color: #274373;
        color: #fff;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-right-content {
        padding: 30px 0;
    }
    .js-list {
        display: flex;
        flex-wrap: wrap;
    }

    .js-list>li {
        margin:0 10px 30px 0;
    }

    .js-img {
        width:150px;
        height: 200px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto 100%;
    }
    .js-text {
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 40px;
        background-color: #274373;
        color: #fff;
    }
}

@media screen and (max-width: 600px) {
    .js-list {
        justify-content: space-between;
    }
    .js-list>li {
        width: 45%;
        margin:0 0 20px 0;
    }
    .js-img {
        width: 100%;
        height: 200px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
    .js-text {
        width: 100%;
    }

}