.slide {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(10%, -50%);
    z-index: 99;

}

.slide>div {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: #0398DA;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 3px;
    cursor: pointer;
}

.slide>div>div {
    position: absolute;
    width: auto;
    height: 100%;
    left: 100%;
    transition: all .8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.slide>div:hover>svg {
    animation: beating 1s ease infinite;
}

@keyframes beating {
    0% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(5px);
    }
}

.slide>div:hover>div {
    left: -100%;
    transform: translateX(-80%);
}

.phone>div,
.email>div {
    color: #fff;
    /* text-wrap: nowrap; */
    white-space: nowrap;
    background-color: #0398DA;
    padding: 0 50%;
}

.wechat>div>img {
    width: 100px;
    height: 100px;
}

.show {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    background: rgb(0 0 0 / 50%);
    padding: 20px 5px;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    opacity: 0;
    transition: all .3s ease;
    z-index: -1;
}

.slideMask{
    width: 0%;
    height: 0%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 100;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.SlideVideo{
    max-width: 70%;
    max-height: 80%;
    /* background-color: #fff; */
}

.closeIcon{
    width: 100%;
    text-align: right;
    margin-bottom: 10px;
}
.closeIcon > svg{
    cursor: pointer;
}
.videoBox{
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 32px;
}
.videoBox > video{
    max-width: 100%;
    max-height: 100%;
}