/* 按钮图标 */
.web-icon {
    float: left;
    border-radius: 50%;
    /* 圆角↑  */
    margin-right: 10px;
    width: 50px;
    height: 50px;
    background-color: F9F9F9;
}

.web-icon img {
    width: 100%;
    height: 100%;
    border-radius: 10%;
    /* 圆角↑  */
    object-fit: contain;
    position: relative;
    transform: translate(-15px, -15px) rotate(-20deg);
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    opacity: 0.5;
}

.web-body:hover img {
    transform: translate(0px, 0px) rotate(0deg);
    opacity: 1;
}
