.slide {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(10%, -50%);
    z-index: 40;

}

.slide>div {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: #ef7700;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 3px;
    cursor: pointer;
    transition: all .6s ease;
}

.slide>div:first-child {
    border-top-left-radius: 20px;
}

.slide>.hide {
    border-bottom-left-radius: 20px;
}

.slide>div>div {
    position: absolute;
    width: auto;
    min-height: 100%;
    left: 100%;
    transition: all .8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 10px 20px;
    z-index: -1;
}

.slide>div:hover {
    background: #B55A00;
}

/* .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(-85%);
}

.slide>.liuyan:hover>div {
    top: 50%;
    transform: translate(-100%, -30%) !important;
}

.liuyan>div {
    width: 300px !important;
    top: 50%;
    background-color: #fff;
    padding: 20px !important;
    border-radius: 10px;
    transform: translateY(-30%);
}

.liuyan>div .MessageBox>div:nth-child(1) {
    display: none;
}

.liuyan>div .MessageBox input,
.liuyan>div .MessageBox textarea,
.liuyan>div .MessageBox img,
.liuyan>div .MessageBox button {
    animation: none !important;
    visibility: visible !important;
}

.liuyan>div .MessageBox .verify {
    width: 40% !important;
}

.liuyan>div .MessageBox img {
    width: 50%;
    /* margin-top: 10px; */
    margin-left: 10px;
    object-fit: cover;
}

.liuyan>div .Message>div{
    margin-bottom: 10px;
}
.liuyan>div .Message>div>input {
    width: 100%;
    height: 40px;
}

.liuyan>div .Message>div>input:nth-child(odd) {
    margin-bottom: 10px;
}
.liuyan>div .Message>div>textarea{
    height: 70px;
}

.phone>div,
.email>div {
    color: #EF7700;
    /* text-wrap: nowrap; */
    white-space: nowrap;
    background-color: #fff;
    padding: 0 50%;
}

.phone>div {
    align-items: start !important;

    flex-direction: column;
}

.phone>div {
    font-weight: bold;
    font-size: var(--26px--);
}

.email>div {
    font-weight: bold;
    font-size: var(--18px--);
}

.phone>div>p {
    font-family: '苹方-简 常规体';
    font-weight: bold;
    font-size: var(--16px--);
    color: #EF7700;
}

.wechat>div,
.douyin>div{
    padding: 0 !important;
}

.wechat>div>img,
.douyin>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;
}

.liuyan .Message input:focus{

}

.slide>.liuyan:hover>div {
    top: 50%;
    transform: translate(-100%, -30%) !important;
}