.footerLink {
    height: 16vh;
    background-color: #4A4E8F;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    margin-top: 8vh;
    padding-top: 2vh;
    padding-left: 2vh;
    padding-right: 2vh;
    padding-bottom: 1vh;
}

.linkDiv {
    width: 16vh;
    text-align: center;
    border-radius: 25%;
    transition: background-color 0.5s ease;
    /* border:2px solid #FFF */
}

.linkdiv-img {
    max-width: 100%;
    max-height: 30%;
    transition: transform 0.5s ease, margin-top 0.5s ease;
}

.linkdiv-text {
    color: white;
    font-family: '微软雅黑';
    font-size: 20px;
    transition: margin-top 0.5s ease, font-weight 0.5s ease;
}

@media screen and (max-width:700px) {
    .linkdiv-text {
        font-size: 14px;
    }
}

.linkDiv:hover {
    background-color: #473d72;
}

.linkDiv:hover .linkdiv-img {
    transform: scale(1.2);
    margin-top: -20px;
}

.linkDiv:hover .linkdiv-text {
    margin-top: -1px;
    font-size: 19px;
}

.footerLink a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;

}