.consult_contact {
    position: fixed;
    bottom: 22%;
    right: 0;
    width: 114px;
    height: 114px;
    cursor: pointer;
}

.consult_wrap {
    position: relative;
    width: 114px;
    height: 114px;
}

.consult_wrap .tip {
    position: absolute;
    right: 95px;
    top: 45px;
    display: none;
    width: 150px;
    height: 24px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    background: #A28867;
    color: #fff;
    -webkit-transition: display 1s ease;
    transition: display 1s ease;
}

.consult_wrap .tip:after {
    position: absolute;
    right: -8px;
    top: 50%;
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #A28867;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.consult_contact img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.consult_contact .staff_img {
    z-index: 999;
}

@keyframes ballRotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.consult_contact .ball {
    top: 20px;
    width: auto;
    transform-origin: 0 38px;
    animation: ballRotate 2.5s infinite linear;
    z-index: 9999;
}

@keyframes bg2Animation {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.consult_contact .bg-2 {
    animation: bg2Animation 2.5s infinite linear;
}

.consult_contact:hover .tip {
    display: block;
}

@media (max-width: 767px) {
    .load-box img {
        width: 68% !important;
    }

    .consult_contact {
        display: none;
    }

    .is-phone {
        display: block;
        width: 100%;
        height: 90px;
        background: white;
        -moz-box-shadow: 0px -1px 10px -3px #333333;
        -webkit-box-shadow: 0px -1px 10px -3px #333333;
        box-shadow: 0px -1px 10px -3px #333333;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 99999;
    }

    .phone-item {
        text-align: center;
        float: left;
        width: 25%;
        height: 100%;
        padding: 2% 0;
    }

    .phone-icon {
        font-size: 26px;
        color: #A28867;
    }

    .phone-title {
        color: black !important;
    }

    .c-foot-bottom {
        bottom: 100px !important;
    }

    .c-b-foot {
        margin-bottom: 90px !important;
    }
}

@media (min-width: 767px) {
    .is-phone {
        display: none;
    }

    .load-box img {
        width: 26% !important;
    }
}