/**
 * Created by HoseaLee on 16/12/6.
 */
.hl-rightPanel-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9990;
    width: 0;
    height: 100%;
}

.hl-rightPanel-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9990;
    width: 0;
    height: 100%;
}

.hl-rightPanel {
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    /*border-right: 1px solid #7a6e6e;*/
    -webkit-transition: right .3s ease-in-out 0s;
    -moz-transition: right .3s ease-in-out 0s;
    transition: right .3s ease-in-out 0s;

}

.hl-rightPanel-panels {
    position: absolute;
    left: 6px;
    top: 0;
    width: 270px;
    height: 100%;
    z-index: 2;
    background: #57a6cf;
}

.hl-rightPanel-panel {
    width: 370px;
    height: 100%;
    position: absolute;
    background: #57a6cf;
    padding: 15px;
}

.hl-rightPanel-tabs {
    position: absolute;
    top: 30%;
    left: -30px;
    width: 35px;
    margin-top: -61px
}

.hl-rightPanel-tab {
    position: relative;
    width: 35px;
    height: 35px;
    margin-bottom: 8px;
    cursor: pointer;
    background-color: #FF8C42;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    color: white;
}

.hl-rightPanel-tab .tab-text {
    width: 150px;
    height: 35px;
    line-height: 35px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    position: absolute;
    z-index: 1;
    left: 35px;
    /*top: 0;*/
    /*background-color: #7a6e6e;*/
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    -webkit-transition: left .3s ease-in-out .1s;
    -moz-transition: left .3s ease-in-out .1s;
    transition: left .3s ease-in-out .1s;
}

.hl-rightPanel-tab .k-icon{
    font-size: 20px;
    line-height: 1.5;
    padding-left: 5px;
}

.hl-rightPanel-tab-hover {
    background: #c81623;
}

.hl-rightPanel-tab-hover .tab-text {
    background: #c81623;
    left: -120px;
}

.hl-rightPanel-tab-hover .tab-icon {
    background-color: #c81623;
}

.hl-rightPanel-tab-selected, .hl-rightPanel-tab-selected .tab-icon {
    background-color: #c81623;
}

.hl-rightPanel-panel-header {
    position: relative;
    width: 370px;
    height: 40px;
    line-height: 40px;
    background: #d4f8fa;
}

.hl-rightPanel-panel-main {
    position: relative;
}

div.hl-rightPanel-open .hl-rightPanel {
    right: 370px;
}

/*panel 进入 跳出 动画*/
@-webkit-keyframes rightPanel-scaleIn {
    from {
        opacity: .7;
        -webkit-transform: translateX(270px);
        -moz-transform: translateX(270px);
        transform: translateX(270px)
    }
    to {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px)
    }
}

@-ms-keyframes rightPanel-scaleIn {
    from {
        opacity: .7;
        -webkit-transform: translateX(270px);
        -moz-transform: translateX(270px);
        transform: translateX(270px)
    }
    to {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px)
    }
}

@-moz-keyframes rightPanel-scaleIn {
    from {
        opacity: .7;
        -webkit-transform: translateX(270px);
        -moz-transform: translateX(270px);
        transform: translateX(270px)
    }
    to {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px)
    }
}

@keyframes rightPanel-scaleIn {
    from {
        opacity: .7;
        -webkit-transform: translateX(270px);
        -moz-transform: translateX(270px);
        transform: translateX(270px)
    }
    to {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px)
    }
}

@-webkit-keyframes rightPanel-scaleOut {
    to {
        opacity: .5;
        -webkit-transform: scale(0.7) translateX(270px);
        -moz-transform: scale(0.7) translateX(270px);
        transform: scale(0.7) translateX(270px)
    }
}

@-ms-keyframes rightPanel-scaleOut {
    to {
        opacity: .5;
        -webkit-transform: scale(0.7) translateX(270px);
        -moz-transform: scale(0.7) translateX(270px);
        transform: scale(0.7) translateX(270px)
    }
}

@-moz-keyframes rightPanel-scaleOut {
    to {
        opacity: .5;
        -webkit-transform: scale(0.7) translateX(270px);
        -moz-transform: scale(0.7) translateX(270px);
        transform: scale(0.7) translateX(270px)
    }
}

@keyframes rightPanel-scaleOut {
    to {
        opacity: .5;
        -webkit-transform: scale(0.7) translateX(270px);
        -moz-transform: scale(0.7) translateX(270px);
        transform: scale(0.7) translateX(270px)
    }
}

.rightPanel-animate-in {
    -webkit-animation: rightPanel-scaleIn .35s ease-in-out;
    -moz-animation: rightPanel-scaleIn .35s ease-in-out;
    animation: rightPanel-scaleIn .35s ease-in-out
}

.rightPanel-animate-out {
    -webkit-animation: rightPanel-scaleOut .35s ease-in;
    -moz-animation: rightPanel-scaleOut .35s ease-in;
    animation: rightPanel-scaleOut .35s ease-in
}