page,body,html{
    background: #f3f6ff;
}
.proclss{
    padding: 20px 0;
}

/* 右侧内容 */
.proccont{
    margin: 0 -10px;
}

.procc_item{
    width: 33.3%;
    float: left;
    padding: 0 10px 20px;
    box-sizing: border-box;
}
.proccitem{
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.proccitem:hover{
    transform: translateY(-10px);
    box-shadow: 0 2px 10px rgba(121, 194, 68, 0.5);
    transition: all 1s ease;
}
.proccitem:hover .proccname{
    color: #79c244;
}
.proccitem:hover .procc_img>img{
    border-top: 5px solid #79c244;
}

.proccitem .procc_img{
    background: rgba(255, 255, 255, 0.8) center center/contain no-repeat; 
    background-clip: content-box;
    overflow: hidden;
}
.procc_img img{
    width: 100%;
    display: block;
    height: auto;
    border-top: 5px solid #0e3ba8;
}
.proccname{
    font-weight: bold;
    padding:10px;
}
.procctext{
    font-size: 12px;
    color: #888;
    padding: 0px 10px 10px;
    width:100%;
    height:16px
}
.proccpage>img{
    width: 100px;
    margin: auto;
}
@media screen and (max-width:600px) {
    .procc_item{
        width: 50%;
    }
}