.ipc-button{
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.ipc-button a{
    display: inline-block;
    font-size: 2vh;
    color: #111111;
    background: #86c8ef;
    padding: 1vh; /*按钮大小*/
    border-radius: 0.7vh;
    text-decoration: none;
    font-weight: 700;
    transition: 0.6s;
    overflow-wrap: break-word;
}
.ipc-button a:hover{
    background: #286ec9;
    color: #cc72a8;
    border-radius: 1.5vh;
    box-shadow: 0 2px 15px #2222225c;
}