.box-temp-fixed .item-fix.trans {
    transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    visibility: visible;
    filter: alpha(opacity=10);
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}

.box-temp-fixed .item-fix {
    margin-top: 10px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    position: fixed;
    bottom: 10px;
    right: 0;
    z-index: 10;
    animation-name: OpenBoxKey;
    animation-duration: 1s;
}

    .box-temp-fixed .item-fix:not(.box-hotline) {
        transform: translate(50px, 20px);
        -ms-transform: translate(50px, 20px);
        -webkit-transform: translate(50px, 20px);
        visibility: hidden;
        filter: alpha(opacity=0);
        -khtml-opacity: 0;
        -moz-opacity: 0;
        opacity: 0;
    }


.box-temp-fixed .box-hotline {
    height: 50px;
    width: 210px;
    background: #424242;
}

    .box-temp-fixed .box-hotline.opened {
        bottom: 0;
        right: -300px;
        animation: OpenBoxKey 1s;
        -webkit-animation-fill-mode: forwards; /* Chrome 16+, Safari 4+ */
        -moz-animation-fill-mode: forwards; /* FF 5+ */
        -o-animation-fill-mode: forwards; /* Not implemented yet */
        -ms-animation-fill-mode: forwards; /* IE 10+ */
        animation-fill-mode: forwards; /* When the spec is finished */
    }

    .box-temp-fixed .box-hotline.closed {
        bottom: 0;
        right: 0;
        animation: CloseBoxKey 1s;
        -webkit-animation-fill-mode: forwards; /* Chrome 16+, Safari 4+ */
        -moz-animation-fill-mode: forwards; /* FF 5+ */
        -o-animation-fill-mode: forwards; /* Not implemented yet */
        -ms-animation-fill-mode: forwards; /* IE 10+ */
        animation-fill-mode: forwards; /* When the spec is finished */
    }

@keyframes OpenBoxKey {
    80% {
        right: 5px;
    }

    100% {
        right: 0;
    }
}

@keyframes CloseBoxKey {
    100% {
        right: -300px;
    }
}

.box-temp-fixed .box-hotline label {
    display: block;
    position: relative;
}

    .box-temp-fixed .box-hotline label a > span {
        margin: 0 5px 0 -25px;
        display: inline-block;
        vertical-align: middle;
        width: 50px;
        height: 50px;
        background: url(https://cdn.anpero.com/images/38/102021/call2021100411561056.png) top left no-repeat;
    }

    .box-temp-fixed .box-hotline label p {
        display: inline-block;
        vertical-align: middle;
        color: #fff;
        font-size: 13px;
        margin: 0;
        font-weight: normal;
    }

        .box-temp-fixed .box-hotline label p span {
            display: block;
        }

    .box-temp-fixed .box-hotline label .close-hotline {
        z-index: 1;
        position: absolute;
        top: 14px;
        right: 10px;
        display: inline-block;
        width: 21px;
        height: 21px;
        background: url(https://cdn.anpero.com/images/38/102021/close2021100411530273.png) no-repeat;
        cursor: pointer;
    }
