/*管理人员*/
.glry ul{
    display: grid;
    grid-template-columns: repeat(auto-fill,4.23rem);
    justify-content: space-between;
}
.glry ul li{
    height: 1.93rem;
    border: .01rem solid #cbcbcb;
    margin-bottom: .3rem;
    border-radius: .04rem;
    padding: 0 .23rem;
    display: grid;
    align-content: center;
}
.glry ul li:hover{
    border: .01rem solid #ff4a00;
    box-shadow: .04rem .07rem 0 0 rgba(255,54,0,0.75);
    -webkit-box-shadow: .04rem .07rem 0 0 rgba(255,54,0,0.75);
    -moz-box-shadow: .04rem .07rem 0 0 rgba(255,54,0,0.75);
}
.glry ul li h4{
    padding-left: .42rem;
    background: url("../images/frame/19.png")no-repeat left center;
    background-size: .32rem auto;
    font-size: .2rem;
    font-weight: bold;
    line-height: .34rem;
    margin-bottom: .3rem;
}
.glry ul li p{
    padding-left: .77rem;
    margin-bottom: .2rem;
    font-size: .18rem;
}
.glry ul li .p1{
    background: url("../images/frame/20.png")no-repeat .45rem center;
    background-size: .14rem auto;
}
.glry ul li .p2{
    background: url("../images/frame/21.png")no-repeat .42rem center;
    background-size: .2rem auto;
    margin-bottom: 0;
}

/*小屏幕*/
@media screen and (max-width: 1200px) {
    .glry ul{
        display: flex;
        grid-template-columns:inherit;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .glry ul li{
        width: 49%;
        height: 100%;
        margin-bottom: .15rem;
        padding: .15rem .05rem;
    }
    .glry ul li h4{
        margin-bottom: .15rem;
    }
    .glry ul li p{
        padding-left: .25rem;
        background-position: left top!important;
    }
    .glry ul li .p1{
        margin-bottom: .15rem;
    }
}














































