.page-body,.toolbar-search-group{width: 100%;}
.toolbar-search-group ul {
    display: flex;
    flex-flow: wrap;
	/*flex-direction: row-reverse;
	flex-wrap: wrap-reverse;
	justify-content: flex-start;
	align-items: flex-start;*/
    margin-top: -35px;
}
.toolbar-search-group li {
    /*flex: 1;*/
    width: 24%;
    margin: 15px 0 15px;
    /*float: left;*/
}
.toolbar-search-group ul li:not(:nth-child(4n)){
    margin-right: calc(4% / 3);
}
.toolbar-search-group li:last-child{
    /*margin-right: 0;*/
}
.toolbar-search-group li:hover {
    animation: rect 0.5s ease;
    animation-fill-mode: forwards; /*保持最后一帧的状态*/
}
@keyframes rect {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.08, 1.08);
    }
}
/*.toolbar-search-group li:hover .toolbar-search-item{
    color: #ffffff;
    background-color: #0b6cbc;
}*/

.toolbar-search-item {
    min-height: 260px;
    background-color: #FFF;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    border: 1px solid #DDD;
    text-align: center;
    transition: all .4s ease;
}
.toolbar-search-item span {
    display: block;
    margin: 23px auto;
    width: 103px;
    height: 103px;
    border-radius: 50px;
    background-color: #FFF;
    text-align: center;
}
.toolbar-search-item span i {
    /*color: #3182E3;*/
    color: #26935A;
    font-size: 103px;
    /*line-height: 80px;*/
    width: auto;
    height: auto;
    background-image: none;
}
.toolbar-search-item span img{
    width: 103px;
    height: 103px;
    border-radius: 50%;
}
.toolbar-search-item h3 {
    font-size: 20px;
    padding: 0 10px;
    line-height: 24px;
    text-align: center;
    font-weight: normal;
    min-height: 44px;
    margin-bottom: 10px;
}
.toolbar-search-item h4 {
    display: none;
    font-size: 18px;
    padding: 0 10px;
    line-height: 24px;
    text-align: center;
    color: #BBB;
    font-weight: normal;
    margin-bottom: 30px;
}
.toolbar-search-item .btn {
    padding: 10px 25px;
    background-color: #26935A;
    display: inline;
}