/* pc样式 */
@media screen and (min-width: 1024px){
    .content-right-content {
        position: relative;
        padding: 0.4rem;
    }

    .syssb-list {
        display: flex;
        flex-wrap: wrap;
    }
    .syssb-list li {
        margin-right: 0.55rem;
        width: 3.6rem;
    }
    .syssb-list li:nth-child(3n) {
        margin-right: 0;
    }
    .syssb-list li:hover .syssb-img{
        background-size: auto 2.6rem;
        transition: all 0.7s;
    }

    .syssb-img {
        border: 1px solid #cdd0d4;
        width: 100%;
        height: 2.3rem;
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto 2.3rem;
        transition: all 0.7s;
    }
    .syssb-text {
        transform: translate(5%,-50%);
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        min-height: 0.6rem;
        padding: 0 0.3rem;
        background-color: #eef1f5;
    }
    .syssb-text p {
        text-align: center;
        font-size: 0.18rem;
        color: var(--zt_color--);
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-right-content {
        position: relative;
        padding: 20px;
    }

    .syssb-list {
        display: flex;
        flex-wrap: wrap;
    }
    .syssb-list li {
        margin-right: 0.55rem;
        width: 3.6rem;
    }

    .syssb-list li:hover .syssb-img{
        background-size: auto 2.6rem;
        transition: all 0.7s;
    }

    .syssb-img {
        border: 1px solid #cdd0d4;
        width: 100%;
        height: 2.3rem;
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto 2.3rem;
        transition: all 0.7s;
    }
    .syssb-text {
        transform: translate(5%,-50%);
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        min-height: 0.6rem;
        padding: 0 0.3rem;
        background-color: #eef1f5;
    }
    .syssb-text p {
        text-align: center;
        font-size: 0.18rem;
        color: var(--zt_color--);
    }
}

@media screen and (max-width: 800px) {
    .syssb-list {
        justify-content: space-between;
    }
    .syssb-list li {
        width: 48%;
        margin-right: 0;
    }

    .syssb-img {
        height: 3rem;
    }
    .syssb-list li:hover .syssb-img {
        background-size: auto 3.4rem;
    }
    .syssb-text {}
    .syssb-text p{
        font-size: 16px;
    }
}