
.kszj-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: space-around; */
    width: 100%;
   /* background-color: #f2f2f2; */
}

.kszj-item{
    display: inline-block;
    width: 200px;
    height: 133.333px;
    margin:0 35px 20px 0;
    line-height: 40px;
    text-align: center;
    background-color: #f2f2f2;
    padding-top: 20px ;
}

.kszj-item:nth-child(5n){
    margin-right: 0;
}
.kszj-item a{
   display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kszj-icon{
    font-size: 40px;
    color: #36a99e;
}

@media screen and (max-width: 768px){
    .kszj-list{
        justify-content: space-around;
    }
    .kszj-item{
        width: 120px;
        height: 80px;
        margin-right: 0;
        padding-top: 10px;
        line-height: 30px;

    }
    .kszj-icon{
        font-size: 32px;
    }
}