.WebLink {
        margin-bottom: 50px;
        background-color: #fff;
}
.WebLink .HeadLink {
        /* background: rgba(0, 0, 0, 0) linear-gradient(#fff, #eff7f2) repeat scroll 0 0; */
        /* border-bottom: 1px solid #ccc; */
        /* margin: 0; */
        /* height:28px; */
        text-align: center;
}
.WebLink .HeadLink span {
        text-transform: uppercase;
        font-size: 36px;
        font-weight: 700;
        color: #167a4c;
        margin-bottom: 50px;
        position: relative;
        padding-top: 15px;
        text-align: center;
        margin-top: 50px;
        display: inline-block;
}
.WebLink .HeadLink span:before {
        content: '';
        width: 50px;
        height: 4px;
        background: #76b043;
        display: inline-block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
}
.WebLink .Content{
        padding: 5px 0px;
}
.WebLink .Content ul {
        list-style: none outside none;
        margin: 0;
        padding: 0;
}
.WebLink .ImgWebLink{
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-evenly;
}
.WebLink .ImgWebLink .Item{
        width: calc(100% / 5 - 30px);
        /* height: 95px; */
        padding: 15px;
        transition: 300ms;
}
.WebLink .ImgWebLink .Item a{
        display: flex;
        width: 100%;
        height: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
}
.WebLink .ImgWebLink .Item a img{
        width: 100%;
}
.WebLink .ImgWebLink .Item:hover{
        transform: scale(1.1);
}
@media only screen and (max-width: 768px){
        .WebLink .ImgWebLink .Item {
                width: calc(100% / 2 - 30px);
        }
}
