.toolbar-default .toolbar-item {
}

.toolbar-default .toolbar-item {
    width: 60px;
    height: 60px;
}

.toolbar-default .toolbar-item .tool-popup {
    right: 70px;
}


.toolbar-default .toolbar-item {
    border-color: #dddddd;
}

#open {
    width: 25px;
    height: 130px;
    background: #3B8BF4;
    position: fixed;
    top: 300px;
    right: 0;
    color: #fff;
    padding-top: 4px;
    text-align: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 9999;
}

#hide {
    width: 200px;
    height: 300px;
    position: fixed;
    top: 300px;
    right: 0;
    background: #fff;
    text-align: center;
    padding-top: 20px;
    z-index: 99999;
    display: none;
    animation-name: example;
    animation-duration: 1s;
}

@keyframes example {
    0% {
        right: -100px
    }

    100% {
        right: 0px
    }
}

#hide p {
    margin: 0;
}

.btn-primary {
    color: #fff;
    border-color: #ff4800;
    background-color: #ff4800;
    box-shadow: 1px 3px 13px rgb(25 139 252 / 20%);
    /*width:102px;*/
}

.btn-primary:hover {
    color: #fff;
    border-color: #fd7540;
    background-color: #fd7540;
}

.btn-primary:active {
    color: #fff;
    border-color: #fd7540;
    background-color: #fd7540;
}


/*客服*/

.float-sidebar {
    position: fixed;
    right: 15px;
    bottom: 22.5%;
    z-index: 9999;
    background: #fff;
}

.float-sidebar a {
    overflow: hidden;
}

.float-sidebar .contact {
    display: block;
    width: 50px;
    height: auto;
    background: #ff4800;
}

.float-sidebar .contact p {
    padding: 8px 0;
    border-bottom: 1px solid #fff;
    text-align: center;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

.float-sidebar .cs_logo {
    display: block;
    margin: 15px auto;
}

.float-sidebar .xkf_logo {
    display: none;
    margin: 15px auto;
    position: absolute;
    right: 70px;
    top: 200px;
    width: 200px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    animation-name: move;
    animation-timing-function: linear;
    animation-duration: .4s;
    z-index: -1;
}

@keyframes move {
    0% {
        right: 0;
    }

    100% {
        right: 70px
    }
}

.float-sidebar .xkf_logo p {
    color: #999999;
    border: none;
    padding: 0;
}

.float-sidebar .xkf_logo img {
    width: 150px;
}

.float-sidebar .contact p:hover + .xkf_logo {
    display: block;
}