@charset "utf-8";
.transition-effect{
    -webkit-transition:all linear .2s;
    transition:all linear .2s;
}
.bk-fade-in-linear-enter-active,
.bk-fade-in-linear-leave-active{
    -webkit-transition:opacity linear .2s;
    transition:opacity linear .2s;
}
.bk-fade-in-linear-enter,
.bk-fade-in-linear-leave-active{
    opacity:0;
}
.bk-fade-in-ease-enter-active,
.bk-fade-in-ease-leave-active{
    -webkit-transition:opacity cubic-bezier(.55,0,.1,1) .2s;
    transition:opacity cubic-bezier(.55,0,.1,1) .2s;
}
.bk-fade-in-ease-enter,
.bk-fade-in-ease-leave-active{
    opacity:0;
}
.bk-slide-fade-right-enter-active,
.bk-slide-fade-right-leave-active{
    -webkit-transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:transform linear .2s, opacity linear .2s;
    transition:transform linear .2s, opacity linear .2s, -webkit-transform linear .2s;
}
.bk-slide-fade-right-enter{
    opacity:0;
    -webkit-transform:translate3d(20%, 0, 0);
            transform:translate3d(20%, 0, 0);
}
.bk-slide-fade-right-leave-active{
    opacity:0;
    -webkit-transform:translate3d(-20%, 0, 0);
            transform:translate3d(-20%, 0, 0);
}
.bk-slide-fade-left-enter-active,
.bk-slide-fade-left-leave-active{
    -webkit-transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:transform linear .2s, opacity linear .2s;
    transition:transform linear .2s, opacity linear .2s, -webkit-transform linear .2s;
}
.bk-slide-fade-left-enter{
    opacity:0;
    -webkit-transform:translate3d(-20%, 0, 0%);
            transform:translate3d(-20%, 0, 0%);
}
.bk-slide-fade-left-leave-active{
    opacity:0;
    -webkit-transform:translate3d(20%, 0, 0);
            transform:translate3d(20%, 0, 0);
}
.bk-slide-fade-up-enter-active,
.bk-slide-fade-up-leave-active{
    -webkit-transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:transform linear .2s, opacity linear .2s;
    transition:transform linear .2s, opacity linear .2s, -webkit-transform linear .2s;
}
.bk-slide-fade-up-enter{
    opacity:0;
    -webkit-transform:translate3d(0, +20%, 0);
            transform:translate3d(0, +20%, 0);
}
.bk-slide-fade-up-leave-active{
    opacity:0;
    -webkit-transform:translate3d(0, -20%, 0);
            transform:translate3d(0, -20%, 0);
}
.bk-slide-fade-down-enter-active,
.bk-slide-fade-down-leave-active{
    -webkit-transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:transform linear .2s, opacity linear .2s;
    transition:transform linear .2s, opacity linear .2s, -webkit-transform linear .2s;
}
.bk-slide-fade-down-enter{
    opacity:0;
    -webkit-transform:translate3d(0, -20%, 0);
            transform:translate3d(0, -20%, 0);
}
.bk-slide-fade-down-leave-active{
    opacity:0;
    -webkit-transform:translate3d(0, 20%, 0);
            transform:translate3d(0, 20%, 0);
}
.bk-zoom-enter,
.bk-zoom-leave-to{
    -webkit-transform:scale(0);
            transform:scale(0);
}
.bk-zoom-leave,
.bk-zoom-enter-to{
    -webkit-transform:scale(1);
            transform:scale(1);
}
.bk-zoom-enter-active,
.bk-zoom-leave-active{
    -webkit-transition:all .2s;
    transition:all .2s;
}
.bk-move-in-left-enter,
.bk-move-in-left-leave-to{
    -webkit-transform:translate3d(-100%, 0, 0);
            transform:translate3d(-100%, 0, 0);
    opacity:0;
}
.bk-move-in-left-leave,
.bk-move-in-left-enter-to{
    -webkit-transform:translate3d(0, 0, 0);
            transform:translate3d(0, 0, 0);
}
.bk-move-in-left-enter-active,
.bk-move-in-left-leave-active{
    -webkit-transition:all .2s;
    transition:all .2s;
}
.bk-move-in-right-enter,
.bk-move-in-right-leave-to{
    -webkit-transform:translate3d(100%, 0, 0);
            transform:translate3d(100%, 0, 0);
    opacity:0;
}
.bk-move-in-right-leave,
.bk-move-in-right-enter-to{
    -webkit-transform:translate3d(0, 0, 0);
            transform:translate3d(0, 0, 0);
}
.bk-move-in-right-enter-active,
.bk-move-in-right-leave-active{
    -webkit-transition:all .2s;
    transition:all .2s;
}
.bk-move-in-up-enter,
.bk-move-in-up-leave-to{
    -webkit-transform:translate3d(0, -100%, 0);
            transform:translate3d(0, -100%, 0);
    opacity:0;
}
.bk-move-in-up-leave,
.bk-move-in-up-enter-to{
    -webkit-transform:translate3d(0, 0, 0);
            transform:translate3d(0, 0, 0);
}
.bk-move-in-up-enter-active,
.bk-move-in-up-leave-active{
    -webkit-transition:all .2s;
    transition:all .2s;
}
.bk-move-in-down-enter,
.bk-move-in-down-leave-to{
    -webkit-transform:translate3d(0, 100%, 0);
            transform:translate3d(0, 100%, 0);
    opacity:0;
}
.bk-move-in-down-leave,
.bk-move-in-down-enter-to{
    -webkit-transform:translate3d(0, 0, 0);
            transform:translate3d(0, 0, 0);
}
.bk-move-in-down-enter-active,
.bk-move-in-down-leave-active{
    -webkit-transition:all .2s;
    transition:all .2s;
}
.fade-enter-active,
.fade-leave-active{
    -webkit-transition:opacity linear .2s;
    transition:opacity linear .2s;
}
.fade-enter,
.fade-leave-active{
    opacity:0;
}
.fade-show-enter-active,
.fade-show-leave-active{
    -webkit-transition:opacity linear .2s, margin linear .2s;
    transition:opacity linear .2s, margin linear .2s;
}
.fade-show-enter,
.fade-show-leave-active{
    opacity:0;
    margin-top:-20px;
}
.displacement-fade-show-enter-active,
.displacement-fade-show-leave-active{
    -webkit-transition:opacity linear .2s, margin linear .2s;
    transition:opacity linear .2s, margin linear .2s;
}
.displacement-fade-show-enter,
.displacement-fade-show-leave-active{
    opacity:0;
    margin-top:-50px;
}
.fade-center-enter-active,
.fade-center-leave-active{
    -webkit-transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:opacity linear .2s, transform linear .2s;
    transition:opacity linear .2s, transform linear .2s, -webkit-transform linear .2s;
    -webkit-transform-origin:center center;
            transform-origin:center center;
}
.fade-center-enter,
.fade-center-leave-active{
    opacity:0;
    -webkit-transform:translate(50%, -50%) scale(0, 0) !important;
            transform:translate(50%, -50%) scale(0, 0) !important;
}
.slide-enter-active .bk-sideslider-wrapper, .slide-leave-active .bk-sideslider-wrapper{
        -webkit-transform:translateX(0);
                transform:translateX(0);
        -webkit-transition:-webkit-transform .25s;
        transition:-webkit-transform .25s;
        transition:transform .25s;
        transition:transform .25s, -webkit-transform .25s;
    }
.slide-enter-active{
    -webkit-animation:slider-fade-in .25s;
            animation:slider-fade-in .25s;
}
.slide-leave-active{
    animation:slider-fade-in .25s reverse;
}
.slide-enter .bk-sideslider-wrapper.left, .slide-leave-to .bk-sideslider-wrapper.left{
            -webkit-transform:translateX(-100%);
                    transform:translateX(-100%);
            -webkit-transition:-webkit-transform .25s;
            transition:-webkit-transform .25s;
            transition:transform .25s;
            transition:transform .25s, -webkit-transform .25s;
        }
.slide-enter .bk-sideslider-wrapper.right, .slide-leave-to .bk-sideslider-wrapper.right{
            -webkit-transform:translateX(100%);
                    transform:translateX(100%);
            -webkit-transition:-webkit-transform .25s;
            transition:-webkit-transform .25s;
            transition:transform .25s;
            transition:transform .25s, -webkit-transform .25s;
        }
@-webkit-keyframes slider-fade-in{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
@keyframes slider-fade-in{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
.slide-fade-enter-active,
.fade-leave-active{
    -webkit-transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:opacity linear .2s, -webkit-transform linear .2s;
    transition:transform linear .2s, opacity linear .2s;
    transition:transform linear .2s, opacity linear .2s, -webkit-transform linear .2s;
}
.slide-fade-enter{
    opacity:0;
    -webkit-transform:translateX(20%);
            transform:translateX(20%);
}
.slide-fade-leave-active{
    opacity:0;
    -webkit-transform:translateX(-20%);
            transform:translateX(-20%);
}
.toggle-slide-enter-active,
.toggle-slide-leave-active{
    -webkit-transition:opacity .5s cubic-bezier(.23, 1, .23, 1), -webkit-transform .3s cubic-bezier(.23, 1, .23, 1);
    transition:opacity .5s cubic-bezier(.23, 1, .23, 1), -webkit-transform .3s cubic-bezier(.23, 1, .23, 1);
    transition:transform .3s cubic-bezier(.23, 1, .23, 1), opacity .5s cubic-bezier(.23, 1, .23, 1);
    transition:transform .3s cubic-bezier(.23, 1, .23, 1), opacity .5s cubic-bezier(.23, 1, .23, 1), -webkit-transform .3s cubic-bezier(.23, 1, .23, 1);
    -webkit-transform-origin:center top;
            transform-origin:center top;
}
.toggle-slide-enter,
.toggle-slide-leave-active{
    -webkit-transform:translateZ(0) scaleY(0);
            transform:translateZ(0) scaleY(0);
    opacity:0;
}
.toggle-slide2-enter-active,
.toggle-slide2-leave-active{
    -webkit-transition:opacity .5s cubic-bezier(.23, 1, .23, 1), -webkit-transform .3s cubic-bezier(.23, 1, .23, 1);
    transition:opacity .5s cubic-bezier(.23, 1, .23, 1), -webkit-transform .3s cubic-bezier(.23, 1, .23, 1);
    transition:transform .3s cubic-bezier(.23, 1, .23, 1), opacity .5s cubic-bezier(.23, 1, .23, 1);
    transition:transform .3s cubic-bezier(.23, 1, .23, 1), opacity .5s cubic-bezier(.23, 1, .23, 1), -webkit-transform .3s cubic-bezier(.23, 1, .23, 1);
    -webkit-transform-origin:center bottom;
            transform-origin:center bottom;
}
.toggle-slide2-enter,
.toggle-slide2-leave-active{
    -webkit-transform:translateZ(0) scaleY(0);
            transform:translateZ(0) scaleY(0);
    opacity:0;
}
.fade-enter-active,
.fade-appear{
    -webkit-animation-duration:.3s;
            animation-duration:.3s;
    -webkit-animation-fill-mode:both;
            animation-fill-mode:both;
    -webkit-animation-play-state:paused;
            animation-play-state:paused;
}
.fade-leave-active{
    -webkit-animation-duration:.3s;
            animation-duration:.3s;
    -webkit-animation-fill-mode:both;
            animation-fill-mode:both;
    -webkit-animation-play-state:paused;
            animation-play-state:paused;
}
.fade-enter-active,
.fade-appear{
    -webkit-animation-name:fadeIn;
            animation-name:fadeIn;
    -webkit-animation-play-state:running;
            animation-play-state:running;
}
.fade-leave-active{
    -webkit-animation-name:fadeOut;
            animation-name:fadeOut;
    -webkit-animation-play-state:running;
            animation-play-state:running;
}
.fade-enter-active,
.fade-appear{
    opacity:0;
    -webkit-animation-timing-function:linear;
            animation-timing-function:linear;
}
.fade-leave-active{
    -webkit-animation-timing-function:linear;
            animation-timing-function:linear;
}
@-webkit-keyframes fadeIn{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
@keyframes fadeIn{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
@-webkit-keyframes fadeOut{
    0%{
        opacity:1;
    }
    100%{
        opacity:0;
    }
}
@keyframes fadeOut{
    0%{
        opacity:1;
    }
    100%{
        opacity:0;
    }
}
.ease-enter-active,
.ease-appear{
    -webkit-animation-duration:.3s;
            animation-duration:.3s;
    -webkit-animation-fill-mode:both;
            animation-fill-mode:both;
    -webkit-animation-play-state:paused;
            animation-play-state:paused;
}
.ease-leave-active{
    -webkit-animation-duration:.3s;
            animation-duration:.3s;
    -webkit-animation-fill-mode:both;
            animation-fill-mode:both;
    -webkit-animation-play-state:paused;
            animation-play-state:paused;
}
.ease-enter-active,
.ease-appear{
    -webkit-animation-name:easeIn;
            animation-name:easeIn;
    -webkit-animation-play-state:running;
            animation-play-state:running;
}
.ease-leave-active{
    -webkit-animation-name:easeOut;
            animation-name:easeOut;
    -webkit-animation-play-state:running;
            animation-play-state:running;
}
.ease-enter-active,
.ease-appear{
    opacity:0;
    -webkit-animation-timing-function:linear;
            animation-timing-function:linear;
    -webkit-animation-duration:.2s;
            animation-duration:.2s;
}
.ease-leave-active{
    -webkit-animation-timing-function:linear;
            animation-timing-function:linear;
    -webkit-animation-duration:.2s;
            animation-duration:.2s;
}
@-webkit-keyframes easeIn{
    0%{
        opacity:0;
        -webkit-transform:scale(0.9);
                transform:scale(0.9);
    }
    100%{
        opacity:1;
        -webkit-transform:scale(1);
                transform:scale(1);
    }
}
@keyframes easeIn{
    0%{
        opacity:0;
        -webkit-transform:scale(0.9);
                transform:scale(0.9);
    }
    100%{
        opacity:1;
        -webkit-transform:scale(1);
                transform:scale(1);
    }
}
@-webkit-keyframes easeOut{
    0%{
        opacity:1;
        -webkit-transform:scale(1);
                transform:scale(1);
    }
    100%{
        opacity:0;
        -webkit-transform:scale(0.9);
                transform:scale(0.9);
    }
}
@keyframes easeOut{
    0%{
        opacity:1;
        -webkit-transform:scale(1);
                transform:scale(1);
    }
    100%{
        opacity:0;
        -webkit-transform:scale(0.9);
                transform:scale(0.9);
    }
}
.transition-drop-enter-active,
.transition-drop-appear{
    -webkit-animation-duration:.3s;
            animation-duration:.3s;
    -webkit-animation-fill-mode:both;
            animation-fill-mode:both;
    -webkit-animation-play-state:paused;
            animation-play-state:paused;
}
.transition-drop-leave-active{
    -webkit-animation-duration:.3s;
            animation-duration:.3s;
    -webkit-animation-fill-mode:both;
            animation-fill-mode:both;
    -webkit-animation-play-state:paused;
            animation-play-state:paused;
}
.transition-drop-enter-active,
.transition-drop-appear{
    -webkit-animation-name:transitionDropIn;
            animation-name:transitionDropIn;
    -webkit-animation-play-state:running;
            animation-play-state:running;
}
.transition-drop-leave-active{
    -webkit-animation-name:transitionDropOut;
            animation-name:transitionDropOut;
    -webkit-animation-play-state:running;
            animation-play-state:running;
}
.transition-drop-enter-active,
.transition-drop-appear{
    opacity:0;
    -webkit-animation-timing-function:ease-in-out;
            animation-timing-function:ease-in-out;
}
.transition-drop-leave-active{
    -webkit-animation-timing-function:ease-in-out;
            animation-timing-function:ease-in-out;
}
@-webkit-keyframes transitionDropIn{
    0%{
        opacity:0;
        -webkit-transform:scaleY(0.8);
                transform:scaleY(0.8);
    }
    100%{
        opacity:1;
        -webkit-transform:scaleY(1);
                transform:scaleY(1);
    }
}
@keyframes transitionDropIn{
    0%{
        opacity:0;
        -webkit-transform:scaleY(0.8);
                transform:scaleY(0.8);
    }
    100%{
        opacity:1;
        -webkit-transform:scaleY(1);
                transform:scaleY(1);
    }
}
@-webkit-keyframes transitionDropOut{
    0%{
        opacity:1;
        -webkit-transform:scaleY(1);
                transform:scaleY(1);
    }
    100%{
        opacity:0;
        -webkit-transform:scaleY(0.8);
                transform:scaleY(0.8);
    }
}
@keyframes transitionDropOut{
    0%{
        opacity:1;
        -webkit-transform:scaleY(1);
                transform:scaleY(1);
    }
    100%{
        opacity:0;
        -webkit-transform:scaleY(0.8);
                transform:scaleY(0.8);
    }
}
.bk-alert{
  position:relative;
  font-size:12px;
  color:#63656e;
  border:1px solid;
  border-radius:2px;
  word-wrap:break-word;
}
.bk-alert .icon-info{
    margin-right:8px;
    font-size:16px;
  }
.bk-alert .icon-close{
    font-size:17px;
  }
.bk-alert-wraper{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  padding:8px 10px;
}
.bk-alert-success{
  border-color:#94f5a4;
  background-color:#f2fff4;
}
.bk-alert-success .icon-info{
    color:#2dcb56;
  }
.bk-alert-info{
  border-color:#c5daff;
  background-color:#f0f8ff;
}
.bk-alert-info .icon-info{
    color:#3a84ff;
  }
.bk-alert-warning{
  border-color:#ffdfac;
  background-color:#fff4e2;
}
.bk-alert-warning .icon-info{
    color:#ff9c01;
  }
.bk-alert-error{
  border-color:#ffd2d2;
  background-color:#ffeded;
}
.bk-alert-error .icon-info{
    color:#ea3636;
  }
.bk-alert-content{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-flex:1;
      -ms-flex:1;
          flex:1;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
  overflow:hidden;
}
.bk-alert-title{
  line-height:16px;
}
.bk-alert-close{
  padding:8px 12px 0 6px;
  margin-top:-8px;
  margin-right:-10px;
  font-size:12px;
  cursor:pointer;
  white-space:nowrap;
}
.bk-alert-leave-leave{
  opacity:1;
}
.bk-alert-leave-leave-active{
  overflow:hidden;
  -webkit-transition:opacity .15s, height .2s;
  transition:opacity .15s, height .2s;
}
.bk-alert-leave-leave-to{
  opacity:0;
}
.bk-badge-wrapper{
    position:relative;
    display:inline-block;
}
.bk-badge-wrapper .bk-badge{
        position:relative;
        display:inline-block;
        min-width:18px;
        height:18px;
        line-height:16px;
        padding:0 2px;
        border:1px solid #c3cdd7;
        border-radius:18px;
        background-color:#fff;
        font-size:12px;
        text-align:center;
    }
.bk-badge-wrapper .bk-badge .bk-icon{
            position:absolute;
            left:50%;
            top:50%;
            margin-top:0;
            -webkit-transform:translate(-50%, -50%);
                    transform:translate(-50%, -50%);
            display:block;
            line-height:18px;
        }
.bk-badge-wrapper .bk-badge.pinned{
            position:absolute
        }
.bk-badge-wrapper .bk-badge.pinned.top-right{
                top:0;
                right:0;
                -webkit-transform:translate(50%, -50%) scale(1, 1);
                        transform:translate(50%, -50%) scale(1, 1)
            }
.bk-badge-wrapper .bk-badge.pinned.top-right.fade-center-enter,
                .bk-badge-wrapper .bk-badge.pinned.top-right.fade-center-leave-active{
                    opacity:0;
                    -webkit-transform:translate(50%, -50%) scale(0, 0);
                            transform:translate(50%, -50%) scale(0, 0);
                }
.bk-badge-wrapper .bk-badge.pinned.right{
                top:50%;
                right:0%;
                -webkit-transform:translate(100%, -50%) scale(1, 1);
                        transform:translate(100%, -50%) scale(1, 1)
            }
.bk-badge-wrapper .bk-badge.pinned.right.fade-center-enter,
                .bk-badge-wrapper .bk-badge.pinned.right.fade-center-leave-active{
                    opacity:0;
                    -webkit-transform:translate(50%, -50%) scale(0, 0);
                            transform:translate(50%, -50%) scale(0, 0);
                }
.bk-badge-wrapper .bk-badge.pinned.bottom-right{
                bottom:0;
                right:0;
                -webkit-transform:translate(50%, 50%) scale(1, 1);
                        transform:translate(50%, 50%) scale(1, 1)
            }
.bk-badge-wrapper .bk-badge.pinned.bottom-right.fade-center-enter,
                .bk-badge-wrapper .bk-badge.pinned.bottom-right.fade-center-leave-active{
                    opacity:0;
                    -webkit-transform:translate(50%, 50%) scale(0, 0);
                            transform:translate(50%, 50%) scale(0, 0);
                }
.bk-badge-wrapper .bk-badge.pinned.top-left{
                top:0;
                left:0;
                -webkit-transform:translate(-50%, -50%) scale(1, 1);
                        transform:translate(-50%, -50%) scale(1, 1)
            }
.bk-badge-wrapper .bk-badge.pinned.top-left.fade-center-enter,
                .bk-badge-wrapper .bk-badge.pinned.top-left.fade-center-leave-active{
                    opacity:0;
                    -webkit-transform:translate(-50%, -50%) scale(0, 0);
                            transform:translate(-50%, -50%) scale(0, 0);
                }
.bk-badge-wrapper .bk-badge.pinned.bottom-left{
                bottom:0;
                left:0;
                -webkit-transform:translate(-50%, 50%) scale(1, 1);
                        transform:translate(-50%, 50%) scale(1, 1)
            }
.bk-badge-wrapper .bk-badge.pinned.bottom-left.fade-center-enter,
                .bk-badge-wrapper .bk-badge.pinned.bottom-left.fade-center-leave-active{
                    opacity:0;
                    -webkit-transform:translate(-50%, 50%) scale(0, 0);
                            transform:translate(-50%, 50%) scale(0, 0);
                }
.bk-badge-wrapper .bk-badge.dot{
            width:8px;
            height:8px;
            min-width:8px;
        }
.bk-badge-wrapper .bk-badge.bk-danger{
            background-color:#ff5656;
            border:2px solid #fff;
            color:#fff
        }
.bk-badge-wrapper .bk-badge.bk-danger.is-icon{
                background-color:#fff;
                border-color:#fff;
                color:#ff5656;
            }
.bk-badge-wrapper .bk-badge.bk-warning{
            background-color:#ffb848;
            border:2px solid #fff;
            color:#fff
        }
.bk-badge-wrapper .bk-badge.bk-warning.is-icon{
                background-color:#fff;
                border-color:#fff;
                color:#ffb848;
            }
.bk-badge-wrapper .bk-badge.bk-success{
            background-color:#2dcb56;
            border:2px solid #fff;
            color:#fff
        }
.bk-badge-wrapper .bk-badge.bk-success.is-icon{
                background-color:#fff;
                border-color:#fff;
                color:#2dcb56;
            }
.bk-badge-wrapper .bk-badge.bk-primary{
            background-color:#3c96ff;
            border:2px solid #fff;
            color:#fff
        }
.bk-badge-wrapper .bk-badge.bk-primary.is-icon{
                background-color:#fff;
                border-color:#fff;
                color:#3c96ff;
            }
.bk-badge-wrapper .bk-badge.bk-info{
            background-color:#88c3ff;
            border:2px solid #fff;
            color:#fff
        }
.bk-badge-wrapper .bk-badge.bk-info.is-icon{
                background-color:#fff;
                border-color:#fff;
                color:#88c3ff;
            }
.bk-button{
    height:32px;
    line-height:30px;
    display:inline-block;
    outline:none;
    cursor:pointer;
    white-space:nowrap;
    -webkit-appearance:none;
    padding:0 15px;
    text-align:center;
    vertical-align:middle;
    font-size:14px;
    background-color:#fff;
    border:1px solid #c4c6cc;
    border-radius:2px;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    color:#63656e;
    text-decoration:none;
    -webkit-transition:background-color ease 0.3s;
    transition:background-color ease 0.3s;
    min-width:64px;
    position:relative;
}
.bk-button .bk-loading-wrapper{
        opacity:0;
    }
.bk-button .bk-button-loading{
        display:inline-block;
        vertical-align:top;
        font-size:0;
        position:absolute;
        left:50%;
        -webkit-transform:translateX(-50%);
                transform:translateX(-50%);
    }
.bk-button .bk-button-loading div{
            width:6px;
            height:6px;
            border-radius:100%;
            display:inline-block;
            vertical-align:middle;
            background-color:#fff;
            -webkit-animation:button-loading 1s infinite ease-in-out both;
                    animation:button-loading 1s infinite ease-in-out both
        }
.bk-button .bk-button-loading div + [class^="bounce"]{
                margin-left:4px;
            }
.bk-button .bk-button-loading .bounce1{
            -webkit-animation-delay:-0.72s;
                    animation-delay:-0.72s;
        }
.bk-button .bk-button-loading .bounce2{
            -webkit-animation-delay:-0.48s;
                    animation-delay:-0.48s;
        }
.bk-button .bk-button-loading .bounce3{
            -webkit-animation-delay:-0.24s;
                    animation-delay:-0.24s;
        }
.bk-button .bk-button-loading .bounce4{
            -webkit-animation-delay:0s;
                    animation-delay:0s;
        }
.bk-button .bk-button-icon-loading{
        position:relative;
        top:2px;
    }
.bk-button .bk-button-icon-loading .loading{
            width:14px;
            height:14px;
            border:2px solid;
            border-right-color:transparent;
            border-radius:50%;
            -webkit-animation:button-icon-loading 1s linear infinite;
                    animation:button-icon-loading 1s linear infinite;
            margin:-7px auto 0;
            display:inline-block;
        }
.bk-button .bk-icon{
        line-height:16px;
        min-width:14px;
        display:inline-block;
        position:relative;
        top:1px;
        font-size:22px;
    }
.bk-button.no-slot{
        padding:0 10px;
        height:32px;
        min-width:32px;
    }
.bk-button.no-slot .left-icon{
            margin-right:0;
        }
.bk-button.no-slot .right-icon{
            margin-left:0;
        }
.bk-button.bk-default:hover,
        .bk-button.bk-default.hover{
            border-color:#979ba5;
            color:#63656e;
        }
.bk-button.bk-default:active,
        .bk-button.bk-default.active{
            border-color:#3a84ff;
            color:#3a84ff;
        }
.bk-button.bk-default.is-disabled,
        .bk-button.bk-default[disabled]{
            background-color:#fff;
            border-color:#dcdee5;
            color:#c4c6cc;
            cursor:not-allowed;
        }
.bk-button.bk-default.is-loading{
            cursor:default
        }
.bk-button.bk-default.is-loading:hover,
            .bk-button.bk-default.is-loading.hover{
                background-color:#fff;
                border-color:#c4c6cc;
                opacity:1;
            }
.bk-button.bk-default.is-loading:active,
            .bk-button.bk-default.is-loading.active{
                background-color:#fff;
                border-color:#c4c6cc;
            }
.bk-button.bk-default .bk-button-loading div{
                background-color:#63656e;
            }
.bk-button.bk-primary{
        background:#3a84ff;
        border-color:#3a84ff;
        color:#fff;
    }
.bk-button.bk-primary:hover,
    .bk-button.bk-primary.hover{
        background-color:#699df4;
        border-color:#699df4;
        opacity:1;
    }
.bk-button.bk-primary:active,
    .bk-button.bk-primary.active{
        background-color:#2761dd;
        border-color:#2761dd;
    }
.bk-button.bk-primary.is-disabled,
    .bk-button.bk-primary[disabled]{
        background-color:#dcdee5;
        border-color:#dcdee5;
        color:#fff;
        cursor:not-allowed;
    }
.bk-button.bk-primary.is-loading{
        cursor:default
    }
.bk-button.bk-primary.is-loading:hover,
        .bk-button.bk-primary.is-loading.hover{
            background-color:#3a84ff;
            border-color:#3a84ff;
            opacity:1;
        }
.bk-button.bk-primary.is-loading:active,
        .bk-button.bk-primary.is-loading.active{
            background-color:#3a84ff;
            border-color:#3a84ff;
        }
.bk-button.bk-primary.is-outline{
        color:#3a84ff;
        border-color:#3a84ff;
        background-color:#fff
    }
.bk-button.bk-primary.is-outline:hover,
        .bk-button.bk-primary.is-outline.hover{
            background-color:#3a84ff;
            border-color:#3a84ff;
            color:#fff;
        }
.bk-button.bk-primary.is-outline.active,
        .bk-button.bk-primary.is-outline:active{
            background-color:#2761dd;
            border-color:#2761dd;
            color:#fff;
        }
.bk-button.bk-primary{
    }
.bk-button.bk-success{
        background:#2dcb56;
        border-color:#2dcb56;
        color:#fff;
    }
.bk-button.bk-success:hover,
    .bk-button.bk-success.hover{
        background-color:#45e35f;
        border-color:#45e35f;
        opacity:1;
    }
.bk-button.bk-success:active,
    .bk-button.bk-success.active{
        background-color:#1ab943;
        border-color:#1ab943;
    }
.bk-button.bk-success.is-disabled,
    .bk-button.bk-success[disabled]{
        background-color:#dcdee5;
        border-color:#dcdee5;
        color:#fff;
        cursor:not-allowed;
    }
.bk-button.bk-success.is-loading{
        cursor:default
    }
.bk-button.bk-success.is-loading:hover,
        .bk-button.bk-success.is-loading.hover{
            background-color:#2dcb56;
            border-color:#2dcb56;
            opacity:1;
        }
.bk-button.bk-success.is-loading:active,
        .bk-button.bk-success.is-loading.active{
            background-color:#2dcb56;
            border-color:#2dcb56;
        }
.bk-button.bk-success.is-outline{
        color:#2dcb56;
        border-color:#2dcb56;
        background-color:#fff
    }
.bk-button.bk-success.is-outline:hover,
        .bk-button.bk-success.is-outline.hover{
            background-color:#2dcb56;
            border-color:#2dcb56;
            color:#fff;
        }
.bk-button.bk-success.is-outline.active,
        .bk-button.bk-success.is-outline:active{
            background-color:#1ab943;
            border-color:#1ab943;
            color:#fff;
        }
.bk-button.bk-success{
    }
.bk-button.bk-warning{
        background:#ff9c01;
        border-color:#ff9c01;
        color:#fff;
    }
.bk-button.bk-warning:hover,
    .bk-button.bk-warning.hover{
        background-color:#ffb848;
        border-color:#ffb848;
        opacity:1;
    }
.bk-button.bk-warning:active,
    .bk-button.bk-warning.active{
        background-color:#eb9000;
        border-color:#eb9000;
    }
.bk-button.bk-warning.is-disabled,
    .bk-button.bk-warning[disabled]{
        background-color:#dcdee5;
        border-color:#dcdee5;
        color:#fff;
        cursor:not-allowed;
    }
.bk-button.bk-warning.is-loading{
        cursor:default
    }
.bk-button.bk-warning.is-loading:hover,
        .bk-button.bk-warning.is-loading.hover{
            background-color:#ff9c01;
            border-color:#ff9c01;
            opacity:1;
        }
.bk-button.bk-warning.is-loading:active,
        .bk-button.bk-warning.is-loading.active{
            background-color:#ff9c01;
            border-color:#ff9c01;
        }
.bk-button.bk-warning.is-outline{
        color:#ff9c01;
        border-color:#ff9c01;
        background-color:#fff
    }
.bk-button.bk-warning.is-outline:hover,
        .bk-button.bk-warning.is-outline.hover{
            background-color:#ff9c01;
            border-color:#ff9c01;
            color:#fff;
        }
.bk-button.bk-warning.is-outline.active,
        .bk-button.bk-warning.is-outline:active{
            background-color:#eb9000;
            border-color:#eb9000;
            color:#fff;
        }
.bk-button.bk-warning{
    }
.bk-button.bk-danger{
        background:#ea3636;
        border-color:#ea3636;
        color:#fff;
    }
.bk-button.bk-danger:hover,
    .bk-button.bk-danger.hover{
        background-color:#ff5656;
        border-color:#ff5656;
        opacity:1;
    }
.bk-button.bk-danger:active,
    .bk-button.bk-danger.active{
        background-color:#db2626;
        border-color:#db2626;
    }
.bk-button.bk-danger.is-disabled,
    .bk-button.bk-danger[disabled]{
        background-color:#dcdee5;
        border-color:#dcdee5;
        color:#fff;
        cursor:not-allowed;
    }
.bk-button.bk-danger.is-loading{
        cursor:default
    }
.bk-button.bk-danger.is-loading:hover,
        .bk-button.bk-danger.is-loading.hover{
            background-color:#ea3636;
            border-color:#ea3636;
            opacity:1;
        }
.bk-button.bk-danger.is-loading:active,
        .bk-button.bk-danger.is-loading.active{
            background-color:#ea3636;
            border-color:#ea3636;
        }
.bk-button.bk-danger.is-outline{
        color:#ea3636;
        border-color:#ea3636;
        background-color:#fff
    }
.bk-button.bk-danger.is-outline:hover,
        .bk-button.bk-danger.is-outline.hover{
            background-color:#ea3636;
            border-color:#ea3636;
            color:#fff;
        }
.bk-button.bk-danger.is-outline.active,
        .bk-button.bk-danger.is-outline:active{
            background-color:#db2626;
            border-color:#db2626;
            color:#fff;
        }
.bk-button.bk-danger{
    }
.bk-button.bk-button-small{
        height:26px;
        line-height:24px;
        padding:0 12px;
        font-size:12px;
    }
.bk-button.bk-button-small .bk-icon{
            font-size:20px;
        }
.bk-button.bk-button-large{
        height:38px;
        line-height:36px;
        padding:0 20px;
        font-size:16px;
    }
.bk-button.bk-button-large .bk-icon{
            font-size:24px;
        }
.bk-button.is-outline.is-disabled,
        .bk-button.is-outline[disabled]{
            background-color:#fff;
            border-color:#dcdee5;
            color:#c4c6cc;
            cursor:not-allowed
        }
.bk-button.is-outline.is-disabled:hover,
            .bk-button.is-outline.is-disabled.hover,
            .bk-button.is-outline[disabled]:hover,
            .bk-button.is-outline[disabled].hover{
                background-color:#fff;
                border-color:#dcdee5;
                color:#c4c6cc;
            }
.bk-button.is-outline.is-disabled.active,
            .bk-button.is-outline.is-disabled:active,
            .bk-button.is-outline[disabled].active,
            .bk-button.is-outline[disabled]:active{
                background-color:#fff;
                border-color:#dcdee5;
                color:#c4c6cc;
            }
.bk-button-text{
    border:none;
    background:none;
    cursor:pointer;
    font-size:14px;
    color:#63656e;
    text-decoration:none;
    outline:none;
    height:22px;
    padding:0;
}
.bk-button-text .bk-button-loading{
        width:58px;
        display:inline-block;
    }
.bk-button-text .bk-button-loading div{
            width:7px;
            height:7px;
            border-radius:100%;
            display:inline-block;
            background-color:#fff;
            -webkit-animation:button-loading 1.2s infinite ease-in-out both;
                    animation:button-loading 1.2s infinite ease-in-out both;
        }
.bk-button-text .bk-button-loading .bounce1{
            -webkit-animation-delay:-0.72s;
                    animation-delay:-0.72s;
        }
.bk-button-text .bk-button-loading .bounce2{
            -webkit-animation-delay:-0.48s;
                    animation-delay:-0.48s;
        }
.bk-button-text .bk-button-loading .bounce3{
            -webkit-animation-delay:-0.24s;
                    animation-delay:-0.24s;
        }
.bk-button-text .bk-button-loading .bounce4{
            -webkit-animation-delay:0s;
                    animation-delay:0s;
        }
.bk-button-text .bk-button-icon-loading{
        position:relative;
        top:2px;
    }
.bk-button-text .bk-button-icon-loading .loading{
            width:14px;
            height:14px;
            border:2px solid;
            border-right-color:transparent;
            border-radius:50%;
            -webkit-animation:button-icon-loading 1s linear infinite;
                    animation:button-icon-loading 1s linear infinite;
            margin:-7px auto 0;
            display:inline-block;
        }
.bk-button-text .bk-icon{
        width:14px;
        height:16px;
        line-height:16px;
        min-width:14px;
        display:inline-block;
        position:relative;
        top:1px
    }
.bk-button-text .bk-icon.left-icon{
            margin-right:2px;
        }
.bk-button-text .bk-icon.right-icon{
            margin-left:2px;
        }
.bk-button-text.no-slot{
        padding:0 10px;
        height:22px;
    }
.bk-button-text.no-slot .left-icon{
            margin-right:0;
        }
.bk-button-text.no-slot .right-icon{
            margin-left:0;
        }
.bk-button-text.bk-default:hover,
        .bk-button-text.bk-default.hover{
            border-color:#979ba5;
            color:#63656e;
        }
.bk-button-text.bk-default:active,
        .bk-button-text.bk-default.active{
            border-color:#3a84ff;
            color:#3a84ff;
        }
.bk-button-text.bk-default.is-disabled,
        .bk-button-text.bk-default[disabled]{
            background-color:#fff;
            border-color:#dcdee5;
            color:#c4c6cc;
            cursor:not-allowed;
        }
.bk-button-text.bk-default.is-loading{
            cursor:default
        }
.bk-button-text.bk-default.is-loading:hover,
            .bk-button-text.bk-default.is-loading.hover{
                background-color:#fff;
                border-color:#c4c6cc;
                opacity:1;
            }
.bk-button-text.bk-default.is-loading:active,
            .bk-button-text.bk-default.is-loading.active{
                background-color:#fff;
                border-color:#c4c6cc;
            }
.bk-button-text.bk-default .bk-button-loading div{
                background-color:#63656e;
            }
.bk-button-text.bk-primary{
        color:#3a84ff
    }
.bk-button-text.bk-primary:hover,
        .bk-button-text.bk-primary.hover{
            color:#699df4;
        }
.bk-button-text.bk-primary:active,
        .bk-button-text.bk-primary.active{
            color:#2761dd;
        }
.bk-button-text.bk-success{
        color:#2dcb56
    }
.bk-button-text.bk-success:hover,
        .bk-button-text.bk-success.hover{
            color:#45e35f;
        }
.bk-button-text.bk-success:active,
        .bk-button-text.bk-success.active{
            color:#1ab943;
        }
.bk-button-text.bk-warning{
        color:#ff9c01
    }
.bk-button-text.bk-warning:hover,
        .bk-button-text.bk-warning.hover{
            color:#ffb848;
        }
.bk-button-text.bk-warning:active,
        .bk-button-text.bk-warning.active{
            color:#eb9000;
        }
.bk-button-text.bk-danger{
        color:#ea3636
    }
.bk-button-text.bk-danger:hover,
        .bk-button-text.bk-danger.hover{
            color:#ff5656;
        }
.bk-button-text.bk-danger:active,
        .bk-button-text.bk-danger.active{
            color:#db2626;
        }
.bk-button-text{
}
.bk-button-text.is-disabled,
    .bk-button-text[disabled]{
        color:#dcdee5;
        cursor:not-allowed
    }
.bk-button-text.is-disabled:hover,
        .bk-button-text.is-disabled.hover,
        .bk-button-text[disabled]:hover,
        .bk-button-text[disabled].hover{
            color:#dcdee5;
        }
.bk-button-text.is-disabled:active,
        .bk-button-text.is-disabled.active,
        .bk-button-text[disabled]:active,
        .bk-button-text[disabled].active{
            color:#dcdee5;
        }
.bk-button-text.bk-button-small{
        height:26px;
        line-height:24px;
        padding:0 12px;
        font-size:12px;
    }
.bk-button-text.bk-button-large{
        height:42px;
        line-height:40px;
        padding:0 20px;
        font-size:16px;
    }
.bk-button-text.is-outline.is-disabled,
        .bk-button-text.is-outline[disabled]{
            background-color:#fff;
            border-color:#dcdee5;
            color:#c4c6cc;
            cursor:not-allowed
        }
.bk-button-text.is-outline.is-disabled:hover,
            .bk-button-text.is-outline.is-disabled.hover,
            .bk-button-text.is-outline[disabled]:hover,
            .bk-button-text.is-outline[disabled].hover{
                background-color:#fff;
                border-color:#dcdee5;
                color:#c4c6cc;
            }
.bk-button-text.is-outline.is-disabled.active,
            .bk-button-text.is-outline.is-disabled:active,
            .bk-button-text.is-outline[disabled].active,
            .bk-button-text.is-outline[disabled]:active{
                background-color:#fff;
                border-color:#dcdee5;
                color:#c4c6cc;
            }
.bk-button-hover{
    height:32px;
    line-height:30px;
    display:inline-block;
    outline:none;
    cursor:pointer;
    white-space:nowrap;
    -webkit-appearance:none;
    padding:0 15px;
    text-align:center;
    vertical-align:middle;
    font-size:14px;
    background-color:#fff;
    border:1px solid #c4c6cc;
    border-radius:2px;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    color:#63656e;
    text-decoration:none;
    -webkit-transition:background-color ease 0.3s;
    transition:background-color ease 0.3s;
    min-width:68px;
}
.bk-button-hover .bk-button-loading{
        width:58px;
        display:inline-block;
    }
.bk-button-hover .bk-button-loading div{
            width:6px;
            height:6px;
            border-radius:100%;
            display:inline-block;
            background-color:#63656e;
            -webkit-animation:button-loading 1s infinite ease-in-out both;
                    animation:button-loading 1s infinite ease-in-out both;
        }
.bk-button-hover .bk-button-loading .bounce1{
            -webkit-animation-delay:-0.72s;
                    animation-delay:-0.72s;
        }
.bk-button-hover .bk-button-loading .bounce2{
            -webkit-animation-delay:-0.48s;
                    animation-delay:-0.48s;
        }
.bk-button-hover .bk-button-loading .bounce3{
            -webkit-animation-delay:-0.24s;
                    animation-delay:-0.24s;
        }
.bk-button-hover .bk-button-loading .bounce4{
            -webkit-animation-delay:0s;
                    animation-delay:0s;
        }
.bk-button-hover .bk-button-icon-loading{
        position:relative;
        top:2px;
    }
.bk-button-hover .bk-button-icon-loading .loading{
            width:14px;
            height:14px;
            border:2px solid;
            border-right-color:transparent;
            border-radius:50%;
            -webkit-animation:button-icon-loading 1s linear infinite;
                    animation:button-icon-loading 1s linear infinite;
            margin:-7px auto 0;
            display:inline-block;
        }
.bk-button-hover .bk-icon{
        width:14px;
        height:16px;
        line-height:16px;
        min-width:14px;
        display:inline-block;
        position:relative;
        top:1px
    }
.bk-button-hover .bk-icon.left-icon{
            margin-right:2px;
        }
.bk-button-hover .bk-icon.right-icon{
            margin-left:2px;
        }
.bk-button-hover.no-slot{
        padding:0 10px;
        height:36px;
        min-width:36px;
    }
.bk-button-hover.no-slot .left-icon{
            margin-right:0;
        }
.bk-button-hover.no-slot .right-icon{
            margin-left:0;
        }
.bk-button-hover.bk-primary{
        background-color:#fff;
        border-color:#c4c6cc;
        color:#63656e;
    }
.bk-button-hover.bk-primary:hover,
    .bk-button-hover.bk-primary.hover{
        background-color:#3a84ff;
        border-color:#3a84ff;
        color:#fff;
        opacity:1;
    }
.bk-button-hover.bk-primary:active,
    .bk-button-hover.bk-primary.active{
        background-color:#2761dd;
        border-color:#2761dd;
        color:#fff;
    }
.bk-button-hover.bk-primary.is-disabled,
    .bk-button-hover.bk-primary[disabled]{
        background-color:#fff;
        border-color:#dcdee5;
        color:#c4c6cc;
        cursor:not-allowed;
    }
.bk-button-hover.bk-primary.is-loading{
        cursor:default
    }
.bk-button-hover.bk-primary.is-loading:hover,
        .bk-button-hover.bk-primary.is-loading.hover{
            background-color:#fff;
            border-color:#c4c6cc;
            opacity:1;
        }
.bk-button-hover.bk-primary.is-loading:active,
        .bk-button-hover.bk-primary.is-loading.active{
            background-color:#fff;
            border-color:#c4c6cc;
        }
.bk-button-hover.bk-primary.is-outline{
        color:#3a84ff;
        border-color:#3a84ff;
        background-color:#fff
    }
.bk-button-hover.bk-primary.is-outline:hover,
        .bk-button-hover.bk-primary.is-outline.hover{
            background-color:#3a84ff;
            border-color:#3a84ff;
            color:#fff;
        }
.bk-button-hover.bk-primary.is-outline.active,
        .bk-button-hover.bk-primary.is-outline:active{
            background-color:#2761dd;
            border-color:#2761dd;
            color:#fff;
        }
.bk-button-hover.bk-success{
        background-color:#fff;
        border-color:#c4c6cc;
        color:#63656e;
    }
.bk-button-hover.bk-success:hover,
    .bk-button-hover.bk-success.hover{
        background-color:#2dcb56;
        border-color:#2dcb56;
        color:#fff;
        opacity:1;
    }
.bk-button-hover.bk-success:active,
    .bk-button-hover.bk-success.active{
        background-color:#1ab943;
        border-color:#1ab943;
        color:#fff;
    }
.bk-button-hover.bk-success.is-disabled,
    .bk-button-hover.bk-success[disabled]{
        background-color:#fff;
        border-color:#dcdee5;
        color:#c4c6cc;
        cursor:not-allowed;
    }
.bk-button-hover.bk-success.is-loading{
        cursor:default
    }
.bk-button-hover.bk-success.is-loading:hover,
        .bk-button-hover.bk-success.is-loading.hover{
            background-color:#fff;
            border-color:#c4c6cc;
            opacity:1;
        }
.bk-button-hover.bk-success.is-loading:active,
        .bk-button-hover.bk-success.is-loading.active{
            background-color:#fff;
            border-color:#c4c6cc;
        }
.bk-button-hover.bk-success.is-outline{
        color:#2dcb56;
        border-color:#2dcb56;
        background-color:#fff
    }
.bk-button-hover.bk-success.is-outline:hover,
        .bk-button-hover.bk-success.is-outline.hover{
            background-color:#2dcb56;
            border-color:#2dcb56;
            color:#fff;
        }
.bk-button-hover.bk-success.is-outline.active,
        .bk-button-hover.bk-success.is-outline:active{
            background-color:#1ab943;
            border-color:#1ab943;
            color:#fff;
        }
.bk-button-hover.bk-warning{
        background-color:#fff;
        border-color:#c4c6cc;
        color:#63656e;
    }
.bk-button-hover.bk-warning:hover,
    .bk-button-hover.bk-warning.hover{
        background-color:#ff9c01;
        border-color:#ff9c01;
        color:#fff;
        opacity:1;
    }
.bk-button-hover.bk-warning:active,
    .bk-button-hover.bk-warning.active{
        background-color:#eb9000;
        border-color:#eb9000;
        color:#fff;
    }
.bk-button-hover.bk-warning.is-disabled,
    .bk-button-hover.bk-warning[disabled]{
        background-color:#fff;
        border-color:#dcdee5;
        color:#c4c6cc;
        cursor:not-allowed;
    }
.bk-button-hover.bk-warning.is-loading{
        cursor:default
    }
.bk-button-hover.bk-warning.is-loading:hover,
        .bk-button-hover.bk-warning.is-loading.hover{
            background-color:#fff;
            border-color:#c4c6cc;
            opacity:1;
        }
.bk-button-hover.bk-warning.is-loading:active,
        .bk-button-hover.bk-warning.is-loading.active{
            background-color:#fff;
            border-color:#c4c6cc;
        }
.bk-button-hover.bk-warning.is-outline{
        color:#ff9c01;
        border-color:#ff9c01;
        background-color:#fff
    }
.bk-button-hover.bk-warning.is-outline:hover,
        .bk-button-hover.bk-warning.is-outline.hover{
            background-color:#ff9c01;
            border-color:#ff9c01;
            color:#fff;
        }
.bk-button-hover.bk-warning.is-outline.active,
        .bk-button-hover.bk-warning.is-outline:active{
            background-color:#eb9000;
            border-color:#eb9000;
            color:#fff;
        }
.bk-button-hover.bk-danger{
        background-color:#fff;
        border-color:#c4c6cc;
        color:#63656e;
    }
.bk-button-hover.bk-danger:hover,
    .bk-button-hover.bk-danger.hover{
        background-color:#ea3636;
        border-color:#ea3636;
        color:#fff;
        opacity:1;
    }
.bk-button-hover.bk-danger:active,
    .bk-button-hover.bk-danger.active{
        background-color:#db2626;
        border-color:#db2626;
        color:#fff;
    }
.bk-button-hover.bk-danger.is-disabled,
    .bk-button-hover.bk-danger[disabled]{
        background-color:#fff;
        border-color:#dcdee5;
        color:#c4c6cc;
        cursor:not-allowed;
    }
.bk-button-hover.bk-danger.is-loading{
        cursor:default
    }
.bk-button-hover.bk-danger.is-loading:hover,
        .bk-button-hover.bk-danger.is-loading.hover{
            background-color:#fff;
            border-color:#c4c6cc;
            opacity:1;
        }
.bk-button-hover.bk-danger.is-loading:active,
        .bk-button-hover.bk-danger.is-loading.active{
            background-color:#fff;
            border-color:#c4c6cc;
        }
.bk-button-hover.bk-danger.is-outline{
        color:#ea3636;
        border-color:#ea3636;
        background-color:#fff
    }
.bk-button-hover.bk-danger.is-outline:hover,
        .bk-button-hover.bk-danger.is-outline.hover{
            background-color:#ea3636;
            border-color:#ea3636;
            color:#fff;
        }
.bk-button-hover.bk-danger.is-outline.active,
        .bk-button-hover.bk-danger.is-outline:active{
            background-color:#db2626;
            border-color:#db2626;
            color:#fff;
        }
.bk-button-hover.bk-button-small{
        height:26px;
        line-height:24px;
        padding:0 12px;
        font-size:12px;
    }
.bk-button-hover.bk-button-large{
        height:42px;
        line-height:40px;
        padding:0 20px;
        font-size:16px;
    }
.bk-button-hover.is-outline.is-disabled,
        .bk-button-hover.is-outline[disabled]{
            background-color:#fff;
            border-color:#dcdee5;
            color:#c4c6cc;
            cursor:not-allowed
        }
.bk-button-hover.is-outline.is-disabled:hover,
            .bk-button-hover.is-outline.is-disabled.hover,
            .bk-button-hover.is-outline[disabled]:hover,
            .bk-button-hover.is-outline[disabled].hover{
                background-color:#fff;
                border-color:#dcdee5;
                color:#c4c6cc;
            }
.bk-button-hover.is-outline.is-disabled.active,
            .bk-button-hover.is-outline.is-disabled:active,
            .bk-button-hover.is-outline[disabled].active,
            .bk-button-hover.is-outline[disabled]:active{
                background-color:#fff;
                border-color:#dcdee5;
                color:#c4c6cc;
            }
@-webkit-keyframes button-icon-loading{
    0%{
        -webkit-transform:rotate(0);
                transform:rotate(0)
    }
    100%{
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg)
    }
}
@keyframes button-icon-loading{
    0%{
        -webkit-transform:rotate(0);
                transform:rotate(0)
    }
    100%{
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg)
    }
}
.bk-button-group{
    font-size:0;
    margin-left:1px;
    display:inline-block;
}
.bk-button-group .bk-button{
        margin:0 0 0 -1px;
        border-radius:0
    }
.bk-button-group .bk-button.hover,
        .bk-button-group .bk-button:hover{
            border-color:#3a84ff;
            color:#3a84ff;
            position:relative;
            z-index:1;
        }
.bk-button-group .bk-button.is-disabled:hover{
            border-color:#dcdee5;
            color:#c4c6cc;
            position:relative;
            z-index:0;
        }
.bk-button-group .bk-button:first-child{
            border-radius:2px 0 0 2px;
        }
.bk-button-group .bk-button:last-child{
            border-radius:0 2px 2px 0;
        }
.bk-button-group .bk-button.is-selected{
            background-color:#e1ecff;
            border-color:#3a84ff;
            color:#3a84ff;
            position:relative;
            z-index:1;
        }
.bk-button-group .bk-button span .bk-icon{
                margin-left:7px;
            }
.bk-text-button{
    border:none;
    background:none;
    color:#3a84ff;
    cursor:pointer;
    text-decoration:none;
}
.bk-text-button .bk-icon{
        width:16px;
        min-width:16px;
        margin-right:5px;
        display:inline-block;
    }
.bk-text-button +.bk-text-button{
        margin-left:15px;
    }
.bk-text-button:hover{
        color:#0082ff;
        text-decoration:none;
    }
.bk-text-button.is-disabled{
        color:#e6e6e6 !important;
        cursor:not-allowed;
    }
.bk-text-button.bk-default{
        color:#63656e
    }
.bk-text-button.bk-default:hover{
            color:darken(#63656e, 10%);
        }
.bk-text-button.bk-info{
        color:#699df4
    }
.bk-text-button.bk-info:hover{
            color:#7ab9fa;
        }
.bk-text-button.bk-primary{
        color:#3a84ff
    }
.bk-text-button.bk-primary:hover{
            color:#0082ff;
        }
.bk-text-button.bk-success{
        color:#2dcb56
    }
.bk-text-button.bk-success:hover{
            color:#00c873;
        }
.bk-text-button.bk-warning{
        color:#ff9c01
    }
.bk-text-button.bk-warning:hover{
            color:#ff9600;
        }
.bk-text-button.bk-danger{
        color:#ea3636
    }
.bk-text-button.bk-danger:hover{
            color:#f72239;
        }
.bk-text-button .bk-icon{
        width:16px;
        min-width:16px;
    }
@-webkit-keyframes button-loading{
    0%{
        opacity:0;
    }
    50%{
        opacity:0.5;
    }
    100%{
        opacity:1.0;
    }
}
@keyframes button-loading{
    0%{
        opacity:0;
    }
    50%{
        opacity:0.5;
    }
    100%{
        opacity:1.0;
    }
}
.bk-form-checkbox{
    position:relative;
    display:inline-block;
    vertical-align:middle;
    font-size:0;
    line-height:18px;
    overflow:hidden;
    cursor:pointer
}
.bk-form-checkbox.is-indeterminate:not(.is-checked) .bk-checkbox{
            border-color:#3a84ff;
            background-color:#3a84ff;
            background-clip:content-box;
            position:relative
        }
.bk-form-checkbox.is-indeterminate:not(.is-checked) .bk-checkbox::after{
                content:'';
                width:8px;
                height:2px;
                background:#fff;
                position:absolute;
                top:50%;
                left:50%;
                margin-left:-4px;
                border-radius:2px;
                margin-top:-1px;
                display:inline-block;
            }
.bk-form-checkbox.is-disabled{
        cursor:not-allowed;
    }
.bk-form-checkbox.is-disabled .bk-checkbox{
            border-color:#dcdee5;
            background-color:#fafbfd;
        }
.bk-form-checkbox.is-disabled.is-checked .bk-checkbox{
            border-color:#dcdee5;
            background-color:#dcdee5;
        }
.bk-form-checkbox.is-checked .bk-checkbox{
            border-color:#3a84ff;
            background-color:#3a84ff;
            background-clip:border-box
        }
.bk-form-checkbox.is-checked .bk-checkbox:after{
                content:"";
                position:absolute;
                top:1px;
                left:4px;
                width:4px;
                height:8px;
                border:2px solid #fff;
                border-left:0;
                border-top:0;
                -webkit-transform-origin:center;
                        transform-origin:center;
                -webkit-transform:rotate(45deg) scaleY(1);
                        transform:rotate(45deg) scaleY(1);
            }
.bk-form-checkbox .bk-checkbox{
        position:relative;
        display:inline-block;
        vertical-align:middle;
        width:16px;
        height:16px;
        border:1px solid #979ba5;
        border-radius:2px
    }
.bk-form-checkbox .bk-checkbox:focus{
            border-color:#3c96ff;
            outline:none;
        }
.bk-form-checkbox .bk-checkbox-text{
        display:inline-block;
        margin:0 0 0 6px;
        vertical-align:middle;
        font-size:14px;
        color:#63656e;
    }
html,
body{
    margin:0;
    padding:0;
}
*{
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary{
    display:block;
}
audio,
canvas,
progress,
video{
    display:inline-block;
    vertical-align:baseline;
}
audio:not([controls]){
    display:none;
    height:0;
}
[hidden],
template{
    display:none;
}
a{
    background-color:transparent;
}
a:active,
a:hover{
    outline:0;
}
abbr[title]{
    border-bottom:1px dotted;
}
img{
    border:0;
}
svg:not(:root){
    overflow:hidden;
}
figure{
    margin:1em 40px;
}
hr{
    -webkit-box-sizing:content-box;
            box-sizing:content-box;
    height:0;
}
button,
input,
optgroup,
select,
textarea{
    color:inherit;
    font:inherit;
    margin:0;
}
button{
    overflow:visible;
}
button,
select{
    text-transform:none;
}
button,  html input[type="button"], input[type="reset"], input[type="submit"]{
    -webkit-appearance:button;
    cursor:pointer;
}
button[disabled],
html input[disabled]{
    cursor:default;
}
button::-moz-focus-inner,
input::-moz-focus-inner{
    border:0;
    padding:0;
}
input{
    line-height:normal;
}
input[type="checkbox"],
input[type="radio"]{
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    padding:0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button{
    height:auto;
}
::-ms-clear,
::-ms-reveal{
    display:none;
}
input[type="text"]::-ms-clear{
    display:none;
}
input[type="text"]::-ms-reveal{
    display:none;
}
input[type="search"]{
    -webkit-appearance:textfield;
    -webkit-box-sizing:content-box;
            box-sizing:content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration{
    -webkit-appearance:none;
}
fieldset{
    border:1px solid #c0c0c0;
    margin:0 2px;
    padding:0.35em 0.625em 0.75em;
}
legend{
    border:0;
    padding:0;
}
textarea{
    overflow:auto;
}
optgroup{
    font-weight:bold;
}
@font-face{
	font-family:"bk";
	src:url("fonts/iconcool.svg#iconcool") format("svg"),
url("fonts/iconcool.ttf") format("truetype"),
url("fonts/iconcool.woff") format("woff"),
url("fonts/iconcool.eot?#iefix") format("embedded-opentype");
    font-weight:normal;
    font-style:normal;
}
.bk-icon{
  font-family:'bk' !important;
  speak:none;
  font-style:normal;
  font-weight:normal;
  -webkit-font-feature-settings:normal;
          font-feature-settings:normal;
  font-variant:normal;
  text-transform:none;
  line-height:1;
  text-align:center;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.icon-angle-double-down:before{
	content:"\e101";
}
.icon-angle-double-left:before{
	content:"\e102";
}
.icon-angle-double-right:before{
	content:"\e103";
}
.icon-angle-double-up:before{
	content:"\e104";
}
.icon-angle-left:before{
	content:"\e105";
}
.icon-angle-down:before{
	content:"\e106";
}
.icon-angle-right:before{
	content:"\e107";
}
.icon-angle-up:before{
	content:"\e108";
}
.icon-apps-shape:before{
	content:"\e109";
}
.icon-apps:before{
	content:"\e10a";
}
.icon-area-chart:before{
	content:"\e10b";
}
.icon-arrows-down-circle-shape:before{
	content:"\e10c";
}
.icon-arrows-down-circle:before{
	content:"\e10d";
}
.icon-arrows-down-shape:before{
	content:"\e10e";
}
.icon-arrows-down:before{
	content:"\e10f";
}
.icon-arrows-left-circle-shape:before{
	content:"\e110";
}
.icon-arrows-left-circle:before{
	content:"\e111";
}
.icon-arrows-left-shape:before{
	content:"\e112";
}
.icon-arrows-left:before{
	content:"\e113";
}
.icon-arrows-m-down-shape:before{
	content:"\e114";
}
.icon-arrows-m-left-shape:before{
	content:"\e115";
}
.icon-arrows-m-right-shape:before{
	content:"\e116";
}
.icon-arrows-m-up-shape:before{
	content:"\e117";
}
.icon-arrows-right-circle-shape:before{
	content:"\e118";
}
.icon-arrows-right-circle:before{
	content:"\e119";
}
.icon-arrows-right-shape:before{
	content:"\e11a";
}
.icon-arrows-right:before{
	content:"\e11b";
}
.icon-arrows-up-circle-shape:before{
	content:"\e11c";
}
.icon-arrows-up-circle:before{
	content:"\e11d";
}
.icon-arrows-up-shape:before{
	content:"\e11e";
}
.icon-arrows-up:before{
	content:"\e11f";
}
.icon-back-shape:before{
	content:"\e120";
}
.icon-back:before{
	content:"\e121";
}
.icon-back2:before{
	content:"\e122";
}
.icon-bar-chart:before{
	content:"\e123";
}
.icon-bk:before{
	content:"\e124";
}
.icon-block-shape:before{
	content:"\e125";
}
.icon-calendar-shape:before{
	content:"\e126";
}
.icon-calendar:before{
	content:"\e127";
}
.icon-chain:before{
	content:"\e128";
}
.icon-check-1:before{
	content:"\e129";
}
.icon-check-circle-shape:before{
	content:"\e12a";
}
.icon-check-circle:before{
	content:"\e12b";
}
.icon-circle-2-1:before{
	content:"\e12c";
}
.icon-circle-4-1:before{
	content:"\e12d";
}
.icon-circle-shape:before{
	content:"\e12e";
}
.icon-circle:before{
	content:"\e12f";
}
.icon-clipboard-shape:before{
	content:"\e130";
}
.icon-clipboard:before{
	content:"\e131";
}
.icon-clock-shape:before{
	content:"\e132";
}
.icon-clock:before{
	content:"\e133";
}
.icon-close-circle-shape:before{
	content:"\e134";
}
.icon-close-circle:before{
	content:"\e135";
}
.icon-close:before{
	content:"\e136";
}
.icon-close3-shape:before{
	content:"\e137";
}
.icon-code:before{
	content:"\e138";
}
.icon-cog-shape:before{
	content:"\e139";
}
.icon-cog:before{
	content:"\e13a";
}
.icon-cry-shape:before{
	content:"\e13b";
}
.icon-cry:before{
	content:"\e13c";
}
.icon-dashboard-2-shape:before{
	content:"\e13d";
}
.icon-dashboard-2:before{
	content:"\e13e";
}
.icon-dashboard-shape:before{
	content:"\e13f";
}
.icon-dashboard:before{
	content:"\e140";
}
.icon-data-shape:before{
	content:"\e141";
}
.icon-data:before{
	content:"\e142";
}
.icon-data2-shape:before{
	content:"\e143";
}
.icon-data2:before{
	content:"\e144";
}
.icon-dedent:before{
	content:"\e145";
}
.icon-delete:before{
	content:"\e146";
}
.icon-dialogue-empty-shape:before{
	content:"\e147";
}
.icon-dialogue-empty:before{
	content:"\e148";
}
.icon-dialogue-shape:before{
	content:"\e149";
}
.icon-dialogue:before{
	content:"\e14a";
}
.icon-dispirited-shape:before{
	content:"\e14b";
}
.icon-dispirited:before{
	content:"\e14c";
}
.icon-docker:before{
	content:"\e14d";
}
.icon-down-shape:before{
	content:"\e14e";
}
.icon-download:before{
	content:"\e14f";
}
.icon-edit:before{
	content:"\e150";
}
.icon-edit2:before{
	content:"\e151";
}
.icon-ellipsis:before{
	content:"\e152";
}
.icon-email-shape:before{
	content:"\e153";
}
.icon-email:before{
	content:"\e154";
}
.icon-empty-shape:before{
	content:"\e155";
}
.icon-empty:before{
	content:"\e156";
}
.icon-end:before{
	content:"\e157";
}
.icon-exclamation-circle-shape:before{
	content:"\e158";
}
.icon-exclamation-circle:before{
	content:"\e159";
}
.icon-exclamation-triangle-shape:before{
	content:"\e15a";
}
.icon-exclamation-triangle:before{
	content:"\e15b";
}
.icon-exclamation:before{
	content:"\e15c";
}
.icon-execute:before{
	content:"\e15d";
}
.icon-eye-shape:before{
	content:"\e15e";
}
.icon-eye-slash-shape:before{
	content:"\e15f";
}
.icon-eye-slash:before{
	content:"\e160";
}
.icon-eye:before{
	content:"\e161";
}
.icon-file-plus-shape:before{
	content:"\e162";
}
.icon-file-plus:before{
	content:"\e163";
}
.icon-file-shape:before{
	content:"\e164";
}
.icon-file:before{
	content:"\e165";
}
.icon-folder-open-shape:before{
	content:"\e166";
}
.icon-folder-open:before{
	content:"\e167";
}
.icon-folder-plus-shape:before{
	content:"\e168";
}
.icon-folder-plus:before{
	content:"\e169";
}
.icon-folder-shape:before{
	content:"\e16a";
}
.icon-folder:before{
	content:"\e16b";
}
.icon-full-screen:before{
	content:"\e16c";
}
.icon-heart-shape:before{
	content:"\e16d";
}
.icon-heart:before{
	content:"\e16e";
}
.icon-hide:before{
	content:"\e16f";
}
.icon-home-shape:before{
	content:"\e170";
}
.icon-home:before{
	content:"\e171";
}
.icon-id-shape:before{
	content:"\e172";
}
.icon-id:before{
	content:"\e173";
}
.icon-image-shape:before{
	content:"\e174";
}
.icon-image:before{
	content:"\e175";
}
.icon-indent:before{
	content:"\e176";
}
.icon-info-circle-shape:before{
	content:"\e177";
}
.icon-info-circle:before{
	content:"\e178";
}
.icon-info:before{
	content:"\e179";
}
.icon-key:before{
	content:"\e17a";
}
.icon-left-shape:before{
	content:"\e17b";
}
.icon-line-chart:before{
	content:"\e17c";
}
.icon-list:before{
	content:"\e17d";
}
.icon-lock-shape:before{
	content:"\e17e";
}
.icon-lock:before{
	content:"\e17f";
}
.icon-minus-circle-shape:before{
	content:"\e180";
}
.icon-minus-circle:before{
	content:"\e181";
}
.icon-minus-square-shape:before{
	content:"\e182";
}
.icon-minus-square:before{
	content:"\e183";
}
.icon-minus:before{
	content:"\e184";
}
.icon-mobile-shape:before{
	content:"\e185";
}
.icon-mobile:before{
	content:"\e186";
}
.icon-monitors-cog:before{
	content:"\e187";
}
.icon-monitors:before{
	content:"\e188";
}
.icon-more:before{
	content:"\e189";
}
.icon-move:before{
	content:"\e18a";
}
.icon-next-shape:before{
	content:"\e18b";
}
.icon-next:before{
	content:"\e18c";
}
.icon-order-shape:before{
	content:"\e18d";
}
.icon-order:before{
	content:"\e18e";
}
.icon-panel-permission:before{
	content:"\e18f";
}
.icon-panel-shape:before{
	content:"\e190";
}
.icon-panel:before{
	content:"\e191";
}
.icon-panels:before{
	content:"\e192";
}
.icon-password-shape:before{
	content:"\e193";
}
.icon-password:before{
	content:"\e194";
}
.icon-pause:before{
	content:"\e195";
}
.icon-pc-shape:before{
	content:"\e196";
}
.icon-pc:before{
	content:"\e197";
}
.icon-pie-chart-shape:before{
	content:"\e198";
}
.icon-pie-chart:before{
	content:"\e199";
}
.icon-pipeline-shape:before{
	content:"\e19a";
}
.icon-pipeline:before{
	content:"\e19b";
}
.icon-play-circle-shape:before{
	content:"\e19c";
}
.icon-play-shape:before{
	content:"\e19d";
}
.icon-play:before{
	content:"\e19e";
}
.icon-play2:before{
	content:"\e19f";
}
.icon-play3:before{
	content:"\e1a0";
}
.icon-plus-circle-shape:before{
	content:"\e1a1";
}
.icon-plus-circle:before{
	content:"\e1a2";
}
.icon-plus-square-shape:before{
	content:"\e1a3";
}
.icon-plus-square:before{
	content:"\e1a4";
}
.icon-plus:before{
	content:"\e1a5";
}
.icon-project:before{
	content:"\e1a6";
}
.icon-qq-shape:before{
	content:"\e1a7";
}
.icon-qq:before{
	content:"\e1a8";
}
.icon-question-circle-shape:before{
	content:"\e1a9";
}
.icon-question-circle:before{
	content:"\e1aa";
}
.icon-question:before{
	content:"\e1ab";
}
.icon-refresh:before{
	content:"\e1ac";
}
.icon-right-shape:before{
	content:"\e1ad";
}
.icon-rtx:before{
	content:"\e1ae";
}
.icon-save-shape:before{
	content:"\e1af";
}
.icon-save:before{
	content:"\e1b0";
}
.icon-script-file:before{
	content:"\e1b1";
}
.icon-script-files:before{
	content:"\e1b2";
}
.icon-search:before{
	content:"\e1b3";
}
.icon-sina-shape:before{
	content:"\e1b4";
}
.icon-sina:before{
	content:"\e1b5";
}
.icon-sitemap-shape:before{
	content:"\e1b6";
}
.icon-sitemap:before{
	content:"\e1b7";
}
.icon-smile-shape:before{
	content:"\e1b8";
}
.icon-smile:before{
	content:"\e1b9";
}
.icon-sort:before{
	content:"\e1ba";
}
.icon-star-shape:before{
	content:"\e1bb";
}
.icon-star:before{
	content:"\e1bc";
}
.icon-stop-shape:before{
	content:"\e1bd";
}
.icon-stop:before{
	content:"\e1be";
}
.icon-tree-application-shape:before{
	content:"\e1bf";
}
.icon-tree-application:before{
	content:"\e1c0";
}
.icon-tree-group-shape:before{
	content:"\e1c1";
}
.icon-tree-group:before{
	content:"\e1c2";
}
.icon-tree-module-shape:before{
	content:"\e1c3";
}
.icon-tree-module:before{
	content:"\e1c4";
}
.icon-tree-process-shape:before{
	content:"\e1c5";
}
.icon-tree-process:before{
	content:"\e1c6";
}
.icon-un-full-screen:before{
	content:"\e1c8";
}
.icon-unlock-shape:before{
	content:"\e1c7";
}
.icon-unlock:before{
	content:"\e1c9";
}
.icon-up-shape:before{
	content:"\e1ca";
}
.icon-upload:before{
	content:"\e1cb";
}
.icon-user-shape:before{
	content:"\e1cc";
}
.icon-user:before{
	content:"\e1cd";
}
.icon-weixin-shape:before{
	content:"\e1ce";
}
.icon-weixin:before{
	content:"\e1cf";
}
.icon-work-manage:before{
	content:"\e1d0";
}
.icon-funnel:before{
	content:"\e1d1";
}
.icon-user-group:before{
	content:"\e1d2";
}
.icon-user-3:before{
	content:"\e1d3";
}
.icon-copy:before{
	content:"\e1d4";
}
.icon-batch-edit-line:before{
	content:"\e1d6";
}
.icon-refresh-line:before{
	content:"\e1d5";
}
.icon-close-line:before{
	content:"\e1d7";
}
.icon-1_up:before{
	content:"\e1d8";
}
.icon-arrows-right--line:before{
	content:"\e1db";
}
.icon-arrows-left-line:before{
	content:"\e1d9";
}
.icon-arrows-down-line:before{
	content:"\e1dc";
}
.icon-arrows-up-line:before{
	content:"\e1da";
}
.icon-angle-double-right-line:before{
	content:"\e1e1";
}
.icon-angle-double-down-line:before{
	content:"\e1de";
}
.icon-angle-double-up-line:before{
	content:"\e1df";
}
.icon-angle-double-left-line:before{
	content:"\e1dd";
}
.icon-angle-left-line:before{
	content:"\e1e0";
}
.icon-angle-right-line:before{
	content:"\e1e2";
}
.icon-angle-up-line:before{
	content:"\e1e4";
}
.icon-angle-down-line:before{
	content:"\e1e3";
}
.icon-check-line:before{
	content:"\e1ed";
}
.icon-close-line-2:before{
	content:"\e1ec";
}
.icon-edit-line:before{
	content:"\e1ee";
}
.icon-list-line:before{
	content:"\e1eb";
}
.icon-plus-line:before{
	content:"\e1ef";
}
.icon-angle-up-fill:before{
	content:"\e1f0";
}
.icon-angle-down-fill:before{
	content:"\e1f1";
}
.icon-grag-fill:before{
	content:"\e1f2";
}
.icon-template-fill-49:before{
	content:"\e1f3";
}
.icon-folder-fill:before{
	content:"\e1f4";
}
.icon-expand-line:before{
	content:"\e1f5";
}
.icon-shrink-line:before{
	content:"\e1f6";
}
.icon-minus-line:before{
	content:"\e1f7";
}
.icon-compressed-file:before{
	content:"\e1f8";
}
.icon-upload-cloud:before{
	content:"\e1fa";
}
.icon-text-file:before{
	content:"\e1f9";
}
.icon-filliscreen-line:before{
	content:"\e1fe";
}
.icon-left-turn-line:before{
	content:"\e1fb";
}
.icon-right-turn-line:before{
	content:"\e1fc";
}
.icon-enlarge-line:before{
	content:"\e1fd";
}
.icon-narrow-line:before{
	content:"\e1ff";
}
.icon-unfull-screen:before{
	content:"\e200";
}
.icon-image:before{
	content:"\e203";
}
.icon-image-fail:before{
	content:"\e204";
}
.icon-normalized:before{
	content:"\e205";
}
.icon-chinese:before{
	content:"\e206";
}
.icon-english:before{
	content:"\e207";
}
.icon-japanese:before{
	content:"\e208";
}
.f10{
        font-size:10px!important;
    }
.f11{
        font-size:11px!important;
    }
.f12{
        font-size:12px!important;
    }
.f13{
        font-size:13px!important;
    }
.f14{
        font-size:14px!important;
    }
.f15{
        font-size:15px!important;
    }
.f16{
        font-size:16px!important;
    }
.f17{
        font-size:17px!important;
    }
.f18{
        font-size:18px!important;
    }
.f19{
        font-size:19px!important;
    }
.f20{
        font-size:20px!important;
    }
.f21{
        font-size:21px!important;
    }
.f22{
        font-size:22px!important;
    }
.f23{
        font-size:23px!important;
    }
.f24{
        font-size:24px!important;
    }
.f25{
        font-size:25px!important;
    }
.f26{
        font-size:26px!important;
    }
.f27{
        font-size:27px!important;
    }
.f28{
        font-size:28px!important;
    }
.f29{
        font-size:29px!important;
    }
.f30{
        font-size:30px!important;
    }
.f31{
        font-size:31px!important;
    }
.f32{
        font-size:32px!important;
    }
.f33{
        font-size:33px!important;
    }
.f34{
        font-size:34px!important;
    }
.f35{
        font-size:35px!important;
    }
.f36{
        font-size:36px!important;
    }
.f37{
        font-size:37px!important;
    }
.f38{
        font-size:38px!important;
    }
.f39{
        font-size:39px!important;
    }
.f40{
        font-size:40px!important;
    }
.m0{
            margin:0px!important;
        }
.m5{
            margin:5px!important;
        }
.m10{
            margin:10px!important;
        }
.m15{
            margin:15px!important;
        }
.m20{
            margin:20px!important;
        }
.m25{
            margin:25px!important;
        }
.m30{
            margin:30px!important;
        }
.m35{
            margin:35px!important;
        }
.m40{
            margin:40px!important;
        }
.m45{
            margin:45px!important;
        }
.m50{
            margin:50px!important;
        }
.mt0{
            margin-top:0px!important;
        }
.mt5{
            margin-top:5px!important;
        }
.mt10{
            margin-top:10px!important;
        }
.mt15{
            margin-top:15px!important;
        }
.mt20{
            margin-top:20px!important;
        }
.mt25{
            margin-top:25px!important;
        }
.mt30{
            margin-top:30px!important;
        }
.mt35{
            margin-top:35px!important;
        }
.mt40{
            margin-top:40px!important;
        }
.mt45{
            margin-top:45px!important;
        }
.mt50{
            margin-top:50px!important;
        }
.mb0{
            margin-bottom:0px!important;
        }
.mb5{
            margin-bottom:5px!important;
        }
.mb10{
            margin-bottom:10px!important;
        }
.mb15{
            margin-bottom:15px!important;
        }
.mb20{
            margin-bottom:20px!important;
        }
.mb25{
            margin-bottom:25px!important;
        }
.mb30{
            margin-bottom:30px!important;
        }
.mb35{
            margin-bottom:35px!important;
        }
.mb40{
            margin-bottom:40px!important;
        }
.mb45{
            margin-bottom:45px!important;
        }
.mb50{
            margin-bottom:50px!important;
        }
.ml0{
            margin-left:0px!important;
        }
.ml5{
            margin-left:5px!important;
        }
.ml10{
            margin-left:10px!important;
        }
.ml15{
            margin-left:15px!important;
        }
.ml20{
            margin-left:20px!important;
        }
.ml25{
            margin-left:25px!important;
        }
.ml30{
            margin-left:30px!important;
        }
.ml35{
            margin-left:35px!important;
        }
.ml40{
            margin-left:40px!important;
        }
.ml45{
            margin-left:45px!important;
        }
.ml50{
            margin-left:50px!important;
        }
.mr0{
            margin-right:0px!important;
        }
.mr5{
            margin-right:5px!important;
        }
.mr10{
            margin-right:10px!important;
        }
.mr15{
            margin-right:15px!important;
        }
.mr20{
            margin-right:20px!important;
        }
.mr25{
            margin-right:25px!important;
        }
.mr30{
            margin-right:30px!important;
        }
.mr35{
            margin-right:35px!important;
        }
.mr40{
            margin-right:40px!important;
        }
.mr45{
            margin-right:45px!important;
        }
.mr50{
            margin-right:50px!important;
        }
.p0{
            padding:0px!important;
        }
.p5{
            padding:5px!important;
        }
.p10{
            padding:10px!important;
        }
.p15{
            padding:15px!important;
        }
.p20{
            padding:20px!important;
        }
.p25{
            padding:25px!important;
        }
.p30{
            padding:30px!important;
        }
.p35{
            padding:35px!important;
        }
.p40{
            padding:40px!important;
        }
.p45{
            padding:45px!important;
        }
.p50{
            padding:50px!important;
        }
.pt0{
            padding-top:0px!important;
        }
.pt5{
            padding-top:5px!important;
        }
.pt10{
            padding-top:10px!important;
        }
.pt15{
            padding-top:15px!important;
        }
.pt20{
            padding-top:20px!important;
        }
.pt25{
            padding-top:25px!important;
        }
.pt30{
            padding-top:30px!important;
        }
.pt35{
            padding-top:35px!important;
        }
.pt40{
            padding-top:40px!important;
        }
.pt45{
            padding-top:45px!important;
        }
.pt50{
            padding-top:50px!important;
        }
.pb0{
            padding-bottom:0px!important;
        }
.pb5{
            padding-bottom:5px!important;
        }
.pb10{
            padding-bottom:10px!important;
        }
.pb15{
            padding-bottom:15px!important;
        }
.pb20{
            padding-bottom:20px!important;
        }
.pb25{
            padding-bottom:25px!important;
        }
.pb30{
            padding-bottom:30px!important;
        }
.pb35{
            padding-bottom:35px!important;
        }
.pb40{
            padding-bottom:40px!important;
        }
.pb45{
            padding-bottom:45px!important;
        }
.pb50{
            padding-bottom:50px!important;
        }
.pl0{
            padding-left:0px!important;
        }
.pl5{
            padding-left:5px!important;
        }
.pl10{
            padding-left:10px!important;
        }
.pl15{
            padding-left:15px!important;
        }
.pl20{
            padding-left:20px!important;
        }
.pl25{
            padding-left:25px!important;
        }
.pl30{
            padding-left:30px!important;
        }
.pl35{
            padding-left:35px!important;
        }
.pl40{
            padding-left:40px!important;
        }
.pl45{
            padding-left:45px!important;
        }
.pl50{
            padding-left:50px!important;
        }
.pr0{
            padding-right:0px!important;
        }
.pr5{
            padding-right:5px!important;
        }
.pr10{
            padding-right:10px!important;
        }
.pr15{
            padding-right:15px!important;
        }
.pr20{
            padding-right:20px!important;
        }
.pr25{
            padding-right:25px!important;
        }
.pr30{
            padding-right:30px!important;
        }
.pr35{
            padding-right:35px!important;
        }
.pr40{
            padding-right:40px!important;
        }
.pr45{
            padding-right:45px!important;
        }
.pr50{
            padding-right:50px!important;
        }
.bk-bg-default{
    background-color:#fafbfd;
}
.bk-bg-primary{
    background-color:#3a84ff;
}
.bk-bg-warning{
    background-color:#ff9c01;
}
.bk-bg-danger{
    background-color:#ea3636;
}
.bk-bg-success{
    background-color:#2dcb56;
}
.bk-text-default{
    color:#63656e;
}
.bk-text-primary{
    color:#3a84ff;
}
.bk-text-warning{
    color:#ff9c01;
}
.bk-text-danger{
    color:#ea3636;
}
.bk-text-success{
    color:#2dcb56;
}
.bk-text-main{
    color:#313238;
}
.bk-text-minor{
    color:#979ba5;
}
.bk-text-yahei{
    font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Microsoft Yahei, Helvetica, Aria;
}
.fb{
    font-weight:bold!important;
}
.fn{
    font-weight:normal!important;
}
.lh150{
    line-height:150%!important;
}
.lh180{
    line-height:180%!important;
}
.lh200{
    line-height:200%!important;
}
.unl{
    text-decoration:underline!important;
}
.no_unl{
    text-decoration:none!important;
}
.tl{
    text-align:left!important;
}
.tc{
    text-align:center!important;
}
.tr{
    text-align:right!important;
}
.bc{
    margin-left:auto!important;
    margin-right:auto!important;
}
.fl{
    float:left!important;
}
.fr{
    float:right!important;
}
.cb{
    clear:both!important;
}
.cl{
    clear:left!important;
}
.cr{
    clear:right!important;
}
.vm{
    vertical-align:middle!important;
}
.pr{
    position:relative!important;
}
.pa{
    position:absolute!important;
}
.abs-right{
    position:absolute!important;
}
.zoom{
    zoom:1
}
.hidden{
    visibility:hidden!important;
}
.none{
    display:none!important;
}
.h50{
    height:50px!important;
}
.h80{
    height:80px!important;
}
.h100{
    height:100px!important;
}
.h200{
    height:200px!important;
}
.h{
    height:100%!important;
}
.bk-has-submenu{
    position:relative
}
.bk-has-submenu:hover .bk-submenu{
            display:block;
        }
.bk-has-submenu .bk-submenu{
        display:none;
        position:absolute;
        width:100%;
        left:0;
        right:0;
        padding:0
    }
.bk-has-submenu .bk-submenu > li{
            display:block;
        }
.bk-collapse{
    color:#63656e;
}
.bk-collapse .bk-collapse-header{
        padding:10px;
        font-size:14px;
    }
.bk-collapse .bk-collapse-header i.bk-icon{
            -webkit-transition:all linear 0.3s;
            transition:all linear 0.3s;
        }
.bk-collapse .bk-collapse-header .rotate-icon{
            position:relative;
            -webkit-transform:rotate(90deg);
                    transform:rotate(90deg);
        }
.bk-collapse .bk-collapse-content{
        padding:5px 10px 20px 10px;
        will-change:all;
        font-size:14px;
        color:#63656e;
    }
.bk-collapse-item .bk-collapse-item-header{
        padding:0px 10px;
        height:42px;
        text-overflow:ellipsis;
        overflow:hidden;
        line-height:42px;
        font-size:14px;
    }
.bk-collapse-item .bk-collapse-item-header .collapse-expand{
            position:relative;
            -webkit-transform:rotate(90deg);
                    transform:rotate(90deg);
        }
.bk-collapse-item .bk-collapse-item-header .bk-icon{
            font-size:20px;
        }
.bk-collapse-item .bk-collapse-item-header span{
            -webkit-transition:all linear 0.2s;
            transition:all linear 0.2s;
        }
.bk-collapse-item .bk-collapse-item-header.custom-trigger-layout{
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            position:relative;

        }
.bk-collapse-item .bk-collapse-item-header.custom-trigger-layout .trigger-area{
                -webkit-box-flex:1;
                    -ms-flex:1;
                        flex:1;
            }
.bk-collapse-item .bk-collapse-item-header.custom-trigger-layout .custom-trigger-angle{
                display:position;
                right:0
            }
.bk-collapse-item .bk-collapse-item-header.custom-trigger-layout .custom-trigger-angle:hover{
                    cursor:pointer;
                    color:#3a84ff;
                }
.bk-collapse-item .cursor-pointer{
        cursor:pointer;
    }
.bk-collapse-item .bk-collapse-item-hover:hover{
        color:#3a84ff;
    }
.bk-collapse-item .bk-collapse-item-content{
        padding:0px 10px;
    }
.bk-collapse-item .bk-collapse-item-detail{
        color:#979ba5;
    }
.bk-collapse-item .collapse-transition{
        -webkit-transition:.2s height ease-in-out, .2s padding-top ease-in-out, .2s padding-bottom ease-in-out;
        transition:.2s height ease-in-out, .2s padding-top ease-in-out, .2s padding-bottom ease-in-out
    }
.bk-collapse-item.is-disabled{
        color:#c4c6cc;
        cursor:not-allowed;
    }
.bk-collapse-item.is-disabled .bk-collapse-item-header{
            pointer-events:none;
        }
.bk-color-picker{
    position:relative;
    display:-webkit-inline-box;
    display:-ms-inline-flexbox;
    display:inline-flex;
    -ms-flex-line-pack:center;
        align-content:center;
    height:32px;
    border-radius:2px;
    border:1px solid #c4c6cc;
    -webkit-transition:border .2s, -webkit-box-shadow .2s;
    transition:border .2s, -webkit-box-shadow .2s;
    transition:border .2s, box-shadow .2s;
    transition:border .2s, box-shadow .2s, -webkit-box-shadow .2s;
    color:#63656e;
    cursor:pointer;
    outline:none
}
.bk-color-picker.bk-color-picker-show-value{
        width:150px;
    }
.bk-color-picker.bk-color-picker-large{
        height:36px
    }
.bk-color-picker.bk-color-picker-large.bk-color-picker-show-value{
            width:170px;
        }
.bk-color-picker.bk-color-picker-large.bk-color-picker-show-value .bk-color-picker-text{
                width:calc(100% - 62px);
                font-size:16px;
            }
.bk-color-picker.bk-color-picker-large .bk-color-picker-color .bk-color-picker-color-square{
            width:22px;
            height:22px;
            font-size:22px;
        }
.bk-color-picker.bk-color-picker-small{
        height:28px
    }
.bk-color-picker.bk-color-picker-small.bk-color-picker-show-value{
            width:132px;
        }
.bk-color-picker.bk-color-picker-small.bk-color-picker-show-value .bk-color-picker-text{
                width:calc(100% - 56px);
                font-size:12px;
            }
.bk-color-picker.bk-color-picker-small .bk-color-picker-color .bk-color-picker-color-square{
            width:16px;
            height:16px;
            font-size:16px;
        }
.bk-color-picker:hover, .bk-color-picker:focus{
        border-color:#3a84ff;
        -webkit-transition:border .2s;
        transition:border .2s;
    }
.bk-color-picker.bk-color-picker-show-dropdown{
        border-color:#3a84ff;
        -webkit-box-shadow:0 0 0 2px rgba(45, 140, 240, .2);
                box-shadow:0 0 0 2px rgba(45, 140, 240, .2);
        -webkit-transition:border .2s, -webkit-box-shadow .2s;
        transition:border .2s, -webkit-box-shadow .2s;
        transition:border .2s, box-shadow .2s;
        transition:border .2s, box-shadow .2s, -webkit-box-shadow .2s;
    }
.bk-color-picker.bk-color-picker-show-dropdown .icon-angle-down{
            -webkit-transform:rotate(-180deg);
                    transform:rotate(-180deg);
            -webkit-transition:-webkit-transform .3s;
            transition:-webkit-transform .3s;
            transition:transform .3s;
            transition:transform .3s, -webkit-transform .3s;
        }
.bk-color-picker.bk-color-picker-disabled{
        border-color:#dcdee5;
        background-color:#fafbfd;
        cursor:not-allowed;
    }
.bk-color-picker.bk-color-picker-disabled .bk-color-picker-text{
            color:#c4c6cc;
        }
.bk-color-picker.bk-color-picker-disabled .bk-color-picker-icon .icon-angle-down{
            color:#c4c6cc;
        }
.bk-color-picker .bk-color-picker-color{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        margin-left:6px;
    }
.bk-color-picker .bk-color-picker-color .bk-color-picker-color-square{
            width:18px;
            height:18px;
            font-size:18px;
            color:#c4c6cc;
            -webkit-box-shadow:inset 0 0 0 1px rgba(0, 0, 0, .15);
                    box-shadow:inset 0 0 0 1px rgba(0, 0, 0, .15);
        }
.bk-color-picker .bk-color-picker-text{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        width:calc(100% - 58px);
        margin-left:6px;
        line-height:20px;
        font-size:14px;
        color:#63656e;
    }
.bk-color-picker .bk-color-picker-text span{
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
        }
.bk-color-picker .bk-color-picker-icon{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        width:20px;
        margin:0 4px;
    }
.bk-color-picker .bk-color-picker-icon .icon-angle-down{
            position:absolute;
            right:4px;
            font-size:20px;
            color:#979ba5;
            -webkit-transition:-webkit-transform .3s;
            transition:-webkit-transform .3s;
            transition:transform .3s;
            transition:transform .3s, -webkit-transform .3s;
        }
.bk-color-picker-dropdown{
    width:272px;
}
.bk-color-picker-saturation{
    margin:6px;
    position:relative;
    height:180px;
}
.bk-color-picker-saturation .bk-color-picker-saturation-white{
        background:-webkit-gradient(linear, left top, right top, from(#fff), to(hsla(0, 0%, 100%, 0)));
        background:linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0));
    }
.bk-color-picker-saturation .bk-color-picker-saturation-black{
        background:-webkit-gradient(linear, left bottom, left top, from(#000), to(transparent));
        background:linear-gradient(0deg, #000, transparent);
    }
.bk-color-picker-saturation .bk-color-picker-saturation-white, .bk-color-picker-saturation .bk-color-picker-saturation-black{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        cursor:pointer;
    }
.bk-color-picker-hue{
    margin:0 6px 6px;
    position:relative;
    height:10px;
    cursor:pointer;
    background:-webkit-gradient(linear, left top, right top, color-stop(0, red), color-stop(17%, #ff0), color-stop(33%, #0f0), color-stop(50%, #0ff), color-stop(67%, #00f), color-stop(83%, #f0f), to(red));
    background:linear-gradient(90deg, red 0, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, red);
}
.bk-color-picker-hue .bk-color-picker-hue-pointer{
        position:absolute;
        top:0;
    }
.bk-color-picker-hue .bk-color-picker-hue-pointer .bk-color-picker-hue-rectangle{
            width:4px;
            height:8px;
            margin-top:1px;
            border-radius:1px;
            -webkit-box-shadow:0 0 2px rgba(0, 0, 0, .6);
                    box-shadow:0 0 2px rgba(0, 0, 0, .6);
            background:#fff;
            cursor:pointer;
            -webkit-transform:translateX(-2px);
                    transform:translateX(-2px);
        }
.bk-color-picker-input{
    margin:0 6px 1px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
        -ms-flex-pack:justify;
            justify-content:space-between;
    font-size:12px;
    color:#63656e;
}
.bk-color-picker-input .bk-color-picker-input-hex .bk-color-picker-input-part .bk-color-picker-input-value{
        width:70px;
    }
.bk-color-picker-input .bk-color-picker-input-rgba{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack:justify;
            -ms-flex-pack:justify;
                justify-content:space-between;
        width:160px;
    }
.bk-color-picker-input .bk-color-picker-input-part{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-flow:column;
                flex-flow:column;
    }
.bk-color-picker-input .bk-color-picker-input-part .bk-color-picker-input-value{
            width:32px;
            height:22px;
            border:1px solid #c4c6cc;
            border-radius:2px;
            padding:0 4px;
            line-height:16px;
            -webkit-transition:border .2s;
            transition:border .2s;
            outline:none
        }
.bk-color-picker-input .bk-color-picker-input-part .bk-color-picker-input-value:focus{
                border-color:#3a84ff;
                -webkit-transition:border .2s;
                transition:border .2s;
            }
.bk-color-picker-input .bk-color-picker-input-part .bk-color-picker-input-value.error{
                border-color:#ea3636;
            }
.bk-color-picker-input .bk-color-picker-input-part .bk-color-picker-input-value::-webkit-outer-spin-button,
            .bk-color-picker-input .bk-color-picker-input-part .bk-color-picker-input-value::-webkit-inner-spin-button{
                -webkit-appearance:none;
                margin:0;
            }
.bk-color-picker-input .bk-color-picker-input-part .bk-color-picker-input-text{
            height:18px;
            line-height:18px;
            text-align:center;
        }
.bk-color-picker-recommend-container{
    padding:6px;
    border-top:1px solid #f0f1f5;
}
.bk-color-picker-recommend-container .bk-color-picker-recommend{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -ms-flex-wrap:wrap;
            flex-wrap:wrap;
    }
.bk-color-picker-recommend-container .bk-color-picker-recommend .bk-color-picker-recommend-color{
            width:20px;
            height:20px;
            margin:3px;
            border-radius:3px;
            -webkit-box-shadow:inset 0 0 0 1px rgba(0, 0, 0, .15);
                    box-shadow:inset 0 0 0 1px rgba(0, 0, 0, .15);
            cursor:pointer
        }
.bk-color-picker-recommend-container .bk-color-picker-recommend .bk-color-picker-recommend-color.bk-color-picker-recommend-selected-color{
                -webkit-box-shadow:0 0 3px 2px #3a84ff;
                        box-shadow:0 0 3px 2px #3a84ff;
            }
.bk-color-picker-saturation, .bk-color-picker-hue, .bk-color-picker-recommend{
    outline:none;
    -webkit-transition:-webkit-box-shadow .2s;
    transition:-webkit-box-shadow .2s;
    transition:box-shadow .2s;
    transition:box-shadow .2s, -webkit-box-shadow .2s
}
.bk-color-picker-saturation:focus, .bk-color-picker-hue:focus, .bk-color-picker-recommend:focus{
        -webkit-box-shadow:0 0 0 2px rgba(45, 140, 240, .5);
                box-shadow:0 0 0 2px rgba(45, 140, 240, .5);
        -webkit-transition:-webkit-box-shadow .2s;
        transition:-webkit-box-shadow .2s;
        transition:box-shadow .2s;
        transition:box-shadow .2s, -webkit-box-shadow .2s;
    }
.bk-color-picker-pointer{
    position:absolute;
    left:50%;
    top:50%;
    width:4px;
    height:4px;
    cursor:pointer;
}
.bk-color-picker-pointer .bk-color-picker-circle{
        position:absolute;
        left:0;
        top:0;
        width:4px;
        height:4px;
        -webkit-box-shadow:0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);
                box-shadow:0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);
        border-radius:50%;
        -webkit-transform:translate(-2px, -2px);
                transform:translate(-2px, -2px);
        cursor:pointer;
    }
.bk-color-picker-empty{
    position:relative
}
.bk-color-picker-empty::after{
        position:absolute;
        left:calc(50% - 1px);
        top:1px;
        content:'';
        width:2px;
        height:calc(100% - 2px);
        border-radius:1px;
        background:#ea3536;
        -webkit-transform:rotate(45deg);
                transform:rotate(45deg);
    }
:root{
    --font-size:12px;
    --long-width:342px;
}
:root .medium-font{
        --font-size:14px;
    }
:root .medium-width{
        --long-width:362px;
    }
:root .large-font{
        --font-size:16px;
    }
:root .large-width{
        --long-width:402px;
    }
.bk-date-picker{
    display:inline-block;
    line-height:normal;
    width:261px
}
.bk-date-picker.long{
        width:342px;
        width:var(--long-width);
    }
.bk-date-picker-rel{
    position:relative;
}
.bk-date-picker-rel .bk-date-picker-editor{
        display:block;
        width:100%;
        height:32px;
        line-height:32px;
        border:1px solid #c4c6cc;
        font-size:12px;
        font-size:var(--font-size);
        border-radius:2px;
        outline:none;
        padding:0 10px 0 30px;
        color:#63656e;
        cursor:pointer
    }
.bk-date-picker-rel .bk-date-picker-editor.only-bottom-border{
            border-color:transparent transparent #c4c6cc transparent
        }
.bk-date-picker-rel .bk-date-picker-editor.only-bottom-border:focus{
                border-color:transparent transparent #3a84ff transparent;
                -webkit-box-shadow:none;
                        box-shadow:none;
            }
.bk-date-picker-rel .bk-date-picker-editor.only-bottom-border[disabled],
            .bk-date-picker-rel .bk-date-picker-editor.only-bottom-border.readonly{
                border-color:transparent transparent #dcdee5 transparent;
            }
.bk-date-picker-rel .bk-date-picker-editor:focus{
            border:1px solid #3a84ff;
        }
.bk-date-picker-rel .bk-date-picker-editor::-webkit-input-placeholder{
            color:#c4c6cc;
        }
.bk-date-picker-rel .bk-date-picker-editor::-moz-placeholder{
            color:#c4c6cc;
        }
.bk-date-picker-rel .bk-date-picker-editor:-ms-input-placeholder{
            color:#c4c6cc;
        }
.bk-date-picker-rel .bk-date-picker-editor::-ms-input-placeholder{
            color:#c4c6cc;
        }
.bk-date-picker-rel .bk-date-picker-editor::placeholder{
            color:#c4c6cc;
        }
.bk-date-picker-rel .bk-date-picker-editor[disabled]{
            color:#c4c6cc;
            background-color:#fafbfd;
            cursor:not-allowed;
            border-color:#c4c6cc;
        }
.bk-date-picker-rel .bk-date-picker-editor.readonly{
            background-color:#fafbfd;
            border-color:#c4c6cc;
        }
.bk-date-picker-rel .clear-action{
        position:absolute;
        right:10px;
        -webkit-transform:translateY(-50%);
                transform:translateY(-50%);
        top:50%;
        color:#c4c6cc;
        font-size:14px;
        cursor:pointer
    }
.bk-date-picker-rel .clear-action:hover{
            color:#979ba5;
        }
.bk-date-picker-rel .icon-wrapper{
        display:inline-block;
        width:32px;
        height:32px;
        position:absolute;
        left:0;
        top:0;
        color:#c4c6cc;
        background-color:transparent;
        cursor:pointer
    }
.bk-date-picker-rel .icon-wrapper.disabled{
            cursor:not-allowed;
        }
.bk-date-picker-rel .icon-wrapper i.icon-clock{
            -webkit-transform:translate(-50%, -50%);
                    transform:translate(-50%, -50%);
            top:50%;
            left:50%;
            position:absolute;
        }
.bk-date-picker-rel .icon-wrapper .picker-icon{
            width:18px;
            height:18px;
            position:absolute;
            -webkit-transform:translate(-50%, -50%);
                    transform:translate(-50%, -50%);
            top:50%;
            left:50%;
        }
.bk-date-picker-dropdown{
    overflow:auto;
    margin:4px 0 0 0;
    padding:5px 0 0 0;
    background-color:#fff;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    border-radius:2px;
    -webkit-box-shadow:0 3px 10px rgba(0, 0, 0, 0.1);
            box-shadow:0 3px 10px rgba(0, 0, 0, 0.1);
    border:1px solid #dcdee5;
    position:absolute;
    z-index:900;
}
.bk-date-picker .bk-select-dropdown{
    padding:0;
    overflow:visible;
    max-height:none;
}
.bk-date-picker-footer-wrapper{
    border-top:1px solid #dcdee5;
    clear:both;
    background-color:#fafbfd;
    color:#979ba5;
    font-size:14px;
}
.bk-date-picker-top-wrapper{
    margin-top:-5px;
    clear:both;
    color:#979ba5;
    font-size:14px;
}
.bk-date-picker-cells{
    margin:9px;
    white-space:normal;
    color:#63656e;
    font-size:12px;
}
.bk-date-picker-cells span{
        display:inline-block;
        width:34px;
        height:32px;
        line-height:32px;
        text-align:center;
    }
.bk-date-picker-cells span em{
            display:inline-block;
            width:34px;
            height:32px;
            line-height:32px;
            font-style:normal;
            cursor:pointer;
        }
.bk-date-picker-cells .bk-date-picker-cells-header{
        text-align:center;
    }
.bk-date-picker-cells .bk-date-picker-cells-header span{
            cursor:default;
            width:28px;
            height:26px;
            line-height:26px;
            text-align:center;
            margin:3px;
            color:#63656e;
        }
.bk-date-picker-cells-cell:hover em{
    background-color:#f0f1f5;
}
.bk-date-picker-cells-focused em{
    -webkit-box-shadow:0 0 0 1px #a3c5fd inset;
            box-shadow:0 0 0 1px #a3c5fd inset;
    color:#3a84ff;
}
.bk-date-picker-cells-cell-prev-month em,
.bk-date-picker-cells-cell-next-month em{
    color:#c4c6cc;
}
.bk-date-picker-cells-cell-prev-month:hover em,
.bk-date-picker-cells-cell-next-month:hover em{
    background:transparent;
}
span.bk-date-picker-cells-cell-week-label,
span.bk-date-picker-cells-cell-week-label:hover,
span.bk-date-picker-cells-cell-disabled,
span.bk-date-picker-cells-cell-disabled:hover{
    cursor:not-allowed;
    color:#c4c6cc;
}
span.bk-date-picker-cells-cell-week-label em,
span.bk-date-picker-cells-cell-week-label:hover em,
span.bk-date-picker-cells-cell-disabled em,
span.bk-date-picker-cells-cell-disabled:hover em{
    color:inherit;
    background:inherit;
    cursor:not-allowed;
}
span.bk-date-picker-cells-cell-disabled,
span.bk-date-picker-cells-cell-disabled:hover{
    background-color:#f0f1f5;
}
.bk-date-picker-cells-cell-today em{
    position:relative;
    -webkit-box-shadow:0 0 0 1px #a3c5fd inset;
            box-shadow:0 0 0 1px #a3c5fd inset;
    color:#3a84ff;
}
.bk-date-picker-cells-cell-range{
    position:relative
}
.bk-date-picker-cells-cell-range:before{
        content:'';
        display:block;
        background:#e1ecff;
        border-radius:0;
        border:0;
        position:absolute;
        top:0;
        bottom:0;
        left:0;
        right:0;
    }
.bk-date-picker-cells-cell-range em{
        position:relative;
        z-index:1;
    }
.bk-date-picker-cells-cell-selected em,
.bk-date-picker-cells-cell-selected:hover em{
    background-color:#3a84ff;
    color:#fff;
    -webkit-box-shadow:0 0 0 1px #3a84ff inset;
            box-shadow:0 0 0 1px #3a84ff inset;
}
span.bk-date-picker-cells-cell-disabled.bk-date-picker-cells-cell-selected em{
    background:#c4c6cc;
    color:#f7f7f7;
}
.bk-date-picker-cells-cell-today.bk-date-picker-cells-cell-selected em:after{
    background:#fff;
}
.bk-date-picker-cells-cell-today.bk-date-picker-cells-cell-selected em,
.bk-date-picker-cells-cell-today.bk-date-picker-cells-cell-selected em:hover{
    -webkit-box-shadow:0 0 0 1px #3a84ff inset;
            box-shadow:0 0 0 1px #3a84ff inset;
}
.bk-date-picker-cells-year,
.bk-date-picker-cells-month{
    margin-top:7px;
}
.bk-date-picker-cells-year span, .bk-date-picker-cells-month span{
        width:36px;
        height:32px;
        line-height:32px;
        margin:10px 12px;
        border-radius:3px;
        text-align:center;
    }
.bk-date-picker-cells-year span em, .bk-date-picker-cells-month span em{
            width:36px;
            height:32px;
            line-height:32px;
            text-align:center;
        }
.bk-date-picker-header{
    height:46px;
    line-height:46px;
    text-align:center;
    border-bottom:1px solid #dcdee5;
    font-size:14px;
    font-weight:700;
    color:#63656e;
}
.bk-date-picker-header .bk-date-picker-header-label{
        cursor:pointer
    }
.bk-date-picker-header .bk-date-picker-header-label:hover{
            color:#3a84ff;
        }
.bk-date-picker-header .up-to-now{
        font-weight:400;
        cursor:pointer;
        margin-left:3px
    }
.bk-date-picker-header .up-to-now.disabled{
            cursor:not-allowed;
            color:#c4c6cc;
        }
.bk-date-picker-prev-btn{
    float:left;
}
.bk-date-picker-prev-btn-arrow-double{
    margin-left:10px;
}
.bk-date-picker-prev-btn-arrow-double i:after{
    margin-left:-8px;
}
.bk-date-picker-next-btn{
    float:right;
}
.bk-date-picker-next-btn-arrow-double{
    margin-right:10px;
}
.bk-date-picker-next-btn-arrow-double i:after{
    margin-left:-8px;
}
.bk-date-picker-with-range .bk-picker-panel-body{
    min-width:532px;
}
.bk-date-picker-with-range .bk-picker-panel-content{
    float:left;
}
.bk-date-picker-with-range .bk-picker-cells-show-week-numbers{
    min-width:492px;
}
.bk-date-picker-transfer{
    z-index:1060;
    max-height:none;
}
.bk-picker-panel-icon-btn{
    display:inline-block;
    width:20px;
    height:46px;
    line-height:46px;
    text-align:center;
    cursor:pointer;
    color:#979ba5;
    -webkit-transition:color 0.2s ease-in-out;
    transition:color 0.2s ease-in-out;
}
.bk-picker-panel-icon-btn:hover{
    color:#2d8cf0;
}
.bk-picker-panel-icon-btn i{
    font-size:20px;
}
.bk-picker-panel-body-wrapper.bk-picker-panel-with-sidebar{
        padding-right:140px;
    }
.bk-picker-panel-sidebar{
    width:140px;
    position:absolute;
    top:0;
    bottom:0;
    background-color:#fafbfd;
    border-left:1px solid #dcdee5;
    overflow:auto;
    right:0;
    color:#3a84ff;
    font-size:14px;
    padding:12px 0;
}
.bk-picker-panel-sidebar .bk-picker-panel-shortcut{
        padding:6px 21px;
        cursor:pointer;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap
    }
.bk-picker-panel-sidebar .bk-picker-panel-shortcut:hover{
            background-color:#e1ecff;
        }
.bk-picker-panel-body{
    float:left;
}
.bk-picker-confirm{
    border-top:1px solid #dcdee5;
    text-align:right;
    clear:both;
    background-color:#fafbfd;
    height:42px;
    line-height:41px;
    font-size:14px;
    padding:0 20px;
}
.bk-picker-confirm a{
        color:#979ba5
    }
.bk-picker-confirm a.confirm{
            margin-left:10px;
            color:#3a84ff;
        }
.bk-picker-confirm a[disabled]{
            cursor:not-allowed;
            color:#c4c6cc;
        }
.bk-picker-confirm .bk-picker-confirm-time{
        float:left;
    }
.bk-dialog-mask{
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:rgba(0, 0, 0, 0.6);
    height:100%;
    z-index:1000
}
.bk-dialog-mask.show-active{
        display:block;
        -webkit-animation:mask-fading .4s;
                animation:mask-fading .4s;
    }
.bk-dialog-mask.hide-active{
        display:none;
        -webkit-animation:mask-hidding .4s;
                animation:mask-hidding .4s;
    }
.bk-dialog-hidden{
    display:none !important;
}
.bk-dialog-wrapper{
    position:fixed;
    overflow:auto;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:1000;
    -webkit-overflow-scrolling:touch;
    outline:0
}
.bk-dialog-wrapper.bk-dialog-no-mask{
        pointer-events:none;
    }
.bk-dialog-wrapper *{
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
    }
.bk-dialog-wrapper .bk-dialog{
        width:auto;
        margin:0 auto;
        position:relative;
        outline:none;
        top:200px
    }
.bk-dialog-wrapper .bk-dialog.bk-dialog-fullscreen{
            width:100% !important;
            top:0;
            bottom:0;
            position:absolute;
        }
.bk-dialog-wrapper .bk-dialog.bk-dialog-fullscreen .bk-dialog-content{
                width:100%;
                border-radius:0;
                position:absolute;
                top:0;
                bottom:0;
                margin-bottom:0;
            }
.bk-dialog-wrapper .bk-dialog.bk-dialog-fullscreen .bk-dialog-body{
                width:100%;
                overflow:auto;
                position:absolute;
                top:51px;
                bottom:61px;
            }
.bk-dialog-wrapper .bk-dialog.bk-dialog-fullscreen .bk-dialog-footer{
                position:absolute;
                width:100%;
                bottom:0;
            }
.bk-dialog-wrapper .bk-dialog.bk-dialog-fullscreen.bk-dialog-fullscreen-no-header .bk-dialog-body{
                    top:0;
                }
.bk-dialog-wrapper .bk-dialog.bk-dialog-fullscreen.bk-dialog-fullscreen-no-footer .bk-dialog-body{
                    bottom:0;
                }
.bk-dialog-wrapper .bk-dialog-tool{
        min-height:30px;
        position:relative;

    }
.bk-dialog-wrapper .bk-dialog-header{
        padding:3px 24px 24px 24px;
        line-height:1.2;
        text-align:center;
    }
.bk-dialog-wrapper .bk-dialog-header p,
        .bk-dialog-wrapper .bk-dialog-header .bk-dialog-header-inner{
            display:inline-block;
            width:100%;
            font-size:20px;
            color:#63656e;
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
            margin:0;
        }
.bk-dialog-wrapper .bk-dialog-header .header-center{
            font-size:24px;
        }
.bk-dialog-wrapper .bk-dialog-header p i,
            .bk-dialog-wrapper .bk-dialog-header p span{
                vertical-align:middle;
            }
.bk-dialog-wrapper .header-on-left{
        margin-top:-14px;
        font-size:20px;
    }
.bk-dialog-wrapper .header-on-left p, .bk-dialog-wrapper .header-on-left div{
            font-size:20px;
        }
.bk-dialog-wrapper .bk-dialog-body{
        padding:3px 24px 26px;
        font-size:14px;
        line-height:1.5;
        color:#63656e;
    }
.bk-dialog-wrapper .bk-dialog-content{
        position:relative;
        background-color:#fff;
        border:0;
        border-radius:2px;
        background-clip:padding-box;
        -webkit-box-shadow:0 4px 12px rgba(0, 0, 0, 0.15);
                box-shadow:0 4px 12px rgba(0, 0, 0, 0.15)
    }
.bk-dialog-wrapper .bk-dialog-content.bk-dialog-content-no-mask{
            pointer-events:auto;
        }
.bk-dialog-wrapper .bk-dialog-content.bk-dialog-content-drag{
            position:absolute;
        }
.bk-dialog-wrapper .bk-dialog-content.bk-dialog-content-drag .bk-dialog-tool{
                cursor:move;
            }
.bk-dialog-wrapper .bk-dialog-content.bk-dialog-content-dragging{
            -webkit-user-select:none;
            -moz-user-select:none;
            -ms-user-select:none;
                user-select:none;
        }
.bk-dialog-wrapper .bk-dialog-footer{
        padding:12px 24px 12px 24px;
        background-color:#fafbfd;
        border-top:1px solid #dcdee5;
        border-radius:2px;
    }
.bk-dialog-wrapper .bk-dialog-footer .footer-wrapper{
            font-size:0;
        }
.bk-dialog-wrapper .bk-dialog-footer .footer-wrapper button{
                min-width:64px;
            }
.bk-dialog-wrapper .bk-dialog-footer .footer-wrapper button + button{
                margin-left:8px;
                margin-bottom:0;
            }
.bk-dialog-wrapper .bk-dialog-close{
        z-index:1;
        cursor:pointer;
        position:absolute;
        color:#979ba5;
        top:5px;
        right:5px;
        width:26px;
        height:26px;
        line-height:26px;
        text-align:center;
        border-radius:50%;
        font-weight:700;
        font-size:22px
    }
.bk-dialog-wrapper .bk-dialog-close:hover{
            background-color:#f0f1f5;
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-header{
            padding:15px 30px 10px 30px;
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-sub-header{
            padding:5px 50px 6px 50px
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-sub-header.has-sub{
                padding-bottom:21px;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-sub-header .bk-dialog-header-inner{
                font-size:14px;
                color:#63656e;
                line-height:1.5;
                text-align:center;
                word-break:break-all;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-body{
            padding:3px 24px 30px;
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-footer{
            text-align:center;
            padding:0 65px 33px;
            background-color:#fff;
            border:none;
            border-radius:0;
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-footer button{
                min-width:88px;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-loading{
            width:58px;
            height:58px;
            line-height:58px;
            font-size:30px;
            border-radius:50%;
            -webkit-animation:loading linear 1s infinite;
                    animation:loading linear 1s infinite;
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-type-body{
            padding:8px 24px 15px;
            font-size:14px;
            line-height:1.5;
            color:#63656e;
            text-align:center
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-type-body.loading{
                padding:3px 24px 15px;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-type-header{
            padding:3px 24px 22px 24px;
            line-height:1;
            text-align:center
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-type-header.loading,
            .bk-dialog-wrapper .bk-info-box .bk-dialog-type-header.has-sub-header{
                padding:3px 24px 10px 24px;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-type-header .header{
                display:inline-block;
                width:100%;
                font-size:20px;
                color:#313238;
                overflow:hidden;
                text-overflow:ellipsis;
                white-space:nowrap;
                line-height:1.5;
                margin:0;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-type-header .bk-dialog-header-loading-sub{
                font-size:14px;
                margin-top:5px;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-type-sub-header{
            padding:3px 24px 32px 24px;
            line-height:1;
            text-align:center
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-type-sub-header.loading{
                padding:3px 24px 32px 24px;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-type-sub-header .header{
                display:inline-block;
                width:100%;
                font-size:14px;
                color:#63656e;
                line-height:1.5;
                margin:0;
                text-align:center;
                word-break:break-all;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-mark{
            display:block;
            margin:0 auto
        }
.bk-dialog-wrapper .bk-info-box .bk-dialog-mark.bk-dialog-warning,
            .bk-dialog-wrapper .bk-info-box .bk-dialog-mark.bk-dialog-error,
            .bk-dialog-wrapper .bk-info-box .bk-dialog-mark.bk-dialog-success{
                width:42px;
                height:42px;
                line-height:42px;
                font-size:36px;
                color:#fff;
                border-radius:50%;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-mark.bk-dialog-warning{
                background-color:#ffe8c3;
                color:#ff9c01;
                font-size:26px;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-mark.bk-dialog-error{
                background-color:#ffdddd;
                color:#ea3636;
            }
.bk-dialog-wrapper .bk-info-box .bk-dialog-mark.bk-dialog-success{
                background-color:#e5f6ea;
                color:#3fc06d;
            }
@keyframes loading{
    from{
        -webkit-transform:rotate(0);
                transform:rotate(0);
    }
    to{
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg);
    }
}
@-webkit-keyframes mask-fading{
    0%{
        display:block;
        background-color:rgba(0, 0, 0, 0);
    }
    100%{
        background-color:rgba(0, 0, 0, 0.6);
    }
}
@keyframes mask-fading{
    0%{
        display:block;
        background-color:rgba(0, 0, 0, 0);
    }
    100%{
        background-color:rgba(0, 0, 0, 0.6);
    }
}
@-webkit-keyframes mask-hidding{
    0%{
        background-color:rgba(0, 0, 0, 0.6);
        display:block;
    }
    100%{
        background-color:rgba(0, 0, 0, 0);
        display:none;
    }
}
@keyframes mask-hidding{
    0%{
        background-color:rgba(0, 0, 0, 0.6);
        display:block;
    }
    100%{
        background-color:rgba(0, 0, 0, 0);
        display:none;
    }
}
@-webkit-keyframes loading{
    from{
        -webkit-transform:rotate(0);
                transform:rotate(0);
    }
    to{
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg);
    }
}
@media (max-width: 768px){
    .bk-dialog{
        width:auto !important;
        margin:10px;
    }
}
.hljs{
  display:block;
  overflow-x:auto;
  padding:0.5em;
  background:white;
  color:black;
}
.hljs-comment,
.hljs-quote{
  color:#800;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-section,
.hljs-title,
.hljs-name{
  color:#008;
}
.hljs-variable,
.hljs-template-variable{
  color:#660;
}
.hljs-string,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-regexp{
  color:#080;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-meta,
.hljs-number,
.hljs-link{
  color:#066;
}
.hljs-title,
.hljs-doctag,
.hljs-type,
.hljs-attr,
.hljs-built_in,
.hljs-builtin-name,
.hljs-params{
  color:#606;
}
.hljs-attribute,
.hljs-subst{
  color:#000;
}
.hljs-formula{
  background-color:#eee;
  font-style:italic;
}
.hljs-selector-id,
.hljs-selector-class{
  color:#9B703F
}
.hljs-addition{
  background-color:#baeeba;
}
.hljs-deletion{
  background-color:#ffc8bd;
}
.hljs-doctag,
.hljs-strong{
  font-weight:bold;
}
.hljs-emphasis{
  font-style:italic;
}
.d2h-wrapper{
  text-align:left;
}
.d2h-file-header{
  height:35px;
  padding:5px 10px;
  border-bottom:1px solid #d8d8d8;
  background-color:#f7f7f7;
}
.d2h-file-stats{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  margin-left:auto;
  font-size:14px;
}
.d2h-lines-added{
  text-align:right;
  border:1px solid #b4e2b4;
  border-radius:5px 0 0 5px;
  color:#399839;
  padding:2px;
  vertical-align:middle;
}
.d2h-lines-deleted{
  text-align:left;
  border:1px solid #e9aeae;
  border-radius:0 5px 5px 0;
  color:#c33;
  padding:2px;
  vertical-align:middle;
  margin-left:1px;
}
.d2h-file-name-wrapper{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  width:100%;
  font-family:"Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size:15px;
}
.d2h-file-name{
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow-x:hidden;
}
.d2h-file-wrapper{
  border:1px solid #ddd;
  border-radius:3px;
  margin-bottom:1em;
}
.d2h-diff-table{
  width:100%;
  border-collapse:collapse;
  font-family:"Menlo", "Consolas", monospace;
  font-size:13px;
}
.d2h-files-diff{
  display:block;
  width:100%;
  height:100%;
}
.d2h-file-diff{
  overflow-y:hidden;
}
.d2h-file-side-diff{
  display:inline-block;
  overflow-x:scroll;
  overflow-y:hidden;
  width:50%;
  margin-right:-4px;
  margin-bottom:-8px;
}
.d2h-code-line{
  display:inline-block;
  white-space:nowrap;
  padding:0 8em;
}
.d2h-code-side-line{
  display:inline-block;
  white-space:nowrap;
  padding:0 4.5em;
}
.d2h-code-line del,
.d2h-code-side-line del{
  display:inline-block;
  margin-top:-1px;
  text-decoration:none;
  background-color:#ffb6ba;
  border-radius:0.2em;
}
.d2h-code-line ins,
.d2h-code-side-line ins{
  display:inline-block;
  margin-top:-1px;
  text-decoration:none;
  background-color:#97f295;
  border-radius:0.2em;
  text-align:left;
}
.d2h-code-line-prefix{
  display:inline;
  background:none;
  padding:0;
  word-wrap:normal;
  white-space:pre;
}
.d2h-code-line-ctn{
  display:inline;
  background:none;
  padding:0;
  word-wrap:normal;
  white-space:pre;
}
.line-num1{
  -webkit-box-sizing:border-box;
          box-sizing:border-box;
  float:left;
  width:3.5em;
  overflow:hidden;
  text-overflow:ellipsis;
  padding:0 0.5em 0 0.5em;
}
.line-num2{
  -webkit-box-sizing:border-box;
          box-sizing:border-box;
  float:right;
  width:3.5em;
  overflow:hidden;
  text-overflow:ellipsis;
  padding:0 0.5em 0 0.5em;
}
.d2h-code-linenumber{
  -webkit-box-sizing:border-box;
          box-sizing:border-box;
  width:7.5em;
  position:absolute;
  display:inline-block;
  background-color:#fff;
  color:rgba(0, 0, 0, 0.3);
  text-align:right;
  border:solid #eeeeee;
  border-width:0 1px 0 1px;
  cursor:pointer;
}
.d2h-code-linenumber:after{
  content:'\200b';
}
.d2h-code-side-linenumber{
  position:absolute;
  display:inline-block;
  -webkit-box-sizing:border-box;
          box-sizing:border-box;
  width:4em;
  background-color:#fff;
  color:rgba(0, 0, 0, 0.3);
  text-align:right;
  border:solid #eeeeee;
  border-width:0 1px 0 1px;
  cursor:pointer;
  overflow:hidden;
  text-overflow:ellipsis;
}
.d2h-code-side-linenumber:after{
  content:'\200b';
}
.d2h-code-side-emptyplaceholder,
.d2h-emptyplaceholder{
  background-color:#f1f1f1;
  border-color:#e1e1e1;
}
.d2h-del{
  background-color:#fee8e9;
  border-color:#e9aeae;
}
.d2h-ins{
  background-color:#dfd;
  border-color:#b4e2b4;
}
.d2h-info{
  background-color:#f8fafd;
  color:rgba(0, 0, 0, 0.3);
  border-color:#d5e4f2;
}
.d2h-file-diff .d2h-del.d2h-change{
  background-color:#fdf2d0;
}
.d2h-file-diff .d2h-ins.d2h-change{
  background-color:#ded;
}
.d2h-file-list-wrapper{
  margin-bottom:10px;
}
.d2h-file-list-wrapper a{
  text-decoration:none;
  color:#3572b0;
}
.d2h-file-list-wrapper a:visited{
  color:#3572b0;
}
.d2h-file-list-header{
  text-align:left;
}
.d2h-file-list-title{
  font-weight:bold;
}
.d2h-file-list-line{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  text-align:left;
}
.d2h-file-list{
  display:block;
  list-style:none;
  padding:0;
  margin:0;
}
.d2h-file-list > li{
  border-bottom:#ddd solid 1px;
  padding:5px 10px;
  margin:0;
}
.d2h-file-list > li:last-child{
  border-bottom:none;
}
.d2h-file-switch{
  display:none;
  font-size:10px;
  cursor:pointer;
}
.d2h-icon{
  vertical-align:middle;
  margin-right:10px;
  fill:currentColor;
}
.d2h-deleted{
  color:#c33;
}
.d2h-added{
  color:#399839;
}
.d2h-changed{
  color:#d0b44c;
}
.d2h-moved{
  color:#3572b0;
}
.d2h-tag{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  font-size:10px;
  margin-left:5px;
  padding:0 2px;
  background-color:#fff;
}
.d2h-deleted-tag{
  border:#c33 1px solid;
}
.d2h-added-tag{
  border:#399839 1px solid;
}
.d2h-changed-tag{
  border:#d0b44c 1px solid;
}
.d2h-moved-tag{
  border:#3572b0 1px solid;
}
.selecting-left .d2h-code-line,
.selecting-left .d2h-code-line *,
.selecting-right td.d2h-code-linenumber,
.selecting-right td.d2h-code-linenumber *,
.selecting-left .d2h-code-side-line,
.selecting-left .d2h-code-side-line *,
.selecting-right td.d2h-code-side-linenumber,
.selecting-right td.d2h-code-side-linenumber *{
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
.selecting-left .d2h-code-line::-moz-selection,
.selecting-left .d2h-code-line *::-moz-selection,
.selecting-right td.d2h-code-linenumber::-moz-selection,
.selecting-left .d2h-code-side-line::-moz-selection,
.selecting-left .d2h-code-side-line *::-moz-selection,
.selecting-right td.d2h-code-side-linenumber::-moz-selection,
.selecting-right td.d2h-code-side-linenumber *::-moz-selection{
  background:transparent;
}
.selecting-left .d2h-code-line::-moz-selection, .selecting-left .d2h-code-line *::-moz-selection, .selecting-right td.d2h-code-linenumber::-moz-selection, .selecting-left .d2h-code-side-line::-moz-selection, .selecting-left .d2h-code-side-line *::-moz-selection, .selecting-right td.d2h-code-side-linenumber::-moz-selection, .selecting-right td.d2h-code-side-linenumber *::-moz-selection{
  background:transparent;
}
.selecting-left .d2h-code-line::selection,
.selecting-left .d2h-code-line *::selection,
.selecting-right td.d2h-code-linenumber::selection,
.selecting-left .d2h-code-side-line::selection,
.selecting-left .d2h-code-side-line *::selection,
.selecting-right td.d2h-code-side-linenumber::selection,
.selecting-right td.d2h-code-side-linenumber *::selection{
  background:transparent;
}
.bk-diff .hljs{
    display:inline-block;
    padding:0;
    background:transparent;
    vertical-align:middle;
    overflow-y:hidden;
  }
.bk-diff .d2h-file-header{
    display:none;
  }
.bk-diff .d2h-file-diff::-webkit-scrollbar{
      width:6px;
      height:5px;
      background-color:rgba(204, 204, 204, 0);
    }
.bk-diff .d2h-file-diff::-webkit-scrollbar-thumb{
      border-radius:2px;
      background-color:#e6e9ea;
    }
.bk-diff .d2h-files-diff{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
  }
.bk-diff .d2h-files-diff .d2h-file-side-diff{
      -webkit-box-flex:1;
          -ms-flex:1 1 50%;
              flex:1 1 50%
    }
.bk-diff .d2h-files-diff .d2h-file-side-diff:nth-child(n + 2) .d2h-code-wrapper{
          border-left:1px solid #fff;
        }
.bk-diff .d2h-files-diff .d2h-file-side-diff .d2h-code-side-linenumber{
        width:60px;
        padding-right:10px;
      }
.bk-diff .d2h-info{
    background-color:transparent;
  }
.bk-diff .d2h-diff-table td{
      height:20px;
      vertical-align:middle;
      overflow:hidden;
    }
.bk-diff .d2h-file-side-diff::-webkit-scrollbar{
      width:6px;
      height:5px;
      background-color:rgba(204, 204, 204, 0);
    }
.bk-diff .d2h-file-side-diff::-webkit-scrollbar-thumb{
      border-radius:2px;
      background-color:#e6e9ea;
    }
.bk-diff .hljs-comment,
  .bk-diff .hljs-quote{
    color:#c4c6cc;
    font-style:italic;
  }
.bk-diff.dark .d2h-diff-table{
      background:#1d1d1d;
    }
.bk-diff.dark .d2h-file-side-diff:nth-child(n + 2) .d2h-code-wrapper{
          border-left-color:#313238;
        }
.bk-diff.dark .d2h-code-linenumber,
    .bk-diff.dark .d2h-code-side-linenumber{
      font-size:12px;
      color:#8f8f89;
      border:none;
      background:#212121
    }
.bk-diff.dark .d2h-code-linenumber.d2h-change, .bk-diff.dark .d2h-code-side-linenumber.d2h-change{
        background-color:#dfd;
      }
.bk-diff.dark .d2h-code-linenumber.d2h-emptyplaceholder, .bk-diff.dark .d2h-code-side-linenumber.d2h-emptyplaceholder{
        background:transparent;
      }
.bk-diff.dark .d2h-info{
      color:inherit;
    }
.bk-diff.dark .d2h-del{
      background-color:#422321 !important;
    }
.bk-diff.dark .d2h-del del{
        background:transparent;
      }
.bk-diff.dark .d2h-ins{
      background-color:#2d3324 !important;
    }
.bk-diff.dark .d2h-ins ins{
        background:transparent;
      }
.bk-diff.dark .d2h-emptyplaceholder{
      background-color:#292929 !important;
    }
.bk-diff.dark .hljs{
      color:#979ba5;
    }
.bk-diff.dark .hljs-keyword,
    .bk-diff.dark .hljs-literal,
    .bk-diff.dark .hljs-symbol,
    .bk-diff.dark .hljs-name{
      color:#3a84ff;
    }
.bk-diff.dark .hljs-link{
      color:#569cd6;
      text-decoration:underline;
    }
.bk-diff.dark .hljs-built_in,
    .bk-diff.dark .hljs-type{
      color:#4ec9b0;
    }
.bk-diff.dark .hljs-number,
    .bk-diff.dark .hljs-class{
      color:#b8d7a3;
    }
.bk-diff.dark .hljs-string,
    .bk-diff.dark .hljs-meta-string{
      color:#8f3aff;
    }
.bk-diff.dark .hljs-regexp,
    .bk-diff.dark .hljs-template-tag{
      color:#9a5334;
    }
.bk-diff.dark .hljs-subst,
    .bk-diff.dark .hljs-function,
    .bk-diff.dark .hljs-title,
    .bk-diff.dark .hljs-formula{
      color:#8f3aff;
    }
.bk-diff.dark .hljs-params{
      color:#ea3636;
    }
.bk-diff.dark .hljs-comment,
    .bk-diff.dark .hljs-quote{
      color:#63656e;
      font-style:italic;
    }
.bk-diff.dark .hljs-doctag{
      color:#608b4e;
    }
.bk-diff.dark .hljs-meta,
    .bk-diff.dark .hljs-meta-keyword,
    .bk-diff.dark .hljs-tag{
      color:#9b9b9b;
    }
.bk-diff.dark .hljs-variable,
    .bk-diff.dark .hljs-template-variable{
      color:#bd63c5;
    }
.bk-diff.dark .hljs-attr,
    .bk-diff.dark .hljs-attribute,
    .bk-diff.dark .hljs-builtin-name{
      color:#ff9c01;
    }
.bk-diff.dark .hljs-section{
      color:gold;
    }
.bk-diff.dark .hljs-emphasis{
      font-style:italic;
    }
.bk-diff.dark .hljs-strong{
      font-weight:bold;
    }
.bk-diff.dark .hljs-bullet,
    .bk-diff.dark .hljs-selector-tag,
    .bk-diff.dark .hljs-selector-id,
    .bk-diff.dark .hljs-selector-class,
    .bk-diff.dark .hljs-selector-attr,
    .bk-diff.dark .hljs-selector-pseudo{
      color:#3a84ff;
    }
.bk-diff.dark .hljs-addition{
      background-color:#144212;
      display:inline-block;
      width:100%;
    }
.bk-diff.dark .hljs-deletion{
      background-color:#600;
      display:inline-block;
      width:100%;
    }
.bk-diff.format-line-by-line tbody.d2h-diff-tbody tr:last-child,
      .bk-diff.format-line-by-line tbody.d2h-diff-tbody tr:nth-last-child(2){
        display:none;
      }
.bk-diff.format-side-by-side tbody.d2h-diff-tbody tr:last-child{
        display:none;
      }
:root{
    --font-size:12px;
}
:root .medium-font{
        --font-size:14px;
    }
:root .large-font{
        --font-size:16px;
    }
.bk-dropdown-menu{
    display:inline-block;
    position:relative
}
.bk-dropdown-menu.disabled, .bk-dropdown-menu.disabled *{
        cursor:not-allowed;
        color:#c4c6cc;
        border-color:#dcdee5 !important;
        background-color:#fafafa !important;
    }
.bk-dropdown-menu .bk-dropdown-trigger{
        font-size:12px;
        font-size:var(--font-size);
    }
.bk-dropdown-menu .bk-dropdown-trigger .bk-icon{
            -webkit-transform-origin:center;
                    transform-origin:center;
            -webkit-transition:all ease 0.2s;
            transition:all ease 0.2s
        }
.bk-dropdown-menu .bk-dropdown-trigger .bk-icon.icon-flip{
                -webkit-transform:rotate(180deg);
                        transform:rotate(180deg);
            }
.bk-dropdown-menu .bk-dropdown-trigger .bk-button{
            font-size:12px;
            font-size:var(--font-size);
        }
.bk-dropdown-menu .bk-dropdown-content{
        background:#fff;
        padding:5px 0;
        margin:0;
        z-index:2500;
        border-radius:2px;
        border:1px solid #dcdee5;
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        -webkit-transition:visibility 0s, max-height 200ms linear;
        transition:visibility 0s, max-height 200ms linear;
        visibility:hidden;
        -webkit-box-shadow:0 2px 6px rgba(51,60,72,0.1);
                box-shadow:0 2px 6px rgba(51,60,72,0.1);
        text-align:left;
        display:inline-block;
        overflow:hidden

    }
.bk-dropdown-menu .bk-dropdown-content::-webkit-scrollbar{
            width:4px;
            background-color:rgb(199, 206, 209);
        }
.bk-dropdown-menu .bk-dropdown-content::-webkit-scrollbar-thumb{
            height:5px;
            border-radius:2px;
            background-color:#e6e9ea;
        }
.bk-dropdown-menu .bk-dropdown-content.is-show{
            visibility:visible;
        }
.bk-dropdown-menu .bk-dropdown-list{
        max-height:166px;
        list-style:none;
        padding:0;
        margin:0
    }
.bk-dropdown-menu .bk-dropdown-list::-webkit-scrollbar{
            width:4px;
            height:4px;
        }
.bk-dropdown-menu .bk-dropdown-list::-webkit-scrollbar-thumb{
            border-radius:20px;
            background:#dde4eb;
            -webkit-box-shadow:inset 0 0 6px hsla(0,0%,80%,.3);
        }
.bk-dropdown-menu .bk-dropdown-list > li{
            width:100%;
            margin:0;
            display:inline-block;
        }
.bk-dropdown-menu .bk-dropdown-list > li > a{
                display:block;
                height:32px;
                line-height:33px;
                padding:0 16px;
                color:#63656e;
                font-size:12px;
                font-size:var(--font-size);
                text-decoration:none;
                white-space:nowrap
            }
.bk-dropdown-menu .bk-dropdown-list > li > a:hover{
                    background-color:#eaf3ff;
                    color:#3a84ff;
                }
.bk-dropdown-menu .bk-dropdown-list > li .bk-icon{
                margin-right:5px;
            }
.bk-dropdown-full-width .bk-dropdown-content{
        min-width:100%;
    }
.bk-dropdown-full-width .bk-dropdown-list{
        width:100%;
    }
.bk-exception{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
    width:100%;
    position:relative;
}
.bk-exception-img{
        width:480px;
        height:240px;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center
    }
.bk-exception-img.part-img{
            width:120px;
            height:100px;
        }
.bk-exception-img .exception-image{
            -o-object-fit:contain;
               object-fit:contain;
            display:block;
            height:100%;
            vertical-align:middle;
        }
.bk-exception-text{
        font-size:24px;
        color:#63656E;
        text-align:center
    }
.bk-exception-text.part-text{
            font-size:14px;
        }
.bk-form.bk-inline-form{
        display:inline-block;

    }
.bk-form.bk-inline-form .bk-form-item{
            display:inline-block;
            margin-bottom:0;
            margin-left:8px;
            vertical-align:middle
        }
.bk-form.bk-inline-form .bk-form-item:first-child{
                margin-left:0;
            }
.bk-form.bk-inline-form .bk-form-item +.bk-form-item{
                margin-top:0;
            }
.bk-form.bk-inline-form .bk-form-item .bk-label{
                width:auto !important;
                float:left;
            }
.bk-form.bk-inline-form .bk-form-item .bk-form-content{
                margin-left:0 !important;
                float:left;
            }
.bk-form.bk-inline-form .bk-label{
            width:auto;
            line-height:32px;
            display:inline-block;
            padding:0 15px 0 0;
        }
.bk-form.bk-inline-form.is-required >.bk-label:after{
                    right:5px;
                }
.bk-form.bk-inline-form .bk-form-content{
            display:inline-block;
            margin-left:0;
        }
.bk-form.bk-form-vertical .bk-label{
            width:auto;
            text-align:left;
        }
.bk-form.bk-form-vertical .bk-form-content{
            clear:both;
            margin-left:0 !important;
        }
.bk-form.bk-form-vertical .bk-form-item+.bk-form-item{
                margin-top:8px;
            }
.bk-form.bk-form-vertical .bk-form-item.bk-form-action{
                margin-top:20px;
            }
.bk-form.bk-form-vertical .bk-form-tip{
            padding:0;
            margin:10px 0 0 0;
            position:relative;
            height:auto;
            line-height:1;
            left:0;
        }
.bk-form.bk-form-vertical .bk-form-tip .bk-tip-text{
                float:none;
                vertical-align:middle;
            }
.bk-form.bk-form-vertical .bk-form-tip .bk-badge{
                margin-right:5px;
            }
.bk-form .bk-label{
        width:150px;
        min-height:32px;
        text-align:right;
        vertical-align:middle;
        line-height:32px;
        float:left;
        font-size:14px;
        font-weight:normal;
        color:#63656E;
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        padding:0 24px 0 0;
    }
.bk-form .bk-label .bk-label-text{
            display:inline-block;
            line-height:20px;
        }
.bk-form .bk-label .bk-label-text .bk-icon{
                cursor:pointer;
                color:#979BA5;
                font-size:16px;
            }
.bk-form .bk-label.has-desc > span{
            border-bottom:1px dashed #979BA5;
            cursor:pointer;
        }
.bk-form .bk-form-content{
        width:auto;
        min-height:32px;
        margin-left:150px;
        position:relative;
        outline:none;
        line-height:30px;
    }
.bk-form .bk-form-content .form-error-tip{
            font-size:12px;
            color:#ea3636;
            line-height:18px;
            margin:2px 0 0 0;
        }
.bk-form .bk-form-content .tooltips-icon{
            position:absolute;
            z-index:10;
            right:8px;
            top:8px;
            color:#ea3636;
            cursor:pointer;
            font-size:16px;
        }
.bk-form .bk-form-content >.bk-tip-text{
            font-size:14px;
            color:#63656e;
            margin:10px 0 0 0;
        }
.bk-form .bk-form-content >.bk-form-tip{
            padding:0;
            margin:10px 0 0 0;
            position:relative;
            height:auto;
            line-height:1;
            left:0;
        }
.bk-form .bk-form-content >.bk-form-tip .bk-tip-text{
                float:none;
                vertical-align:middle;
            }
.bk-form .bk-form-content >.bk-form-tip .bk-badge{
                margin-right:5px;
            }
.bk-form ::-webkit-input-placeholder{
        color:#c3cdd7;
    }
.bk-form ::-moz-placeholder{
        color:#c3cdd7;
    }
.bk-form :-ms-input-placeholder{
        color:#c3cdd7;
    }
.bk-form ::-ms-input-placeholder{
        color:#c3cdd7;
    }
.bk-form ::placeholder{
        color:#c3cdd7;
    }
.bk-form::after,
    .bk-form .bk-form-item::before{
        display:table;
        content:"";
        clear:both;
        visibility:hidden;
        font-size:0;
    }
.bk-form input:-webkit-autofill,
    .bk-form textarea:-webkit-autofill,
    .bk-form select:-webkit-autofill{
        background:#fff !important;
    }
.bk-form-item{
    position:relative;

}
.bk-form-item label{
        margin-bottom:0;
    }
.bk-form-item +.bk-form-item{
        margin-top:20px;
    }
.bk-form-item.is-required .bk-label{
            position:relative
        }
.bk-form-item.is-required .bk-label:after{
                height:8px;
                line-height:1;
                content:'*';
                color:#EA3636;
                font-size:12px;
                position:absolute;
                display:inline-block;
                vertical-align:middle;
                top:50%;
                -webkit-transform:translate(3px, -50%);
                        transform:translate(3px, -50%);
            }
.bk-form-item.is-readonly input[type="text"],
        .bk-form-item.is-readonly input[type="password"],
        .bk-form-item.is-readonly textarea,
        .bk-form-item.is-readonly select{
            background-color:#fafafa;
        }
.bk-form-item.is-disabled input[type="text"],
        .bk-form-item.is-disabled input[type="password"],
        .bk-form-item.is-disabled textarea,
        .bk-form-item.is-disabled select{
            background-color:#fafafa;
        }
.bk-form-item.is-checking .bk-form-content{
            position:relative;
        }
.bk-form-item.is-checking .bk-form-content ::after{
                content:'';
                width:100%;
                height:100%;
                position:absolute;
                z-index:1000000;
                cursor:not-allowed;
                left:0;
                right:0;
                top:0;
                bottom:0;
                margin:auto;
            }
.bk-form-item.is-danger input[type="text"],
        .bk-form-item.is-danger input[type="password"],
        .bk-form-item.is-danger input[type="number"],
        .bk-form-item.is-danger input[type="url"],
        .bk-form-item.is-danger textarea,
        .bk-form-item.is-danger select,
        .bk-form-item.is-error input[type="text"],
        .bk-form-item.is-error input[type="password"],
        .bk-form-item.is-error input[type="number"],
        .bk-form-item.is-error input[type="url"],
        .bk-form-item.is-error textarea,
        .bk-form-item.is-error select{
            border-color:#ff5656;
            color:#ff5656;
        }
.bk-form-item.is-danger .bk-textarea-wrapper, .bk-form-item.is-error .bk-textarea-wrapper{
            border-color:#ff5656;
        }
.bk-form-item.is-danger .bk-tag-selector .bk-tag-input, .bk-form-item.is-error .bk-tag-selector .bk-tag-input{
            border-color:#ff5656;
        }
.bk-form-item.is-danger .bk-form-tip .bk-tip-text, .bk-form-item.is-error .bk-form-tip .bk-tip-text{
                color:#ff5656;
            }
.bk-form-item.is-danger .bk-select, .bk-form-item.is-error .bk-select{
            border-color:#ff5656;
        }
.bk-form-item.is-warning input[type="text"],
        .bk-form-item.is-warning input[type="password"],
        .bk-form-item.is-warning textarea,
        .bk-form-item.is-warning select{
            border-color:#ffb848;
        }
.bk-form-item.is-success input[type="text"],
        .bk-form-item.is-success input[type="password"],
        .bk-form-item.is-success textarea,
        .bk-form-item.is-success select{
            border-color:#2dcb56;
        }
.bk-form-item input.bk-success +.bk-form-tip .bk-tip-text, .bk-form-item select.bk-success +.bk-form-tip .bk-tip-text, .bk-form-item textarea.bk-success +.bk-form-tip .bk-tip-text, .bk-form-item input.is-success +.bk-form-tip .bk-tip-text, .bk-form-item select.is-success +.bk-form-tip .bk-tip-text, .bk-form-item textarea.is-success +.bk-form-tip .bk-tip-text{
                color:#2dcb56;
            }
.bk-form-item input.bk-error,
    .bk-form-item select.bk-error,
    .bk-form-item textarea.bk-error,
    .bk-form-item input.is-danger,
    .bk-form-item select.is-danger,
    .bk-form-item textarea.is-danger{
        border-color:#ff5656;
        background-color:#fff4f4;
        color:#ff5656
    }
.bk-form-item input.bk-error::-webkit-input-placeholder, .bk-form-item select.bk-error::-webkit-input-placeholder, .bk-form-item textarea.bk-error::-webkit-input-placeholder, .bk-form-item input.is-danger::-webkit-input-placeholder, .bk-form-item select.is-danger::-webkit-input-placeholder, .bk-form-item textarea.is-danger::-webkit-input-placeholder{
            color:#ff5656;
        }
.bk-form-item input.bk-error::-moz-placeholder, .bk-form-item select.bk-error::-moz-placeholder, .bk-form-item textarea.bk-error::-moz-placeholder, .bk-form-item input.is-danger::-moz-placeholder, .bk-form-item select.is-danger::-moz-placeholder, .bk-form-item textarea.is-danger::-moz-placeholder{
            color:#ff5656;
        }
.bk-form-item input.bk-error:-ms-input-placeholder, .bk-form-item select.bk-error:-ms-input-placeholder, .bk-form-item textarea.bk-error:-ms-input-placeholder, .bk-form-item input.is-danger:-ms-input-placeholder, .bk-form-item select.is-danger:-ms-input-placeholder, .bk-form-item textarea.is-danger:-ms-input-placeholder{
            color:#ff5656;
        }
.bk-form-item input.bk-error::-ms-input-placeholder, .bk-form-item select.bk-error::-ms-input-placeholder, .bk-form-item textarea.bk-error::-ms-input-placeholder, .bk-form-item input.is-danger::-ms-input-placeholder, .bk-form-item select.is-danger::-ms-input-placeholder, .bk-form-item textarea.is-danger::-ms-input-placeholder{
            color:#ff5656;
        }
.bk-form-item input.bk-error::placeholder, .bk-form-item select.bk-error::placeholder, .bk-form-item textarea.bk-error::placeholder, .bk-form-item input.is-danger::placeholder, .bk-form-item select.is-danger::placeholder, .bk-form-item textarea.is-danger::placeholder{
            color:#ff5656;
        }
.bk-form-item input.bk-error +.bk-form-tip .bk-tip-text, .bk-form-item select.bk-error +.bk-form-tip .bk-tip-text, .bk-form-item textarea.bk-error +.bk-form-tip .bk-tip-text, .bk-form-item input.is-danger +.bk-form-tip .bk-tip-text, .bk-form-item select.is-danger +.bk-form-tip .bk-tip-text, .bk-form-item textarea.is-danger +.bk-form-tip .bk-tip-text{
                color:#ff5656;
            }
.bk-form-tip{
    height:36px;
    line-height:36px;
    padding:0 10px 0 35px;
    position:relative;

    position:absolute;
    left:100%;
    top:0;
}
.bk-form-tip .bk-badge{
        vertical-align:middle;
    }
.bk-form-tip .bk-tip-text{
        float:left;
        font-size:14px;
        color:#63656e;
        display:inline-block;
        padding:0;
        margin:0;
        white-space:nowrap;
    }
:root{
    --font-size:12px;
}
:root .medium-font{
        --font-size:14px;
    }
:root .large-font{
        --font-size:16px;
    }
.bk-form-control{
    position:relative;
    display:inline-block;
    width:100%;
    display:block;
    color:#63656e;
}
.bk-form-control .bk-limit-box{
        position:absolute;
        bottom:2px;
        right:7px;
        font-size:12px;
        margin:0;
        padding:0;
        color:#979ba5;
        -webkit-transform:scale(0.8, 0.8);
                transform:scale(0.8, 0.8);
    }
.bk-form-control .bk-limit-box .strong{
            color:#63656e;
        }
.bk-form-control.control-active .bk-textarea-wrapper{
            border-color:#3a84ff !important;
            background-color:#fff !important
        }
.bk-form-control.control-active .bk-textarea-wrapper::-webkit-input-placeholder{
                color:#c4c6cc !important;
            }
.bk-form-control.control-active .bk-textarea-wrapper::-moz-placeholder{
                color:#c4c6cc !important;
            }
.bk-form-control.control-active .bk-textarea-wrapper:-ms-input-placeholder{
                color:#c4c6cc !important;
            }
.bk-form-control.control-active .bk-textarea-wrapper::-ms-input-placeholder{
                color:#c4c6cc !important;
            }
.bk-form-control.control-active .bk-textarea-wrapper::placeholder{
                color:#c4c6cc !important;
            }
.bk-form-control.control-disable .bk-textarea-wrapper{
            background-color:#fafbfd;
            cursor:not-allowed;
        }
.bk-form-control.control-prepend-group{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        background-color:#f2f4f8;
    }
.bk-form-control.control-prepend-group .bk-form-input,
        .bk-form-control.control-prepend-group .bk-form-password,
        .bk-form-control.control-prepend-group .bk-form-select,
        .bk-form-control.control-prepend-group .bk-form-textarea{
            border-radius:0 2px 2px 0;
        }
.bk-form-control.control-append-group{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
    }
.bk-form-control.control-append-group .bk-form-input,
        .bk-form-control.control-append-group .bk-form-password,
        .bk-form-control.control-append-group .bk-form-select,
        .bk-form-control.control-append-group .bk-form-textarea{
            border-radius:2px 0 0 2px;
        }
.bk-form-control.control-prepend-group.control-append-group .bk-form-input,
        .bk-form-control.control-prepend-group.control-append-group .bk-form-password,
        .bk-form-control.control-prepend-group.control-append-group .bk-form-select,
        .bk-form-control.control-prepend-group.control-append-group .bk-form-textarea{
            border-radius:0;
        }
.bk-form-control .group-box{
        vertical-align:middle;
        position:relative;
        border:1px solid #c4c6cc;
        border-radius:2px;
        height:32px;
    }
.bk-form-control .group-box .group-text{
            display:inline-block;
            max-width:200px;
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
            color:#63656e;
            padding:0 15px;
            font-size:12px;
            font-size:var(--font-size);
            vertical-align:middle;
            line-height:28px
        }
.bk-form-control .group-box .group-text.bk-dropdown-menu{
                padding:0;
                overflow:visible;
                white-space:normal;
            }
.bk-form-control .group-box .group-text.bk-dropdown-menu .bk-button{
                    display:inline-block;
                    max-width:200px;
                    overflow:hidden;
                    text-overflow:ellipsis;
                    white-space:nowrap;
                    border:none;
                    border-radius:0;
                    height:30px;
                    padding-right:30px;
                }
.bk-form-control .group-box .group-text.bk-dropdown-menu .bk-button .bk-icon{
                        position:absolute;
                        right:10px;
                        top:7px;
                    }
.bk-form-control .group-box.group-prepend{
            border-right:none;
            border-radius:2px 0 0 2px;
        }
.bk-form-control .group-box.group-append{
            border-left:none;
            border-radius:0 2px 2px 0;
        }
.bk-form-control .control-icon{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        position:absolute;
        font-size:16px;
        top:50%;
        -webkit-transform:translateY(-50%);
                transform:translateY(-50%);
        color:#c4c6cc;
    }
.bk-form-control .control-icon .clear-icon{
            cursor:pointer;
            font-size:14px
        }
.bk-form-control .control-icon .clear-icon:hover{
                color:#979ba5;
            }
.bk-form-control .control-icon.left-icon{
            left:10px;
        }
.bk-form-control.with-left-icon .bk-form-input,
        .bk-form-control.with-left-icon .bk-form-password,
        .bk-form-control.with-left-icon .bk-form-select,
        .bk-form-control.with-left-icon .bk-form-textarea{
            padding-left:30px;
        }
.bk-form-control.with-right-icon .bk-form-input,
        .bk-form-control.with-right-icon .bk-form-password,
        .bk-form-control.with-right-icon .bk-form-select,
        .bk-form-control.with-right-icon .bk-form-textarea{
            padding-right:30px;
        }
.bk-form-control.with-right-icon .bk-input-number{
            position:relative;
        }
.bk-form-control.with-right-icon .bk-input-number input{
                padding-right:12px;
            }
.bk-form-input,
.bk-form-password,
.bk-form-select,
.bk-form-textarea{
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    height:32px;
    line-height:normal;
    color:#63656e;
    background-color:#fff;
    border-radius:2px;
    width:100%;
    font-size:12px;
    font-size:var(--font-size);
    box-sizing:border-box;
    border:1px solid #c4c6cc;
    padding:0 10px;
    text-align:left;
    vertical-align:middle;
    outline:none;
    resize:none;
    -webkit-transition:border linear .2s;
    transition:border linear .2s
}
.bk-form-input.only-bottom-border, .bk-form-password.only-bottom-border, .bk-form-select.only-bottom-border, .bk-form-textarea.only-bottom-border{
        border-color:transparent transparent #c4c6cc transparent
    }
.bk-form-input.only-bottom-border:focus, .bk-form-password.only-bottom-border:focus, .bk-form-select.only-bottom-border:focus, .bk-form-textarea.only-bottom-border:focus{
            border-color:transparent transparent #3a84ff transparent !important;
            -webkit-box-shadow:none;
                    box-shadow:none;
        }
.bk-form-input.only-bottom-border[disabled],
        .bk-form-input.only-bottom-border[readonly],
        .bk-form-password.only-bottom-border[disabled],
        .bk-form-password.only-bottom-border[readonly],
        .bk-form-select.only-bottom-border[disabled],
        .bk-form-select.only-bottom-border[readonly],
        .bk-form-textarea.only-bottom-border[disabled],
        .bk-form-textarea.only-bottom-border[readonly]{
            border-color:transparent transparent #dcdee5 transparent !important;
        }
.bk-form-input:focus, .bk-form-password:focus, .bk-form-select:focus, .bk-form-textarea:focus{
        border-color:#3a84ff !important;
        background-color:#fff !important
    }
.bk-form-input:focus::-webkit-input-placeholder, .bk-form-password:focus::-webkit-input-placeholder, .bk-form-select:focus::-webkit-input-placeholder, .bk-form-textarea:focus::-webkit-input-placeholder{
            color:#c4c6cc !important;
        }
.bk-form-input:focus::-moz-placeholder, .bk-form-password:focus::-moz-placeholder, .bk-form-select:focus::-moz-placeholder, .bk-form-textarea:focus::-moz-placeholder{
            color:#c4c6cc !important;
        }
.bk-form-input:focus:-ms-input-placeholder, .bk-form-password:focus:-ms-input-placeholder, .bk-form-select:focus:-ms-input-placeholder, .bk-form-textarea:focus:-ms-input-placeholder{
            color:#c4c6cc !important;
        }
.bk-form-input:focus::-ms-input-placeholder, .bk-form-password:focus::-ms-input-placeholder, .bk-form-select:focus::-ms-input-placeholder, .bk-form-textarea:focus::-ms-input-placeholder{
            color:#c4c6cc !important;
        }
.bk-form-input:focus::placeholder, .bk-form-password:focus::placeholder, .bk-form-select:focus::placeholder, .bk-form-textarea:focus::placeholder{
            color:#c4c6cc !important;
        }
.bk-form-input::-webkit-input-placeholder, .bk-form-password::-webkit-input-placeholder, .bk-form-select::-webkit-input-placeholder, .bk-form-textarea::-webkit-input-placeholder{
        color:#c4c6cc;
    }
.bk-form-input::-moz-placeholder, .bk-form-password::-moz-placeholder, .bk-form-select::-moz-placeholder, .bk-form-textarea::-moz-placeholder{
        color:#c4c6cc;
    }
.bk-form-input:-ms-input-placeholder, .bk-form-password:-ms-input-placeholder, .bk-form-select:-ms-input-placeholder, .bk-form-textarea:-ms-input-placeholder{
        color:#c4c6cc;
    }
.bk-form-input::-ms-input-placeholder, .bk-form-password::-ms-input-placeholder, .bk-form-select::-ms-input-placeholder, .bk-form-textarea::-ms-input-placeholder{
        color:#c4c6cc;
    }
.bk-form-input::placeholder, .bk-form-password::placeholder, .bk-form-select::placeholder, .bk-form-textarea::placeholder{
        color:#c4c6cc;
    }
.bk-form-input[readonly], .bk-form-password[readonly], .bk-form-select[readonly], .bk-form-textarea[readonly]{
        background-color:#fafbfd !important;
        cursor:default;
        border-color:#dcdee5 !important;
    }
.bk-form-input[disabled], .bk-form-password[disabled], .bk-form-select[disabled], .bk-form-textarea[disabled]{
        background-color:#fafbfd !important;
        cursor:not-allowed;
        border-color:#dcdee5 !important;
    }
.bk-input-text,
.bk-input-textarea,
.bk-input-password,
.bk-input-number,
.bk-input-email,
.bk-input-url,
.bk-input-date{
    width:100%;
}
.bk-input-number{
    position:relative;
}
.bk-input-number input{
        padding-right:12px
    }
.bk-input-number input[type="number"]::-webkit-outer-spin-button,.bk-input-number input[type="number"]::-webkit-inner-spin-button{
                -webkit-appearance:none;
                        appearance:none;
            }
.bk-input-number input[type="number"]{
            -moz-appearance:textfield;
        }
.bk-input-number .input-number-option{
        position:absolute;
        right:2px;
        top:1px;
        bottom:1px;
        width:26px;
        text-align:center;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
        background:#fff;
    }
.bk-input-number .input-number-option .number-option-item{
            -webkit-box-flex:1;
                -ms-flex:auto;
                    flex:auto;
            width:100%;
            max-height:45%;
            color:#979ba5;
            font-size:20px;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center
        }
.bk-input-number .input-number-option .number-option-item:hover{
                background:rgba(244, 246, 250, 1);
                cursor:pointer;
            }
.bk-textarea-wrapper{
    border:1px solid #c4c6cc;
    border-radius:2px;
}
.bk-textarea-wrapper .bk-form-textarea{
        border:none;
        height:auto
    }
.bk-textarea-wrapper .bk-form-textarea.textarea-maxlength{
            margin-bottom:16px;
        }
.bk-form-textarea{
    min-height:70px;
    line-height:20px;
    padding:5px 10px;
    line-height:1.5;
}
.bk-input-wrapper-small .group-box{
        height:26px;
    }
.bk-input-wrapper-small .group-box .group-text{
            font-size:12px;
            line-height:24px
        }
.bk-input-wrapper-small .group-box .group-text.bk-dropdown-menu{
                line-height:unset;
            }
.bk-input-wrapper-small .group-box .group-text.bk-dropdown-menu .bk-button{
                    height:24px;
                    line-height:24px;
                }
.bk-input-wrapper-small .group-box .group-text.bk-dropdown-menu .bk-button .bk-icon{
                        top:4px;
                    }
.bk-input-wrapper-small .input-number-option .number-option-item{
            font-size:14px;
        }
.bk-input-wrapper-large .group-box{
        height:38px;
    }
.bk-input-wrapper-large .group-box .group-text{
            font-size:14px;
            line-height:36px
        }
.bk-input-wrapper-large .group-box .group-text.bk-dropdown-menu{
                line-height:unset;
            }
.bk-input-wrapper-large .group-box .group-text.bk-dropdown-menu .bk-button{
                    height:36px;
                    line-height:36px;
                }
.bk-input-wrapper-large .group-box .group-text.bk-dropdown-menu .bk-button .bk-icon{
                        top:10px;
                    }
.bk-input-wrapper-large .input-number-option .number-option-item{
            font-size:22px;
        }
.bk-input-small{
    height:26px;
    font-size:12px;
    line-height:26px;
}
.bk-input-large{
    height:38px;
    font-size:14px;
    line-height:38px;
}
.large-font .bk-input-large,
    .large-font .bk-input-small,
    .large-font .group-text,
    .medium-font .bk-input-large,
    .medium-font .bk-input-small,
    .medium-font .group-text{
        font-size:12px !important;
        font-size:var(--font-size) !important;
    }
.bk-loading{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    margin:auto;
    background-color:rgba(255, 255, 255, 0.9);
    z-index:100;
}
.bk-loading .bk-loading-wrapper{
        text-align:center;
        line-height:1;
        position:absolute;
        left:50%;
        top:50%;
        transform:translate(-50%, -50%);
        -webkit-transform:translate(-50%, -50%);
    }
.bk-loading-title{
        text-align:center;
        font-size:14px;
        color:#63656e;
        line-height:normal;
        line-height:initial;
        margin-top:5px;
    }
.bk-loading .bk-loading1{
        position:relative;
        width:75px;
        height:14px;
        margin:auto;
        display:inline-block;
    }
.bk-loading .bk-loading1 .point{
            position:absolute;
            top:0;
            width:14px;
            height:14px;
            -webkit-animation-name:scale-animate;
                    animation-name:scale-animate;
            -webkit-animation-duration:.8s;
                    animation-duration:.8s;
            -webkit-animation-iteration-count:infinite;
                    animation-iteration-count:infinite;
            -webkit-animation-direction:normal;
                    animation-direction:normal;
            -webkit-transform:scale(.6);
                    transform:scale(.6);
            border-radius:19px;
        }
.bk-loading .bk-loading1 .point1{
            background-color:#fd6154;
            left:0;
            -webkit-animation-delay:0.1s;
                    animation-delay:0.1s;
        }
.bk-loading .bk-loading1 .point2{
            background-color:#ffb726;
            left:20px;
            -webkit-animation-delay:0.25s;
                    animation-delay:0.25s;
        }
.bk-loading .bk-loading1 .point3{
            background-color:#4cd084;
            left:40px;
            -webkit-animation-delay:0.4s;
                    animation-delay:0.4s;
        }
.bk-loading .bk-loading1 .point4{
            background-color:#57a3f1;
            left:60px;
            -webkit-animation-delay:0.55s;
                    animation-delay:0.55s;
        }
.bk-loading .bk-loading1.bk-black .point1,
            .bk-loading .bk-loading1.bk-black .point2,
            .bk-loading .bk-loading1.bk-black .point3,
            .bk-loading .bk-loading1.bk-black .point4{
                background:#979ba5;
            }
.bk-dot-loading,
.bk-loading1{
    position:relative;
    width:75px;
    height:14px;
    margin:auto;
    display:inline-block;
}
.bk-dot-loading .point, .bk-loading1 .point{
        position:absolute;
        top:0;
        width:14px;
        height:14px;
        -webkit-animation-name:scale-animate;
                animation-name:scale-animate;
        -webkit-animation-duration:.8s;
                animation-duration:.8s;
        -webkit-animation-iteration-count:infinite;
                animation-iteration-count:infinite;
        -webkit-animation-direction:normal;
                animation-direction:normal;
        -webkit-transform:scale(.6);
                transform:scale(.6);
        border-radius:19px;
    }
.bk-dot-loading .point1, .bk-loading1 .point1{
        background-color:#fd6154;
        left:0;
        -webkit-animation-delay:0.1s;
                animation-delay:0.1s;
    }
.bk-dot-loading .point2, .bk-loading1 .point2{
        background-color:#ffb726;
        left:20px;
        -webkit-animation-delay:0.25s;
                animation-delay:0.25s;
    }
.bk-dot-loading .point3, .bk-loading1 .point3{
        background-color:#4cd084;
        left:40px;
        -webkit-animation-delay:0.4s;
                animation-delay:0.4s;
    }
.bk-dot-loading .point4, .bk-loading1 .point4{
        background-color:#57a3f1;
        left:60px;
        -webkit-animation-delay:0.55s;
                animation-delay:0.55s;
    }
.bk-dot-loading.bk-size-mini, .bk-loading1.bk-size-mini{
        width:30px;
    }
.bk-dot-loading.bk-size-mini .point, .bk-loading1.bk-size-mini .point{
            width:6px;
            height:6px;
        }
.bk-dot-loading.bk-size-mini .point1, .bk-loading1.bk-size-mini .point1{
            left:0;
        }
.bk-dot-loading.bk-size-mini .point2, .bk-loading1.bk-size-mini .point2{
            left:10px;
        }
.bk-dot-loading.bk-size-mini .point3, .bk-loading1.bk-size-mini .point3{
            left:20px;
        }
.bk-dot-loading.bk-size-mini .point4, .bk-loading1.bk-size-mini .point4{
            left:30px;
        }
.bk-dot-loading.bk-size-small, .bk-loading1.bk-size-small{
        width:45px;
    }
.bk-dot-loading.bk-size-small .point, .bk-loading1.bk-size-small .point{
            width:10px;
            height:10px;
        }
.bk-dot-loading.bk-size-small .point1, .bk-loading1.bk-size-small .point1{
            left:0;
        }
.bk-dot-loading.bk-size-small .point2, .bk-loading1.bk-size-small .point2{
            left:15px;
        }
.bk-dot-loading.bk-size-small .point3, .bk-loading1.bk-size-small .point3{
            left:30px;
        }
.bk-dot-loading.bk-size-small .point4, .bk-loading1.bk-size-small .point4{
            left:45px;
        }
.bk-dot-loading.bk-black .point1,
        .bk-dot-loading.bk-black .point2,
        .bk-dot-loading.bk-black .point3,
        .bk-dot-loading.bk-black .point4,
        .bk-loading1.bk-black .point1,
        .bk-loading1.bk-black .point2,
        .bk-loading1.bk-black .point3,
        .bk-loading1.bk-black .point4{
            background:#979ba5;
        }
.bk-dot-loading.bk-primary .point1,
        .bk-dot-loading.bk-primary .point2,
        .bk-dot-loading.bk-primary .point3,
        .bk-dot-loading.bk-primary .point4,
        .bk-loading1.bk-primary .point1,
        .bk-loading1.bk-primary .point2,
        .bk-loading1.bk-primary .point3,
        .bk-loading1.bk-primary .point4{
            background:#3c96ff;
        }
.bk-dot-loading.bk-danger .point1,
        .bk-dot-loading.bk-danger .point2,
        .bk-dot-loading.bk-danger .point3,
        .bk-dot-loading.bk-danger .point4,
        .bk-loading1.bk-danger .point1,
        .bk-loading1.bk-danger .point2,
        .bk-loading1.bk-danger .point3,
        .bk-loading1.bk-danger .point4{
            background:#ff5656;
        }
.bk-dot-loading.bk-warning .point1,
        .bk-dot-loading.bk-warning .point2,
        .bk-dot-loading.bk-warning .point3,
        .bk-dot-loading.bk-warning .point4,
        .bk-loading1.bk-warning .point1,
        .bk-loading1.bk-warning .point2,
        .bk-loading1.bk-warning .point3,
        .bk-loading1.bk-warning .point4{
            background:#ffb848;
        }
.bk-dot-loading.bk-default .point1,
        .bk-dot-loading.bk-default .point2,
        .bk-dot-loading.bk-default .point3,
        .bk-dot-loading.bk-default .point4,
        .bk-loading1.bk-default .point1,
        .bk-loading1.bk-default .point2,
        .bk-loading1.bk-default .point3,
        .bk-loading1.bk-default .point4{
            background:#979BA5;
        }
.bk-spin-loading,
.bk-loading2{
    width:39px;
    height:39px;
    position:relative;
    margin:auto;
    display:inline-block;
    vertical-align:middle;
}
.bk-spin-loading .rotate,
.bk-loading2 .rotate{
    position:absolute;
    top:77%;
    right:43%;
    background-color:none;
    background-color:#39424e\9\0;
    width:6px;
    height:8px;
    -webkit-transform-origin:50% -10px;
            transform-origin:50% -10px;
    border-radius:8px;
    -webkit-transform:scale(0.4);
            transform:scale(0.4);
    -webkit-animation-name:fade;
            animation-name:fade;
    -webkit-animation-duration:1.2s;
            animation-duration:1.2s;
    -webkit-animation-iteration-count:infinite;
            animation-iteration-count:infinite;
    -webkit-animation-direction:normal;
            animation-direction:normal;
}
.bk-spin-loading.bk-spin-loading-success .rotate,
.bk-loading2.bk-spin-loading-success .rotate{
    background:#30d878\9\0;
    -webkit-animation-name:fadeSuccess;
            animation-name:fadeSuccess;
}
.bk-spin-loading.bk-spin-loading-danger .rotate,
.bk-loading2.bk-spin-loading-danger .rotate{
    background:#ff5656\9\0;
    -webkit-animation-name:fadeDanger;
            animation-name:fadeDanger;
}
.bk-spin-loading.bk-spin-loading-warning .rotate,
.bk-loading2.bk-spin-loading-warning .rotate{
    background:#ffb400\9\0;
    -webkit-animation-name:fadeWarning;
            animation-name:fadeWarning;
}
.bk-spin-loading.bk-spin-loading-primary .rotate,
.bk-loading2.bk-spin-loading-primary .rotate{
    background:#3c96ff\9\0;
    -webkit-animation-name:fadePrimary;
            animation-name:fadePrimary;
}
.bk-spin-loading.bk-spin-loading-white .rotate,
.bk-loading2.bk-spin-loading-white .rotate{
    background:#fff\9\0;
    -webkit-animation-name:fadeWhite;
            animation-name:fadeWhite;
}
.bk-spin-loading .rotate1,
.bk-loading2 .rotate1{
    -webkit-animation-delay:0.45s;
            animation-delay:0.45s;
    -webkit-transform:rotate(-90deg);
            transform:rotate(-90deg);
}
.bk-spin-loading .rotate2,
.bk-loading2 .rotate2{
    -webkit-animation-delay:0.6s;
            animation-delay:0.6s;
    -webkit-transform:rotate(-45deg);
            transform:rotate(-45deg);
}
.bk-spin-loading .rotate3,
.bk-loading2 .rotate3{
    -webkit-animation-delay:0.75s;
            animation-delay:0.75s;
    -webkit-transform:rotate(0deg);
            transform:rotate(0deg);
}
.bk-spin-loading .rotate4,
.bk-loading2 .rotate4{
    -webkit-animation-delay:0.9s;
            animation-delay:0.9s;
    -webkit-transform:rotate(45deg);
            transform:rotate(45deg);
}
.bk-spin-loading .rotate5,
.bk-loading2 .rotate5{
    -webkit-animation-delay:1.05s;
            animation-delay:1.05s;
    -webkit-transform:rotate(90deg);
            transform:rotate(90deg);
}
.bk-spin-loading .rotate6,
.bk-loading2 .rotate6{
    -webkit-animation-delay:1.2s;
            animation-delay:1.2s;
    -webkit-transform:rotate(135deg);
            transform:rotate(135deg);
}
.bk-spin-loading .rotate7,
.bk-loading2 .rotate7{
    -webkit-animation-delay:1.35s;
            animation-delay:1.35s;
    -webkit-transform:rotate(180deg);
            transform:rotate(180deg);
}
.bk-spin-loading .rotate8,
.bk-loading2 .rotate8{
    -webkit-animation-delay:1.5s;
            animation-delay:1.5s;
    -webkit-transform:rotate(-135deg);
            transform:rotate(-135deg);
}
.bk-spin-loading.bk-spin-loading-large,
.bk-loading2.bk-spin-loading-large{
    width:69px;
    height:69px;
}
.bk-spin-loading.bk-spin-loading-large .rotate,
.bk-loading2.bk-spin-loading-large .rotate{
    width:10px;
    height:14px;
    -webkit-transform-origin:50% -18px;
            transform-origin:50% -18px;
}
.bk-spin-loading.bk-spin-loading-small,
.bk-loading2.bk-spin-loading-small{
    width:27px;
    height:27px;
}
.bk-spin-loading.bk-spin-loading-small .rotate,
.bk-loading2.bk-spin-loading-small .rotate{
    width:4px;
    height:5px;
    -webkit-transform-origin:50% -7px;
            transform-origin:50% -7px;
}
.bk-spin-loading.bk-spin-loading-mini,
.bk-loading2.bk-spin-loading-mini{
    width:16px;
    height:16px;
}
.bk-spin-loading.bk-spin-loading-mini .rotate,
.bk-loading2.bk-spin-loading-mini .rotate{
    width:2px;
    height:3px;
    -webkit-transform-origin:50% -4px;
            transform-origin:50% -4px;
}
@keyframes scale-animate{
    0%{
        -webkit-transform:scale(1);
                transform:scale(1);
    }

    100%{
        -webkit-transform:scale(.6);
                transform:scale(.6);
    }
}
@-webkit-keyframes scale-animate{
    0%{
        -webkit-transform:scale(1);
    }

    100%{
        -webkit-transform:scale(.6);
    }
}
.bk-spin-loading,
.bk-loading2{
    width:39px;
    height:39px;
    position:relative;
    margin:auto;
    display:inline-block;
    vertical-align:middle;
}
.bk-spin-loading .rotate, .bk-loading2 .rotate{
        position:absolute;
        top:77%;
        right:43%;
        background-color:none;
        background-color:#39424e\9\0;
        width:6px;
        height:8px;
        -webkit-transform-origin:50% -10px;
                transform-origin:50% -10px;
        border-radius:8px;
        -webkit-transform:scale(0.4);
                transform:scale(0.4);
        -webkit-animation-name:fade;
                animation-name:fade;
        -webkit-animation-duration:1.2s;
                animation-duration:1.2s;
        -webkit-animation-iteration-count:infinite;
                animation-iteration-count:infinite;
        -webkit-animation-direction:normal;
                animation-direction:normal;
    }
.bk-spin-loading.bk-spin-loading-success .rotate, .bk-loading2.bk-spin-loading-success .rotate{
            background:#30d878\9\0;
            -webkit-animation-name:fadeSuccess;
                    animation-name:fadeSuccess;
        }
.bk-spin-loading.bk-spin-loading-danger .rotate, .bk-loading2.bk-spin-loading-danger .rotate{
            background:#ff5656\9\0;
            -webkit-animation-name:fadeDanger;
                    animation-name:fadeDanger;
        }
.bk-spin-loading.bk-spin-loading-warning .rotate, .bk-loading2.bk-spin-loading-warning .rotate{
            background:#ffb400\9\0;
            -webkit-animation-name:fadeWarning;
                    animation-name:fadeWarning;
        }
.bk-spin-loading.bk-spin-loading-primary .rotate, .bk-loading2.bk-spin-loading-primary .rotate{
            background:#3c96ff\9\0;
            -webkit-animation-name:fadePrimary;
                    animation-name:fadePrimary;
        }
.bk-spin-loading.bk-spin-loading-white .rotate, .bk-loading2.bk-spin-loading-white .rotate{
            background:#fff\9\0;
            -webkit-animation-name:fadeWhite;
                    animation-name:fadeWhite;
        }
.bk-spin-loading .rotate1, .bk-loading2 .rotate1{
        -webkit-animation-delay:0.45s;
                animation-delay:0.45s;
        -webkit-transform:rotate(-90deg);
                transform:rotate(-90deg);
    }
.bk-spin-loading .rotate2, .bk-loading2 .rotate2{
        -webkit-animation-delay:0.6s;
                animation-delay:0.6s;
        -webkit-transform:rotate(-45deg);
                transform:rotate(-45deg);
    }
.bk-spin-loading .rotate3, .bk-loading2 .rotate3{
        -webkit-animation-delay:0.75s;
                animation-delay:0.75s;
        -webkit-transform:rotate(0deg);
                transform:rotate(0deg);
    }
.bk-spin-loading .rotate4, .bk-loading2 .rotate4{
        -webkit-animation-delay:0.9s;
                animation-delay:0.9s;
        -webkit-transform:rotate(45deg);
                transform:rotate(45deg);
    }
.bk-spin-loading .rotate5, .bk-loading2 .rotate5{
        -webkit-animation-delay:1.05s;
                animation-delay:1.05s;
        -webkit-transform:rotate(90deg);
                transform:rotate(90deg);
    }
.bk-spin-loading .rotate6, .bk-loading2 .rotate6{
        -webkit-animation-delay:1.2s;
                animation-delay:1.2s;
        -webkit-transform:rotate(135deg);
                transform:rotate(135deg);
    }
.bk-spin-loading .rotate7, .bk-loading2 .rotate7{
        -webkit-animation-delay:1.35s;
                animation-delay:1.35s;
        -webkit-transform:rotate(180deg);
                transform:rotate(180deg);
    }
.bk-spin-loading .rotate8, .bk-loading2 .rotate8{
        -webkit-animation-delay:1.5s;
                animation-delay:1.5s;
        -webkit-transform:rotate(-135deg);
                transform:rotate(-135deg);
    }
.bk-spin-loading.bk-spin-loading-large, .bk-loading2.bk-spin-loading-large{
        width:69px;
        height:69px;
    }
.bk-spin-loading.bk-spin-loading-large .rotate, .bk-loading2.bk-spin-loading-large .rotate{
            width:10px;
            height:14px;
            -webkit-transform-origin:50% -18px;
                    transform-origin:50% -18px;
        }
.bk-spin-loading.bk-spin-loading-small, .bk-loading2.bk-spin-loading-small{
        width:27px;
        height:27px;
    }
.bk-spin-loading.bk-spin-loading-small .rotate, .bk-loading2.bk-spin-loading-small .rotate{
            width:4px;
            height:5px;
            -webkit-transform-origin:50% -7px;
                    transform-origin:50% -7px;
        }
.bk-spin-loading.bk-spin-loading-mini, .bk-loading2.bk-spin-loading-mini{
        width:16px;
        height:16px;
    }
.bk-spin-loading.bk-spin-loading-mini .rotate, .bk-loading2.bk-spin-loading-mini .rotate{
            width:2px;
            height:3px;
            -webkit-transform-origin:50% -4px;
                    transform-origin:50% -4px;
        }
@keyframes fade{
    0%{
        background-color:#39424e;
    }

    100%{
        background-color:none;
    }
}
@-webkit-keyframes fade{
    0%{
        background-color:#39424e;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeSuccess{
    0%{
        background-color:#2dcb56;
    }

    100%{
        background-color:none;
    }
}
@-webkit-keyframes fadeSuccess{
    0%{
        background-color:#2dcb56;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadePrimary{
    0%{
        background-color:#3c96ff;
    }

    100%{
        background-color:none;
    }
}
@-webkit-keyframes fadePrimary{
    0%{
        background-color:#3c96ff;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeDanger{
    0%{
        background-color:#ff5656;
    }

    100%{
        background-color:none;
    }
}
@-webkit-keyframes fadeDanger{
    0%{
        background-color:#ff5656;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeWarning{
    0%{
        background-color:#ffb848;
    }

    100%{
        background-color:none;
    }
}
@-webkit-keyframes fadeWarning{
    0%{
        background-color:#ffb848;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeWhite{
    0%{
        background-color:rgb(255, 255, 255);
    }

    100%{
        background-color:none;
    }
}
@-webkit-keyframes fadeWhite{
    0%{
        background-color:rgb(255, 255, 255);
    }

    100%{
        background-color:none;
    }
}
.bk-loading-box,
.bk-loading{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    margin:auto;
    background-color:rgba(255, 255, 255, 0.9);
    z-index:100;
}
.bk-loading-box .bk-loading-wrapper, .bk-loading .bk-loading-wrapper{
        text-align:center;
        line-height:1;
        position:absolute;
        left:50%;
        top:50%;
        -webkit-transform:translate(-50%, -50%);
                transform:translate(-50%, -50%);
    }
.bk-loading-box-title, .bk-loading-title{
        text-align:center;
        font-size:14px;
        color:#63656e;
        line-height:normal;
        line-height:initial;
        margin-top:5px;
    }
@keyframes fade{
    0%{
        background-color:#39424e;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeSuccess{
    0%{
        background-color:#30d878;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadePrimary{
    0%{
        background-color:#3c96ff;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeDanger{
    0%{
        background-color:#ff5656;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeWarning{
    0%{
        background-color:#ffb400;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeWhite{
    0%{
        background-color:white;
    }

    100%{
        background-color:none;
    }
}
@-webkit-keyframes animate{
    0%{
        -webkit-transform:scale(.5);
                transform:scale(.5)
    }

    100%{
        -webkit-transform:scale(.3);
                transform:scale(.3)
    }
}
@keyframes animate{
    0%{
        -webkit-transform:scale(.5);
                transform:scale(.5)
    }

    100%{
        -webkit-transform:scale(.3);
                transform:scale(.3)
    }
}
.bk-default-loading{
    display:inline-block;
}
.bk-default-loading .bk-loading-wrapper{
        display:-webkit-inline-box;
        display:-ms-inline-flexbox;
        display:inline-flex;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
        position:absolute;
        width:100%;
        height:100%;
        left:unset;
        top:0;
        transform:unset;
        -webkit-transform:unset;
        background:inherit;
        padding:0 25%
    }
.bk-default-loading .bk-loading-wrapper :nth-child(1){
            margin:unset;
          }
.bk-message{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
        -ms-flex-direction:row;
            flex-direction:row;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    position:fixed;
    left:50%;
    padding:10px 15px;
    background:#f0f8ff;
    border:1px solid #e1ecff;
    border-radius:2px;
    -webkit-box-shadow:0px 2px 4px 0px rgba(16, 37, 74, 0.1);
            box-shadow:0px 2px 4px 0px rgba(16, 37, 74, 0.1);
    z-index:2500;
    -webkit-transform:translateX(-50%);
            transform:translateX(-50%);
    -webkit-transition:top .3s linear;
    transition:top .3s linear;
}
.bk-message-primary{
    background:#f0f8ff;
    border-color:#e1ecff;
}
.bk-message-primary .bk-message-icon .bk-icon{
        color:#3a84ff;
    }
.bk-message-primary .bk-message-close .icon-close{
        color:#a3c5fd;
    }
.bk-message-error{
    background:#ffeded;
    border-color:#ffdddd;
    -webkit-box-shadow:0px 2px 4px 0px rgba(86, 34, 34, 0.1);
            box-shadow:0px 2px 4px 0px rgba(86, 34, 34, 0.1);
}
.bk-message-error .bk-message-icon .bk-icon{
        color:#ea3636;
    }
.bk-message-error .bk-message-close .icon-close{
        color:#fd9c9c;
    }
.bk-message-warning{
    background:#fff4e2;
    border-color:#ffe8c3;
    -webkit-box-shadow:0px 2px 4px 0px rgba(75, 51, 13, 0.1);
            box-shadow:0px 2px 4px 0px rgba(75, 51, 13, 0.1);
}
.bk-message-warning .bk-message-icon .bk-icon{
        color:#ff9c01;
    }
.bk-message-warning .bk-message-close .icon-close{
        color:#ffd695;
    }
.bk-message-success{
    background:#f2fff4;
    border-color:#dcffe2;
    -webkit-box-shadow:0px 2px 4px 0px rgba(16, 68, 29, 0.1);
            box-shadow:0px 2px 4px 0px rgba(16, 68, 29, 0.1);
}
.bk-message-success .bk-message-icon .bk-icon{
        color:#2dcb56;
    }
.bk-message-success .bk-message-close .icon-close{
        color:#94f5a4;
    }
.bk-message-icon{
    -ms-flex-item-align:start;
        align-self:flex-start;
    -ms-flex-negative:0;
        flex-shrink:0;
    margin-top:1px;
    margin-right:10px;
    color:#ffffff;
}
.bk-message-icon .bk-icon{
        display:block;
        width:18px;
        height:18px;
        line-height:18px;
        font-size:16px;
        text-align:center;
        color:#ffffff;
        border-radius:50%;
    }
.bk-message-content{
    box-flex:1;
    -webkit-box-flex:1;
        -ms-flex-positive:1;
            flex-grow:1;
    -ms-flex:1;
        flex:1;
    min-width:230px;
    max-width:538px;
    line-height:20px;
    font-size:14px;
    text-align:left;
    color:#63656e;
    word-break:break-all
}
.bk-message-content.ellipsis{
        overflow:hidden;
        white-space:nowrap;
        text-overflow:ellipsis;
    }
.bk-message-content.multi-ellipsis{
        overflow:hidden;
        text-overflow:ellipsis;
        display:-webkit-box;
        -webkit-line-clamp:var(--line);
        -webkit-box-orient:vertical;
    }
.bk-message-close{
    -ms-flex-item-align:start;
        align-self:flex-start;
    -ms-flex-negative:0;
        flex-shrink:0;
    text-align:center;
}
.bk-message-close .bk-icon{
        display:block;
        margin-left:30px;
        width:20px;
        height:20px;
        line-height:20px;
        color:#979ba5;
        font-size:18px;
        font-weight:bold;
        border-radius:50%;
        cursor:pointer
    }
.bk-message-close .bk-icon:hover{
            background-color:#f0f1f5;
        }
.bk-message-copy{
    font-size:14px;
    -ms-flex-item-align:end;
        align-self:flex-end;
    color:#3a84ff;
    cursor:pointer;
    margin-left:5px;
    line-height:20px;
}
.bk-message-copy.copied{
    color:#979ba5;
    cursor:default;
}
.vertical-move-enter,
.vertical-move-leave-to{
    opacity:0;
    margin-top:-50px;
}
.vertical-move-enter-active,
.vertical-move-leava-active{
    -webkit-transition:margin .2s linear;
    transition:margin .2s linear;
}
.bk-notify{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
        -ms-flex-direction:row;
            flex-direction:row;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    position:fixed;
    padding:24px;
    width:360px;
    background:rgba(255,255,255,1);
    -webkit-box-shadow:0px 3px 6px 0px rgba(0,0,0,0.15);
            box-shadow:0px 3px 6px 0px rgba(0,0,0,0.15);
    border-radius:2px;
    border:1px solid rgba(240,241,245,1);
    z-index:2500;
    -webkit-transition:top .3s linear, bottom .3s linear;
    transition:top .3s linear, bottom .3s linear
}
.bk-notify.center{
        left:50%;
        -webkit-transform:translateX(-50%);
                transform:translateX(-50%);
    }
.bk-notify-primary .bk-notify-icon .bk-icon{
        color:#3a84ff;
    }
.bk-notify-error .bk-notify-icon .bk-icon{
        color:#ea3636;
    }
.bk-notify-warning .bk-notify-icon .bk-icon{
        color:#ff9c01;
    }
.bk-notify-success .bk-notify-icon .bk-icon{
        color:#2dcb56;
    }
.bk-notify-icon{
    -ms-flex-item-align:start;
        align-self:flex-start;
    -ms-flex-negative:0;
        flex-shrink:0;
    margin-top:1px;
    margin-right:5px;
    color:#ffffff;
}
.bk-notify-icon .bk-icon{
        display:block;
        width:18px;
        height:18px;
        line-height:18px;
        font-size:18px;
        text-align:center;
        color:#ffffff;
        border-radius:50%;
    }
.bk-notify-content{
    box-flex:1;
    -webkit-box-flex:1;
        -ms-flex-positive:1;
            flex-grow:1;
    line-height:20px;
    font-size:14px;
    text-align:left;
    color:#63656e;
    background-color:inherit;
    word-break:break-all;
}
.bk-notify-content .bk-notify-content-title{
        margin-top:0;
        margin-bottom:4px;
        font-size:14px;
        font-weight:bold;
    }
.bk-notify-content .bk-notify-content-text{
        position:relative;
        background-color:inherit
    }
.bk-notify-content .bk-notify-content-text.limitLine{
            overflow:hidden;
        }
.bk-notify-content .bk-notify-content-text .showMoreBtn{
            display:inline-block;
            position:absolute;
            right:0;
            bottom:0;
            padding:0 0 0 10px;
            color:#3a84ff;
            background-color:inherit;
            border:none;
            outline:none;
        }
.bk-notify-close{
    text-align:center;
    position:absolute;
    right:10px;
    top:10px;
}
.bk-notify-close .bk-icon{
        display:block;
        width:20px;
        height:20px;
        line-height:20px;
        color:#979ba5;
        font-size:20px;
        font-weight:bold;
        border-radius:50%;
        cursor:pointer
    }
.bk-notify-close .bk-icon:hover{
            background-color:#f0f1f5;
        }
.placement-slide-enter,
.placement-slide-leave-to{
    opacity:0
}
.placement-slide-enter.right, .placement-slide-leave-to.right{
        -webkit-transform:translateX(100%);
                transform:translateX(100%);
    }
.placement-slide-enter.left, .placement-slide-leave-to.left{
        -webkit-transform:translateX(-100%);
                transform:translateX(-100%);
    }
.placement-slide-enter-active,
.placement-slide-leava-active{
    -webkit-transition:opacity .2s linear, -webkit-transform .3s linear;
    transition:opacity .2s linear, -webkit-transform .3s linear;
    transition:transform .3s linear, opacity .2s linear;
    transition:transform .3s linear, opacity .2s linear, -webkit-transform .3s linear;
}
.bk-page{
    overflow:hidden;
    white-space:normal;
}
.bk-page .icon-angle-right, .bk-page .icon-angle-left{
        line-height:36px;
        font-size:22px;
    }
.bk-page a{
        text-decoration:none;
    }
.bk-page .bk-page-count{
        font-size:12px;
        margin-top:2px;
    }
.bk-page .bk-page-count-left{
            float:left;
        }
.bk-page .bk-page-count-right{
            float:right;
            margin-left:12px;
        }
.bk-page .bk-page-count-small{
            line-height:34px;
            height:34px;
        }
.bk-page .bk-page-count > span{
            display:inline-block;
            vertical-align:middle;
        }
.bk-page .bk-page-count .bk-select{
            min-width:60px;
            display:inline-block;
            vertical-align:middle;
            text-align:left;
            margin:0 4px;
        }
.bk-page .bk-page-count .bk-select .bk-selected{
                padding:0 22px 0 10px;
            }
.bk-page .bk-page-count .bk-total-page{
            display:inline-block;
            margin-right:20px;
        }
.bk-page .bk-page-count .page-select-small{
            border:1px solid #f0f1f5;
            background:#f0f1f5;
            border-radius:2px;
            -webkit-box-shadow:none;
                    box-shadow:none
        }
.bk-page .bk-page-count .page-select-small:hover{
                background:#e1ecff;
            }
.bk-page .bk-page-total-count{
        font-size:12px;
        line-height:36px;
        color:#989dab;
    }
.bk-page .bk-page-total-count-right{
            float:right;
            margin-left:12px;
        }
.bk-page .bk-page-total-count-left{
            float:left;
            margin-right:12px;
        }
.bk-page .bk-page-total-count .stress{
            padding:0 2px;
            color:#3f4046;
        }
.bk-page .bk-page-total-small{
        line-height:26px;
        margin-top:2px;
    }
.bk-page .bk-page-selection-count{
        font-size:12px;
        line-height:36px;
    }
.bk-page .bk-page-selection-count-right{
            float:right;
        }
.bk-page .bk-page-selection-count-left{
            float:left;
            margin-left:12px;
        }
.bk-page .bk-page-selection-count .count{
            padding:0 2px;
            font-weight:bold;
        }
.bk-page.bk-page-align-left{
            text-align:left;
        }
.bk-page.bk-page-align-center{
            text-align:center;
        }
.bk-page.bk-page-align-right{
            text-align:right;
        }
.bk-page.bk-page-small .bk-page-count{
            margin-top:0;
        }
.bk-page.bk-page-small .page-item .page-button{
                min-width:32px;
                height:32px;
                line-height:30px;
            }
.bk-page.bk-page-small .bk-page-total-count,
        .bk-page.bk-page-small .bk-page-selection-count{
            line-height:32px;
        }
.bk-page.bk-page-small .icon-angle-right, .bk-page.bk-page-small .icon-angle-left{
            line-height:30px;
            font-size:20px;
        }
.bk-page.bk-page-compact .page-item{
            margin-right:-1px;
            border-radius:0
        }
.bk-page.bk-page-compact .page-item:hover{
                position:relative;
                z-index:1;
            }
.bk-page.bk-page-compact .page-item.disabled:hover{
                    z-index:0;
                }
.bk-page.bk-page-compact .page-item:first-child{
                border-radius:2px 0 0 2px;
            }
.bk-page.bk-page-compact .page-item:last-child{
                border-radius:0 2px 2px 0;
            }
.bk-page.bk-page-compact .page-item.cur-page{
                position:relative;
                z-index:1;
            }
.bk-page .bk-page-list{
        margin:0;
        padding:0;
        overflow:hidden;
        font-size:0;
        display:inline-block;
        vertical-align:middle;
    }
.bk-page .page-item{
        text-align:center;
        display:inline-block;
        vertical-align:middle;
        font-size:12px;
        margin-right:4px;
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        border-radius:2px;
        overflow:hidden
    }
.bk-page .page-item.page-omit{
            border:none;
            min-width:auto;
        }
.bk-page .page-item.page-omit > span{
                display:inline-block;
            }
.bk-page .page-item .page-button{
            display:block;
            min-width:36px;
            height:36px;
            padding:0 4px;
            line-height:34px;
            border:1px solid #c4c6cc;
            color:#63656e;
            background:#fff;
            cursor:pointer
        }
.bk-page .page-item .page-button:hover{
                color:#3a84ff;
                border-color:#3a84ff;
            }
.bk-page .page-item.cur-page .page-button{
                border-color:#3a84ff;
                color:#3a84ff;
            }
.bk-page .page-item.disabled .page-button{
                border-color:#dcdee5;
                cursor:not-allowed;
                color:#c4c6cc;
                background-color:#fafbfd
            }
.bk-page .page-item.disabled .page-button:hover{
                    color:#c4c6cc;
                }
.bk-page .page-item:last-child{
            margin-right:0;
        }
.bk-page .bk-page-small-jump{
        line-height:34px;
        display:-webkit-inline-box;
        display:-ms-inline-flexbox;
        display:inline-flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        color:#63656E;
    }
.bk-page .bk-page-small-jump .btn-pre,
        .bk-page .bk-page-small-jump .btn-next{
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
            width:24px;
            height:24px;
            font-size:14px;
            cursor:pointer;
            -webkit-transition:all .15s;
            transition:all .15s;
            color:#979ba5
        }
.bk-page .bk-page-small-jump .btn-pre:hover,.bk-page .bk-page-small-jump .btn-next:hover{
                color:#3A84FF;
            }
.bk-page .bk-page-small-jump .btn-pre.disable,.bk-page .bk-page-small-jump .btn-next.disable{
                color:#DCDEE5;
                cursor:not-allowed;
            }
.bk-page .bk-page-small-jump .btn-pre .bk-icon,.bk-page .bk-page-small-jump .btn-next .bk-icon{
                line-height:1;
            }
.bk-page .bk-page-small-jump .jump-input-wrapper{
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            background-color:#f0f1f5;
            padding:0 8px;
            border-radius:2px;
            cursor:pointer;
            border:1px solid #f0f1f5;
            height:24px
        }
.bk-page .bk-page-small-jump .jump-input-wrapper:hover{
                background-color:#e1ecff;
            }
.bk-page .bk-page-small-jump .jump-input-wrapper.focus{
                background-color:#fff;
                border:1px solid #3a84ff;
                -webkit-box-shadow:0px 0px 4px rgba(58, 132, 255, 0.4);
                        box-shadow:0px 0px 4px rgba(58, 132, 255, 0.4);
            }
.bk-page .bk-page-small-jump .jump-input{
            min-width:22px;
            height:16px;
            font-size:14px;
            line-height:16px;
            text-align:center;
            border:0;
            border-radius:2px;
            background-color:transparent;
            -webkit-transition:all .15s;
            transition:all .15s
        }
.bk-page .bk-page-small-jump .jump-input:hover,
            .bk-page .bk-page-small-jump .jump-input:focus{
                border-color:#3A84FF;
            }
.bk-page .bk-page-small-jump .page-total{
            min-width:28px;
            font-size:14px;
            vertical-align:top;
            text-align:center;
            line-height:16px;
            margin-left:2px
        }
.bk-page .bk-page-small-jump .page-total.focus{
                color:#c4c6cc;
            }
.small-jump-options{
  padding:0;
  margin:0;
  overflow-y:auto;
  list-style:none;
  padding:6px 0;
  max-height:204px;
  min-width:68px
}
.small-jump-options::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.small-jump-options::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.small-jump-options .small-jump-option{
      padding:0 16px;
      line-height:32px;
      cursor:pointer
  }
.small-jump-options .small-jump-option:hover{
          background-color:#eaf3ff;
          color:#3a84ff;
      }
.small-jump-options .small-jump-option.is-selected{
          background-color:#eaf3ff;
          color:#3a84ff;
      }
.bk-tooltip{
    display:inline-block;
}
.bk-tooltip-ref{
    display:inline-block;
    position:relative;
    outline:0;
}
.tippy-iOS{
    cursor:pointer !important;
    -webkit-tap-highlight-color:transparent
}
.tippy-popper{
    -webkit-transition-timing-function:cubic-bezier(.165, .84, .44, 1);
            transition-timing-function:cubic-bezier(.165, .84, .44, 1);
    max-width:calc(100% - 8px);
    pointer-events:none;
    outline:0
}
.tippy-popper[x-placement^=top] .tippy-backdrop{
    border-radius:40% 40% 0 0
}
.tippy-popper[x-placement^=top] .tippy-roundarrow{
    bottom:-7px;
    bottom:-6.5px;
    -webkit-transform-origin:50% 0;
    transform-origin:50% 0;
    margin:0 3px
}
.tippy-popper[x-placement^=top] .tippy-roundarrow svg{
    position:absolute;
    left:0;
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg)
}
.tippy-popper[x-placement^=top] .tippy-arrow{
    border-top:8px solid #333;
    border-right:8px solid transparent;
    border-left:8px solid transparent;
    bottom:-7px;
    margin:0 3px;
    -webkit-transform-origin:50% 0;
    transform-origin:50% 0
}
.tippy-popper[x-placement^=top] .tippy-backdrop{
    -webkit-transform-origin:0 25%;
    transform-origin:0 25%
}
.tippy-popper[x-placement^=top] .tippy-backdrop[data-state=visible]{
    -webkit-transform:scale(1) translate(-50%, -55%);
    transform:scale(1) translate(-50%, -55%)
}
.tippy-popper[x-placement^=top] .tippy-backdrop[data-state=hidden]{
    -webkit-transform:scale(.2) translate(-50%, -45%);
    transform:scale(.2) translate(-50%, -45%);
    opacity:0
}
.tippy-popper[x-placement^=top] [data-animation=shift-toward][data-state=visible]{
    -webkit-transform:translateY(-10px);
    transform:translateY(-10px)
}
.tippy-popper[x-placement^=top] [data-animation=shift-toward][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateY(-20px);
    transform:translateY(-20px)
}
.tippy-popper[x-placement^=top] [data-animation=perspective]{
    -webkit-transform-origin:bottom;
    transform-origin:bottom
}
.tippy-popper[x-placement^=top] [data-animation=perspective][data-state=visible]{
    -webkit-transform:perspective(700px) translateY(-10px) rotateX(0);
    transform:perspective(700px) translateY(-10px) rotateX(0)
}
.tippy-popper[x-placement^=top] [data-animation=perspective][data-state=hidden]{
    opacity:0;
    -webkit-transform:perspective(700px) translateY(0) rotateX(60deg);
    transform:perspective(700px) translateY(0) rotateX(60deg)
}
.tippy-popper[x-placement^=top] [data-animation=fade][data-state=visible]{
    -webkit-transform:translateY(-10px);
    transform:translateY(-10px)
}
.tippy-popper[x-placement^=top] [data-animation=fade][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateY(-10px);
    transform:translateY(-10px)
}
.tippy-popper[x-placement^=top] [data-animation=shift-away][data-state=visible]{
    -webkit-transform:translateY(-10px);
    transform:translateY(-10px)
}
.tippy-popper[x-placement^=top] [data-animation=shift-away][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateY(0);
    transform:translateY(0)
}
.tippy-popper[x-placement^=top] [data-animation=scale]{
    -webkit-transform-origin:bottom;
    transform-origin:bottom
}
.tippy-popper[x-placement^=top] [data-animation=scale][data-state=visible]{
    -webkit-transform:translateY(-10px) scale(1);
    transform:translateY(-10px) scale(1)
}
.tippy-popper[x-placement^=top] [data-animation=scale][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateY(-10px) scale(.5);
    transform:translateY(-10px) scale(.5)
}
.tippy-popper[x-placement^=top] [data-animation=slide-toggle]{
    -webkit-transform-origin:center bottom;
            transform-origin:center bottom;
}
.tippy-popper[x-placement^=top] [data-animation=slide-toggle][data-state=visible]{
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
    opacity:1;
}
.tippy-popper[x-placement^=top] [data-animation=slide-toggle][data-state=hidden]{
    opacity:0;
    -webkit-transform:scaleY(0);
            transform:scaleY(0);
}
.tippy-popper[x-placement^=bottom] .tippy-backdrop{
    border-radius:0 0 30% 30%
}
.tippy-popper[x-placement^=bottom] .tippy-roundarrow{
    top:-7px;
    -webkit-transform-origin:50% 100%;
    transform-origin:50% 100%;
    margin:0 3px
}
.tippy-popper[x-placement^=bottom] .tippy-roundarrow svg{
    position:absolute;
    left:0;
    -webkit-transform:rotate(0);
    transform:rotate(0)
}
.tippy-popper[x-placement^=bottom] .tippy-arrow{
    border-bottom:8px solid #333;
    border-right:8px solid transparent;
    border-left:8px solid transparent;
    top:-7px;
    margin:0 3px;
    -webkit-transform-origin:50% 100%;
    transform-origin:50% 100%
}
.tippy-popper[x-placement^=bottom] .tippy-backdrop{
    -webkit-transform-origin:0 -50%;
    transform-origin:0 -50%
}
.tippy-popper[x-placement^=bottom] .tippy-backdrop[data-state=visible]{
    -webkit-transform:scale(1) translate(-50%, -45%);
    transform:scale(1) translate(-50%, -45%)
}
.tippy-popper[x-placement^=bottom] .tippy-backdrop[data-state=hidden]{
    -webkit-transform:scale(.2) translate(-50%);
    transform:scale(.2) translate(-50%);
    opacity:0
}
.tippy-popper[x-placement^=bottom] [data-animation=shift-toward][data-state=visible]{
    -webkit-transform:translateY(10px);
    transform:translateY(10px)
}
.tippy-popper[x-placement^=bottom] [data-animation=shift-toward][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateY(20px);
    transform:translateY(20px)
}
.tippy-popper[x-placement^=bottom] [data-animation=perspective]{
    -webkit-transform-origin:top;
    transform-origin:top
}
.tippy-popper[x-placement^=bottom] [data-animation=perspective][data-state=visible]{
    -webkit-transform:perspective(700px) translateY(10px) rotateX(0);
    transform:perspective(700px) translateY(10px) rotateX(0)
}
.tippy-popper[x-placement^=bottom] [data-animation=perspective][data-state=hidden]{
    opacity:0;
    -webkit-transform:perspective(700px) translateY(0) rotateX(-60deg);
    transform:perspective(700px) translateY(0) rotateX(-60deg)
}
.tippy-popper[x-placement^=bottom] [data-animation=fade][data-state=visible]{
    -webkit-transform:translateY(10px);
    transform:translateY(10px)
}
.tippy-popper[x-placement^=bottom] [data-animation=fade][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateY(10px);
    transform:translateY(10px)
}
.tippy-popper[x-placement^=bottom] [data-animation=shift-away][data-state=visible]{
    -webkit-transform:translateY(10px);
    transform:translateY(10px)
}
.tippy-popper[x-placement^=bottom] [data-animation=shift-away][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateY(0);
    transform:translateY(0)
}
.tippy-popper[x-placement^=bottom] [data-animation=scale]{
    -webkit-transform-origin:top;
    transform-origin:top
}
.tippy-popper[x-placement^=bottom] [data-animation=scale][data-state=visible]{
    -webkit-transform:translateY(10px) scale(1);
    transform:translateY(10px) scale(1)
}
.tippy-popper[x-placement^=bottom] [data-animation=scale][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateY(10px) scale(.5);
    transform:translateY(10px) scale(.5)
}
.tippy-popper[x-placement^=bottom] [data-animation=slide-toggle]{
    -webkit-transform-origin:center top;
            transform-origin:center top;
}
.tippy-popper[x-placement^=bottom] [data-animation=slide-toggle][data-state=visible]{
    opacity:1;
    -webkit-transform:scaleY(1);
            transform:scaleY(1);
}
.tippy-popper[x-placement^=bottom] [data-animation=slide-toggle][data-state=hidden]{
    opacity:0;
    -webkit-transform:scaleY(0);
            transform:scaleY(0);
}
.tippy-popper[x-placement^=left] .tippy-backdrop{
    border-radius:50% 0 0 50%
}
.tippy-popper[x-placement^=left] .tippy-roundarrow{
    right:-12px;
    -webkit-transform-origin:33.33333333% 50%;
    transform-origin:33.33333333% 50%;
    margin:3px 0
}
.tippy-popper[x-placement^=left] .tippy-roundarrow svg{
    position:absolute;
    left:0;
    -webkit-transform:rotate(90deg);
    transform:rotate(90deg)
}
.tippy-popper[x-placement^=left] .tippy-arrow{
    border-left:8px solid #333;
    border-top:8px solid transparent;
    border-bottom:8px solid transparent;
    right:-7px;
    margin:3px 0;
    -webkit-transform-origin:0 50%;
    transform-origin:0 50%
}
.tippy-popper[x-placement^=left] .tippy-backdrop{
    -webkit-transform-origin:50% 0;
    transform-origin:50% 0
}
.tippy-popper[x-placement^=left] .tippy-backdrop[data-state=visible]{
    -webkit-transform:scale(1) translate(-50%, -50%);
    transform:scale(1) translate(-50%, -50%)
}
.tippy-popper[x-placement^=left] .tippy-backdrop[data-state=hidden]{
    -webkit-transform:scale(.2) translate(-75%, -50%);
    transform:scale(.2) translate(-75%, -50%);
    opacity:0
}
.tippy-popper[x-placement^=left] [data-animation=shift-toward][data-state=visible]{
    -webkit-transform:translateX(-10px);
    transform:translateX(-10px)
}
.tippy-popper[x-placement^=left] [data-animation=shift-toward][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateX(-20px);
    transform:translateX(-20px)
}
.tippy-popper[x-placement^=left] [data-animation=perspective]{
    -webkit-transform-origin:right;
    transform-origin:right
}
.tippy-popper[x-placement^=left] [data-animation=perspective][data-state=visible]{
    -webkit-transform:perspective(700px) translateX(-10px) rotateY(0);
    transform:perspective(700px) translateX(-10px) rotateY(0)
}
.tippy-popper[x-placement^=left] [data-animation=perspective][data-state=hidden]{
    opacity:0;
    -webkit-transform:perspective(700px) translateX(0) rotateY(-60deg);
    transform:perspective(700px) translateX(0) rotateY(-60deg)
}
.tippy-popper[x-placement^=left] [data-animation=fade][data-state=visible]{
    -webkit-transform:translateX(-10px);
    transform:translateX(-10px)
}
.tippy-popper[x-placement^=left] [data-animation=fade][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateX(-10px);
    transform:translateX(-10px)
}
.tippy-popper[x-placement^=left] [data-animation=shift-away][data-state=visible]{
    -webkit-transform:translateX(-10px);
    transform:translateX(-10px)
}
.tippy-popper[x-placement^=left] [data-animation=shift-away][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateX(0);
    transform:translateX(0)
}
.tippy-popper[x-placement^=left] [data-animation=scale]{
    -webkit-transform-origin:right;
    transform-origin:right
}
.tippy-popper[x-placement^=left] [data-animation=scale][data-state=visible]{
    -webkit-transform:translateX(-10px) scale(1);
    transform:translateX(-10px) scale(1)
}
.tippy-popper[x-placement^=left] [data-animation=scale][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateX(-10px) scale(.5);
    transform:translateX(-10px) scale(.5)
}
.tippy-popper[x-placement^=right] .tippy-backdrop{
    border-radius:0 50% 50% 0
}
.tippy-popper[x-placement^=right] .tippy-roundarrow{
    left:-12px;
    -webkit-transform-origin:66.66666666% 50%;
    transform-origin:66.66666666% 50%;
    margin:3px 0
}
.tippy-popper[x-placement^=right] .tippy-roundarrow svg{
    position:absolute;
    left:0;
    -webkit-transform:rotate(-90deg);
    transform:rotate(-90deg)
}
.tippy-popper[x-placement^=right] .tippy-arrow{
    border-right:8px solid #333;
    border-top:8px solid transparent;
    border-bottom:8px solid transparent;
    left:-7px;
    margin:3px 0;
    -webkit-transform-origin:100% 50%;
    transform-origin:100% 50%
}
.tippy-popper[x-placement^=right] .tippy-backdrop{
    -webkit-transform-origin:-50% 0;
    transform-origin:-50% 0
}
.tippy-popper[x-placement^=right] .tippy-backdrop[data-state=visible]{
    -webkit-transform:scale(1) translate(-50%, -50%);
    transform:scale(1) translate(-50%, -50%)
}
.tippy-popper[x-placement^=right] .tippy-backdrop[data-state=hidden]{
    -webkit-transform:scale(.2) translate(-25%, -50%);
    transform:scale(.2) translate(-25%, -50%);
    opacity:0
}
.tippy-popper[x-placement^=right] [data-animation=shift-toward][data-state=visible]{
    -webkit-transform:translateX(10px);
    transform:translateX(10px)
}
.tippy-popper[x-placement^=right] [data-animation=shift-toward][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateX(20px);
    transform:translateX(20px)
}
.tippy-popper[x-placement^=right] [data-animation=perspective]{
    -webkit-transform-origin:left;
    transform-origin:left
}
.tippy-popper[x-placement^=right] [data-animation=perspective][data-state=visible]{
    -webkit-transform:perspective(700px) translateX(10px) rotateY(0);
    transform:perspective(700px) translateX(10px) rotateY(0)
}
.tippy-popper[x-placement^=right] [data-animation=perspective][data-state=hidden]{
    opacity:0;
    -webkit-transform:perspective(700px) translateX(0) rotateY(60deg);
    transform:perspective(700px) translateX(0) rotateY(60deg)
}
.tippy-popper[x-placement^=right] [data-animation=fade][data-state=visible]{
    -webkit-transform:translateX(10px);
    transform:translateX(10px)
}
.tippy-popper[x-placement^=right] [data-animation=fade][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateX(10px);
    transform:translateX(10px)
}
.tippy-popper[x-placement^=right] [data-animation=shift-away][data-state=visible]{
    -webkit-transform:translateX(10px);
    transform:translateX(10px)
}
.tippy-popper[x-placement^=right] [data-animation=shift-away][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateX(0);
    transform:translateX(0)
}
.tippy-popper[x-placement^=right] [data-animation=scale]{
    -webkit-transform-origin:left;
    transform-origin:left
}
.tippy-popper[x-placement^=right] [data-animation=scale][data-state=visible]{
    -webkit-transform:translateX(10px) scale(1);
    transform:translateX(10px) scale(1)
}
.tippy-popper[x-placement^=right] [data-animation=scale][data-state=hidden]{
    opacity:0;
    -webkit-transform:translateX(10px) scale(.5);
    transform:translateX(10px) scale(.5)
}
.tippy-tooltip{
    position:relative;
    color:#fff;
    border-radius:4px;
    font-size:.9rem;
    padding:.3rem .6rem;
    text-align:left;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    background-color:rgba(0, 0, 0, .8);
}
.tippy-tooltip[data-size=small]{
    padding:7px 14px;
    font-size:12px;
}
.tippy-tooltip[data-size=large]{
    padding:.4rem .8rem;
    font-size:1rem;
}
.tippy-tooltip[data-animatefill]{
    overflow:hidden;
    background-color:transparent
}
.tippy-tooltip[data-interactive],
.tippy-tooltip[data-interactive] .tippy-roundarrow path{
    pointer-events:auto
}
.tippy-tooltip[data-inertia][data-state=visible]{
    -webkit-transition-timing-function:cubic-bezier(.54, 1.5, .38, 1.11);
            transition-timing-function:cubic-bezier(.54, 1.5, .38, 1.11)
}
.tippy-tooltip[data-inertia][data-state=hidden]{
    -webkit-transition-timing-function:ease;
            transition-timing-function:ease
}
.tippy-arrow,
.tippy-roundarrow{
    position:absolute;
    width:0;
    height:0
}
.tippy-roundarrow{
    width:18px;
    height:7px;
    fill:#333;
    pointer-events:none
}
.tippy-backdrop{
    position:absolute;
    background-color:#333;
    border-radius:50%;
    width:calc(110% + 2rem);
    left:50%;
    top:50%;
    z-index:-1;
    -webkit-transition:all cubic-bezier(.46, .1, .52, .98);
    transition:all cubic-bezier(.46, .1, .52, .98);
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
}
.tippy-backdrop:after{
    content:"";
    float:left;
    padding-top:100%
}
.tippy-backdrop+.tippy-content{
    -webkit-transition-property:opacity;
    transition-property:opacity;
    will-change:opacity
}
.tippy-backdrop+.tippy-content[data-state=visible]{
    opacity:1
}
.tippy-backdrop+.tippy-content[data-state=hidden]{
    opacity:0
}
.tippy-tooltip.light-theme{
    color:#26323d;
    -webkit-box-shadow:0px 0px 6px 0px rgba(220, 222, 229, 1);
            box-shadow:0px 0px 6px 0px rgba(220, 222, 229, 1);
    background-color:#fff;
}
.tippy-tooltip.light-theme:before{
    content:'';
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:-1;
    border-radius:inherit;
    background:inherit;
}
.tippy-tooltip.light-theme .tippy-arrow{
    z-index:-2;
    width:11px;
    height:11px;
    border:none !important;
    -webkit-box-shadow:inherit;
            box-shadow:inherit;
    background:inherit;
    -webkit-transform-origin:center center;
            transform-origin:center center;
    -webkit-transform:rotateZ(45deg);
            transform:rotateZ(45deg);
}
.tippy-tooltip.light-theme[x-placement^=top] .tippy-arrow{
    bottom:-5px;
}
.tippy-tooltip.light-theme[x-placement^=bottom] .tippy-arrow{
    top:-5px;
}
.tippy-tooltip.light-theme[x-placement^=left] .tippy-arrow{
    right:-5px;
}
.tippy-tooltip.light-theme[x-placement^=right] .tippy-arrow{
    left:-5px;
}
.tippy-tooltip.light-theme .tippy-backdrop{
    background-color:#fff
}
.tippy-tooltip.light-theme .tippy-roundarrow{
    fill:#fff
}
.tippy-tooltip.light-theme[data-animatefill]{
    background-color:transparent
}
.tippy-tooltip.light-border-theme{
    color:#26323d;
    -webkit-box-shadow:0px 0px 6px 0px rgba(220, 222, 229, 1);
            box-shadow:0px 0px 6px 0px rgba(220, 222, 229, 1);
    background-color:#fff;
    border:1px solid #dcdee5;
}
.tippy-tooltip.light-border-theme:before{
    content:'';
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:-1;
    border-radius:inherit;
    background:inherit;
}
.tippy-tooltip.light-border-theme .tippy-arrow{
    z-index:-2;
    width:11px;
    height:11px;
    border:1px solid #dcdee5;
    -webkit-box-shadow:inherit;
            box-shadow:inherit;
    background:inherit;
    -webkit-transform-origin:center center;
            transform-origin:center center;
    -webkit-transform:rotateZ(45deg);
            transform:rotateZ(45deg);
}
.tippy-tooltip.light-border-theme[x-placement^=top] .tippy-arrow{
    bottom:-5px;
}
.tippy-tooltip.light-border-theme[x-placement^=bottom] .tippy-arrow{
    top:-5px;
}
.tippy-tooltip.light-border-theme[x-placement^=left] .tippy-arrow{
    right:-5px;
}
.tippy-tooltip.light-border-theme[x-placement^=right] .tippy-arrow{
    left:-5px;
}
.tippy-tooltip.light-border-theme .tippy-backdrop{
    background-color:#fff
}
.tippy-tooltip.light-border-theme .tippy-roundarrow{
    fill:#fff
}
.tippy-tooltip.light-border-theme[data-animatefill]{
    background-color:transparent
}
.bk-process{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    position:relative;
}
.bk-process .bk-icon{
        font-size:22px;
    }
.bk-process .bk-spin-loading.bk-spin-loading-mini{
            width:14px;
            height:14px;
        }
.bk-process .bk-process-toggle{
        position:relative;
        left:15px;
        width:24px;
        height:24px;
        line-height:24px;
        border-radius:50%;
        text-align:center;
        border:1px solid #ded8d8;
        font-size:12px;
        color:#63656e;
        text-decoration:none
    }
.bk-process .bk-process-toggle.active,
        .bk-process .bk-process-toggle:hover{
            color:#fff;
            background:#3a84ff;
            border-color:#3a84ff;
        }
.bk-process > ul{
        display:table;
        width:100%;
        display:-webkit-box;
        display:flex;
        -ms-display:flex;
        -moz-display:flex;
        -webkit-display:flex;
        margin:auto;
        padding:0;
    }
.bk-process li{
        background-color:#f0f1f5;
        display:table-cell;
        -webkit-box-flex:1;
                flex:1;
        -ms-flex:1;
        -moz-flex:1;
        -webkit-flex:1;
        text-align:center;
        height:24px;
        line-height:24px;
        position:relative;
        font-size:12px;
        color:#63656e;
    }
.bk-process li i{
            display:none;
        }
.bk-process li .bk-process-item{
            display:inline-block;
        }
.bk-process li .bk-process-item > .bk-icon{
                font-size:14px;
            }
.bk-process li:first-of-type{
            border-radius:13px 0 0 13px;
        }
.bk-process li:last-of-type{
            border-radius:0 13px 13px 0
        }
.bk-process li:last-of-type::before{
                display:none;
            }
.bk-process li:last-of-type::after{
                display:none;
            }
.bk-process li::before{
            content:"";
            width:0;
            height:0;
            border:12px solid;
            border-color:transparent transparent transparent #fff;
            position:absolute;
            right:-25px;
            top:0;
            z-index:1;
        }
.bk-process li::after{
            content:"";
            width:0;
            height:0;
            border:12px solid;
            border-color:transparent transparent transparent #f0f1f5;
            position:absolute;
            right:-23px;
            top:0;
            z-index:1;
        }
.bk-process li .bk-process-step{
            color:#63656e;
            font-size:12px;
        }
.bk-process li .bk-process-step dd{
                margin:0;
                line-height:32px;
            }
.bk-process li .bk-process-step i{
                display:none;
            }
.bk-process li .bk-process-step .success i{
                    display:inline-block;
                    color:#2dcb56;
                }
.bk-process li .bk-process-step .steps-loading{
                top:-2px;
            }
.bk-process li .bk-process-step .step-item.error{
                    color:#ff5656;
                }
.bk-process li .bk-process-step .step-item.error .bk-icon{
                        color:#ff5656;
                        vertical-align:-2px;
                    }
.bk-process li .bk-process-step .step-item.done .bk-icon{
                        color:#2dcb56;
                    }
.bk-process li.success{
            background:#2dcb56;
            color:#fff
        }
.bk-process li.success::after{
                border-color:transparent transparent transparent #2dcb56;
            }
.bk-process li.success .bk-process-step i{
                    color:#2dcb56;
                }
.bk-process li.success i{
                display:inline-block;
            }
.bk-process li.status-error{
            background:#ff5656;
            color:#fff
        }
.bk-process li.status-error::after{
                border-color:transparent transparent transparent #ff5656;
            }
.bk-process li.status-error .bk-process-item > .bk-icon{
                display:inline-block;
            }
.bk-process li.status-error .bk-process-step .bk-icon{
                    display:inline-block;
                }
.bk-process li.status-done{
            background:#2dcb56;
            color:#fff
        }
.bk-process li.status-done::after{
                border-color:transparent transparent transparent #2dcb56;
            }
.bk-process li.status-done .bk-process-item > .bk-icon{
                display:inline-block;
            }
.bk-process li.status-done .bk-process-step .bk-icon{
                    display:inline-block;
                }
.bk-process li.status-loading .bk-process-item > .bk-icon{
                display:inline-block;
            }
.bk-process li.status-loading .bk-process-step .bk-icon{
                    display:inline-block;
                }
.bk-process li.status-default .bk-process-item > .bk-icon{
                display:inline-block;
            }
.bk-process li.status-default .bk-process-step .bk-icon{
                    display:inline-block;
                }
.bk-process li.current{
            background:#3a84ff;
            color:#fff
        }
.bk-process li.current::after{
                border-color:transparent transparent transparent #3a84ff;
            }
.bk-process li.current >.bk-spin-loading{
                vertical-align:-3px;
            }
.bk-progress{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}
.bk-progress .progress-bar{
        width:100%;
        height:4px;
        background:#F0F1F5;
        border-radius:50px;
        position:relative;
        vertical-align:middle;
        text-align:center
    }
.bk-progress .progress-bar.bk-progress-small{
            height:2px;
        }
.bk-progress .progress-bar.bk-progress-normal{
            height:4px;
        }
.bk-progress .progress-bar.bk-progress-large{
            height:12px;
        }
.bk-progress .progress-inner{
        position:absolute;
        left:0;
        top:0;
        width:50%;
        height:100%;
        border-radius:50px;
        -webkit-transition:width 0.5s ease;
        transition:width 0.5s ease
    }
.bk-progress .progress-inner.bk-primary{
            background:#3a84ff;
        }
.bk-progress .progress-inner.bk-success{
            background:#2dcb56;
        }
.bk-progress .progress-inner.bk-warning{
            background:#ff9c01;
        }
.bk-progress .progress-inner.bk-danger{
            background:#ff5656;
        }
.bk-progress .inner-text{
        width:100%;
        text-align:center;
        color:#fff;
        height:100%;
    }
.bk-progress .progress-text{
        width:7%;
        text-align:center;
    }
.bk-form-radio{
    font-size:14px;
    color:#63656e;
    line-height:18px;
    min-height:20px;
    display:inline-block;
    position:relative;
}
.bk-form-radio .bk-radio-text{
        font-style:normal;
        font-weight:normal;
        cursor:pointer;
        vertical-align:middle;
        display:inline-block;
    }
.bk-form-radio .icon-check{
        width:8px;
        height:8px;
        border-radius:50%;
        position:absolute;
        left:4px;
        top:50%;
        margin-top:-4px;
        display:block;
        background:#3a84ff;
    }
.bk-form-radio input[type=radio]{
        position:relative;
        display:inline-block;
        vertical-align:middle;
        width:16px;
        height:16px;
        margin:0 5px 0 0;
        border:1px solid #979ba5;
        border-radius:50%;
        background-color:#fff;
        background-clip:content-box;
        outline:none;
        color:#fff;
        visibility:visible;
        cursor:pointer;
        -webkit-appearance:none
    }
.bk-form-radio input[type=radio].is-checked{
            padding:3px;
            color:#3a84ff;
            border-color:currentColor;
            background-color:currentColor
        }
.bk-form-radio input[type=radio].is-checked[disabled]{
                color:#c4c6cc;
            }
.bk-form-radio input[type=radio][disabled]{
            cursor:not-allowed;
            background-color:currentColor;
            border-color:#dcdee5;
            color:rgba(250, 251, 253, 1)
        }
.bk-form-radio input[type=radio][disabled] + .bk-radio-text{
                color:#c4c6cc;
                cursor:not-allowed;
            }
.bk-form-radio:focus input[type=radio]{
        -webkit-box-shadow:0 0 2px 2px #3c96ff;
                box-shadow:0 0 2px 2px #3c96ff;
        border-color:#3c96ff;
        outline:none;
    }
.bk-form-control{
    display:inline-block;
    line-height:1;
    vertical-align:middle;
    font-size:0;

}
.bk-form-radio-button{
    position:relative;
    display:inline-block;
    outline:none;
    cursor:pointer
}
.bk-form-radio-button:first-child .bk-radio-button-text{
            border-top-left-radius:2px;
            border-bottom-left-radius:2px;
        }
.bk-form-radio-button:last-child .bk-radio-button-text{
            border-top-right-radius:2px;
            border-bottom-right-radius:2px;
        }
.bk-form-radio-button:nth-child(n+2){
        margin-left:-1px;
    }
.bk-form-radio-button.disabled{
        cursor:not-allowed;
        margin-left:0;
    }
.bk-form-radio-button .bk-radio-button-input{
        position:absolute;
        opacity:0
    }
.bk-form-radio-button .bk-radio-button-input:checked+.bk-radio-button-text{
            position:relative;
            z-index:1;
            background:#E1ECFF;
            color:#3a84ff;
            border-color:currentColor;
        }
.bk-form-radio-button .bk-radio-button-input:disabled+.bk-radio-button-text{
            position:relative;
            color:#dcdee5;
            background:rgba(250, 251, 253, 1);
            border-color:currentColor;
            border-left:none;
        }
.bk-form-radio-button .bk-radio-button-text{
        height:32px;
        line-height:30px;
        display:inline-block;
        outline:none;
        white-space:nowrap;
        -webkit-appearance:none;
        padding:0 18px;
        text-align:center;
        vertical-align:middle;
        font-size:14px;
        background-color:#fff;
        border:1px solid #c4c6cc;
        border-radius:0;
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        color:#63656e;
        text-decoration:none;
        -webkit-transition:background-color .3s ease;
        transition:background-color .3s ease;
        min-width:68px;
    }
.bk-form-radio-button:focus{
        -webkit-box-shadow:0 0 2px 2px #3c96ff;
                box-shadow:0 0 2px 2px #3c96ff;
        outline:none;
        position:relative;
        z-index:2;
    }
.bk-round-progress{
    display:inline-block;
    position:relative;
    text-align:center;
}
.bk-round-progress circle{
        line-height:1;
        -webkit-transform-origin:center;
                transform-origin:center;
        stroke-linecap:round;
    }
.bk-round-progress .title{
        text-align:center;
        position:absolute;
        left:50%;
        width:100%;
        overflow:auto;
        -webkit-transform:translate(-50%, 0);
                transform:translate(-50%, 0)
    }
.bk-round-progress .num{
        position:absolute;
        left:50%;
        top:50%;
        -webkit-transform:translate(-50%, -60%);
                transform:translate(-50%, -60%);
        color:#63656e;
    }
.bk-round-progress .progress-background{
        -webkit-transform:scale(0.9);
                transform:scale(0.9);
    }
.bk-round-progress .progress-bar{
        -webkit-transform:scale(0.9) rotate(-90deg);
                transform:scale(0.9) rotate(-90deg);
        -webkit-transition:stroke-dashoffset 0.5s ease;
        transition:stroke-dashoffset 0.5s ease;
    }
:root{
    --font-size:12px;
    --icon-size:14px;
    --extension-size:16px;
}
:root .medium-font{
        --font-size:14px;
        --icon-size:16px;
        --extension-size:20px;
    }
:root .large-font{
        --font-size:16px;
        --icon-size:20px;
        --extension-size:22px;
    }
:root .bk-select-large,
    :root .bk-select-popover-large{
        --font-size:14px;
    }
:root .bk-select-small,
    :root .bk-select-popover-small{
        --font-size:12px;
    }
.bk-select{
    position:relative;
    border:1px solid #c4c6cc;
    border-radius:2px;
    line-height:30px;
    color:#63656e;
    cursor:pointer;

    font-size:12px;

    font-size:var(--font-size)
}
.bk-select:focus{
        border-color:#3a84ff;
    }
.bk-select.only-bottom-border{
        border-color:transparent transparent #c4c6cc transparent
    }
.bk-select.only-bottom-border.is-focus{
            border-color:transparent transparent #3a84ff transparent;
            -webkit-box-shadow:none;
                    box-shadow:none;
        }
.bk-select.only-bottom-border.is-disabled{
            border-color:transparent transparent #dcdee5 transparent;
        }
.bk-select.only-bottom-border.is-readonly,
        .bk-select.only-bottom-border.is-loading{
            border-color:transparent transparent #dcdee5 transparent;
        }
.bk-select.is-default-trigger.is-unselected:before{
        position:absolute;
        height:100%;
        content:attr(data-placeholder);
        left:10px;
        top:0;
        color:#c3cdd7;
        pointer-events:none;
    }
.bk-select.is-default-trigger.is-unselected.is-disabled:before,
        .bk-select.is-default-trigger.is-unselected.is-readonly:before{
            color:#c4c6cc;
        }
.bk-select.has-prefix-icon.is-default-trigger.is-unselected:before{
            left:24px;
        }
.bk-select.has-prefix-icon .bk-select-name{
            padding-left:24px;
        }
.bk-select.is-focus{
        border-color:#3a84ff;
        -webkit-box-shadow:0px 0px 4px rgba(58, 132, 255, 0.4);
                box-shadow:0px 0px 4px rgba(58, 132, 255, 0.4);
    }
.bk-select.is-focus .bk-select-angle{
            -webkit-transform:rotate(-180deg);
                    transform:rotate(-180deg);
        }
.bk-select.is-disabled{
        background-color:#fafbfd;
        cursor:not-allowed;
        border-color:#dcdee5;
    }
.bk-select.is-readonly,
    .bk-select.is-loading{
        background-color:#fafafa;
        cursor:default;
        border:1px solid #dcdee5;
    }
.bk-select:hover .bk-select-clear{
            display:block
        }
.bk-select:hover .bk-select-clear + .bk-select-angle{
                display:none;
            }
.bk-select .bk-select-loading{
        position:absolute;
        right:9px;
        top:8px;
        width:18px;
        height:18px;
    }
.bk-select .bk-select-angle{
        position:absolute;
        right:2px;
        top:4px;
        color:#979ba5;
        font-size:22px;
        -webkit-transition:-webkit-transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        transition:-webkit-transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        transition:transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        transition:transform .3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events:none;
    }
.bk-select .bk-select-clear{
        display:none;
        position:absolute;
        right:6px;
        top:8px;
        text-align:center;
        font-size:14px;
        z-index:100;
        color:#c4c6cc
    }
.bk-select .bk-select-clear:hover{
            color:#979ba5;
        }
.bk-select .bk-select-prefix-icon{
        position:absolute;
        left:6px;
        top:calc((100% - 12px) / 2);
        font-size:14px;
        font-size:var(--icon-size);
    }
.bk-select .bk-select-name{
        height:30px;
        padding:0 36px 0 10px;
        display:block;
        max-width:100%;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
.bk-select .bk-tooltip.bk-select-dropdown{
        display:block
    }
.bk-select .bk-tooltip.bk-select-dropdown > .bk-tooltip-ref{
            display:block;
        }
.bk-select-dropdown-content{
    border:1px solid #dcdee5;
    border-radius:2px;
    line-height:32px;
    background:#fff;
    color:#63656e;
    overflow:hidden;
}
.bk-select-search-wrapper{
    position:relative;
    padding:0 5px;
}
.bk-select-search-wrapper .left-icon{
        position:absolute;
        font-size:16px;
        color:#979ba5;
        top:50%;
        -webkit-transform:translateY(-50%);
                transform:translateY(-50%);
        left:10px;
    }
.bk-select-search-input{
    width:100%;
    height:32px;
    padding:0 10px 0 30px;
    border:none;
    border-bottom:1px solid #dcdee5;
    font-size:12px;
    font-size:var(--font-size);
    outline:0;
    cursor:text
}
.bk-select-search-input::-webkit-input-placeholder{
      color:#c3cdd7;
    }
.bk-options{
    padding:0;
    margin:0;
    overflow-y:auto;
    list-style:none
}
.bk-options::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.bk-options::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.bk-options.bk-options-single .bk-option.is-selected{
                background-color:#f4f6fa;
            }
.bk-options.bk-options-single .bk-option:hover,
            .bk-options.bk-options-single .bk-option.is-highlight{
                background-color:#eaf3ff;
            }
.bk-options .bk-option-group .bk-option-group-name{
            margin:0 16px;
            font-size:12px;
            font-size:var(--font-size);
            border-bottom:1px solid #dcdee5;
            color:#979ba5;
            position:relative
        }
.bk-options .bk-option-group .bk-option-group-name.is-collapse{
                cursor:pointer;
                margin:0 15px;
            }
.bk-options .bk-option-group .bk-option-group-name .bk-option-group-prefix{
                width:10px;
                display:inline-block;
                text-align:center;
                line-height:30px
            }
.bk-options .bk-option-group .bk-option-group-name .bk-option-group-prefix.readonly{
                    cursor:not-allowed;
                }
.bk-options .bk-option-group .bk-option-group-name .btn-check-all{
                position:absolute;
                disabled:inline-block;
                right:14px;
                top:2px;
            }
.bk-options .bk-option-group .bk-option-group-name .btn-check-all .bk-form-checkbox{
                    margin-right:0!important;
                }
.bk-options .bk-group-options{
        margin:0;
        padding:0;
        list-style:none;
    }
.bk-options .bk-group-options .bk-option{
            padding:0 12px;
        }
.bk-options .bk-option{
        position:relative;
        cursor:pointer
    }
.bk-options .bk-option.is-selected{
            color:#3a84ff;
            background-color:#f4f6fa;
        }
.bk-options .bk-option:hover,
        .bk-options .bk-option.is-highlight{
            color:#3a84ff;
            background-color:#eaf3ff;
        }
.bk-options .bk-option.is-disabled{
            color:#c4c6cc;
            cursor:not-allowed;
            background-color:#fff;
        }
.bk-options .bk-option.is-selected.is-disabled{
            background-color:#fff;
            color:#c4c6cc;
        }
.bk-options .bk-option.is-selected.is-disabled .bk-option-icon{
                color:#c4c6cc;
            }
.bk-options .bk-option:first-child{
            margin-top:6px;
        }
.bk-options .bk-option:last-child{
            margin-bottom:6px;
        }
.bk-options .bk-option.bk-virtual-option{
            margin:0;
        }
.bk-options .bk-virtual-select .bk-min-nav-slide{
        width:6px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.bk-options .bk-option-content{
        position:relative;
        padding:0 16px;
    }
.bk-options .bk-option-content .bk-option-content-default{
            font-size:0;
        }
.bk-options .bk-option-content .bk-option-icon{
            position:absolute;
            right:12px;
            top:4px;
            color:#3a84ff;
            font-size:26px;
            font-weight:normal;
        }
.bk-options .bk-option-content .bk-option-icon ~ .bk-option-name{
                padding-right:20px;
            }
.bk-options .bk-option-content .bk-option-name{
            vertical-align:middle;
            font-size:12px;
            font-size:var(--font-size);
            display:inline-block;
            max-width:100%;
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
        }
.bk-select-empty{
    padding:0 10px;
    text-align:center;
    font-size:12px;
    font-size:var(--font-size);
}
.bk-select-extension{
    font-size:12px;
    font-size:var(--font-size);
    padding:0 16px;
    border-radius:0px 0px 1px 1px;
    border-top:1px solid #dcdee5;
    background:#fafbfd;
}
.bk-select-extension i{
        font-size:16px;
        font-size:var(--extension-size);
    }
.bk-select-extension:hover{
        background-color:#f0f1f5;
    }
.tippy-tooltip.bk-select-dropdown-theme[data-size=small]{
    padding:0;
    -webkit-box-shadow:0 3px 9px 0 rgba(0,0,0,.1);
            box-shadow:0 3px 9px 0 rgba(0,0,0,.1);
}
.tippy-tooltip.bk-select-dropdown-theme[data-size=small] .tippy-arrow{
        display:none;
    }
.bk-select-large{
    line-height:36px;
}
.bk-select-large .bk-select-angle{
        top:7px;
    }
.bk-select-large .bk-select-clear{
        top:11px;
    }
.bk-select-large .bk-select-name{
        height:36px;
    }
.bk-select-small{
    line-height:24px;
}
.bk-select-small .bk-select-angle{
        top:1px;
    }
.bk-select-small .bk-select-clear{
        top:5px;
    }
.bk-select-small .bk-select-name{
        height:24px;
    }
.bk-select-popover-large .bk-options .bk-option-content .bk-option-name{
                font-size:12px;
                font-size:var(--font-size);
            }
.bk-select-tag-container{
    height:auto;
    min-height:30px;
    padding:0 30px 0 10px;
    overflow:hidden
}
.bk-select-tag-container.is-fixed-height{
        height:30px;
    }
.bk-select-tag-container.is-focus{
        height:auto !important;
        overflow:auto;
    }
.bk-select-tag-container.is-large-size{
        min-height:34px
    }
.bk-select-tag-container.is-large-size.is-fixed-height{
            height:34px;
        }
.bk-select-tag-container.is-large-size .bk-select-tag{
            height:24px;
        }
.bk-select-tag-container.is-large-size .bk-select-overflow-tag{
            min-height:24px;
            line-height:24px;
        }
.bk-select-tag-container.is-small-size{
        min-height:24px
    }
.bk-select-tag-container.is-small-size.is-fixed-height{
            height:24px;
        }
.bk-select-tag-container.is-small-size .bk-select-tag{
            height:20px;
        }
.bk-select-tag-container.is-small-size .bk-select-overflow-tag{
            min-height:20px;
            line-height:20px;
        }
.bk-select-tag-container.is-available .bk-select-tag:hover{
            background-color:#DCDEE5;
        }
.bk-select-tag-container.is-available .icon-close:hover{
            color:#63656E;
        }
.bk-select-tag-container.has-prefix-icon{
        padding-left:24px;
    }
.bk-select-tag-container .bk-select-tag{
        display:-webkit-inline-box;
        display:-ms-inline-flexbox;
        display:inline-flex;
        height:22px;
        line-height:22px;
        margin:0 6px 0 0;
        padding:0 2px 0 5px;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        background:#f0f1f5;
        border-radius:2px;
        font-size:12px;
        font-size:var(--font-size);
    }
.bk-select-tag-container .bk-select-tag .icon-close{
            margin-left:5px;
            -webkit-box-flex:18px;
                -ms-flex:18px 0 0px;
                    flex:18px 0 0;
            font-size:18px;
            color:#979BA5;
        }
.bk-select-tag-container .bk-select-tag.width-limit-tag{
            display:-webkit-inline-box;
            display:-ms-inline-flexbox;
            display:inline-flex;
            max-width:140px;
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
        }
.bk-select-tag-container .bk-select-tag.width-limit-tag span{
                display:inline-block;
                max-width:130px;
                overflow:hidden;
                text-overflow:ellipsis;
                white-space:nowrap;
                height:100%;
            }
.bk-select-tag-container .bk-select-overflow-tag{
        display:-webkit-inline-box;
        display:-ms-inline-flexbox;
        display:inline-flex;
        padding:0 5px;
        margin:0 6px 0 0;
        min-width:22px;
        line-height:22px;
        font-size:12px;
        font-size:var(--font-size);
        text-align:center;
        background:#f0f1f5
    }
.bk-select-tag-container .bk-select-overflow-tag ~ .bk-select-tag{
            visibility:hidden;
            pointer-events:none;
        }
.bk-sideslider-show{
    overflow-y:hidden !important;
}
.bk-sideslider-show body{
        overflow-y:hidden !important;
    }
.bk-sideslider-show.has-sideslider-padding{
        padding-right:17px !important;
    }
.bk-sideslider{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:2500;
}
.bk-sideslider-wrapper{
        position:absolute;
        top:0;
        bottom:0;
        background-color:#fff;
        overflow-y:auto
    }
.bk-sideslider-wrapper.left{
            left:0;
            -webkit-box-shadow:5px 0px 8px -5px rgba(0, 0, 0, 0.2);
                    box-shadow:5px 0px 8px -5px rgba(0, 0, 0, 0.2);
        }
.bk-sideslider-wrapper.right{
            right:0;
            -webkit-box-shadow:-5px 0px 8px -5px rgba(0, 0, 0, 0.2);
                    box-shadow:-5px 0px 8px -5px rgba(0, 0, 0, 0.2);
        }
.bk-sideslider-header{
        width:100%;
        height:60px;
        background:#FFFFFF
    }
.bk-sideslider-header:before,
        .bk-sideslider-header:after{
            content:'';
            display:table;
            line-height:0;
        }
.bk-sideslider-header:after{
            clear:both;
        }
.bk-sideslider-closer{
        width:30px;
        height:60px;
        line-height:60px;
        background-color:#3a84ff;
        text-align:center;
        color:#fff;
        cursor:pointer;
        font-size:24px;
    }
.bk-sideslider-closer span{
            display:block;
            margin-top:22px;
        }
.bk-sideslider-title{
        height:60px;
        line-height:60px;
        border-bottom:1px solid #DCDEE5;
        font-size:16px;
        font-weight:bold;
        color:#666;
    }
.bk-sideslider-content{
        overflow:auto;
    }
.bk-sideslider-footer{
        width:100%;
        height:54px;
        border-top:1px solid transparent;
        background:#fff;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
    }
.bk-slider{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
        -ms-flex-direction:row;
            flex-direction:row;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}
.bk-slider .bk-slider-runway{
        width:100%;
        height:4px;
        background:#dcdee5;
        position:relative;
        cursor:pointer;
        vertical-align:middle;
        opacity:1;
        border-radius:2px;
    }
.bk-slider .bk-slider-runway .bk-slider-bar{
            height:4px;
            border-top-left-radius:3px;
            border-bottom-left-radius:3px;
            position:absolute;
            background:#3a84ff
        }
.bk-slider .bk-slider-runway .bk-slider-bar.vertical{
                width:4px;
            }
.bk-slider .bk-slider-runway .bk-slider-bar.horizontal{
                height:4px;
            }
.bk-slider .bk-slider-runway .disable{
            background:#979ba5;
        }
.bk-slider .bk-slider-runway .bk-slider-labels{
            position:relative;
            font-size:12px
        }
.bk-slider .bk-slider-runway .bk-slider-labels.vertical{
                left:18px;
                height:100%;
                width:10px;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-orient:vertical;
                -webkit-box-direction:normal;
                    -ms-flex-direction:column;
                        flex-direction:column;
                -webkit-box-pack:justify;
                    -ms-flex-pack:justify;
                        justify-content:space-between;
            }
.bk-slider .bk-slider-runway .bk-slider-labels.horizontal{
                top:10px;
                width:100%;
                height:10px;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-orient:horizontal;
                -webkit-box-direction:normal;
                    -ms-flex-direction:row;
                        flex-direction:row;
                -webkit-box-pack:justify;
                    -ms-flex-pack:justify;
                        justify-content:space-between;
            }
.bk-slider .bk-slider-runway .bk-slider-labels .bk-slider-label{
                position:absolute;
                width:10px;
                height:10px;
                text-align:center;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-align:center;
                    -ms-flex-align:center;
                        align-items:center;
                -webkit-box-pack:center;
                    -ms-flex-pack:center;
                        justify-content:center;
                white-space:nowrap
            }
.bk-slider .bk-slider-runway .bk-slider-labels .bk-slider-label.vertical{
                    left:10px;
                    -webkit-transform:translateY(50%);
                            transform:translateY(50%);
                }
.bk-slider .bk-slider-runway .bk-slider-labels .bk-slider-label.horizontal{
                    top:10px;
                    -webkit-transform:translateX(-50%);
                            transform:translateX(-50%);
                }
.bk-slider .bk-slider-interval{
        position:absolute;
        height:4px;
        width:4px;
        border-radius:100%;
        background-color:#fff;
        -webkit-transform:translateX(-50%);
                transform:translateX(-50%)
    }
.bk-slider .bk-slider-interval.vertical{
            left:2px;
        }
.bk-slider-input{
        margin:0 0 0 28px;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
            -ms-flex-direction:row;
                flex-direction:row;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
    }
.bk-slider-input .input-item{
            width:56px;
        }
.bk-slider-input .input-center{
            margin:0 7px;
        }
.bk-slider-button{
    height:24px;
    width:24px;
    position:absolute;
    z-index:1001;
    background-color:transparent;
    text-align:center;
    -webkit-user-select:none;
       -moz-user-select:none;
        -ms-user-select:none;
            user-select:none;
    line-height:normal;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center
}
.bk-slider-button:hover{
        cursor:-webkit-grab;
        cursor:grab;
    }
.bk-slider-button.grabbing{
        cursor:-webkit-grabbing;
        cursor:grabbing;
    }
.bk-slider-button.vertical{
        left:-10px;
        -webkit-transform:translateY(50%);
                transform:translateY(50%);
    }
.bk-slider-button.horizontal{
        top:-10px;
        -webkit-transform:translateX(-50%);
                transform:translateX(-50%);
    }
.bk-slider-button .slider-button{
        width:12px;
        height:12px;
        border:2px solid #3a84ff;
        border-radius:50%;
        background-color:#fff;
        -webkit-transition:.2s;
        transition:.2s;
        -webkit-user-select:none;
           -moz-user-select:none;
            -ms-user-select:none;
                user-select:none;
    }
.bk-slider-button .slider-button-disable{
            border:2px solid #979ba5;
        }
.bk-slider-button .slider-button:hover{
            -webkit-box-shadow:0px 0px 0px 4px rgba(58, 132, 255, 0.30);
                    box-shadow:0px 0px 0px 4px rgba(58, 132, 255, 0.30);
        }
.bk-slider-button .slider-button:focus{
            -webkit-box-shadow:0px 0px 10px 0px rgba(58, 132, 255, 0.9);
                    box-shadow:0px 0px 10px 0px rgba(58, 132, 255, 0.9);
        }
.bk-slider-button .slider-button-label{
        position:absolute;
        text-align:center;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
        font-size:12px
    }
.bk-slider-button .slider-button-label.vertical{
            left:28px;
        }
.bk-slider-button .slider-button-label.horizontal{
            top:20px;
        }
@-webkit-keyframes loadingCircle{
    100%{
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg);
    }
}
@keyframes loadingCircle{
    100%{
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg);
    }
}
.bk-steps{
    display:table;
    width:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    font-size:0;
}
.bk-steps .bk-icon{
        font-size:24px;
        line-height:24px
    }
.bk-steps .bk-icon.icon-loading{
            display:inline-block;
            -webkit-animation:loadingCircle 1s infinite linear;
                    animation:loadingCircle 1s infinite linear;
            font-size:14px;
        }
.bk-steps .bk-step.done{
        }
.bk-steps .bk-step.done .bk-step-number,
            .bk-steps .bk-step.done .bk-step-icon,
            .bk-steps .bk-step.done .bk-step-text{
                border-color:#3a84ff;
                color:#3a84ff;
            }
.bk-steps .bk-step.done .bk-step-title::after, .bk-steps .bk-step.done .bk-step-indicator::after{
                    background-image:-webkit-gradient(linear, left top, right top, color-stop(50%, #3a84ff), color-stop(0%, transparent));
                    background-image:linear-gradient(to right, #3a84ff 50%, transparent 0%);
                }
.bk-steps .bk-step.done::after{
                background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #3a84ff), color-stop(0%, transparent));
                background-image:linear-gradient(#3a84ff 50%, transparent 0%);
            }
.bk-steps .bk-step.current .bk-step-number,
            .bk-steps .bk-step.current .bk-step-icon,
            .bk-steps .bk-step.current .bk-step-text{
                background-color:#3a84ff;
                border-color:#3a84ff;
                color:#fff;
            }
.bk-steps .bk-step{
        -webkit-box-flex:1;
            -ms-flex:1;
                flex:1;
        position:relative;
        overflow:hidden;
        white-space:nowrap;
        margin-right:8px;
    }
.bk-steps .bk-step .bk-step-indicator{
            display:-webkit-inline-box;
            display:-ms-inline-flexbox;
            display:inline-flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
            width:24px;
            height:24px;
            padding:0;
            margin-right:8px;
            border:1px solid #979ba5;
            border-radius:50%;
            line-height:24px;
            color:#979ba5;
            text-align:center;
            background-color:#fff;
            z-index:1;
            vertical-align:top;
        }
.bk-steps .bk-step .bk-step-number{
            font-size:14px;
            font-family:arial;
        }
.bk-steps .bk-step .bk-step-content{
            display:inline-block;
            vertical-align:top;
        }
.bk-steps .bk-step .bk-step-title{
            display:inline-block;
            position:relative;
            color:#63656e;
            font-size:14px;
            word-break:break-all;
            padding-right:8px;
            line-height:24px;
        }
.bk-steps .bk-step .bk-step-title::after{
        content:"";
        position:absolute;
        left:100%;
        top:12px;
        width:99999px;
        height:1px;
        background-color:transparent;
    }
.bk-steps .bk-step .bk-step-description{
            font-size:12px;
            color:#979ba5;
            max-width:140px;
            white-space:normal;
            display:block;
            max-width:140px;
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
        }
.bk-steps .bk-step.bk-step-no-content .bk-step-indicator{
                margin-right:0
            }
.bk-steps .bk-step.bk-step-no-content .bk-step-indicator::after{
        content:"";
        position:absolute;
        left:100%;
        top:12px;
        width:99999px;
        height:1px;
        background-color:transparent;
    }
.bk-steps .bk-step.bk-step-no-content .bk-step-indicator::after{
                    left:32px;
                    top:10px;
                }
.bk-steps .bk-step:last-child{
            -webkit-box-flex:0;
                -ms-flex:none;
                    flex:none;
            margin-right:0;
        }
.bk-steps .bk-step:last-child .bk-step-title{
                padding-right:0
            }
.bk-steps .bk-step:last-child .bk-step-title::after{
                    display:none;
                }
.bk-steps .bk-step.done .bk-step-title,
            .bk-steps .bk-step.done .bk-step-description{
                color:#63656e;
            }
.bk-steps .bk-step.current .bk-step-number,
            .bk-steps .bk-step.current .bk-step-icon,
            .bk-steps .bk-step.current .bk-step-text{
                border-width:2px;
            }
.bk-steps .bk-step.current .bk-step-title,
            .bk-steps .bk-step.current .bk-step-description{
                color:#63656e;
            }
.bk-steps .bk-step.current.bk-step-error .bk-step-indicator{
                    background-color:#ff5656;
                    border-color:#ff5656;
                }
.bk-steps .bk-step.current.bk-step-error .bk-step-title,
                .bk-steps .bk-step.current.bk-step-error .bk-step-description{
                    color:#ff5656;
                }
.bk-steps-info .bk-step.done{
        }
.bk-steps-info .bk-step.done .bk-step-number,
            .bk-steps-info .bk-step.done .bk-step-icon,
            .bk-steps-info .bk-step.done .bk-step-text{
                border-color:#88c3ff;
                color:#88c3ff;
            }
.bk-steps-info .bk-step.done .bk-step-title::after, .bk-steps-info .bk-step.done .bk-step-indicator::after{
                    background-image:-webkit-gradient(linear, left top, right top, color-stop(50%, #88c3ff), color-stop(0%, transparent));
                    background-image:linear-gradient(to right, #88c3ff 50%, transparent 0%);
                }
.bk-steps-info .bk-step.done::after{
                background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #88c3ff), color-stop(0%, transparent));
                background-image:linear-gradient(#88c3ff 50%, transparent 0%);
            }
.bk-steps-info .bk-step.current .bk-step-number,
            .bk-steps-info .bk-step.current .bk-step-icon,
            .bk-steps-info .bk-step.current .bk-step-text{
                background-color:#88c3ff;
                border-color:#88c3ff;
                color:#fff;
            }
.bk-steps-success .bk-step.done{
        }
.bk-steps-success .bk-step.done .bk-step-number,
            .bk-steps-success .bk-step.done .bk-step-icon,
            .bk-steps-success .bk-step.done .bk-step-text{
                border-color:#2dcb56;
                color:#2dcb56;
            }
.bk-steps-success .bk-step.done .bk-step-title::after, .bk-steps-success .bk-step.done .bk-step-indicator::after{
                    background-image:-webkit-gradient(linear, left top, right top, color-stop(50%, #2dcb56), color-stop(0%, transparent));
                    background-image:linear-gradient(to right, #2dcb56 50%, transparent 0%);
                }
.bk-steps-success .bk-step.done::after{
                background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #2dcb56), color-stop(0%, transparent));
                background-image:linear-gradient(#2dcb56 50%, transparent 0%);
            }
.bk-steps-success .bk-step.current .bk-step-number,
            .bk-steps-success .bk-step.current .bk-step-icon,
            .bk-steps-success .bk-step.current .bk-step-text{
                background-color:#2dcb56;
                border-color:#2dcb56;
                color:#fff;
            }
.bk-steps-warning .bk-step.done{
        }
.bk-steps-warning .bk-step.done .bk-step-number,
            .bk-steps-warning .bk-step.done .bk-step-icon,
            .bk-steps-warning .bk-step.done .bk-step-text{
                border-color:#ff9c01;
                color:#ff9c01;
            }
.bk-steps-warning .bk-step.done .bk-step-title::after, .bk-steps-warning .bk-step.done .bk-step-indicator::after{
                    background-image:-webkit-gradient(linear, left top, right top, color-stop(50%, #ff9c01), color-stop(0%, transparent));
                    background-image:linear-gradient(to right, #ff9c01 50%, transparent 0%);
                }
.bk-steps-warning .bk-step.done::after{
                background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #ff9c01), color-stop(0%, transparent));
                background-image:linear-gradient(#ff9c01 50%, transparent 0%);
            }
.bk-steps-warning .bk-step.current .bk-step-number,
            .bk-steps-warning .bk-step.current .bk-step-icon,
            .bk-steps-warning .bk-step.current .bk-step-text{
                background-color:#ff9c01;
                border-color:#ff9c01;
                color:#fff;
            }
.bk-steps-danger .bk-step.done{
        }
.bk-steps-danger .bk-step.done .bk-step-number,
            .bk-steps-danger .bk-step.done .bk-step-icon,
            .bk-steps-danger .bk-step.done .bk-step-text{
                border-color:#ea3636;
                color:#ea3636;
            }
.bk-steps-danger .bk-step.done .bk-step-title::after, .bk-steps-danger .bk-step.done .bk-step-indicator::after{
                    background-image:-webkit-gradient(linear, left top, right top, color-stop(50%, #ea3636), color-stop(0%, transparent));
                    background-image:linear-gradient(to right, #ea3636 50%, transparent 0%);
                }
.bk-steps-danger .bk-step.done::after{
                background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #ea3636), color-stop(0%, transparent));
                background-image:linear-gradient(#ea3636 50%, transparent 0%);
            }
.bk-steps-danger .bk-step.current .bk-step-number,
            .bk-steps-danger .bk-step.current .bk-step-icon,
            .bk-steps-danger .bk-step.current .bk-step-text{
                background-color:#ea3636;
                border-color:#ea3636;
                color:#fff;
            }
.bk-steps-dashed .bk-step .bk-step-title::after, .bk-steps-dashed .bk-step .bk-step-indicator::after{
                    background-image:-webkit-gradient(linear, left top, right top, color-stop(50%, #c4c6cc), color-stop(0%, transparent));
                    background-image:linear-gradient(to right, #c4c6cc 50%, transparent 0%);
                    background-position:bottom;
                    background-size:6px 1px;
                    background-repeat:repeat-x;
                }
.bk-steps-solid .bk-step .bk-step-title::after, .bk-steps-solid .bk-step .bk-step-indicator::after{
                    background-color:#c4c6cc;
                }
.bk-steps-vertical{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
        height:100%;
    }
.bk-steps-vertical .bk-step{
            margin-bottom:8px;
            margin-right:0;
        }
.bk-steps-vertical .bk-step .bk-step-title::after, .bk-steps-vertical .bk-step .bk-step-indicator::after{
                    display:none;
                }
.bk-steps-vertical .bk-step::after{
                content:"";
                position:absolute;
                left:12px;
                top:32px;
                height:100%;
                width:1px;
                background-image:-webkit-gradient(linear, left top, left bottom, color-stop(50%, #c4c6cc), color-stop(0%, transparent));
                background-image:linear-gradient(#c4c6cc 50%, transparent 0%);
                background-position:right;
                background-size:1px 6px;
                background-repeat:repeat-y;
            }
.bk-steps-vertical .bk-step .bk-step-title{
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                height:100%;
                -webkit-box-align:center;
                    -ms-flex-align:center;
                        align-items:center;
                text-align:left;
                margin-top:0;
            }
.bk-steps-small .bk-step .bk-step-indicator{
                width:20px;
                height:20px;
                line-height:20px;
            }
.bk-steps-small .bk-step .bk-step-title{
                font-size:12px;
                line-height:20px;
            }
.bk-steps-small .bk-step .bk-step-number{
                font-size:12px;
            }
.bk-steps-small .bk-step .bk-icon{
                font-size:12px;
                line-height:20px;
            }
.bk-steps-small .bk-step::after{
                left:10px;
                top:28px;
            }
.bk-steps-small .bk-step .bk-step-title::after{
                    top:10px;
                }
.bk-steps-small .bk-step.bk-step-no-content .bk-step-indicator::after{
                        left:28px;
                        top:8px;
                    }
.bk-switcher{
    width:36px;
    height:20px;
    line-height:20px;
    position:relative;
    border-radius:50px;
    display:inline-block;
    vertical-align:middle;
    -webkit-transition:all .4s ease;
    transition:all .4s ease;
    background-color:#c4c6cc;
    text-align:left
}
.bk-switcher:focus{
        -webkit-box-shadow:0px 0px 6px #c4c6cc;
                box-shadow:0px 0px 6px #c4c6cc;
    }
.bk-switcher:after{
        left:2px;
        top:2px;
        content:"";
        height:24px;
        width:24px;
        border-radius:100px;
        display:block;
        -webkit-transition:all .3s ease;
        transition:all .3s ease;
        position:absolute;
        cursor:pointer;
        background:#fff;
        -webkit-box-shadow:0 0 3px rgba(0, 0, 0, .2);
                box-shadow:0 0 3px rgba(0, 0, 0, .2)
    }
.bk-switcher:not(.show-label):after{
        height:16px;
        width:16px;
    }
.bk-switcher:not(.show-label).is-checked:after{
            margin-left:-18px;
        }
.bk-switcher.is-loading{
        cursor:defalt;
    }
.bk-switcher.is-loading input[type=checkbox]{
            cursor:default;
        }
.bk-switcher{
}
.bk-switcher .bk-switcher-loading{
        width:18px;
        position:absolute;
        z-index:10;
        top:50%;
        left:1px;
        -webkit-transform:translateY(-50%);
                transform:translateY(-50%);
    }
.bk-switcher .switcher-label{
        width:30px;
        height:28px;
        font-size:12px;
        color:#fff;
        -webkit-transition:all ease 0.3s;
        transition:all ease 0.3s;
        font-weight:normal;
        display:none;
        margin:0 0 0 26px;
        text-align:center;
        vertical-align:top;
    }
.bk-switcher .switcher-label .on-text{
            display:none;
        }
.bk-switcher .switcher-label .off-text{
            display:inline-block
        }
.bk-switcher.show-label{
        width:60px;
        height:28px;
        line-height:28px;
    }
.bk-switcher.show-label .switcher-label{
            display:inline-block;
        }
.bk-switcher.show-label .bk-switcher-loading{
            width:26px;
        }
.bk-switcher.is-disabled{
        cursor:default;
        opacity:0.3;
    }
.bk-switcher.is-disabled input[type=checkbox]{
            cursor:not-allowed;
        }
.bk-switcher.is-checked{
        background:#2dcb56
    }
.bk-switcher.is-checked:focus{
            -webkit-box-shadow:0px 0px 6px #2dcb56;
                    box-shadow:0px 0px 6px #2dcb56;
        }
.bk-switcher.is-checked.primary{
            background:#3a84ff
        }
.bk-switcher.is-checked.primary:focus{
                -webkit-box-shadow:0px 0px 6px #3a84ff;
                        box-shadow:0px 0px 6px #3a84ff;
            }
.bk-switcher.is-checked:after{
            left:100%;
            top:2px;
            margin-left:-26px;
        }
.bk-switcher.is-checked .switcher-label{
            margin-left:4px;
        }
.bk-switcher.is-checked .switcher-label .on-text{
                display:inline-block;
            }
.bk-switcher.is-checked .switcher-label .off-text{
                display:none;
            }
.bk-switcher.is-checked .bk-switcher-loading{
            left:auto;
            right:1px;
        }
.bk-switcher.bk-switcher-outline{
        background:#fff;
        border:1px solid #c4c6cc
    }
.bk-switcher.bk-switcher-outline:after{
            width:22px;
            height:22px;
            -webkit-box-shadow:none;
                    box-shadow:none;
            background-color:#c4c6cc;
        }
.bk-switcher.bk-switcher-outline .switcher-label{
            height:26px;
            color:#c4c6cc;
            margin-left:24px;
        }
.bk-switcher.bk-switcher-outline.is-checked{
            border:1px solid #2dcb56
        }
.bk-switcher.bk-switcher-outline.is-checked:after{
                margin-left:-24px;
                background-color:#2dcb56;
            }
.bk-switcher.bk-switcher-outline.is-checked .switcher-label{
                color:#2dcb56;
                margin-left:4px;
            }
.bk-switcher.bk-switcher-outline.is-disabled{
            background-color:#fff !important;
            border-color:#eee !important;
        }
.bk-switcher.bk-switcher-outline.is-disabled .switcher-label{
                color:#eee;
            }
.bk-switcher.bk-switcher-outline.is-disabled:after{
                background-color:#eee;
            }
.bk-switcher.bk-switcher-outline.bk-switcher-large:after{
                width:18px;
                height:18px;
            }
.bk-switcher.bk-switcher-outline.bk-switcher-large.is-checked:after{
                    margin-left:-20px;
                }
.bk-switcher.bk-switcher-square{
        border-radius:2px
    }
.bk-switcher.bk-switcher-square:after{
            border-radius:2px;
        }
.bk-switcher.bk-switcher-square .switcher-label{
            width:35px;
        }
.bk-switcher.bk-switcher-large{
        width:42px;
        height:24px;
        line-height:22px;
        border-radius:12px
    }
.bk-switcher.bk-switcher-large:after{
            width:20px;
            height:20px;
        }
.bk-switcher.bk-switcher-large.is-checked:after{
                left:100%;
                top:2px;
                margin-left:-22px;
            }
.bk-switcher.bk-switcher-large .bk-switcher-loading{
            width:22px;
        }
.bk-switcher.bk-switcher-small{
        width:26px;
        height:16px;
        line-height:22px
    }
.bk-switcher.bk-switcher-small:after{
            width:12px;
            height:12px;
        }
.bk-switcher.bk-switcher-small.is-checked:after{
                left:100%;
                top:2px;
                margin-left:-14px;
            }
.bk-switcher.bk-switcher-small .bk-switcher-loading{
            width:14px;
        }
.bk-switcher input[type=checkbox],
    .bk-switcher input[type=radio]{
        opacity:0;
        width:100%;
        height:100%;
        position:absolute;
        z-index:1;
        cursor:pointer;
        left:0;
        top:0;
        margin:0;
    }
.bk-tab{
    border-radius:2px;
}
.bk-tab.bk-tab-border-card >.bk-tab-header{
        height:43px;
        border:1px solid #dcdee5;
        border-bottom:none;
        background-color:#fafbfd;
        border-radius:2px 2px 0 0;
    }
.bk-tab.bk-tab-border-card >.bk-tab-header>.bk-tab-label-wrapper>.bk-tab-label-list >.bk-tab-label-item.active{
            background-color:#fff;
        }
.bk-tab.bk-tab-card .bk-tab-label-wrapper.has-add .bk-tab-label-list{
                border-radius:2px 0 0 0;
            }
.bk-tab.bk-tab-card .bk-tab-label-wrapper.has-scroller .bk-tab-label-list{
                border-radius:0;
            }
.bk-tab.bk-tab-card .bk-tab-label-list{
        border-top:1px solid #dcdee5;
        border-radius:2px 2px 0 0;
    }
.bk-tab.bk-tab-card .bk-tab-label-list .bk-tab-label-item.is-first{
            border-left:1px solid #dcdee5;
        }
.bk-tab.bk-tab-card .bk-tab-scroll-controller{
        border-top:1px solid #dcdee5
    }
.bk-tab.bk-tab-card .bk-tab-scroll-controller.prev{
            border-left:1px solid #dcdee5
        }
.bk-tab.bk-tab-card .bk-tab-scroll-controller.prev.disabled{
                border-right:none;
            }
.bk-tab.bk-tab-card .bk-tab-add-controller{
        border-top:1px solid #dcdee5;
        background-color:#fff;
    }
.bk-tab.bk-tab-card >.bk-tab-header>.bk-tab-label-wrapper>.bk-tab-label-list >.bk-tab-label-item.active{
            background-color:#fff;
        }
.bk-tab-label-list-has-bar::after{
        content:'';
        position:absolute;
        bottom:var(--activeBarBottom);
        top:var(----activeBarTop);
        left:var(--activeBarLeft);
        height:var(--activeBarHeight);
        width:var(--activeBarWidth);
        -webkit-transform:var(--activeBarTransform);
                transform:var(--activeBarTransform);
        background:#3a84ff;
        -webkit-transition:-webkit-transform .3s cubic-bezier(.645, .045, .355, 1);
        transition:-webkit-transform .3s cubic-bezier(.645, .045, .355, 1);
        transition:transform .3s cubic-bezier(.645, .045, .355, 1);
        transition:transform .3s cubic-bezier(.645, .045, .355, 1), -webkit-transform .3s cubic-bezier(.645, .045, .355, 1);
    }
.bk-tab.bk-tab-unborder-card .bk-tab-label-list{
        border-top:none;
    }
.bk-tab.bk-tab-unborder-card .bk-tab-label-wrapper.has-scroller.has-add .bk-tab-add-controller{
                border-left:none;
            }
.bk-tab.bk-tab-unborder-card .bk-tab-label-wrapper .bk-tab-add-controller,
        .bk-tab.bk-tab-unborder-card .bk-tab-label-wrapper .bk-tab-scroll-controller{
            border:none;
            border-bottom:1px solid #dcdee5;
            background-color:#fff;
        }
.bk-tab.bk-tab-unborder-card .bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item{
                border:none!important;
            }
.bk-tab.bk-tab-unborder-card .bk-tab-section{
        border:none;
    }
.position-left,.position-right{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:stretch;
        -ms-flex-align:stretch;
            align-items:stretch;
    min-height:225px
}
.position-left.position-right, .position-right.position-right{
        -webkit-box-orient:horizontal;
        -webkit-box-direction:reverse;
            -ms-flex-direction:row-reverse;
                flex-direction:row-reverse;
    }
.position-left.position-right .bk-tab-header, .position-right.position-right .bk-tab-header{
            border-right:none;
            right:0
        }
.position-left.position-right .bk-tab-header:after, .position-left.position-right .bk-tab-header:before, .position-right.position-right .bk-tab-header:after, .position-right.position-right .bk-tab-header:before{
                left:0;
                right:calc(100% - 1px);
            }
.position-left.position-right .bk-tab-label-wrapper:after, .position-right.position-right .bk-tab-label-wrapper:after{
                border-right:none;
                border-left:1px solid #dcdee5;
            }
.position-left.position-right .bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item, .position-right.position-right .bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item{
                text-align:left;
                border-right:none;
                border-left:1px solid #dcdee5;
            }
.position-left .bk-tab-header, .position-right .bk-tab-header{
        height:auto;
        background:#fff;
        padding:10px 0
    }
.position-left .bk-tab-header:after, .position-left .bk-tab-header:before, .position-right .bk-tab-header:after, .position-right .bk-tab-header:before{
            content:'';
            position:absolute;
            height:10px;
            width:1px;
            right:0;
            top:0;
            background:#dcdee5;
        }
.position-left .bk-tab-header:after, .position-right .bk-tab-header:after{
            top:calc(100% - 10px);
            bottom:0;
        }
.position-left .bk-tab-label-wrapper, .position-right .bk-tab-label-wrapper{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
        overflow-y:auto;
        overflow-y:overlay
    }
.position-left .bk-tab-label-wrapper:after, .position-right .bk-tab-label-wrapper:after{
            content:'';
            -webkit-box-flex:1;
                -ms-flex:1;
                    flex:1;
            border-right:1px solid #dcdee5;
        }
.position-left .bk-tab-label-wrapper.has-scroller.has-add .bk-tab-add-controller, .position-right .bk-tab-label-wrapper.has-scroller.has-add .bk-tab-add-controller{
                border-left:none;
            }
.position-left .bk-tab-label-wrapper .bk-tab-label-list, .position-right .bk-tab-label-wrapper .bk-tab-label-list{
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-orient:vertical;
            -webkit-box-direction:normal;
                -ms-flex-direction:column;
                    flex-direction:column;
            height:auto;
        }
.position-left .bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item, .position-right .bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item{
                border-right:1px solid #dcdee5;
                padding:0 12px;
                margin:0;
                text-align:right;
                position:relative;
            }
.position-left .bk-tab-section, .position-right .bk-tab-section{
        border:none;
        padding:10px 20px;
        -webkit-box-flex:1;
            -ms-flex:1;
                flex:1;
    }
.position-left .bk-tab-section .bk-tab-content, .position-right .bk-tab-section .bk-tab-content{
            word-break:break-all;
        }
.bk-tab-header{
    position:relative;
    height:42px;
    color:#63656e;
    background-image:linear-gradient(transparent 41px, #dcdee5 1px);
}
.bk-tab-label-wrapper{
    position:relative;
    height:100%;
    font-size:0;
    overflow:hidden
}
.bk-tab-label-wrapper.has-add .bk-tab-label-list .bk-tab-label-item.has-close{
            -webkit-transition:color .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1);
            transition:color .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1)
        }
.bk-tab-label-wrapper.has-add .bk-tab-label-list .bk-tab-label-item.has-close:hover{
                padding:0 11px;
            }
.bk-tab-label-wrapper.has-add .bk-tab-label-list .bk-tab-label-item.has-close .bk-tab-close-controller{
                -webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);
                transition:all .3s cubic-bezier(.645,.045,.355,1);
            }
.bk-tab-label-wrapper.has-scroller{
        padding:0 24px;
    }
.bk-tab-label-wrapper.has-scroller .bk-tab-label-list .bk-tab-label-item.is-last{
                border-right:none;
            }
.bk-tab-label-wrapper.has-scroller.has-add{
        padding:0 66px 0 24px;
    }
.bk-tab-label-wrapper.has-scroller.has-add .bk-tab-add-controller{
            position:absolute;
            top:0;
            right:0;
            border-bottom:1px solid #dcdee5;
            border-left:1px solid #dcdee5
        }
.bk-tab-label-wrapper.has-scroller.has-add .bk-tab-add-controller.next-right{
                right:24px;
                -webkit-box-shadow:-10px 0 10px rgba(0, 0, 0, .05);
                        box-shadow:-10px 0 10px rgba(0, 0, 0, .05);
                border-right:0;
            }
.bk-tab-label-wrapper.has-scroller.has-add .bk-tab-scroll-controller.next{
            right:42px;
        }
.bk-tab-label-wrapper.has-scroller.has-add .bk-tab-add-custom{
            position:absolute;
            top:0;
            right:0;
            border-left:1px solid #dcdee5
        }
.bk-tab-label-wrapper.has-scroller.has-add .bk-tab-add-custom.next-right{
                right:24px;
                border-left:1px solid #dcdee5;
                -webkit-box-shadow:-10px 0 10px rgba(0, 0, 0, .05);
                        box-shadow:-10px 0 10px rgba(0, 0, 0, .05);
            }
.bk-tab-label-wrapper .bk-tab-add-controller{
        display:inline-block;
        vertical-align:middle;
        width:42px;
        height:42px;
        border-right:1px solid #dcdee5;
        border-bottom:1px solid #dcdee5;
        line-height:41px;
        text-align:center;
        font-size:22px;
        background-color:#fafbfd;
        cursor:pointer;
        z-index:2
    }
.bk-tab-label-wrapper .bk-tab-add-controller:hover{
            color:#3a84ff;
        }
.bk-tab-label-wrapper .bk-tab-add-controller.left-border{
            border-left:1px solid #dcdee5;
        }
.bk-tab-label-wrapper .bk-tab-add-custom{
        display:inline-block;
        position:relative;
        font-size:22px;
        z-index:2;
        vertical-align:middle;
        opacity:1;
        background-color:#fafbfd;
        border-bottom:1px solid #dcdee5;
    }
.bk-tab-label-wrapper .bk-tab-scroll-controller{
        position:absolute;
        top:0;
        width:24px;
        height:42px;
        border-bottom:1px solid #dcdee5;
        line-height:41px;
        text-align:center;
        font-size:22px;
        background-color:#fafbfd;
        -webkit-box-shadow:0 0 20px rgba(0, 0, 0, .2);
                box-shadow:0 0 20px rgba(0, 0, 0, .2);
        cursor:pointer;
        z-index:1
    }
.bk-tab-label-wrapper .bk-tab-scroll-controller.prev{
            left:0;
            border-right:1px solid #dcdee5;
            border-radius:2px 0 0 0;
        }
.bk-tab-label-wrapper .bk-tab-scroll-controller.next{
            right:0;
            border-left:1px solid #dcdee5;
        }
.bk-tab-label-wrapper .bk-tab-scroll-controller.add{
            width:42px;
            right:24px;
            -webkit-box-shadow:none;
                    box-shadow:none;
            border-right:1px solid #dcdee5;
            border-left:1px solid #dcdee5;
        }
.bk-tab-label-wrapper .bk-tab-scroll-controller:hover{
            color:#3a84ff;
        }
.bk-tab-label-wrapper .bk-tab-scroll-controller.disabled{
            -webkit-box-shadow:none;
                    box-shadow:none;
            cursor:not-allowed;
            color:#c4c6cc;
        }
.bk-tab-label-wrapper .bk-tab-label-list{
        display:inline-block;
        height:42px;
        vertical-align:middle;
        padding:0;
        margin:0;
        font-size:0;
        list-style:none;
        white-space:nowrap;
        -webkit-transition:-webkit-transform .3s;
        transition:-webkit-transform .3s;
        transition:transform .3s;
        transition:transform .3s, -webkit-transform .3s;
    }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item{
            position:relative;
            display:inline-block;
            vertical-align:middle;
            min-width:100px;
            padding:0 18px;
            border-right:1px solid #dcdee5;
            text-align:center;
            line-height:42px;
            cursor:pointer
        }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item:not(.is-disabled):hover{
                color:#3a84ff;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.simulate-border-bottom{
                padding:0 10px;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.simulate-border-bottom .bk-tab-label{
                    -webkit-box-shadow:inset 0px -4px 0px -2px #3a84ff !important;
                            box-shadow:inset 0px -4px 0px -2px #3a84ff !important;
                    padding:0 8px;
                }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.simulate-border-right{
                border-right:2px solid #3a84ff;
                padding-right:11px;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.active{
                color:#3a84ff;
                cursor:default;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.is-disabled{
                color:#c4c6cc;
                cursor:not-allowed;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.is-dragging{
                cursor:move;
                -webkit-user-select:none;
                   -moz-user-select:none;
                    -ms-user-select:none;
                        user-select:none;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.is-dragenter{
                background:#f0f1f5;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.is-unsortable{
                cursor:not-allowed;
                background:none;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.has-close:hover{
                padding:0 10px;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item.has-close:hover .bk-tab-close-controller{
                    margin:0 0 0 6px;
                    width:14px;
                }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item .bk-tab-label{
                font-size:14px;
                display:inline-block;
                vertical-align:middle;
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item .bk-tab-close-controller{
                position:relative;
                display:inline-block;
                vertical-align:middle;
                width:0;
                height:14px;
                border-radius:50%;
                background-color:#c4c6cc;
                overflow:hidden;
                cursor:pointer
            }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item .bk-tab-close-controller:before,
                .bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item .bk-tab-close-controller:after{
                    content:"";
                    position:absolute;
                    top:6px;
                    left:3px;
                    width:8px;
                    height:1px;
                    background-color:#fff;
                }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item .bk-tab-close-controller:before{
                    -webkit-transform:translateY(0.5px) rotate(45deg);
                            transform:translateY(0.5px) rotate(45deg);
                }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item .bk-tab-close-controller:after{
                    -webkit-transform:translateY(0.5px) rotate(-45deg);
                            transform:translateY(0.5px) rotate(-45deg);
                }
.bk-tab-label-wrapper .bk-tab-label-list .bk-tab-label-item .bk-tab-close-controller:hover{
                    background-color:#979ba5;
                }
.bk-tab-header-setting{
    float:right;
    height:42px;
    line-height:42px;
}
.bk-tab-section{
    padding:20px;
    border:1px solid #dcdee5;
    border-top:none;
    border-radius:0 0 2px 2px;
}
.bk-table{
    white-space:normal;
    position:relative;
    overflow:hidden;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
    -webkit-box-flex:1;
        -ms-flex:1;
            flex:1;
    width:100%;
    max-width:100%;
    font-size:12px;
    color:#575961;
}
.bk-table .bk-button-text{
        font-size:12px;
    }
.bk-table:before{
        position:absolute;
        left:0;
        bottom:0;
        width:100%;
        height:1px;
        content:'';
        background-color:#dfe0e5;
        z-index:1;
    }
.bk-table thead{
        color:#63656e;
        font-weight:bold
    }
.bk-table thead.is-group th{
                background-color:#f5f7fa;
            }
.bk-table tr{
        background-color:#fff;
    }
.bk-table tr input[type="checkbox"]{
            margin:0;
        }
.bk-table th, .bk-table td{
        height:42px;
        padding:0;
        min-width:0;
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        text-overflow:ellipsis;
        vertical-align:middle;
        position:relative;
        text-align:left
    }
.bk-table th.is-center, .bk-table td.is-center{
            text-align:center;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
        }
.bk-table th.is-center .cell, .bk-table td.is-center .cell{
                text-align:center;
                -webkit-box-pack:center;
                    -ms-flex-pack:center;
                        justify-content:center
            }
.bk-table th.is-right, .bk-table td.is-right{
            text-align:right;
            -webkit-box-pack:end;
                -ms-flex-pack:end;
                    justify-content:flex-end;
        }
.bk-table th.is-right .cell, .bk-table td.is-right .cell{
                text-align:right;
                -webkit-box-pack:end;
                    -ms-flex-pack:end;
                        justify-content:flex-end
            }
.bk-table th.gutter, .bk-table td.gutter{
            width:15px;
            border-right-width:0;
            border-bottom-width:0;
            padding:0;
        }
.bk-table th.is-hidden > *, .bk-table td.is-hidden > *{
            opacity:0;
            pointer-events:none;
        }
.bk-table th.is-prepend, .bk-table td.is-prepend{
            height:auto;
            background:transparent;
            font-weight:normal;
        }
.bk-table th.is-leaf,
    .bk-table td{
        border-bottom:1px solid #dfe0e5;
        height:43px;
    }
.bk-table th.is-sortable{
        cursor:pointer;
    }
.bk-table .cell{
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:normal;
        word-break:break-all;
        padding-left:15px;
        padding-right:15px;
        display:-webkit-box;
        -webkit-line-clamp:1;
        -webkit-box-orient:vertical;
    }
.bk-table .bk-form-checkbox{
        padding:0;
    }
.bk-table th{
        white-space:nowrap;
        overflow:hidden;
        -webkit-user-select:none;
           -moz-user-select:none;
            -ms-user-select:none;
                user-select:none;
        background-color:#fafbfd;
    }
.bk-table th :hover{
            background-color:#f0f1f5;
        }
.bk-table th >.cell{
            position:relative;
            display:-webkit-inline-box;
            display:-ms-inline-flexbox;
            display:inline-flex;
            -webkit-box-pack:left;
                -ms-flex-pack:left;
                    justify-content:left;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            width:100%;
            vertical-align:middle;
            overflow:hidden;
            height:42px;
            line-height:42px;
        }
.bk-table th.required > div:before{
            display:inline-block;
            content:"";
            width:8px;
            height:8px;
            border-radius:50%;
            background:#ff4d51;
            margin-right:5px;
            vertical-align:middle;
        }
.bk-table th .bk-table-header-label{
            overflow:hidden;
            white-space:nowrap;
            word-wrap:normal;
            text-overflow:ellipsis;
            font-weight:normal;
            color:#313238;
        }
.bk-table th .bk-table-column-filter-trigger{
            -webkit-box-flex:20px;
                -ms-flex:20px 0 0px;
                    flex:20px 0 0;
            height:20px;
            line-height:20px;
            font-size:14px;
            text-align:center;
            cursor:pointer;
            color:#C4C6CC
        }
.bk-table th .bk-table-column-filter-trigger.is-open{
                color:#63656e;
            }
.bk-table th .bk-table-column-filter-trigger.is-filtered{
                color:#3a84ff;
            }
.bk-table th .bk-table-caret-wrapper{
            display:-webkit-inline-box;
            display:-ms-inline-flexbox;
            display:inline-flex;
            -webkit-box-orient:vertical;
            -webkit-box-direction:normal;
                -ms-flex-direction:column;
                    flex-direction:column;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            height:20px;
            -webkit-box-flex:20px;
                -ms-flex:20px 0 0px;
                    flex:20px 0 0;
            vertical-align:middle;
            cursor:pointer;
            overflow:visible;
            overflow:initial;
            position:relative;
        }
.bk-table th .bk-table-sort-caret{
            width:0;
            height:0;
            border:solid 5px transparent;
            position:absolute
        }
.bk-table th .bk-table-sort-caret.ascending{
                border-bottom-color:#c0c4cc;
                top:-1px;
            }
.bk-table th .bk-table-sort-caret.descending{
                border-top-color:#c0c4cc;
                bottom:-1px;
            }
.bk-table th.ascending .bk-table-sort-caret.ascending{
            border-bottom-color:#3a84ff;
        }
.bk-table th.descending .bk-table-sort-caret.descending{
            border-top-color:#3a84ff;
        }
.bk-table td.gutter{
        width:0;
    }
.bk-table-medium td{
            height:54px;
        }
.bk-table-medium .cell{
            -webkit-line-clamp:2;
        }
.bk-table-large td{
            height:72px;
            padding:5px 0;
        }
.bk-table-large .cell{
            -webkit-line-clamp:3;
        }
.bk-table .hidden-columns{
        visibility:hidden;
        position:absolute;
        z-index:-1;
    }
.bk-table-row-auto-height .cell{
        display:block;
    }
.bk-table-group,
.bk-table-border,
.bk-table-outer-border{
    border:1px solid #dfe0e5;
    border-radius:2px
}
.bk-table-group:after, .bk-table-border:after, .bk-table-outer-border:after{
        position:absolute;
        top:0;
        right:0;
        width:1px;
        height:100%;
        content:'';
        background-color:#dfe0e5;
        z-index:9;
    }
.bk-table-linear:before{
        top:0;
        bottom:auto;
    }
.bk-table-border{
    border-right:none;
    border-bottom:none;
}
.bk-table-border th, .bk-table-border td{
        border-right:1px solid #dfe0e5
    }
.bk-table-border th:first-child .cell, .bk-table-border td:first-child .cell{
            padding-left:10px;
        }
.bk-table-border th{
        border-bottom:1px solid #dfe0e5;
    }
.bk-table-border th.gutter:last-of-type{
        border-bottom:1px solid #dfe0e5;
    }
.bk-table-hidden{
    visibility:hidden;
}
.bk-table-fixed,
.bk-table-fixed-right{
    position:absolute;
    top:0;
    left:0;
    overflow:hidden;
    -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .12);
            box-shadow:0 0 10px rgba(0, 0, 0, .12);
    border-bottom:1px solid #dfe0e5;
}
.bk-table-fixed tr.bk-table-row-last td.is-last, .bk-table-fixed-right tr.bk-table-row-last td.is-last{
            border-bottom:none;
        }
.bk-table-fixed-right{
    top:0;
    left:auto;
    right:1px;
}
.bk-table-fixed-right-patch{
        position:absolute;
        top:0;
        right:0;
        background-color:#f5f7fa;
        border-bottom:1px solid #dfe0e5;
    }
.bk-table-fixed-right .bk-table-fixed-header-wrapper,
    .bk-table-fixed-right .bk-table-fixed-body-wrapper,
    .bk-table-fixed-right .bk-table-fixed-footer-wrapper{
        left:auto;
        right:0;
    }
.bk-table-fixed-header-wrapper,
.bk-table-fixed-body-wrapper,
.bk-table-fixed-footer-wrapper{
    width:auto;
}
.bk-table-fixed-header-wrapper{
    position:absolute;
    left:0;
    top:0;
    z-index:3;
}
.bk-table-fixed-footer-wrapper{
    position:absolute;
    left:0;
    bottom:0;
    z-index:3;
}
.bk-table-fixed-footer-wrapper tbody td{
        border-top:1px solid #dfe0e5;
        background-color:#f5f7fa;
        color:#63656e;
    }
.bk-table-fixed-body-wrapper{
    position:absolute;
    left:0;
    top:37px;
    overflow:hidden;
    z-index:3;
}
.bk-table-fixed-body-wrapper tr.is-expanded-row{
        visibility:hidden;
        pointer-events:none;
    }
.bk-table-footer-wrapper{
    margin-top:-1px;
}
.bk-table-footer-wrapper td{
        border-top:1px solid #dfe0e5;
    }
.bk-table-header,
.bk-table-body,
.bk-table-footer{
    table-layout:fixed;
    border-collapse:separate;
}
.bk-table-header th.has-border{
        border-right:1px solid #dfe0e5;
    }
.bk-table-header-wrapper,
.bk-table-footer-wrapper{
    overflow:hidden;
}
.bk-table-header-wrapper tbody td, .bk-table-footer-wrapper tbody td{
        background-color:#f5f7fa;
        color:#63656e;
    }
.bk-table-body-wrapper{
    overflow:hidden;
    position:relative
}
.bk-table-body-wrapper.is-scrolling-none ~.bk-table-fixed,
        .bk-table-body-wrapper.is-scrolling-none ~.bk-table-fixed-right{
            -webkit-box-shadow:none;
                    box-shadow:none;
        }
.bk-table-body-wrapper.is-scrolling-left ~.bk-table-fixed{
            -webkit-box-shadow:none;
                    box-shadow:none;
        }
.bk-table-body-wrapper.is-scrolling-right ~.bk-table-fixed-right{
            -webkit-box-shadow:none;
                    box-shadow:none;
        }
.bk-table-body-wrapper .bk-table-border.is-scrolling-right ~.bk-table-fixed-right{
                border-left:1px solid #dfe0e5;
            }
.bk-table-body-wrapper .bk-table-border.is-scrolling-left ~.bk-table-fixed{
                border-right:1px solid #dfe0e5;
            }
.bk-table-fit{
    border-right:0;
    border-bottom:0;
}
.bk-table-fit th.gutter,
    .bk-table-fit td.gutter{
        border-right-width:1px;
    }
.bk-table-scrollable-x .bk-table-body-wrapper{
        overflow-x:auto;
    }
.bk-table-scrollable-y .bk-table-body-wrapper{
        overflow-y:auto;
    }
.bk-table-striped .bk-table-body tr.bk-table-row-striped td{
                background-color:#fafafa;
            }
.bk-table-striped .bk-table-body tr.current-row td{
            background-color:#ecf5ff;
        }
.bk-table-body tr.bk-table-row.hover-row > td{
            background-color:#f5f7fa;
        }
.bk-table-body tr.bk-table-row.hover-row.bk-table-row-striped.current-row > td{
                    background-color:#ecf5ff;
                }
.bk-table-body tr.bk-table-row.current-row > td{
        background-color:#ecf5ff;
    }
.bk-table-column-resize-proxy{
    position:absolute;
    left:200px;
    top:0;
    bottom:0;
    width:0;
    border-left:1px solid #dfe0e5;
    z-index:10;
}
.bk-table-enable-row-transition .bk-table-body td{
        -webkit-transition:background-color .25s ease;
        transition:background-color .25s ease;
    }
.bk-table-fluid-height .bk-tale-fixed,
    .bk-table-fluid-height .bk-table-fixed-right{
        bottom:0;
        overflow:hidden;
    }
.bk-table-empty-block{
    min-height:60px;
    text-align:center;
    width:100%;
    height:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
}
.bk-table-empty-text{
    padding:60px 0;
    width:50%;
    color:#63656e;
}
.bk-table-empty-text .bk-table-empty-icon{
        font-size:65px;
        color:#c3cdd7;
    }
.bk-table-expand-column .cell{
        padding:0;
        text-align:center;
    }
.bk-table-expand-icon{
    position:relative;
    cursor:pointer;
    color:#c4c6cc;
    font-size:12px;
    height:20px;
}
.bk-table-expand-icon-expanded > .bk-icon{
        -webkit-transform:rotate(90deg);
                transform:rotate(90deg);
    }
.bk-table-expand-icon > .bk-icon{
        position:absolute;
        left:50%;
        top:50%;
        margin-left:-5px;
        margin-top:-5px;
        -webkit-transition:-webkit-transform 0.2s ease-in-out;
        transition:-webkit-transform 0.2s ease-in-out;
        transition:transform 0.2s ease-in-out;
        transition:transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    }
.bk-table .bk-table-body td.bk-table-expanded-cell{
    padding:0 30px;
    background-color:#fff
}
.bk-table .bk-table-body td.bk-table-expanded-cell:hover{
        background-color:#fff;
    }
.bk-table .bk-table-body td.bk-table-expanded-cell .bk-table:before{
        display:none;
    }
.bk-table .bk-table-body td.bk-table-expanded-cell .bk-table-row-last td{
        border-bottom:none;
    }
th.bk-table-column-selection,
th.bk-table-column-expand,
td.bk-table-column-selection,
td.bk-table-column-expand{
    padding:0;
}
th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table-column-selection .cell, td.bk-table-column-expand .cell{
        padding:0;
        width:100%;
        height:100%;
    }
.bk-table-column-selection .bk-form-checkbox{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        width:100%;
        height:100%;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
    }
.bk-table-column-selection .bk-form-checkbox .bk-checkbox{
            -webkit-box-flex:16px;
                -ms-flex:16px 0 0px;
                    flex:16px 0 0;
        }
.bk-table-column-expand .bk-table-expand-icon{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        width:100%;
        height:100%;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
    }
.bk-table-column-expand .bk-table-expand-icon .bk-icon{
            -webkit-box-flex:12px;
                -ms-flex:12px 0 0px;
                    flex:12px 0 0;
        }
.bk-table-bottom-loading{
    position:relative;
    text-align:center;
    bottom:0;
    height:50px;
    line-height:45px;
    width:100%;
    z-index:777;
}
.bk-table-bottom-loading .bk-table-bottom-loading-spin .bk-icon{
            font-size:15px;
        }
.bk-table-bottom-loading .bk-table-bottom-loading-spin .bk-spin-title{
            color:#979ba5;
            font-size:12px;
        }
.bk-table-pagination-wrapper{
    padding:15px;
    margin-top:-1px;
    position:relative;
    border-top:1px solid #dfe0e5;
}
.bk-table-column-setting{
    border-left:1px solid #dfe0e5;
}
.bk-table-column-setting .cell{
        padding:0;
    }
.bk-table-column-setting .bk-table-setting-icon{
        display:inline-block;
        vertical-align:middle;
        width:24px;
        height:24px;
        line-height:24px;
        font-size:14px;
        color:#979BA5;
        cursor:pointer
    }
.bk-table-column-setting .bk-table-setting-icon:hover{
            color:#63656e;
        }
.bk-table-setting-popover-content-theme.tippy-tooltip{
    padding:15px 0 0;
}
.bk-table-setting-content{
    width:400px;
}
.bk-table-setting-content .content-scroller{
        max-height:317px;
        overflow-y:auto;
    }
.bk-table-setting-content .content-scroller::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.bk-table-setting-content .content-scroller::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.bk-table-setting-content .content-title{
        padding:0 24px;
        margin:0;
        line-height:32px;
        font-size:16px;
        font-weight:normal;
        color:#313238;
    }
.bk-table-setting-content .setting-title{
        font-size:14px;
        padding:0;
        margin:0;
    }
.bk-table-setting-content .setting-title .setting-subtitle{
            display:inline-block;
            color:#979BA5;
            font-size:12px;
            text-indent:-8px
        }
.bk-table-setting-content .setting-title .setting-subtitle.is-limit{
                color:#ff5656;
            }
.bk-table-setting-content .content-fields{
        margin:10px 24px 0;
    }
.bk-table-setting-content .fields-group .fields-checkbox-wrapper{
            display:inline-block;
            width:calc(100% / 3 - 15px);
            margin:10px 15px 0 0;
        }
.bk-table-setting-content .fields-group .fields-checkbox{
            max-width:100%;
        }
.bk-table-setting-content .fields-group .fields-checkbox .bk-checkbox-text{
                display:inline-block;
                max-width:calc(100% - 22px);
                overflow:hidden;
                text-overflow:ellipsis;
                white-space:nowrap;
            }
.bk-table-setting-content .content-line-height{
        margin:25px 24px 0;
    }
.bk-table-setting-content .content-line-height .link-button-group{
            margin-top:10px;
            font-size:0;
        }
.bk-table-setting-content .content-line-height .link-button{
            min-width:auto;
        }
.bk-table-setting-content .content-options{
        padding:0 10px;
        margin:30px 0 0;
        height:51px;
        line-height:50px;
        font-size:0;
        text-align:right;
        background:#FAFBFD;
        border-top:1px solid #DCDEE5;
    }
.tippy-tooltip.bk-table-filter-panel-theme{
    padding:0;
}
.bk-table-filter-panel{
    min-width:70px;
    background-color:#fff
}
.bk-table-filter-panel.multiple{
        min-width:100px;
    }
.bk-table-filter-panel .panel-search{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:middle;
            -ms-flex-align:middle;
                align-items:middle;
        border-bottom:1px solid #F0F1F5;
    }
.bk-table-filter-panel .panel-search .panel-search-icon{
            -webkit-box-flex:16px;
                -ms-flex:16px 0 0px;
                    flex:16px 0 0;
            margin:0 5px 0 10px;
            font-size:16px;
            line-height:24px;
        }
.bk-table-filter-panel .panel-search .panel-search-input{
            -webkit-box-flex:1;
                -ms-flex:1;
                    flex:1;
            height:24px;
            border:none;
            outline:none;
            font-size:12px;
        }
.bk-table-filter-panel .panel-list{
        padding:5px 0;
        margin:0;
        max-height:250px;
        list-style:none;
        overflow-y:auto
    }
.bk-table-filter-panel .panel-list::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.bk-table-filter-panel .panel-list::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.bk-table-filter-panel .panel-list .panel-item{
            padding:0 10px;
            font-size:12px;
            line-height:26px;
            cursor:pointer
        }
.bk-table-filter-panel .panel-list .panel-item:hover{
                background-color:#eaf3ff;
                color:#3a84ff;
            }
.bk-table-filter-panel .panel-list .panel-item.is-selected{
                background-color:#f4f6fa;
                color:#3a84ff;
            }
.bk-table-filter-panel .panel-list .panel-item.is-disabled{
                color:#c4c6cc;
            }
.bk-table-filter-panel .panel-list .panel-item.is-hidden{
                display:none;
            }
.bk-table-filter-panel .panel-checkbox-group{
        display:block;
        padding:10px 10px 0 10px;
    }
.bk-table-filter-panel .panel-checkbox-group .panel-checkbox{
            display:block;
            line-height:16px;
            margin-bottom:10px;
        }
.bk-table-filter-panel .panel-checkbox-group .panel-checkbox .bk-checkbox-text{
                font-size:12px;
            }
.bk-table-filter-panel .panel-options{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        height:31px;
        border-top:1px solid #F0F1F5;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
    }
.bk-table-filter-panel .panel-options .panel-options-link{
            -webkit-box-flex:1;
                -ms-flex:1;
                    flex:1;
            white-space:nowrap;
            margin:0 15px;
        }
.bk-table-filter-panel .panel-options .panel-options-link .bk-link-text{
                font-size:12px;
            }
.bk-table-filter-panel .panel-options .panel-options-link ~ .panel-options-link{
                margin-left:0;
            }
.bk-table-filter-panel .panel-empty{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        height:32px;
        margin:0;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
        font-size:12px;
        font-weight:normal;
    }
.bk-tag-selector{
    position:relative;
    min-height:32px;
}
.bk-tag-selector .bk-tag-input{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:justify;
            -ms-flex-pack:justify;
                justify-content:space-between;
        padding:0 0 0 5px;
        border:1px solid #c4c6cc;
        min-height:32px;
        border-radius:2px;
        font-size:12px;
        position:relative;
        z-index:1;
        background:#fff;
        cursor:pointer;
        overflow:hidden
    }
.bk-tag-selector .bk-tag-input.disabled{
            background:#fafafa;
            cursor:not-allowed;
        }
.bk-tag-selector .bk-tag-input.disabled .tag-list >li{
                    cursor:not-allowed;
                }
.bk-tag-selector .bk-tag-input.disabled .tag-list .key-node{
                    padding-right:2px;
                }
.bk-tag-selector .bk-tag-input.active{
            border-color:#3a84ff;
        }
.bk-tag-selector .bk-tag-input .placeholder{
            margin:0;
            padding:0;
            font-size:12px;
            position:absolute;
            line-height:30px;
            top:0;
            left:8px;
            color:#c4c6cc;
        }
.bk-tag-selector .bk-tag-input .clear-icon{
            margin-right:5px;
            cursor:pointer;
            color:#c4c6cc;
            font-size:14px
        }
.bk-tag-selector .bk-tag-input .clear-icon:hover{
                color:#979ba5;
            }
.bk-tag-selector .bk-tag-input .input{
            width:10px;
            height:22px;
            padding:0;
            border:0;
            -webkit-box-sizing:border-box;
                    box-sizing:border-box;
            outline:none;
            max-width:295px;
            font-size:12px;
        }
.bk-tag-selector .bk-tag-input .tag-list{
            display:inline-block;
            max-height:135px;
            overflow:auto;
            float:left;
            margin:0;
            padding:0
        }
.bk-tag-selector .bk-tag-input .tag-list.no-item{
                padding:0 0 0 5px;
            }
.bk-tag-selector .bk-tag-input .tag-list >li{
                display:inline-block;
                cursor:pointer;
                position:relative;
                margin:4px 5px 4px 0;
                border-radius:2px;
                float:left;
                height:22px;
                overflow:hidden;
                font-size:0;
                line-height:0
            }
.bk-tag-selector .bk-tag-input .tag-list >li.key-node{
                    border:solid 1px #F0F1F5;
                }
.bk-tag-selector .bk-tag-input .tag-list .key-node{
                background:#F0F1F5;
            }
.bk-tag-selector .bk-tag-input .tag-list .key-node .remove-key{
                    display:inline-block;
                }
.bk-tag-selector .bk-tag-input .tag-list .remove-key{
                position:relative;
                width:16px;
                height:16px;
                line-height:16px;
                top:2px;
                right:5px;
                display:inline-block;
                font-size:18px;
                text-align:center;
                color:#63656e;
                display:none;
                text-decoration:none;
            }
.bk-tag-selector .bk-tag-input .tag{
            display:inline-block;
            background-color:#F0F1F5;
            color:#63656e;
            font-size:12px;
            border:none;
            vertical-align:middle;
            -webkit-box-sizing:border-box;
                    box-sizing:border-box;
            overflow:hidden;
            border-radius:2px;
            padding:0 5px;
            height:20px;
            line-height:20px;
            word-break:break-all;
            max-width:190px;
            overflow:hidden;
            display:inline-block;
            text-overflow:ellipsis;
            white-space:nowrap;
            float:left;
        }
.bk-tag-selector .bk-tag-input .tag .text{
                height:20px;
                line-height:20px;
                display:block;
                text-overflow:ellipsis;
                overflow:hidden;
                white-space:nowrap;
            }
.bk-tag-selector .bk-tag-input .dropdown-actions{
            width:100%;
            font-size:0;
        }
.bk-tag-selector .bk-tag-input .dropdown-actions .bk-button{
                width:50%;
                margin:0;
                border-radius:0;
                border-width:0;
                border-top-width:1px;
            }
.bk-tag-selector .bk-tooltip.bk-select-dropdown{
        display:block
    }
.bk-tag-selector .bk-tooltip.bk-select-dropdown>.bk-tooltip-ref{
            display:block;
        }
.bk-tag-selector .bk-tag-popover-trigger{
        height:22px;
        margin-top:-27px;
        z-index:-1;
    }
.bk-tag-selector .highlight-text{
        color:#3A84FF;
    }
.highlight-text{
    color:#3A84FF;
}
.bk-select-dropdown .bk-selector-list{
        min-width:100%;
    }
.tippy-tooltip.bk-select-dropdown-theme[data-size=small]{
    padding:0;
    -webkit-box-shadow:0 3px 9px 0 rgba(0, 0, 0, .1);
            box-shadow:0 3px 9px 0 rgba(0, 0, 0, .1);
}
.tippy-tooltip.bk-select-dropdown-theme[data-size=small] .tippy-arrow{
        display:none;
    }
.bk-selector-list{
    min-width:150px;
}
.bk-selector-list .outside-ul::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.bk-selector-list .outside-ul::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.bk-selector-list .outside-ul{
        max-height:160px;
        padding:0;
        margin:0;
        list-style:none;
        overflow-y:auto;
        padding:6px 0;
        border-radius:2px;
        background-color:#fff;
        border:1px solid #DCDEE5;
    }
.bk-selector-list .bk-selector-group-item{
        list-style:none;
    }
.bk-selector-list .bk-selector-group-item .group-name{
            font-size:12px;
            color:#979BA5;
            line-height:32px;
            padding-left:11px;
        }
.bk-selector-list .bk-selector-group-list-item{
        list-style:none;
        margin:0;
        padding:0;
    }
.bk-selector-list .bk-selector-list-item{
        position:relative;
        width:100%;
        border-left:#c4c6cc;
        border-right:#c4c6cc;
        background-color:#fff;
        cursor:pointer
    }
.bk-selector-list .bk-selector-list-item:first-child{
            border-top:#c4c6cc;
        }
.bk-selector-list .bk-selector-list-item:last-child{
            border-bottom:#c4c6cc;
        }
.bk-selector-list .bk-selector-list-item.bk-selector-selected{
            background-color:#F4F6FA;
        }
.bk-selector-list .bk-selector-list-item.bk-selector-selected .selected-icon{
                display:inline-block;
            }
.bk-selector-list .bk-selector-list-item.bk-selector-actived{
            background-color:#F4F6FA;
        }
.bk-selector-list .bk-selector-list-item:hover{
            background-color:#EAF3FF;
        }
.bk-selector-list .bk-selector-list-item.disabled{
            background:#fff;
            cursor:not-allowed;
        }
.bk-selector-list .bk-selector-list-item.disabled .text{
                color:#c4c6cc;
            }
.bk-selector-list .bk-selector-list-item .loading{
            width:100%;
            height:40px;
            font-size:14px;
            position:relative;
            cursor:default;
        }
.bk-selector-list .bk-selector-list-item .text{
            padding:0 10px;
            line-height:32px;
            font-size:12px;
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
            color:#63656e;
        }
.bk-selector-list .bk-selector-list-item .bk-selector-tools{
            position:absolute;
            display:none;
            top:10px;
            right:0;
            font-size:12px;
        }
.bk-selector-list .bk-selector-list-item .bk-selector-tools .bk-selector-list-icon{
                margin-right:14px;
            }
.bk-time-picker-cells{
}
.bk-time-picker-cells:after{
        content:"";
        position:absolute;
        margin-top:0;
        height:32px;
        z-index:1;
        left:0;
        right:0;
        -webkit-box-sizing:border-box;
        box-sizing:border-box;
        padding-top:6px;
        text-align:left;
        background-color:rgba(58,132,255,.16);
        mix-blend-mode:multiply;
        color:#3a84ff;
        pointer-events:none;
    }
.bk-time-picker-cells-with-seconds .bk-time-picker-cells-title-wrapper .bk-time-picker-cells-title:nth-of-type(1):before, .bk-time-picker-cells-with-seconds .bk-time-picker-cells-title-wrapper .bk-time-picker-cells-title:nth-of-type(2):before{
        content:'';
        position:absolute;
        width:2px;
        padding-top:2px;
        background-color:#3a84ff;
        top:55px;
        left:85px;
        border-radius:50%;
        z-index:1;
    }
.bk-time-picker-cells-with-seconds .bk-time-picker-cells-title-wrapper .bk-time-picker-cells-title:nth-of-type(1):after, .bk-time-picker-cells-with-seconds .bk-time-picker-cells-title-wrapper .bk-time-picker-cells-title:nth-of-type(2):after{
        content:'';
        position:absolute;
        width:2px;
        padding-top:2px;
        background-color:#3a84ff;
        top:calc(55px + 5px);
        left:85px;
        border-radius:50%;
        z-index:1;
    }
.bk-time-picker-cells-title-wrapper{
    width:100%;
    height:42px;
    line-height:42px;
}
.bk-time-picker-cells-title-wrapper .bk-time-picker-cells-title{
        float:left;
        width:33.33%;
        text-align:center;
        list-style:none;
        color:#63656e;
        font-weight:700;
        font-size:14px;
        position:relative
    }
.bk-time-picker-cells-title-wrapper .bk-time-picker-cells-title.active{
            color:#3a84ff;
        }
.bk-time-picker-cells-title-wrapper .bk-time-picker-cells-title:nth-of-type(1):before{
        content:'';
        position:absolute;
        width:2px;
        padding-top:2px;
        background-color:#3a84ff;
        top:55px;
        left:133px;
        border-radius:50%;
        z-index:1;
    }
.bk-time-picker-cells-title-wrapper .bk-time-picker-cells-title:nth-of-type(1):after{
        content:'';
        position:absolute;
        width:2px;
        padding-top:2px;
        background-color:#3a84ff;
        top:calc(55px + 5px);
        left:133px;
        border-radius:50%;
        z-index:1;
    }
.bk-time-picker-cells-list{
    width:33.33%;
    max-height:192px;
    float:left;
    overflow:hidden;
    position:relative
}
.bk-time-picker-cells-list:hover{
        overflow-y:auto;
    }
.bk-time-picker-cells-list:first-child{
        border-radius:2px 0 0 2px;
    }
.bk-time-picker-cells-list:last-child{
        border-radius:0 2px 2px 0;
    }
.bk-time-picker-cells-list::-webkit-scrollbar{
        width:0;
        height:0;
        background-color:rgba(204, 204, 204, 0);
    }
.bk-time-picker-cells-list::-webkit-scrollbar-thumb{
        width:0;
        height:0;
        background-color:transparent;
    }
.bk-time-picker-cells-list .bk-time-picker-cells-ul{
        width:100%;
        margin:0;
        padding:0 0 160px 0;
        list-style:none;
    }
.bk-time-picker-cells-list .bk-time-picker-cells-ul .bk-time-picker-cells-cell{
            width:100%;
            height:32px;
            line-height:32px;
            margin:0;
            padding:0;
            -webkit-box-sizing:content-box;
                    box-sizing:content-box;
            text-align:center;
            -webkit-user-select:none;
               -moz-user-select:none;
                -ms-user-select:none;
                    user-select:none;
            cursor:pointer;
            list-style:none;
            -webkit-transition:background 0.2s ease-in-out;
            transition:background 0.2s ease-in-out;
            color:#63656e;
            font-size:12px;
            position:relative
        }
.bk-time-picker-cells-list .bk-time-picker-cells-ul .bk-time-picker-cells-cell:hover{
                color:#3a84ff;
            }
.bk-time-picker-cells-list .bk-time-picker-cells-ul .bk-time-picker-cells-cell-disabled{
            color:#c4c6cc;
            cursor:not-allowed
        }
.bk-time-picker-cells-list .bk-time-picker-cells-ul .bk-time-picker-cells-cell-disabled:hover{
                color:#c4c6cc;
                background-color:#fff;
                cursor:not-allowed;
            }
.bk-time-picker-cells-list .bk-time-picker-cells-ul .bk-time-picker-cells-cell-selected,
        .bk-time-picker-cells-list .bk-time-picker-cells-ul .bk-time-picker-cells-cell-selected:hover{
            color:#3a84ff;
        }
.bk-time-picker-cells-list .bk-time-picker-cells-ul .bk-time-picker-cells-cell-focused{
        }
.bk-time-picker-header{
    height:46px;
    line-height:46px;
    text-align:center;
    border-bottom:1px solid #dcdee5;
    font-size:14px;
    font-weight:700;
    color:#63656e;
}
.bk-time-picker-with-range .bk-picker-panel-body{
}
.bk-time-picker-with-range .bk-picker-panel-content{
    float:left;
    position:relative;
}
.bk-time-picker-with-range .bk-picker-panel-content:after{
    content:'';
    display:block;
    width:1px;
    position:absolute;
    top:45px;
    bottom:0;
    right:-1px;
    background:#e8eaec;
    z-index:1;
}
.bk-time-picker-with-range .bk-picker-panel-content-right{
    float:right;
}
.bk-time-picker-with-range .bk-picker-panel-content-right:after{
    right:auto;
    left:0;
}
.bk-time-picker-with-range .bk-time-picker-cells-list:first-child{
    border-radius:0;
}
.bk-time-picker-with-range .bk-time-picker-cells-list:last-child{
    border-radius:0;
}
.bk-time-picker-with-range.bk-time-picker-with-seconds .bk-picker-panel-body{
}
.bk-picker-panel-content .bk-picker-panel-content .bk-time-picker-cells{
    min-width:216px;
}
.bk-picker-panel-content .bk-picker-panel-content .bk-time-picker-cells-with-seconds{
    min-width:216px;
}
.bk-picker-panel-content .bk-picker-panel-content .bk-time-picker-cells-with-seconds .bk-time-picker-cells-list{
    width:72px;
}
.bk-picker-panel-content .bk-picker-panel-content .bk-time-picker-cells-with-seconds .bk-time-picker-cells-list ul li{
    padding:0;
}
.bk-picker-panel-content .bk-picker-panel-content .bk-time-picker-cells-list{
    width:108px;
    max-height:200px;
}
.bk-picker-panel-content .bk-picker-panel-content .bk-time-picker-cells-list:first-child{
    border-radius:0;
}
.bk-picker-panel-content .bk-picker-panel-content .bk-time-picker-cells-list:last-child{
    border-radius:0;
}
.bk-picker-panel-content .bk-picker-panel-content .bk-time-picker-cells-list ul{
    padding:0 0 168px 0;
}
.bk-timeline{
    list-style:none;
    margin:16px 0 0 0;
    padding:0;
    text-align:left;
    line-height:normal;
    font-weight:400;
    font-style:normal;
}
.bk-timeline .bk-timeline-dot{
        position:relative;
        border-left:1px solid #d8d8d8;
        padding-left:16px;
        padding-bottom:24px;
        font-size:0;
        margin-top:calc(11px + 2px)
    }
.bk-timeline .bk-timeline-dot::before{
            content:'';
            display:inline-block;
            -webkit-box-sizing:border-box;
                    box-sizing:border-box;
            width:11px;
            height:11px;
            background:#fff;
            border:2px solid #d8d8d8;
            border-radius:50%;
            position:absolute;
            top:calc((11px + 1px) * -1);
            left:-6px;
        }
.bk-timeline .bk-timeline-dot:last-child{
            border-left:1px solid transparent;
            padding-bottom:0;
        }
.bk-timeline .bk-timeline-dot .bk-timeline-title{
            font-size:14px;
            color:#63656e;
            padding-bottom:10px;
            display:inline-block;
            margin-top:-3px
        }
.bk-timeline .bk-timeline-dot .bk-timeline-title.has-event{
                cursor:pointer;
            }
.bk-timeline .bk-timeline-dot .bk-timeline-content{
            max-width:300px;
            word-break:break-all;
            font-size:14px;
            color:#666;
        }
.bk-timeline .bk-timeline-dot .bk-timeline-icon{

            display:inline-block;
            -webkit-box-sizing:border-box;
                    box-sizing:border-box;
            width:15px;
            height:15px;
            background:#fff;
            border:2px solid #d8d8d8;
            border-radius:50%;
            position:absolute;
            top:calc((15px + 1px) * -1);
            left:-8px;
        }
.bk-timeline .bk-timeline-dot .bk-timeline-icon .bk-timeline-icon-inner{
                display:inline-block;
                -webkit-transform:scale(0.6) translate(-1px, -0.45px);
                        transform:scale(0.6) translate(-1px, -0.45px);
            }
.bk-timeline .bk-timeline-dot .bk-timeline-icon .bk-timeline-icon-inner >:first-child{
                    font-size:12px !important;
                }
.bk-timeline .bk-timeline-dot .bk-timeline-section{
            position:relative;
            top:calc((11px + 2px) * -1);
        }
.bk-timeline .bk-timeline-dot.bk-timeline-item-large{
            margin-top:calc(15px + 2px)
        }
.bk-timeline .bk-timeline-dot.bk-timeline-item-large::before{
                width:15px;
                height:15px;
                top:calc((15px + 1px) * -1);
                left:-8px;
            }
.bk-timeline .bk-timeline-dot.bk-timeline-item-large > .bk-timeline-section{
                top:calc((15px + 1px) * -1);
            }
.bk-timeline .bk-timeline-dot.bk-timeline-item-custom-icon{
            margin-top:calc(15px + 2px)
        }
.bk-timeline .bk-timeline-dot.bk-timeline-item-custom-icon::before{
                display:none;
            }
.bk-timeline .bk-timeline-dot.bk-timeline-item-custom-icon > .bk-timeline-section{
                top:calc((15px + 1px) * -1);
            }
.bk-timeline .bk-timeline-dot:first-child{
            margin-top:0;
        }
.bk-timeline .bk-timeline-item-blue::before,
        .bk-timeline .bk-timeline-item-blue .bk-timeline-icon{
            color:#3a84ff;
            border-color:#3a84ff;
        }
.bk-timeline .bk-timeline-item-blue.bk-timeline-item-filled::before,
            .bk-timeline .bk-timeline-item-blue.bk-timeline-item-filled .bk-timeline-icon{
                background:#3a84ff;
            }
.bk-timeline .bk-timeline-item-red::before,
        .bk-timeline .bk-timeline-item-red .bk-timeline-icon{
            color:#ea3636;
            border-color:#ea3636;
        }
.bk-timeline .bk-timeline-item-red.bk-timeline-item-filled::before,
            .bk-timeline .bk-timeline-item-red.bk-timeline-item-filled .bk-timeline-icon{
                background:#ea3636;
            }
.bk-timeline .bk-timeline-item-green::before,
        .bk-timeline .bk-timeline-item-green .bk-timeline-icon{
            color:#40c024;
            border-color:#40c024;
        }
.bk-timeline .bk-timeline-item-green.bk-timeline-item-filled::before,
            .bk-timeline .bk-timeline-item-green.bk-timeline-item-filled .bk-timeline-icon{
                background:#40c024;
            }
.bk-timeline .bk-timeline-item-yellow::before,
        .bk-timeline .bk-timeline-item-yellow .bk-timeline-icon{
            color:#ff9c01;
            border-color:#ff9c01;
        }
.bk-timeline .bk-timeline-item-yellow.bk-timeline-item-filled::before,
            .bk-timeline .bk-timeline-item-yellow.bk-timeline-item-filled .bk-timeline-icon{
                background:#ff9c01;
            }
.bk-timeline .bk-timeline-item-gray::before,
        .bk-timeline .bk-timeline-item-gray .bk-timeline-icon{
            color:#d8d8d8;
            border-color:#d8d8d8;
        }
.bk-timeline .bk-timeline-item-gray.bk-timeline-item-filled::before,
            .bk-timeline .bk-timeline-item-gray.bk-timeline-item-filled .bk-timeline-icon{
                background:#d8d8d8;
            }
.bk-timeline .bk-timeline-item-default{
        border-left:1px solid #999;
    }
.bk-timeline .bk-timeline-item-default::before,
        .bk-timeline .bk-timeline-item-default .bk-timeline-icon{
            color:#999;
            border:2px solid #999;
        }
.bk-timeline .bk-timeline-item-primary{
        border-left:1px solid #3a84ff;
    }
.bk-timeline .bk-timeline-item-primary::before,
        .bk-timeline .bk-timeline-item-primary .bk-timeline-icon{
            color:#3a84ff;
            border:2px solid #3a84ff;
        }
.bk-timeline .bk-timeline-item-warning{
        border-left:1px solid #ffb400;
    }
.bk-timeline .bk-timeline-item-warning::before,
        .bk-timeline .bk-timeline-item-warning .bk-timeline-icon{
            color:#ffb400;
            border:2px solid #ffb400;
        }
.bk-timeline .bk-timeline-item-success{
        border-left:1px solid #30d878;
    }
.bk-timeline .bk-timeline-item-success::before,
        .bk-timeline .bk-timeline-item-success .bk-timeline-icon{
            color:#30d878;
            border:2px solid #30d878;
        }
.bk-timeline .bk-timeline-item-danger{
        border-left:1px solid #ff5656;
    }
.bk-timeline .bk-timeline-item-danger::before,
        .bk-timeline .bk-timeline-item-danger .bk-timeline-icon{
            color:#ff5656;
            border:2px solid #ff5656;
        }
.bk-timeline .bk-timeline{
        margin-top:24px;
    }
.bk-timeline .bk-timeline .bk-timeline-dot{
            border-left-style:dashed;
            padding-bottom:12px
        }
.bk-timeline .bk-timeline .bk-timeline-dot:last-child{
                padding-bottom:0;
            }
.bk-transfer{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
        -ms-flex-direction:row;
            flex-direction:row;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    position:relative;
    font-size:14px;
}
.bk-transfer .transfer{
        width:30px;
        height:30px;
        position:absolute;
        -webkit-transform:translate(-50%, -50%);
                transform:translate(-50%, -50%);
        top:50%;
        left:50%;
        background:url(images/transfer.png) no-repeat center center;
    }
.bk-transfer .source-list,
    .bk-transfer .target-list{
        -webkit-box-flex:1;
            -ms-flex:1;
                flex:1;
        min-width:200px;
        height:400px;
        background-color:#fff;
        border-radius:2px;
        border:1px solid #dde4eb;
        overflow:hidden;
    }
.bk-transfer .source-list .slot-header, .bk-transfer .target-list .slot-header{
            height:43px;
            line-height:43px;
            background-color:#fafbfd;
            border-bottom:1px solid #dde4eb;
            padding:0 20px;
            position:relative;
        }
.bk-transfer .source-list .slot-header .slot-content, .bk-transfer .target-list .slot-header .slot-content{
                position:relative;
            }
.bk-transfer .source-list .header, .bk-transfer .target-list .header{
            height:43px;
            line-height:43px;
            background-color:#fafbfd;
            border-bottom:1px solid #dde4eb;
            padding:0 20px;
            position:relative;
        }
.bk-transfer .source-list .header span, .bk-transfer .target-list .header span{
                position:absolute;
                right:10px;
                font-size:12px;
                color:#3a84ff;
                cursor:pointer
            }
.bk-transfer .source-list .header span.disabled, .bk-transfer .target-list .header span.disabled{
                    color:#c4c6cc;
                    cursor:not-allowed;
                }
.bk-transfer .source-list .empty, .bk-transfer .target-list .empty{
            width:100%;
            position:relative;
            top:40%;
            text-align:center;
            color:#c4c6cc;
            cursor:default;
        }
.bk-transfer .source-list .content, .bk-transfer .target-list .content{
            max-height:82%;
            overflow-y:auto;
            position:relative;
            padding:0;
            margin:6px 0;
        }
.bk-transfer .source-list .content li, .bk-transfer .target-list .content li{
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-align:center;
                    -ms-flex-align:center;
                        align-items:center;
                height:40px;
                line-height:40px;
                padding:0 20px;
                list-style:none;
                cursor:pointer;
                position:relative
            }
.bk-transfer .source-list .content li:hover, .bk-transfer .target-list .content li:hover{
                    background-color:#eef6fe;
                    color:#3a84ff;
                }
.bk-transfer .source-list .content li .content-text, .bk-transfer .target-list .content li .content-text{
                    -webkit-box-flex:1;
                        -ms-flex:1;
                            flex:1;
                    overflow:hidden;
                    text-overflow:ellipsis;
                    white-space:nowrap;
                }
.bk-transfer .source-list .content li .icon-wrapper, .bk-transfer .target-list .content li .icon-wrapper{
                    -webkit-box-flex:22px;
                        -ms-flex:22px 0 0px;
                            flex:22px 0 0;
                    display:none
                }
.bk-transfer .source-list .content li .icon-wrapper.hover, .bk-transfer .target-list .content li .icon-wrapper.hover{
                        display:inline-block;
                    }
.bk-transfer .source-list .content::-webkit-scrollbar, .bk-transfer .target-list .content::-webkit-scrollbar{
                width:4px;
                background-color:rgba(204, 204, 204, 0);
            }
.bk-transfer .source-list .content::-webkit-scrollbar-thumb, .bk-transfer .target-list .content::-webkit-scrollbar-thumb{
                height:5px;
                border-radius:2px;
                background-color:#e6e9ea;
            }
.bk-transfer .source-list .content .bk-icon, .bk-transfer .target-list .content .bk-icon{
                font-size:22px;
            }
.bk-transfer .target-list{
        margin-left:33px;
    }
.bk-transfer .transfer-search-input{
        border-bottom:1px solid #F0F1F5;
    }
.bk-transfer .transfer-search-input .bk-form-input{
            height:36px;
            line-height:34px;
            border:none;
        }
.fade-enter-active,
.fade-leave-active{
    -webkit-transition:opacity .2s;
    transition:opacity .2s;
}
.fade-enter,
.fade-leave-to{
    opacity:0
}
.bk-tree{
    font-size:14px;
    -webkit-transition:.3s height ease-in-out, .3s padding-top ease-in-out, .3s padding-bottom ease-in-out;
    transition:.3s height ease-in-out, .3s padding-top ease-in-out, .3s padding-bottom ease-in-out;
}
.bk-tree .expand-enter-active{
        -webkit-transition:all 3s ease;
        transition:all 3s ease;
        height:50px;
        overflow:hidden;
    }
.bk-tree .expand-leave-active{
        -webkit-transition:all 3s ease;
        transition:all 3s ease;
        height:0px;
        overflow:hidden;
    }
.bk-tree .expand-enter,
    .bk-tree .bk-tree .expand-leave{
        height:0;
        opacity:0;
    }
.bk-tree ul{
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        list-style-type:none;
        text-align:left;
        padding-left:18px;
    }
.bk-tree li{
        position:relative;
        margin:0;
        list-style:none;
        list-style-type:none;
        text-align:left
    }
.bk-tree li.leaf{
            padding-left:18px;
        }
.bk-tree .tree-drag-node{
        line-height:32px;
    }
.bk-tree .tree-drag-node .tree-expanded-icon{
            position:relative;
            color:#c0c4cc;
            cursor:pointer;
        }
.bk-tree .tree-drag-node .tree-node{
            display:inline-block;
            height:32px;
            font-size:0;
        }
.bk-tree .loading{
        width:14px;
        height:14px;
        display:inline-block;
        top:-5px;
    }
.bk-tree .node-title{
        display:inline-block;
        margin-left:5px;
        border-radius:3px;
        font-size:14px;
        cursor:pointer;
    }
.bk-tree .node-selected{
        color:#3a84ff;
    }
.bk-tree .node-icon{
        display:inline-block;
        font-size:14px;
    }
.bk-tree .bk-form-checkbox{
        position:relative;
        display:inline-block;
        vertical-align:middle;
        width:14px;
        height:14px;
        border:1px solid #979ba5;
        border-radius:2px;
    }
.bk-tree .bk-form-checkbox input[type=checkbox]{
            display:none;
        }
.bk-tree .bk-form-checkbox:focus{
            border-color:#3c96ff;
            outline:none;
        }
.bk-tree .bk-form-checkbox--indeterminate{
            border-color:#3a84ff;
            background-color:#3a84ff;
            background-clip:content-box
        }
.bk-tree .bk-form-checkbox--indeterminate::after{
                content:'';
                display:block;
                width:8px;
                height:2px;
                background-color:#fff;
                position:absolute;
                top:50%;
                left:50%;
                -webkit-transform:translate(-50%, -50%);
                        transform:translate(-50%, -50%);
                border-radius:2px;
            }
.bk-tree .bk-form-checkbox--checked{
            border-color:#3a84ff;
            background-color:#3a84ff;
            background-clip:border-box
        }
.bk-tree .bk-form-checkbox--checked::after{
                content:"";
                position:absolute;
                top:0;
                left:3px;
                width:4px;
                height:8px;
                border:2px solid #fff;
                border-left:0;
                border-top:0;
                -webkit-transform-origin:center;
                        transform-origin:center;
                -webkit-transform:rotate(45deg) scaleY(1);
                        transform:rotate(45deg) scaleY(1);
            }
.bk-tree .bk-form-checkbox--disabled{
            border-color:#dcdee5;
            background-color:#dcdee5;
            cursor:not-allowed;
        }
.bk-tree .bk-form-checkbox--disabled.bk-tree .bk-form-checkbox--disabled--indeterminate ::after{
                background-color:#fafbfd;
            }
.bk-tree .bk-form-checkbox--disabled.bk-tree .bk-form-checkbox--disabled--checked ::after{
                border-color:#fafbfd;
            }
.bk-tree > ul{
    padding-left:0
}
.bk-has-border-tree li:before{
        content:'';
        left:-8px;
        position:absolute;
        right:auto;
        border-width:1px;
        border-left:1px dashed #ded8d8;
        bottom:50px;
        height:100%;
        left:-12px;
        top:-11px;
        width:1px;
    }
.bk-has-border-tree li:after{
        content:'';
        left:-10px;
        position:absolute;
        right:auto;
        border-width:1px;
        border-top:1px dashed #ded8d8;
        height:20px;
        top:16px;
        width:12px;
    }
.bk-has-border-tree li:last-child::before{
        height:26px;
    }
.bk-has-border-tree li.leaf:after{
        content:'';
        left:-10px;
        position:absolute;
        right:auto;
        border-width:1px;
        border-top:1px dashed #ded8d8;
        height:20px;
        top:15px;
        width:24px;
    }
.bk-has-border-tree li.single:before{
        top:-10px;
    }
.bk-has-border-tree li.single:after{
        top:16px;
    }
.bk-has-border-tree li.leaf.single:after{
        top:16px;
    }
.bk-has-border-tree > li.tree-first-node:before{
    top:17px;
}
.bk-has-border-tree > li.tree-second-node:before{
    top:4px;
}
.bk-has-border-tree > li.tree-first-node.tree-only-node::before{
    border-left:none;
}
.bk-has-border-tree > li.tree-only-node:after{
    border-top:none;
}
.bk-upload img{
        width:100%;
    }
.bk-upload .pic-item{
        position:relative;
        display:inline-block;
        padding:5px;
        height:100px;
        width:100px;
        border:1px solid #c4c6cc;
        border-radius:2px;
        vertical-align:top;
        overflow:hidden
    }
.bk-upload .pic-item:not(:last-child){
            margin-right:10px;
        }
.bk-upload .pic-item.fail{
            border-color:#ff5656;
        }
.bk-upload .pic-item.fail .error-image-icon{
                font-size:28px;
                color:#979ba5;
            }
.bk-upload .pic-item:hover .mask{
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
            }
.bk-upload .pic-item .uploading-status{
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
            padding:36px 10px;
            font-size:14px;
            text-align:center;
            background:#fff;
        }
.bk-upload .pic-item .fail-status{
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
            padding:26px 10px;
            font-size:14px;
            text-align:center;
            background:#fff;
        }
.bk-upload .pic-item .fail-status .error-pic{
                font-size:28px;
                color:#979ba5;
            }
.bk-upload .pic-item .fail-status .reupload{
                color:#3a84ff;
            }
.bk-upload .pic-item .fail-status .delete-file{
                color:#ff5656
            }
.bk-upload .pic-item .fail-status .delete-file:hover{
                    color:#ff5656;
                }
.bk-upload .pic-item .mask{
            display:none;
            position:absolute;
            left:0;
            top:0;
            width:98px;
            height:98px;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            color:#fff;
            background:rgba(0, 0, 0, .6);
        }
.bk-upload .pic-item .mask .fail-tips{
                width:100%;
                height:100%;
            }
.bk-upload .pic-item .delete-file{
            position:absolute;
            right:0;
            top:0;
            color:#c4c6cc;
            font-size:24px;
            cursor:pointer;
            z-index:11
        }
.bk-upload .pic-item .delete-file:hover{
                color:#fff;
            }
.bk-upload .file-wrapper{
        position:relative;
        font-size:14px;
    }
.bk-upload .file-wrapper input[type=file]{
            width:100%;
            height:100%;
            position:absolute;
            left:0;
            top:0;
            z-index:10;
            cursor:pointer;
            opacity:0;
        }
.bk-upload.button{
        position:relative;
    }
.bk-upload.button .file-wrapper{
            width:86px;
            height:36px;
            border:1px solid rgba(196, 198, 204, 1);
            opacity:1;
            border-radius:2px;
            cursor:pointer;
            margin-bottom:10px;
            position:relative;
        }
.bk-upload.button .file-wrapper :not(input){
                display:none;
            }
.bk-upload.button .file-wrapper::before{
                content:attr(bk-lableName);
                position:absolute;
                top:0;
                left:0;
                right:0;
                bottom:0;
                cursor:pointer;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-align:center;
                    -ms-flex-align:center;
                        align-items:center;
                -webkit-box-pack:center;
                    -ms-flex-pack:center;
                        justify-content:center;
            }
.bk-upload.button p.tip{
            position:absolute;
            left:100px;
            top:0;
            margin:auto;
            height:34px;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
        }
.bk-upload.draggable .file-wrapper{
            width:100%;
            height:80px;
            margin-bottom:2px;
            border-radius:2px;
            border:1px dashed #c4c6cc;
            text-align:center
        }
.bk-upload.draggable .file-wrapper:hover{
                border-color:#3a84ff;
            }
.bk-upload.draggable .file-wrapper:hover .upload-icon{
                    color:#3a84ff;
                }
.bk-upload.draggable .file-wrapper:focus{
                border-color:#3a84ff;
            }
.bk-upload.draggable .file-wrapper .upload-icon{
                display:inline-block;
                margin:14px 0 2px;
                font-size:28px;
                color:#c4c6cc;
            }
.bk-upload.draggable .file-wrapper .text-area{
                margin:0;
                font-size:12px;
            }
.bk-upload.draggable .file-wrapper .drop-upload{
                color:#63656e;
            }
.bk-upload.draggable .file-wrapper .click-upload{
                color:#3a84ff;
            }
.bk-upload.picture .file-wrapper{
            display:inline-block
        }
.bk-upload.picture .file-wrapper:hover .upload-btn{
                    color:#3a84ff;
                    border-color:#3a84ff;
                }
.bk-upload.picture .file-wrapper:hover .upload-btn i{
                        color:#3a84ff;
                    }
.bk-upload.picture .file-wrapper:hover .uploaded-status .mask{
                    display:-webkit-box;
                    display:-ms-flexbox;
                    display:flex;
                }
.bk-upload.picture .file-wrapper:focus .upload-btn{
                    border-color:#3a84ff;
                }
.bk-upload.picture .file-wrapper .upload-btn{
                padding:28px 0;
                width:100px;
                height:100px;
                border:1px dashed #c4c6cc;
                border-radius:2px;
                text-align:center;
            }
.bk-upload.picture .file-wrapper .upload-btn i{
                    margin-bottom:2px;
                    font-size:20px;
                    color:#979ba5;
                }
.bk-upload .progress-bar-wrapper{
        margin-top:4px;
        height:2px;
        border-radius:1px;
        background:#dcdee5;
    }
.bk-upload .progress-bar-wrapper .progress-bar{
            height:2px;
            width:0%;
            background:#2dcb56;
            border-radius:1px;
        }
.bk-upload .progress-bar-wrapper .uploading{
            background:#3a84ff;
        }
.bk-upload .progress-bar-wrapper .success{
            background:#2dcb56;
        }
.bk-upload .progress-bar-wrapper .fail{
            background:#ff5656;
        }
.bk-upload .tip{
        margin:5px 0 10px 0;
        font-size:12px;
        text-align:left;
        color:#63656e;
    }
.bk-upload .isdrag{
        border:1px solid #0082ff;
    }
.bk-upload .all-file .file-item{
            position:relative;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            margin-bottom:10px;
            height:60px;
            padding:12px 10px;
            border-radius:2px;
            border:1px dashed #c4c6cc;
            background:rgba(250, 251, 253, 1)
        }
.bk-upload .all-file .file-item.file-item-fail{
                border:1px solid #ff5656;
                background:rgba(254, 221, 220, 0.4);
            }
.bk-upload .all-file .file-item.file-item-fail .close-upload{
                    color:#ff5656
                }
.bk-upload .all-file .file-item.file-item-fail .close-upload:hover{
                        color:#ff5656;
                    }
.bk-upload .all-file .file-item .file-icon{
                -webkit-box-flex:0;
                    -ms-flex:0 0 36px;
                        flex:0 0 36px;
                height:36px;
                width:36px;
                border-radius:2px;
            }
.bk-upload .all-file .file-item .file-icon i{
                    font-size:36px;
                }
.bk-upload .all-file .file-item .close-upload{
                position:absolute;
                top:0;
                right:0;
                font-size:24px;
                color:#c4c6cc;
                cursor:pointer;
                z-index:1;
            }
.bk-upload .all-file .file-item .close-upload:hover{
                color:#63656e;
            }
.bk-upload .all-file .file-item .file-info{
                -webkit-box-flex:1;
                    -ms-flex:1;
                        flex:1;
                position:relative;
                margin-left:10px;
                line-height:1;
                font-size:12px;
                overflow:hidden;
            }
.bk-upload .all-file .file-item .file-info .file-name{
                    display:inline-block;
                    font-size:12px;
                    max-width:250px;
                    line-height:16px;
                    white-space:nowrap;
                    overflow:hidden;
                    text-overflow:ellipsis;
                }
.bk-upload .all-file .file-item .file-info .file-message{
                    position:absolute;
                    right:25px;
                    display:inline-block;
                    font-size:12px;
                    line-height:1;
                }
.bk-upload .all-file .file-item .file-info .file-message .upload-speed{
                        padding-right:40px;
                    }
.bk-upload .all-file .file-item .file-info .file-message .done{
                        color:#2dcb56;
                    }
.bk-upload .all-file .file-item .file-info .error-msg{
                    margin:0;
                    height:18px;
                    line-height:18px;
                    white-space:nowrap;
                    overflow:hidden;
                    text-overflow:ellipsis;
                    font-size:12px;
                    color:#ff5656;
                }
.bk-grid-container{
    margin-right:auto;
    margin-left:auto;
}
.bk-grid-col{
    float:left;
    position:relative;
}
.bk-grid-row::after{
        display:block;
        clear:both;
        content:"";
        font-size:0;
        height:0;
        visibility:hidden;
    }
.bk-grid-row .bk-grid-col > .bk-grid-row{
        margin:0 auto;
    }
.bk-navigation{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
    width:100vw;
    height:100vh;
}
.bk-navigation-title{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:start;
            -ms-flex-pack:start;
                justify-content:flex-start;
        overflow:hidden;
        padding:0 16px;
        border-bottom:1px solid rgba(255, 255, 255, 0.05);
        height:100%;
        -webkit-box-flex:0;
            -ms-flex:0 0 260px;
                flex:0 0 260px;
    }
.bk-navigation-title .title-icon{
            -webkit-box-flex:0;
                -ms-flex:0 0 28px;
                    flex:0 0 28px;
            font-size:28px;
            color:#768197;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
        }
.bk-navigation-title .title-desc{
            font-size:16px;
            font-weight:bold;
            color:#96A2B9;
            display:inline-block;
            margin-left:16px;
            line-height:24px;
            overflow:hidden;
            white-space:nowrap;
        }
.bk-navigation-header{
        -webkit-box-flex:0;
            -ms-flex:0 0 52px;
                flex:0 0 52px;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        padding-right:24px;
        overflow:hidden;
    }
.bk-navigation-header .header-right{
            -webkit-box-flex:1;
                -ms-flex:1;
                    flex:1;
            height:100%;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
        }
.bk-navigation-wrapper{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
            -ms-flex-direction:row;
                flex-direction:row;
        position:relative;
        -webkit-box-flex:1;
            -ms-flex:1;
                flex:1;
    }
.bk-navigation-wrapper .navigation-nav{
            width:60px;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-flex:0;
                -ms-flex:0 1 auto;
                    flex:0 1 auto;
            -webkit-box-orient:vertical;
            -webkit-box-direction:normal;
                -ms-flex-direction:column;
                    flex-direction:column;
            overflow:visible;
            position:relative;
            min-width:0;
            min-height:0;
            z-index:101;
            -webkit-transition:width cubic-bezier(0.4, 0, 0.2, 1) .3s;
            transition:width cubic-bezier(0.4, 0, 0.2, 1) .3s
        }
.bk-navigation-wrapper .navigation-nav:hover{
                cursor:pointer;
            }
.bk-navigation-wrapper .navigation-nav .nav-slider{
                width:60px;
                height:100%;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-flex:1;
                    -ms-flex:1;
                        flex:1;
                -webkit-box-orient:vertical;
                -webkit-box-direction:normal;
                    -ms-flex-direction:column;
                        flex-direction:column;
                -webkit-transition:width cubic-bezier(0.4, 0, 0.2, 1) .3s;
                transition:width cubic-bezier(0.4, 0, 0.2, 1) .3s;
            }
.bk-navigation-wrapper .navigation-nav .nav-slider-list{
                    -webkit-box-flex:1;
                        -ms-flex:1 1 auto;
                            flex:1 1 auto;
                    overflow:auto;
                    padding:12px 0 4px 0;
                    margin:0;
                    max-height:calc(100vh - 100px)
                }
.bk-navigation-wrapper .navigation-nav .nav-slider-list::-webkit-scrollbar{
                        width:6px;
                        height:5px;
                        display:none
                    }
.bk-navigation-wrapper .navigation-nav .nav-slider-list::-webkit-scrollbar:hover{
                            -webkit-transition:opacity 340ms ease-out;
                            transition:opacity 340ms ease-out;
                            -webkit-transform:none;
                                    transform:none;
                        }
.bk-navigation-wrapper .navigation-nav .nav-slider-footer{
                    -webkit-box-flex:0;
                        -ms-flex:0 0 56px;
                            flex:0 0 56px;
                    display:-webkit-box;
                    display:-ms-flexbox;
                    display:flex;
                    -webkit-box-align:center;
                        -ms-flex-align:center;
                            align-items:center;
                    -webkit-box-pack:start;
                        -ms-flex-pack:start;
                            justify-content:flex-start;
                    padding-left:14px;
                }
.bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon{
                        font-size:14px;
                        color:#63656E;
                        width:32px;
                        height:32px;
                        border-radius:100%;
                        display:-webkit-box;
                        display:-ms-flexbox;
                        display:flex;
                        -webkit-box-align:center;
                            -ms-flex-align:center;
                                align-items:center;
                        -webkit-box-pack:center;
                            -ms-flex-pack:center;
                                justify-content:center;
                        -webkit-transform-origin:center center;
                                transform-origin:center center;
                    }
.bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon-svg{
                            font-size:16px;
                            -webkit-transition:-webkit-transform cubic-bezier(0.4, 0, 0.2, 1) .3s;
                            transition:-webkit-transform cubic-bezier(0.4, 0, 0.2, 1) .3s;
                            transition:transform cubic-bezier(0.4, 0, 0.2, 1) .3s;
                            transition:transform cubic-bezier(0.4, 0, 0.2, 1) .3s, -webkit-transform cubic-bezier(0.4, 0, 0.2, 1) .3s;
                            height:16px;
                            width:16px;
                            display:-webkit-box;
                            display:-ms-flexbox;
                            display:flex;
                            -webkit-box-align:center;
                                -ms-flex-align:center;
                                    align-items:center;
                            -webkit-box-pack:center;
                                -ms-flex-pack:center;
                                    justify-content:center;
                            -webkit-transform-origin:center center;
                                    transform-origin:center center;
                        }
.bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon.is-left{
                            color:#96A2B9
                        }
.bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon.is-left:hover{
                                background:-webkit-gradient(linear, right top, left top, from(rgba(37, 48, 71, 1)), to(rgba(38, 50, 71, 1)));
                                background:linear-gradient(270deg, rgba(37, 48, 71, 1) 0%, rgba(38, 50, 71, 1) 100%);
                                color:#D3D9E4;
                                cursor:pointer;
                            }
.bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon:hover{
                            background:-webkit-gradient(linear, right top, left top, from(rgba(222, 224, 234, 1)), to(rgba(234, 236, 242, 1)));
                            background:linear-gradient(270deg, rgba(222, 224, 234, 1) 0%, rgba(234, 236, 242, 1) 100%);
                            color:#3A3C42;
                            cursor:pointer;
                        }
.bk-navigation-wrapper .navigation-container{
            -webkit-box-flex:1;
                -ms-flex:1 1 1px;
                    flex:1 1 1px;
            max-width:calc(100vw - 60px);
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-orient:vertical;
            -webkit-box-direction:normal;
                -ms-flex-direction:column;
                    flex-direction:column;
            position:relative;
            min-width:0;
            min-height:0;
        }
.bk-navigation-wrapper .navigation-container .container-header{
                background:#fff;
                -ms-flex-preferred-size:60px;
                    flex-basis:60px;
                height:60px;
                width:100%;
                z-index:100;
                -webkit-box-shadow:0px 3px 4px 0px rgba(64, 112, 203, 0.06);
                        box-shadow:0px 3px 4px 0px rgba(64, 112, 203, 0.06);
                border-bottom:1px solid #dcdee5;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-orient:horizontal;
                -webkit-box-direction:normal;
                    -ms-flex-direction:row;
                        flex-direction:row;
                -webkit-box-align:center;
                    -ms-flex-align:center;
                        align-items:center;
                -webkit-box-pack:end;
                    -ms-flex-pack:end;
                        justify-content:flex-end;
                padding:0 24px;
            }
.bk-navigation-wrapper .navigation-container .container-header-title{
                    height:21px;
                    font-size:16px;
                    color:#313238;
                    line-height:21px;
                }
.bk-navigation-wrapper .navigation-container .container-header-sets{
                    display:-webkit-box;
                    display:-ms-flexbox;
                    display:flex;
                    -webkit-box-flex:1;
                        -ms-flex:1 1 auto;
                            flex:1 1 auto;
                    -webkit-box-align:center;
                        -ms-flex-align:center;
                            align-items:center;
                    -webkit-box-pack:end;
                        -ms-flex-pack:end;
                            justify-content:flex-end;
                }
.bk-navigation-wrapper .navigation-container .container-content{
                background:#F5F7FA;
                max-height:calc(100vh - 60px);
                -webkit-box-flex:1;
                    -ms-flex:1;
                        flex:1;
                overflow:auto;
                padding:20px 24px 0;
            }
.bk-navigation-wrapper .navigation-container .container-footer{
                -webkit-box-flex:0;
                    -ms-flex:0 0 auto;
                        flex:0 0 auto;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-orient:horizontal;
                -webkit-box-direction:normal;
                    -ms-flex-direction:row;
                        flex-direction:row;
                -webkit-box-align:center;
                    -ms-flex-align:center;
                        align-items:center;
                -webkit-box-pack:center;
                    -ms-flex-pack:center;
                        justify-content:center;
            }
.navigation-menu{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
    -webkit-box-align:start;
        -ms-flex-align:start;
            align-items:flex-start;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    font-size:16px
}
.navigation-menu:hover{
        cursor:pointer;
    }
.navigation-menu .bk-navigation-menu-group:first-child .group-name-wrap{
                padding-top:18px;
            }
.navigation-menu-item{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-flex:0;
            -ms-flex:0 0 40px;
                flex:0 0 40px;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        width:100%;
        min-width:100%;
        color:#C4C6CC;
        font-size:14px;
        height:40px;
        margin:2px 0;
        padding-right:12px;
        padding-left:22px;
        overflow:hidden;
        white-space:nowrap;
        text-decoration:none;
    }
.navigation-menu-item-icon.bk-icon{
            font-size:16px;
            min-width:38px;
            text-align:left;
        }
.navigation-menu-item-default{
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-flex:0;
                -ms-flex:0 0 auto;
                    flex:0 0 auto;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
            width:16px;
            height:16px;
            margin-right:22px;
        }
.navigation-menu-item-default-icon{
                width:3px;
                height:3px;
                display:inline-block;
                background:#63656e;
                border-radius:50%;
            }
.navigation-menu-item-name{
            color:#C4C6CC;
            text-overflow:ellipsis;
            white-space:nowrap;
            overflow:hidden;
            padding-right:22px;
        }
.navigation-menu-item[group]{
            margin-bottom:11px;
            overflow:visible;
            position:relative
        }
.navigation-menu-item[group]:after{
                content:" ";
                height:1px;
                position:absolute;
                bottom:-8px;
                background:rgba(255, 255, 255, 0.06);
                left:15px;
                right:15px;
                z-index:100;
            }
.navigation-menu-item[group].group-theme:after{
                    background:#F0F1F5;
                }
.navigation-menu-item.is-disabled{
            cursor:not-allowed;
            opacity:.3;
        }
.navigation-sbmenu{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-flex:0;
        -ms-flex:0 0 auto;
            flex:0 0 auto;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
        -ms-flex-direction:column;
            flex-direction:column;
    -webkit-box-align:start;
        -ms-flex-align:start;
            align-items:flex-start;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    white-space:nowrap;
    width:100%;
    color:#c4c6cc;
    font-size:14px;
    overflow:hidden;
}
.navigation-sbmenu-title{
        min-height:40px;
        margin:2px 0;
        position:relative;
        padding-right:17px;
        padding-left:22px;
        width:100%;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
    }
.navigation-sbmenu-title-icon.bk-icon{
            font-size:16px;
            min-width:38px;
            text-align:left;
        }
.navigation-sbmenu-title-content{
            -webkit-box-flex:1;
                -ms-flex:1 1 auto;
                    flex:1 1 auto;
            text-overflow:ellipsis;
            white-space:nowrap;
            overflow:hidden;
        }
.navigation-sbmenu-title-arrow{
            font-size:16px;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
            -webkit-transition:-webkit-transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
            transition:-webkit-transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
            transition:transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
            transition:transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, -webkit-transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
        }
.navigation-sbmenu-content{
        width:100%;
    }
.navigation-sbmenu-content .navigation-menu-item{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-flex:0;
            -ms-flex:0 0 40px;
                flex:0 0 40px;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        width:100%;
        min-width:100%;
        color:#63656e;
        font-size:14px;
        height:40px;
        margin:2px 0;
        padding-right:12px;
        padding-left:22px;
        overflow:hidden;
        white-space:nowrap;
        text-decoration:none;
    }
.navigation-sbmenu-content .navigation-menu-item-icon.bk-icon{
            font-size:16px;
            min-width:38px;
            text-align:left;
        }
.navigation-sbmenu-content .navigation-menu-item-default{
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-flex:0;
                -ms-flex:0 0 auto;
                    flex:0 0 auto;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
            width:16px;
            height:16px;
            margin-right:22px;
        }
.navigation-sbmenu-content .navigation-menu-item-default-icon{
                width:3px;
                height:3px;
                display:inline-block;
                background:#63656e;
                border-radius:50%;
            }
.navigation-sbmenu-content .navigation-menu-item-name{
            color:#8f929b;
            text-overflow:ellipsis;
            white-space:nowrap;
            overflow:hidden;
            padding-right:22px;
        }
.navigation-sbmenu-content .navigation-menu-item[group]{
            margin-bottom:11px;
            overflow:visible;
            position:relative
        }
.navigation-sbmenu-content .navigation-menu-item[group]:after{
                content:" ";
                height:1px;
                position:absolute;
                bottom:-8px;
                background:rgba(255, 255, 255, 0.06);
                left:15px;
                right:15px;
                z-index:100;
            }
.navigation-sbmenu-content .navigation-menu-item[group].group-theme:after{
                    background:#F0F1F5;
                }
.navigation-sbmenu-content .navigation-menu-item.is-disabled{
            cursor:not-allowed;
            opacity:.3;
        }
.navigation-sbmenu[group]{
        margin-bottom:11px;
        overflow:visible;
        position:relative
    }
.navigation-sbmenu[group]:after{
            content:" ";
            height:1px;
            position:absolute;
            bottom:-8px;
            background:rgba(255, 255, 255, 0.05);
            left:18px;
            right:18px;
            z-index:100;
        }
.navigation-sbmenu .collapse-transition{
        -webkit-transition:0.3s height ease-in-out;
        transition:0.3s height ease-in-out;
    }
.bk-navigation-menu-group{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
      -ms-flex-direction:column;
          flex-direction:column;
  min-height:38px;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  font-size:12px;
  color:#66748F;
  width:100%;
}
.bk-navigation-menu-group .group-name-wrap{
    color:#66748f;
    padding:26px 0px 6px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    width:100%;
  }
.bk-navigation-menu-group .group-name-wrap .group-name{
      margin:0 18px;
      overflow:hidden;
      text-overflow:clip;
      white-space:nowrap;
      -ms-flex-wrap:nowrap;
          flex-wrap:nowrap;
      line-height:16px;
    }
.search-select-wrap{
    position:relative;
    overflow:inherit;
    z-index:9;
    height:32px;
}
.search-select-wrap .bk-search-select{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
            -ms-flex-direction:row;
                flex-direction:row;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        font-size:12px;
        min-height:30px;
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        position:relative;
        border:1px solid #c4c6cc;
        border-radius:2px;
        outline:none;
        resize:none;
        -webkit-transition:border 0.2s linear;
        transition:border 0.2s linear;
        overflow:hidden;
        color:#63656e;
        -ms-flex-wrap:wrap;
            flex-wrap:wrap
    }
.search-select-wrap .bk-search-select.is-focus{
            border-color:#3c96ff !important;
            background:#fff !important;
            color:#3c96ff;
            overflow:auto;
        }
.search-select-wrap .bk-search-select .search-prefix{
            -webkit-box-flex:0;
                -ms-flex:0 0 auto;
                    flex:0 0 auto;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            height:100%;
        }
.search-select-wrap .bk-search-select .search-input{
            -webkit-box-flex:1;
                -ms-flex:1;
                    flex:1;
            position:relative;
            padding:0 2px;
            text-align:left;
            overflow:visible;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -ms-flex-wrap:wrap;
                flex-wrap:wrap;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            min-height:26px;
            margin-top:4px;
            -webkit-transition:max-height .3s cubic-bezier(0.4, 0, 0.2, 1);
            transition:max-height .3s cubic-bezier(0.4, 0, 0.2, 1);
        }
.search-select-wrap .bk-search-select .search-input-chip{
                -webkit-box-flex:0;
                    -ms-flex:0 0 auto;
                        flex:0 0 auto;
                max-width:99%;
                display:inline-block;
                -ms-flex-item-align:center;
                    -ms-grid-row-align:center;
                    align-self:center;
                color:#63656e;
                margin:0 0 4px 6px;
                padding-left:8px;
                position:relative;
                background:#f0f1f5;
                border-radius:2px;
                line-height:22px
            }
.search-select-wrap .bk-search-select .search-input-chip.hidden-chip{
                    visibility:hidden
                }
.search-select-wrap .bk-search-select .search-input-chip:hover{
                    background:#dcdee5;
                }
.search-select-wrap .bk-search-select .search-input-chip:hover .chip-clear{
                        color:#63656e;
                    }
.search-select-wrap .bk-search-select .search-input-chip .chip-name{
                    display:inline-block;
                    margin-right:20px;
                    word-break:break-all;
                }
.search-select-wrap .bk-search-select .search-input-chip .chip-clear{
                    color:#979ba5;
                    position:absolute;
                    right:3px;
                    line-height:normal;
                    display:inline-block;
                    top:4px;
                    text-align:center;
                    cursor:pointer;
                    font-size:14px;
                }
.search-select-wrap .bk-search-select .search-input-input{
                position:relative;
                padding:0 10px;
                color:#63656e;
                -webkit-box-flex:1;
                    -ms-flex:1 1 auto;
                        flex:1 1 auto;
                border:none;
                height:100%;
                min-width:40px;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-align:center;
                    -ms-flex-align:center;
                        align-items:center;
                margin-top:-4px;
            }
.search-select-wrap .bk-search-select .search-input-input .div-input{
                    -webkit-box-flex:1;
                        -ms-flex:1 1 auto;
                            flex:1 1 auto;
                    line-height:20px;
                    padding:5px 0;
                    height:30px;
                    word-break:break-all
                }
.search-select-wrap .bk-search-select .search-input-input .div-input:focus{
                        outline:none;
                    }
.search-select-wrap .bk-search-select .search-input-input .input-before:before{
                        content:attr(data-placeholder);
                        color:#c4c6cc;
                        padding-left:2px;
                    }
.search-select-wrap .bk-search-select .search-input-input .input-after:after{
                        content:attr(data-tips);
                        color:#c4c6cc;
                        padding-left:2px;
                    }
.search-select-wrap .bk-search-select .search-select-wrap .bk-search-select .search-nextfix{
    -webkit-box-flex:0;
    -ms-flex:0 0 auto;
    flex:0 0 auto;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    height:100%;
}
.search-select-wrap .bk-search-select .search-nextfix{
    color:#c4c6cc;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
}
.search-select-wrap .bk-search-select .search-nextfix .search-clear{
                color:#c4c6cc;
                font-size:14px;
                width:12px;
                height:12px;
                margin-right:6px
            }
.search-select-wrap .bk-search-select .search-nextfix .search-clear:hover{
                    cursor:pointer;
                    color:#979ba5;
                }
.search-select-wrap .bk-search-select .search-nextfix .search-nextfix-icon{
                margin-right:8px;
                font-size:16px;
                -webkit-transition:color 0.2s linear;
                transition:color 0.2s linear
            }
.search-select-wrap .bk-search-select .search-nextfix .search-nextfix-icon.is-focus{
                    border-color:#3c96ff !important;
                    background:#fff !important;
                    color:#3c96ff;
                }
.search-select-wrap .bk-search-select::-webkit-scrollbar{
            width:3px;
            height:5px;
        }
.search-select-wrap .bk-search-select::-webkit-scrollbar-thumb{
            border-radius:20px;
            background:#e6e9ea;
            -webkit-box-shadow:inset 0 0 6px rgba(204, 204, 204, 0.3);
                    box-shadow:inset 0 0 6px rgba(204, 204, 204, 0.3);
        }
.search-select-wrap .bk-select-tips{
        color:#ea3636;
        font-size:12px;
        margin-top:5px;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        line-height:16px;
    }
.search-select-wrap .bk-select-tips .select-tips{
            font-size:16px;
            margin-right:5px;
            width:16px;
            height:16px;
        }
.bk-search-list{
    font-size:12px;
    position:relative;
    max-height:280px;
    min-height:32px;
    min-width:230px;
    line-height:32px;
    color:#63656e;
    margin:-0.3rem -0.6rem;
    outline:none;
    resize:none;
    pointer-events:all;
    border:1px solid #dcdee5;
    border-radius:2px;
}
.bk-search-list-condition{
        border-bottom:1px solid #dcdee5;
        padding:0 10px 0 16px;
        pointer-events:auto
    }
.bk-search-list-condition:hover{
            cursor:pointer;
            color:#3a84ff;
            background-color:rgba(234, 243, 255, 0.7);
        }
.bk-search-list-menu{
        margin:0;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
        pointer-events:all;
        max-height:200px;
        overflow-x:hidden;
        overflow-y:auto;
        padding:0
    }
.bk-search-list-menu::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.bk-search-list-menu::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.bk-search-list-menu .is-group{
            border-bottom:1px solid #dcdee5;
        }
.bk-search-list-menu-item{
            -webkit-box-flex:1;
                -ms-flex:1 0 32px;
                    flex:1 0 32px;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -webkit-box-pack:start;
                -ms-flex-pack:start;
                    justify-content:flex-start;
            pointer-events:auto;
            text-overflow:ellipsis;
            overflow:hidden;
            white-space:nowrap;
            padding:0 10px 0 16px
        }
.bk-search-list-menu-item.is-disabled{
                color:#c4c6cc;
                cursor:not-allowed;
            }
.bk-search-list-menu-item .item-name{
                -webkit-box-flex:1;
                    -ms-flex:1;
                        flex:1;
                line-height:32px;
            }
.bk-search-list-menu-item .item-name-filter{
                    color:#313238;
                    display:inline-block;
                }
.bk-search-list-menu-item .item-icon{
                color:#3a84ff;
                font-size:16px;
                font-weight:bold;
            }
.bk-search-list-menu-item.is-hover, .bk-search-list-menu-item:not(.is-disabled):hover{
                cursor:pointer;
                color:#3a84ff;
                background-color:rgba(234, 243, 255, 0.7);
            }
.bk-search-list-loading{
        padding:0 16px;
        text-align:center;
        line-height:32px;
    }
.bk-search-list-error{
        padding:0 10px 0 16px;
        line-height:32px;
        font-weight:bold;
    }
.bk-search-list-footer{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        line-height:32px;
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
            -ms-flex-direction:row;
                flex-direction:row;
        -ms-flex-pack:distribute;
            justify-content:space-around;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        pointer-events:auto;
    }
.bk-search-list-footer .footer-btn{
            -webkit-box-flex:1;
                -ms-flex:1;
                    flex:1;
            text-align:center;
            border-top:1px solid #dcdee5;
            pointer-events:auto
        }
.bk-search-list-footer .footer-btn:hover{
                cursor:pointer;
                color:#3a84ff;
                background-color:rgba(234, 243, 255, 0.7);
            }
.bk-search-list-footer .footer-btn:first-child{
                border-right:1px solid #dcdee5;
            }
.bk-search-list .search-menu-wrap{
        padding:6px 0;
    }
.tippy-tooltip.bk-search-select-theme-theme{
        -webkit-box-shadow:0 3px 9px 0 rgba(0, 0, 0, .1);
                box-shadow:0 3px 9px 0 rgba(0, 0, 0, .1);
        border-radius:2px;
    }
.bk-score-group{
    position:relative;
}
.bk-score-group .bk-score-real{
        position:absolute;
        overflow:hidden;
        left:0;
        top:0;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
    }
.bk-rate-stars{
    margin:0;
    padding:0;
}
.bk-rate-stars .bk-is-edit{
        cursor:pointer;
    }
.bk-rate-stars:after{
        content:'';
        display:table;
        clear:both;
    }
.bk-rate-stars .bk-rate-star{
        float:left;
        margin-right:3px;
        enable-background:new 0 0 64 64;
        fill:#c5c7d1
    }
.bk-rate-stars .bk-rate-star.bk-yellow{
            fill:#ffb848;
        }
.bk-rate-stars .bk-rate-star:last-child{
            margin-right:0;
        }
.bk-spin{
    display:inline-block;
    position:relative;
    text-align:center;
    vertical-align:middle;
}
.bk-spin .bk-spin-rotation{
        position:relative;
    }
.bk-spin .bk-spin-rotation .rotate{
            position:absolute;
            top:77%;
            right:43%;
            width:6px;
            height:8px;
            -webkit-transform-origin:50% -10px;
                    transform-origin:50% -10px;
            border-radius:8px;
            -webkit-transform:scale(0.4);
                    transform:scale(0.4);
            -webkit-animation-name:fadePrimary;
                    animation-name:fadePrimary;
            -webkit-animation-duration:1.2s;
                    animation-duration:1.2s;
            -webkit-animation-iteration-count:infinite;
                    animation-iteration-count:infinite;
            -webkit-animation-direction:normal;
                    animation-direction:normal;
        }
.bk-spin .bk-spin-rotation.bk-spin-rotation-primary .rotate{
                -webkit-animation-name:fadePrimary;
                        animation-name:fadePrimary;
            }
.bk-spin .bk-spin-rotation.bk-spin-rotation-success .rotate{
                -webkit-animation-name:fadeSuccess;
                        animation-name:fadeSuccess;
            }
.bk-spin .bk-spin-rotation.bk-spin-rotation-danger .rotate{
                -webkit-animation-name:fadeDanger;
                        animation-name:fadeDanger;
            }
.bk-spin .bk-spin-rotation.bk-spin-rotation-warning .rotate{
                -webkit-animation-name:fadeWarning;
                        animation-name:fadeWarning;
            }
.bk-spin .bk-spin-rotation.bk-spin-rotation-info .rotate{
                -webkit-animation-name:fadeInfo;
                        animation-name:fadeInfo;
            }
.bk-spin .bk-spin-rotation.bk-spin-rotation-primary-wait .rotate{
                background-color:#3c96ff;
            }
.bk-spin .bk-spin-rotation.bk-spin-rotation-success-wait .rotate{
                background-color:#2dcb56;
            }
.bk-spin .bk-spin-rotation.bk-spin-rotation-danger-wait .rotate{
                background-color:#ff5656;
            }
.bk-spin .bk-spin-rotation.bk-spin-rotation-warning-wait .rotate{
                background-color:#ffb848;
            }
.bk-spin .bk-spin-rotation.bk-spin-rotation-info-wait .rotate{
                background-color:#63656e;
            }
.bk-spin .bk-spin-rotation .rotate1{
            -webkit-animation-delay:0.45s;
                    animation-delay:0.45s;
            -webkit-transform:rotate(-90deg);
                    transform:rotate(-90deg);
        }
.bk-spin .bk-spin-rotation .rotate2{
            -webkit-animation-delay:0.6s;
                    animation-delay:0.6s;
            -webkit-transform:rotate(-45deg);
                    transform:rotate(-45deg);
        }
.bk-spin .bk-spin-rotation .rotate3{
            -webkit-animation-delay:0.75s;
                    animation-delay:0.75s;
            -webkit-transform:rotate(0deg);
                    transform:rotate(0deg);
        }
.bk-spin .bk-spin-rotation .rotate4{
            -webkit-animation-delay:0.9s;
                    animation-delay:0.9s;
            -webkit-transform:rotate(45deg);
                    transform:rotate(45deg);
        }
.bk-spin .bk-spin-rotation .rotate5{
            -webkit-animation-delay:1.05s;
                    animation-delay:1.05s;
            -webkit-transform:rotate(90deg);
                    transform:rotate(90deg);
        }
.bk-spin .bk-spin-rotation .rotate6{
            -webkit-animation-delay:1.2s;
                    animation-delay:1.2s;
            -webkit-transform:rotate(135deg);
                    transform:rotate(135deg);
        }
.bk-spin .bk-spin-rotation .rotate7{
            -webkit-animation-delay:1.35s;
                    animation-delay:1.35s;
            -webkit-transform:rotate(180deg);
                    transform:rotate(180deg);
        }
.bk-spin .bk-spin-rotation .rotate8{
            -webkit-animation-delay:1.5s;
                    animation-delay:1.5s;
            -webkit-transform:rotate(-135deg);
                    transform:rotate(-135deg);
        }
.bk-spin .bk-spin-rotation-flex{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -ms-flex-negative:0;
            flex-shrink:0;
    }
.bk-spin .bk-spin-rotation-margin{
        margin:0 auto;
    }
.bk-spin .bk-spin-rotation-large{
        width:69px;
        height:69px;
    }
.bk-spin .bk-spin-rotation-large .rotate{
            width:10px;
            height:14px;
            -webkit-transform-origin:50% -18px;
                    transform-origin:50% -18px;
        }
.bk-spin .bk-spin-rotation-normal{
        width:49px;
        height:49px;
    }
.bk-spin .bk-spin-rotation-normal .rotate{
            width:6px;
            height:9px;
            -webkit-transform-origin:50% -13px;
                    transform-origin:50% -13px;
        }
.bk-spin .bk-spin-rotation-small{
        width:27px;
        height:27px;
    }
.bk-spin .bk-spin-rotation-small .rotate{
            width:4px;
            height:5px;
            -webkit-transform-origin:50% -7px;
                    transform-origin:50% -7px;
        }
.bk-spin .bk-spin-rotation-mini{
        width:16px;
        height:16px;
    }
.bk-spin .bk-spin-rotation-mini .rotate{
            width:2px;
            height:3px;
            -webkit-transform-origin:50% -4px;
                    transform-origin:50% -4px;
        }
.bk-spin .bk-spin-icon{
        color:#3c96ff;
        font-size:16px;
        -webkit-animation:icon-loading 1.2s linear infinite;
                animation:icon-loading 1.2s linear infinite;
    }
.bk-spin .bk-spin-icon i{
            vertical-align:middle
        }
.bk-spin .bk-spin-icon-wait{
        -webkit-animation:none;
                animation:none
    }
.bk-spin .bk-spin-icon-primary{
        color:#3c96ff
    }
.bk-spin .bk-spin-icon-success{
        color:#2dcb56
    }
.bk-spin .bk-spin-icon-warning{
        color:#ffb848
    }
.bk-spin .bk-spin-icon-danger{
        color:#ff5656
    }
.bk-spin .bk-spin-icon-info{
    	color:#979ba5;
    }
.bk-spin .bk-spin-icon-large i{
            font-size:69px;
        }
.bk-spin .bk-spin-icon-normal i{
            font-size:49px;
        }
.bk-spin .bk-spin-icon-small i{
            font-size:27px;
        }
.bk-spin .bk-spin-icon-nimi i{
            font-size:16px;
        }
.bk-spin .bk-spin-title{
        text-align:center;
        font-size:14px;
        color:#63656e;
        line-height:normal;
        line-height:initial;
        max-width:100%;
    }
.bk-spin .bk-spin-title-right{
        display:inline-block;
        padding-left:8px;
    }
.bk-spin .bk-spin-title-bottom{
        margin-top:8px;
    }
.bk-spin .bk-spin-title-large{
        height:69px;
    }
.bk-spin .bk-spin-title-normal{
        height:49px;
    }
.bk-spin .bk-spin-title-small{
        height:27px;
    }
.bk-spin .bk-spin-title-mini{
        height:16px;
    }
.bk-spin .bk-display-flex{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
    }
@keyframes fadePrimary{
    0%{
        background-color:#3c96ff;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeSuccess{
    0%{
        background-color:#2dcb56;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeDanger{
    0%{
        background-color:#ff5656;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeWarning{
    0%{
        background-color:#ffb848;
    }

    100%{
        background-color:none;
    }
}
@-webkit-keyframes fadeInfo{
    0%{
        background-color:#979ba5;
    }

    100%{
        background-color:none;
    }
}
@keyframes fadeInfo{
    0%{
        background-color:#979ba5;
    }

    100%{
        background-color:none;
    }
}
@-webkit-keyframes icon-loading{
    0%{
        -webkit-transform:rotate(0deg);
                transform:rotate(0deg);
    }
    100%{
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg);
    }
}
@keyframes icon-loading{
    0%{
        -webkit-transform:rotate(0deg);
                transform:rotate(0deg);
    }
    100%{
        -webkit-transform:rotate(360deg);
                transform:rotate(360deg);
    }
}
.bk-swiper-home{
    position:relative;
    overflow:hidden
}
.bk-swiper-home:hover .bk-swiper-nav{
        display:block;
    }
.bk-swiper-main{
    height:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    overflow:hidden
}
.bk-swiper-main.bk-transition{
        -webkit-transition:0.5s cubic-bezier(0.42, 0, 0.58, 1);
        transition:0.5s cubic-bezier(0.42, 0, 0.58, 1);
    }
.bk-swiper-main .bk-swiper-card{
        height:100%;
        margin:0;
        padding:0;
    }
.bk-swiper-main .bk-swiper-img{
        display:inline-block;
        height:100%;
        width:100%;
        margin:0;
        background-size:cover;
        background-repeat:no-repeat;
        background-position:center;
    }
.bk-swiper-main .bk-swiper-link{
        cursor:pointer;
    }
.bk-swiper-index{
    position:absolute;
    bottom:10px;
    left:0;
    right:0;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    margin:0;
    padding:0;
}
.bk-swiper-index li{
        width:11px;
        height:4px;
        margin:0 3px;
        background:#63656e;
        border-radius:2px;
        -webkit-transition:width 0.525s;
        transition:width 0.525s;
        list-style-type:none
    }
.bk-swiper-index li.bk-current-index{
            width:17px;
            background:#c5c7d1;
        }
.bk-swiper-nav{
    cursor:pointer;
    position:absolute;
    border-radius:50%;
    width:30px;
    height:30px;
    background:rgba(31,45,61,.4);
    top:calc(50% - 15px);
    display:none;
}
.bk-swiper-nav .bk-swiper-nav-icon{
        position:absolute;
        top:9px;
        left:11px;
        width:10px;
        height:10px;
        border-left:2px solid #fff;
        border-bottom:2px solid #fff;
    }
.bk-swiper-nav.bk-nav-prev{
        left:14px;
        -webkit-transform:rotate(45deg);
                transform:rotate(45deg)
    }
.bk-swiper-nav.bk-nav-prev:hover{
            -webkit-transform:rotate(45deg);
                    transform:rotate(45deg);
        }
.bk-swiper-nav.bk-nav-next{
        right:14px;
        -webkit-transform:rotate(225deg);
                transform:rotate(225deg)
    }
.bk-swiper-nav.bk-nav-next:hover{
            -webkit-transform:rotate(225deg);
                    transform:rotate(225deg);
        }
.bk-swiper-nav:hover{
        background:rgba(31,45,61,.6);
    }
.bk-big-tree{
    overflow:auto
}
.bk-big-tree::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.bk-big-tree::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.bk-big-tree.with-virtual-scroll .bk-big-tree-empty{
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
        }
.bk-big-tree .bk-big-tree-empty{
        text-align:center;
        font-size:14px;
        color:#63656e;
    }
.bk-big-tree--small .bk-big-tree-node .node-content{
            font-size:12px;
        }
.bk-big-tree-node{
    position:relative;
    height:32px;
    padding-left:calc(var(--level) * var(--padding));
    line-height:32px;
    font-size:0;
    cursor:pointer
}
.bk-big-tree-node.has-link-line{
        padding-left:0;
        margin-left:calc(var(--level) * var(--padding))
    }
.bk-big-tree-node.has-link-line:not(.is-root):before{
            content:"";
            position:absolute;
            width:calc(var(--padding) - 8px);
            height:0;
            border-bottom:1px dashed #c3cdd7;
            left:calc((20px/2) - var(--padding));
            top:15px;
            z-index:1;
            pointer-events:none;
        }
.bk-big-tree-node.has-link-line:after{
            position:absolute;
            top:24px;
            left:calc(20px / 2);
            width:0;
            height:calc(var(--line) * 1px - 8px);
            border-left:1px dashed #c3cdd7;
            content:"";
            pointer-events:none;
            z-index:1;
        }
.bk-big-tree-node.has-link-line.is-leaf{
            padding-left:8px;
            margin-left:calc(var(--level) * var(--padding) + (20px - 4px))
        }
.bk-big-tree-node.has-link-line.is-leaf:before{
                width:calc(var(--padding) + (20px/2 - 4px));
                left:calc(0px - var(--padding) - (20px/2 - 4px));
            }
.bk-big-tree-node:hover{
        background-color:#f1f7ff;
    }
.bk-big-tree-node.is-selected{
        background-color:#e1ecff;
    }
.bk-big-tree-node.is-selected .node-icon{
            color:#fff;
            background-color:#3a84ff;
        }
.bk-big-tree-node.is-selected .node-content{
            color:#3a84ff;
        }
.bk-big-tree-node.is-leaf{
        padding-left:calc(var(--level) * var(--padding) + 20px + 2px);
    }
.bk-big-tree-node.is-disabled{
        cursor:not-allowed;
    }
.bk-big-tree-node .node-options{
        height:100%;
    }
.bk-big-tree-node .node-options .node-loading{
            display:inline-block;
            vertical-align:middle;
            width:20px;
            height:20px;
            margin:0 2px 0 0;
            background-image:url("images/spinner.svg");
            background-size:100% 100%;
        }
.bk-big-tree-node .node-options .node-folder-icon{
            display:inline-block;
            vertical-align:middle;
            position:relative;
            width:20px;
            height:20px;
            margin:0 2px 0 0;
            line-height:20px;
            text-align:center;
            font-size:12px;
            color:#979ba5;
            z-index:2
        }
.bk-big-tree-node .node-options .node-folder-icon:hover{
                color:#63656e;
            }
.bk-big-tree-node .node-options .node-checkbox{
            display:inline-block;
            vertical-align:middle;
            position:relative;
            width:16px;
            height:16px;
            margin:0 8px 0 0;
            border:1px solid #979ba5;
            border-radius:2px
        }
.bk-big-tree-node .node-options .node-checkbox.is-checked{
                border-color:#3a84ff;
                background-color:#3a84ff;
                background-clip:border-box
            }
.bk-big-tree-node .node-options .node-checkbox.is-checked:after{
                    content:"";
                    position:absolute;
                    top:1px;
                    left:4px;
                    width:4px;
                    height:8px;
                    border:2px solid #fff;
                    border-left:0;
                    border-top:0;
                    -webkit-transform-origin:center;
                            transform-origin:center;
                    -webkit-transform:rotate(45deg) scaleY(1);
                            transform:rotate(45deg) scaleY(1);
                }
.bk-big-tree-node .node-options .node-checkbox.is-checked.is-disabled{
                    background-color:#dcdee5;
                }
.bk-big-tree-node .node-options .node-checkbox.is-disabled{
                border-color:#dcdee5;
                cursor:not-allowed;
            }
.bk-big-tree-node .node-options .node-checkbox.is-indeterminate{
                border-width:7px 4px;
                border-color:#3a84ff;
                background-color:#fff;
                background-clip:content-box
            }
.bk-big-tree-node .node-options .node-checkbox.is-indeterminate:after{
                    visibility:hidden;
                }
.bk-big-tree-node .node-options .node-icon{
            display:inline-block;
            vertical-align:middle;
            margin:0 8px 0 0;
            font-size:18px;
        }
.bk-big-tree-node .node-content{
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
        font-size:14px;
    }
.bk-scroll-home{
    position:relative;
    height:100%;
}
.bk-scroll-home .bk-scroll-main{
        height:100%;
        overflow:hidden;
        position:relative;
    }
.bk-scroll-home .bk-scroll-index{
        text-align:right;
        -webkit-user-select:none;
           -moz-user-select:none;
            -ms-user-select:none;
                user-select:none;
    }
.bk-scroll-home .bk-scroll-index .bk-scroll-item{
            width:100%;
            color:rgba(166, 166, 166, 1)
        }
.bk-scroll-home .bk-scroll{
        position:absolute;
        will-change:transform;
        cursor:default;
        list-style-type:none;
        padding:0;
        margin:0;
        overflow:hidden;
    }
.bk-scroll-home .bk-scroll .bk-scroll-item{
            position:absolute;
            width:100%;
        }
.bk-scroll-home .bk-min-nav{
        position:absolute;
        right:0;
        top:0;
        cursor:default;
        -webkit-user-select:none;
           -moz-user-select:none;
            -ms-user-select:none;
                user-select:none;
        width:8px
    }
.bk-scroll-home .bk-min-nav:hover + span{
            background:rgba(121, 121, 121, 0.4);
        }
.bk-scroll-home .bk-min-nav-slide{
        position:absolute;
        -webkit-transition:opacity .1s linear;
        transition:opacity .1s linear;
        will-change:transform;
        cursor:default;
        -webkit-user-select:none;
           -moz-user-select:none;
            -ms-user-select:none;
                user-select:none;
        right:0;
        width:8px
    }
.bk-scroll-home .bk-min-nav-slide.bk-nav-show{
            background:rgba(121, 121, 121, 0.4);
        }
.bk-scroll-home .bk-min-nav-slide:hover{
            background:rgba(121, 121, 121, 0.5);
        }
.bk-scroll-home .bk-min-nav-slide:active{
            background:rgba(121, 121, 121, 0.55);
        }
.bk-scroll-home .bk-bottom-scroll{
        bottom:0;
        height:8px;
        background:rgba(121, 121, 121, 0.4);
    }
.bk-link{
    display:-webkit-inline-box;
    display:-ms-inline-flexbox;
    display:inline-flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
        -ms-flex-direction:row;
            flex-direction:row;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    vertical-align:middle;
    text-decoration:none;
    cursor:pointer;
    line-height:20px;
}
.bk-link .bk-link-icon{
        font-size:14px
    }
.bk-link .bk-link-icon.is-left{
            margin-right:4px;
        }
.bk-link .bk-link-icon.is-right{
            margin-left:4px;
        }
.bk-link .bk-link-text{
        font-size:14px;
    }
.bk-link.is-default{
        color:#63656e
    }
.bk-link.is-default:hover{
            color:#979ba5;
        }
.bk-link.is-default.is-disabled{
            color:#dcdee5;
        }
.bk-link.is-primary{
        color:#3a84ff
    }
.bk-link.is-primary:hover{
            color:#699df4;
        }
.bk-link.is-primary.is-disabled{
            color:#a3c5fd;
        }
.bk-link.is-success{
        color:#2dcb56
    }
.bk-link.is-success:hover{
            color:#45e35f;
        }
.bk-link.is-success.is-disabled{
            color:#94f5a4;
        }
.bk-link.is-warning{
        color:#ff9c01
    }
.bk-link.is-warning:hover{
            color:#ffb848;
        }
.bk-link.is-warning.is-disabled{
            color:#ffd695;
        }
.bk-link.is-danger{
        color:#ea3636
    }
.bk-link.is-danger:hover{
            color:#ff5656;
        }
.bk-link.is-danger.is-disabled{
            color:#fd9c9c;
        }
.bk-link.is-disabled{
        cursor:not-allowed;
    }
.bk-link.has-underline{
        text-decoration:underline;
    }
.bk-popconfirm-content{
    font-size:12px;
}
.bk-popconfirm-content .popconfirm-split{
        display:inline-block;
        position:absolute;
        top:13px;
        background-color:#dcdee5;
        width:1px;
        height:12px;
        margin-left:-2px;
    }
.bk-popconfirm-content.popconfirm-more{
        padding:10px;
    }
.bk-popconfirm-content.popconfirm-more .popconfirm-content .title{
                font-size:16px;
                color:#313238;
                padding-bottom:10px;
            }
.bk-popconfirm-content.popconfirm-more .popconfirm-content .content{
                font-size:12px;
                line-height:20px;
                color:#63656e;
                padding-bottom:10px;
            }
.bk-popconfirm-content.popconfirm-more .popconfirm-content .is-simple.content{
                font-size:14px;
                line-height:24px;
            }
.bk-popconfirm-content.popconfirm-more .popconfirm-operate{
            text-align:right;
            margin-bottom:2px;
        }
.bk-popconfirm-content .popconfirm-operate button{
            background:transparent;
            border:transparent;
            color:#3a84ff;
            margin-left:4px
        }
.bk-popconfirm-content .popconfirm-operate button:hover{
                color:#699df4;
            }
.bk-popconfirm-content .popconfirm-operate button[type="button"]{
                border-radius:2px;
                color:#63656e;
                border:1px solid #c4c6cc
            }
.bk-popconfirm-content .popconfirm-operate button[type="button"]:hover{
                    border-color:#979ba5;
                }
.bk-popconfirm-content .popconfirm-operate button[type="button"].primary{
                    color:#fff;
                    background:#3a84ff;
                    border:#3a84ff
                }
.bk-popconfirm-content .popconfirm-operate button[type="button"].primary:hover{
                        background-color:#699df4;
                        border-color:#699df4;
                    }
.bk-popconfirm-content .popconfirm-operate .default-operate-button{
            height:26px;
            padding:0 16px;
        }
.tippy-tooltip.bk-overflow-tips-theme{
    font-size:12px;
    word-break:break-all;
}
.bk-cascade{
    position:relative;
    border:1px solid #c4c6cc;
    border-radius:2px;
    line-height:30px;
    font-size:12px;
    color:#63656e;
    cursor:pointer
}
.bk-cascade.is-default-trigger.is-unselected:before{
        position:absolute;
        height:100%;
        content:attr(data-placeholder);
        left:11px;
        top:0;
        color:#c3cdd7;
        pointer-events:none;
    }
.bk-cascade.is-focus{
        border-color:#3a84ff;
        -webkit-box-shadow:0px 0px 4px rgba(58, 132, 255, 0.4);
                box-shadow:0px 0px 4px rgba(58, 132, 255, 0.4);
    }
.bk-cascade.is-focus .bk-cascade-angle{
            -webkit-transform:rotate(-180deg);
                    transform:rotate(-180deg);
        }
.bk-cascade:focus{
        border-color:#3a84ff;
        -webkit-box-shadow:0px 0px 4px rgba(58, 132, 255, 0.4);
                box-shadow:0px 0px 4px rgba(58, 132, 255, 0.4);
    }
.bk-cascade.is-disabled{
        background-color:#fafafa;
        color:#c4c6cc;
        cursor:not-allowed;
    }
.bk-cascade.is-readonly,
    .bk-cascade.is-loading{
        background-color:#fafafa;
        cursor:default;
    }
.bk-cascade:hover .bk-cascade-clear{
            display:block;
        }
.bk-cascade .bk-cascade-loading{
        position:absolute;
        right:9px;
        top:8px;
        width:18px;
        height:18px;
    }
.bk-cascade .bk-cascade-angle{
        position:absolute;
        right:2px;
        top:4px;
        color:#979ba5;
        font-size:22px;
        -webkit-transition:-webkit-transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        transition:-webkit-transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        transition:transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        transition:transform .3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform .3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events:none;
    }
.bk-cascade .bk-cascade-clear{
        display:none;
        position:absolute;
        right:6px;
        top:8px;
        width:14px;
        height:14px;
        line-height:14px;
        background-color:#c4c6cc;
        border-radius:50%;
        text-align:center;
        font-size:14px;
        color:#fff;
        z-index:100
    }
.bk-cascade .bk-cascade-clear:before{
            display:block;
            -webkit-transform:scale(.7);
                    transform:scale(.7);
        }
.bk-cascade .bk-cascade-clear:hover{
            background-color:#979ba5;
        }
.bk-cascade .bk-cascade-name{
        height:30px;
        padding:0 36px 0 11px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
.bk-cascade .bk-tooltip.bk-cascade-dropdown{
        display:block
    }
.bk-cascade .bk-tooltip.bk-cascade-dropdown > .bk-tooltip-ref{
            display:block;
        }
.bk-cascade-dropdown-content{
    border:1px solid #dcdee5;
    border-radius:2px;
    line-height:32px;
    background:#fff;
    color:#63656e;
    overflow:hidden;
}
.bk-cascade-search-input{
    width:100%;
    height:32px;
    border:none;
    font-size:12px;
    outline:0;
    cursor:text
}
.bk-cascade-search-input::-webkit-input-placeholder{
      color:#c3cdd7;
    }
.bk-cascade-options{
    padding:0;
    list-style:none;
    overflow-y:auto
}
.bk-cascade-options::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.bk-cascade-options::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.bk-cascade-options.bk-options-single .bk-option:hover,
            .bk-cascade-options.bk-options-single .bk-option.is-highlight{
                background-color:#eaf3ff;
            }
.bk-cascade-options.bk-options-single .bk-option.is-selected{
                background-color:#f4f6fa;
            }
.bk-cascade-options .bk-option-group .bk-option-group-name{
            margin:0 16px;
            border-bottom:1px solid #dcdee5;
            color:#979ba5;
        }
.bk-cascade-options .bk-group-options{
        margin:0;
        padding:0;
        list-style:none;
    }
.bk-cascade-options .bk-group-options .bk-option{
            padding:0 12px;
        }
.bk-cascade-options .bk-option{
        position:relative;
        cursor:pointer
    }
.bk-cascade-options .bk-option:hover,
        .bk-cascade-options .bk-option.is-highlight{
            color:#3a84ff;
            background-color:#eaf3ff;
        }
.bk-cascade-options .bk-option.is-disabled{
            color:#c4c6cc;
            cursor:not-allowed;
            background-color:#fff;
        }
.bk-cascade-options .bk-option.is-selected{
            color:#3a84ff;
            background-color:#f4f6fa;
        }
.bk-cascade-options .bk-option.is-selected.is-disabled{
            background-color:#fff;
            color:#c4c6cc;
        }
.bk-cascade-options .bk-option.is-selected.is-disabled .bk-option-icon{
                color:#c4c6cc;
            }
.bk-cascade-options .bk-option-content{
        position:relative;
        padding:0 16px;
    }
.bk-cascade-options .bk-option-content .bk-option-content-default{
            font-size:0;
        }
.bk-cascade-options .bk-option-content .bk-option-name{
            overflow:hidden;
            text-overflow:ellipsis;
            white-space:nowrap;
            vertical-align:middle;
            font-size:12px;
        }
.bk-cascade-options .bk-option-content .bk-option-icon{
            position:absolute;
            right:12px;
            top:12px;
            color:#3a84ff;
            font-size:12px;
            font-weight:bold;
        }
.bk-cascade-empty{
    padding:0 10px;
    font-size:12px;
}
.bk-cascade-extension{
    font-size:12px;
    padding:0 16px;
    border-radius:0px 0px 1px 1px;
    border-top:1px solid #dcdee5;
    background:#fafbfd
}
.bk-cascade-extension:hover{
        background-color:#f0f1f5;
    }
.tippy-tooltip.bk-cascade-dropdown-theme[data-size=small]{
    padding:0;
    -webkit-box-shadow:0 3px 9px 0 rgba(0,0,0,.1);
            box-shadow:0 3px 9px 0 rgba(0,0,0,.1);
}
.tippy-tooltip.bk-cascade-dropdown-theme[data-size=small] .tippy-arrow{
        display:none;
    }
.bk-cacade-search{
	border:none;
}
.bk-cascade-panel{
  height:100%;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}
.bk-cascade-panel .bk-cascade-panel-ul{
		float:left;
		height:100%;
		padding:0;
		margin:0;
		list-style:none;
		overflow-y:auto;
	}
.bk-cascade-panel .bk-cascade-panel-ul::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.bk-cascade-panel .bk-cascade-panel-ul::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.bk-cascade-panel .bk-cascade-border{
		border-right:1px solid #DCDEE5;
	}
.bk-cascade-panel .bk-option{
		position:relative;
	}
.bk-cascade-panel .bk-option .bk-cascade-right{
			position:absolute;
			top:6px;
			right:5px;
            font-size:20px;
            color:#979BA5;
		}
.bk-cascade-panel .is-multiple{
		background-color:#fff!important;
	}
.bk-option-none{
    display:block;
    font-size:12px;
    line-height:32px;
    text-align:center;
    color:#63656E;
}
.bk-cascade-search{
	height:calc(100% - 36px);
}
.bk-option-content{
	position:relative;
}
.bk-option-content .bk-cascade-check{
		position:absolute;
		top:0;
		left:16px;
	}
.bk-option-content .bk-margin-left{
		margin-left:26px;
	}
.bk-cascade-tag-list{
    padding:5px 36px 0px 10px;
    min-height:30px
}
.bk-cascade-tag-list::after{
        display:block;
        clear:both;
        content:"";
        font-size:0;
        height:0;
        visibility:hidden;
    }
.bk-cascade-tag-list .bk-cascade-tag-item{
        display:inline-block;
        cursor:pointer;
        position:relative;
        margin:0 6px 5px 0;
        border-radius:2px;
        float:left;
        height:22px;
        line-height:22px;
        overflow:hidden;
        background-color:#F0F1F5
    }
.bk-cascade-tag-list .bk-cascade-tag-item:hover{
            background-color:#dcdee5;
        }
.bk-cascade-tag-list .bk-cascade-tag-item:hover .remove-key{
                color:#63656e;
            }
.bk-cascade-tag-list .bk-cascade-item-name{
        display:inline-block;
        color:#63656e;
        font-size:12px;
        border:none;
        vertical-align:middle;
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        overflow:hidden;
        border-radius:2px;
        padding:0 5px;
        min-height:21px;
        line-height:19px;
        word-break:break-all;
        max-width:150px;
        overflow:hidden;
        display:inline-block;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
.bk-cascade-tag-list .remove-key{
        position:absolute;
        width:18px;
        height:16px;
        top:3px;
        right:4px;
        display:inline-block;
        text-align:center;
    }
.bk-cascade-tag-list .remove-key .icon-close{
            color:#979ba5;
            position:absolute;
            top:0;
            left:0;
            display:inline-block;
            text-align:center;
            cursor:pointer;
            font-size:18px;
        }
.bk-button-icon-loading{
    position:relative;
    top:2px;
    color:#3A84FF;
}
.bk-button-icon-loading .loading{
        width:14px;
        height:14px;
        border:2px solid;
        border-right-color:#ffffff;
        border-radius:50%;
        -webkit-animation:button-icon-loading 1s linear infinite;
                animation:button-icon-loading 1s linear infinite;
        margin:-7px auto 0;
        display:inline-block;
    }
.bk-zoom-image .bk-real-image{
        width:100%;
        height:100%;
        cursor:pointer;
        vertical-align:bottom;
    }
.bk-zoom-image .bk-full-screen{
        position:fixed;
        top:0;
        left:0;
        bottom:0;
        right:0;
        z-index:2;
        background:rgba(0, 0, 0, 0.6);
        cursor:pointer;
    }
.bk-zoom-image .bk-full-screen .bk-full-image{
            cursor:-webkit-grab;
            cursor:grab;
            position:relative;
        }
.bk-zoom-image .bk-full-screen .bk-zoom-init{
            max-width:50vw;
            max-height:50vh;
            height:auto!important;
            width:auto!important;
            top:50%!important;
            left:50%!important;
            -webkit-transform:translate(-50%, -50%);
                    transform:translate(-50%, -50%);
        }
.bk-version{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    margin:-23px -24px -16px;
}
.bk-version-left{
        -webkit-box-flex:0;
            -ms-flex:0 0 180px;
                flex:0 0 180px;
        background-color:#FAFBFD;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
        font-size:12px;
        position:relative;
    }
.bk-version-left .left-fill{
            height:20px;
            -webkit-box-flex:0;
                -ms-flex:0 0 20px;
                    flex:0 0 20px;
            border-right:1px solid #DCDEE5
        }
.bk-version-left .left-fill.fill-top{
                margin-top:-10px;
            }
.bk-version-left .left-fill.fill-bottom{
                margin-bottom:-10px;
            }
.bk-version-left .left-list{
            border-top:1px solid #DCDEE5;
            border-bottom:1px solid #DCDEE5;
            overflow-y:hidden;;
            display:-webkit-box;;
            display:-ms-flexbox;;
            display:flex;
            -webkit-box-orient:vertical;
            -webkit-box-direction:normal;
                -ms-flex-direction:column;
                    flex-direction:column;
            width:100%;
            margin:0;
            padding:0;
            -webkit-box-flex:1;
                -ms-flex:1;
                    flex:1;
        }
.bk-version-left .left-list-item{
                -webkit-box-flex:0;
                    -ms-flex:0 0 54px;
                        flex:0 0 54px;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-orient:vertical;
                -webkit-box-direction:normal;
                    -ms-flex-direction:column;
                        flex-direction:column;
                -webkit-box-pack:center;
                    -ms-flex-pack:center;
                        justify-content:center;
                padding:0 15px 0 30px;
                position:relative;
                border-bottom:1px solid #DCDEE5
            }
.bk-version-left .left-list-item:hover{
                    cursor:pointer;
                    background-color:#FFFFFF;
                }
.bk-version-left .left-list-item.border-after::after{
                        content:' ';
                        width:1px;
                        background:#DCDEE5;
                        position:absolute;
                        top:0;
                        bottom:0;
                        right:0;
                    }
.bk-version-left .left-list-item .item-title{
                    color:#63656E;
                    font-size:16px;
                    overflow:hidden;
                    text-overflow:ellipsis;
                    white-space:nowrap;
                    font-weight:600;
                }
.bk-version-left .left-list-item .item-date{
                    color:#979BA5;
                }
.bk-version-left .left-list-item .item-current{
                    position:absolute;
                    right:20px;
                    top:8px;
                    background-color:#699DF4;
                    border-radius:2px;
                    width:58px;
                    height:20px;
                    display:-webkit-box;
                    display:-ms-flexbox;
                    display:flex;
                    -webkit-box-align:center;
                        -ms-flex-align:center;
                            align-items:center;
                    -webkit-box-pack:center;
                        -ms-flex-pack:center;
                            justify-content:center;
                    color:#FFFFFF;
                }
.bk-version-left .left-list-item.item-active::before{
                        content:" ";
                        position:absolute;
                        top:0px;
                        bottom:0px;
                        left:0;
                        width:6px;
                        background-color:#3A84FF;
                    }
.bk-version-left .left-list-item.item-active{
                    background-color:#FFFFFF;
                }
.bk-version-left .left-list-item.item-active .item-title{
                        color:#313238;
                    }
.bk-version-left .left-list-item.item-active .item-date{
                        color:#63656E;
                    }
.bk-version-left .left-list-fill{
                -webkit-box-flex:1;
                    -ms-flex:1;
                        flex:1;
                border-right:1px solid #DCDEE5;
            }
.bk-version-left .left-list-loading{
                -webkit-box-flex:0;
                    -ms-flex:0 0 40px;
                        flex:0 0 40px;
                display:-webkit-box;
                display:-ms-flexbox;
                display:flex;
                -webkit-box-align:center;
                    -ms-flex-align:center;
                        align-items:center;
                -webkit-box-pack:center;
                    -ms-flex-pack:center;
                        justify-content:center;
                border-right:1px solid #DCDEE5;
                border-bottom:1px solid #DCDEE5;
            }
.bk-version-left .left-list-loading .bk-loading-wrapper{
                    display:-webkit-box;
                    display:-ms-flexbox;
                    display:flex;
                    -webkit-box-align:center;
                        -ms-flex-align:center;
                            align-items:center;
                    -webkit-box-pack:center;
                        -ms-flex-pack:center;
                            justify-content:center;
                }
.bk-version-left .left-list:hover{
                overflow-y:auto;
                margin-right:-6px;
            }
.bk-version-left .left-list::-webkit-scrollbar{
                width:6px;
                height:6px;
                background:rgba(0, 0, 0, .1);
            }
.bk-version-left .left-list::-webkit-scrollbar-thumb{
                border-radius:6px;
                height:100px;
                background:#C4C6CC;
                -webkit-box-shadow:inset 0 0 6px rgba(204, 204, 204, 0.3);
                        box-shadow:inset 0 0 6px rgba(204, 204, 204, 0.3);
            }
.bk-version-left .resize-line{
            position:absolute;
            top:-10px;
            bottom:-10px;
            right:-6px;
            width:13px;
            padding:0 6px;
            z-index:9999;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-orient:vertical;
            -webkit-box-direction:normal;
                -ms-flex-direction:column;
                    flex-direction:column;
            -webkit-box-pack:center;
                -ms-flex-pack:center;
                    justify-content:center;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center
        }
.bk-version-left .resize-line:before, .bk-version-left .resize-line:after{
                content:' ';
                width:0;
                height:0;
                border:5px solid transparent;
                margin:0 0 0 1px;
            }
.bk-version-left .resize-line .drag-content{
                -webkit-box-flex:1;
                    -ms-flex:1;
                        flex:1;
                margin:-5px 0;
                width:1px;
                background-color:transparent;
            }
.bk-version-left .resize-line:hover .drag-content, .bk-version-left .resize-line:active .drag-content{
                    background-color:#3A84FF;
                }
.bk-version-left .resize-line:hover:before, .bk-version-left .resize-line:active:before{
                    border-top-color:#3A84FF;
                }
.bk-version-left .resize-line:hover:after, .bk-version-left .resize-line:active:after{
                    border-bottom-color:#3A84FF;
                }
.bk-version-right{
        -webkit-box-flex:1;
            -ms-flex:1;
                flex:1;
        padding:10px 30px 50px 45px;
        overflow:auto;
    }
.bk-version-right::-webkit-scrollbar{
        width:6px;
        height:6px;
    }
.bk-version-right::-webkit-scrollbar-thumb{
        min-height:24px;
        border-radius:3px;
        background-color:#dcdee5;
    }
.version-detail-dialog .bk-dialog-tool .bk-dialog-close{
    right:10px;
}
.bk-card{
    width:100%;
    background:#fff;
    border:1px solid #dcdee5;
    border-radius:2px;
    position:relative;
}
.bk-card-border-none{
    border:none;
    -webkit-box-shadow:0px 1px 2px 0px rgba(0,0,0,0.2);
            box-shadow:0px 1px 2px 0px rgba(0,0,0,0.2);
}
.bk-card:hover{
    -webkit-box-shadow:0px 3px 6px 0px rgba(99, 83, 83, 0.2);
            box-shadow:0px 3px 6px 0px rgba(99, 83, 83, 0.2);
    cursor:pointer;
}
.bk-card-head{
    width:100%;
    height:50px;
    line-height:50px;
    padding:0 20px;
    position:relative;
}
.bk-card-head .title{
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
    }
.bk-card-head.no-line-height{
        line-height:unset;
    }
.bk-card-head .bk-card-head-icon{
    margin-right:4px;
    color:#979ba5;
    cursor:pointer;
    position:absolute;
    top:50%;
    margin-top:-8px;
}
.bk-card .bk-card-head .card-edit{
    display:inline-block;
    overflow:hidden;
}
.bk-card .bk-card-head .card-edit i{
    color:#c4c6cc;
    margin-left:2px;
}
.bk-card .bk-card-head-left{
    padding-left:30px;
}
.bk-card .bk-card-head-left .bk-card-head-icon{
    left:8px;
}
.bk-card .bk-card-head-right{
    padding-right:30px;
}
.bk-card .bk-card-head-right .bk-card-head-icon{
    right:8px;
}
.bk-card .collapse{
    border-bottom:1px solid #f0f2f5;
}
.bk-card .bk-card-input{
    width:50%;
    position:absolute;
    top:50%;
    margin-top:-16px;
}
.bk-card-body{
    width:100%;
    padding:20px 20px;
}
.bk-card-foot{
    width:100%;
    height:50px;
    border-top:1px solid #f0f2f5;
}
.bk-image{
    position:relative;
    display:inline-block;
    overflow:hidden;
}
.bk-image-inner{
        width:100%;
        height:100%;
        vertical-align:top;

    }
.bk-image-inner-center{
            position:relative;
            top:50%;
            left:50%;
            -webkit-transform:translate(-50%, -50%);
                    transform:translate(-50%, -50%);
            display:block
        }
.bk-image-placeholder{
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        font-size:24px;
        background:#f0f1f5;
        color:#c4c6cc;
        vertical-align:middle;
    }
.bk-image-placeholder img{
            width:100%;
        }
.bk-image-preview{
        cursor:pointer
    }
.bk-image-viewer-wrapper{
        position:fixed;
        top:0;
        right:0;
        bottom:0;
        left:0;
        background:rgba(0, 0, 0, .6);
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
    }
.bk-image-viewer-mask{
        position:absolute;
        top:0;
        right:0;
        bottom:0;
        left:0;
    }
.bk-image-viewer-header{
        position:absolute;
        top:0;
        left:0;
        z-index:9;
        width:100%;
        height:52px;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack:justify;
            -ms-flex-pack:justify;
                justify-content:space-between;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        color:#c4c6cc;
        background:rgba(0,0,0,0.70);
    }
.bk-image-viewer-header > div{
            -webkit-box-flex:1;
                -ms-flex:1;
                    flex:1;
            overflow:hidden;
            white-space:nowrap;
            text-overflow:ellipsis;
            font-size:14px;
            padding:0 25px;
        }
.bk-image-viewer-header .quit-box{
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -webkit-box-pack:end;
                -ms-flex-pack:end;
                    justify-content:flex-end;
        }
.bk-image-viewer-header .quit-tips{
            font-size:14px;
            color:#979ba5;
        }
.bk-image-viewer-btn{
        position:absolute;
        z-index:1;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
        border-radius:50%;
        opacity:.8;
        -webkit-box-sizing:border-box;
                box-sizing:border-box;
        background-color:rgba(0, 0, 0, .3);
        color:#DCDEE5;
        -webkit-user-select:none;
           -moz-user-select:none;
            -ms-user-select:none;
                user-select:none
    }
.bk-image-viewer-btn:hover{
            background-color:rgba(0, 0, 0, .4);
            color:#63656e;
        }
.bk-image-viewer-close{
        height:52px;
        line-height:48px;
        text-align:center;
        font-size:32px;
        color:#C4C6CC;
        cursor:pointer
    }
.bk-image-viewer-close:hover{
            color:#fff;
        }
.bk-image-viewer-canvas{
        width:100%;
        height:100%;
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center
    }
.bk-image-viewer-has-header{
        padding-top:52px;
    }
.bk-image-viewer-error{
        text-align:center;
        font-size:14px;
        color:#313238;
    }
.bk-image-viewer-error .bk-icon{
            font-size:85px;
            line-height:1;
            margin-bottom:15px;
        }
.bk-image-viewer-actions{
        left:50%;
        bottom:30px;
        -webkit-transform:translateX(-50%);
                transform:translateX(-50%);
        width:282px;
        height:44px;
        padding:0 23px;
        background-color:rgba(0,0,0,0.4);
        border-color:#fff;
        border-radius:22px
    }
.bk-image-viewer-actions:hover{
            background:rgba(0,0,0,.5);
        }
.bk-image-viewer-actions-inner{
            width:100%;
            height:100%;
            text-align:justify;
            font-size:23px;
            color:#c4c6cc;
            display:-webkit-box;
            display:-ms-flexbox;
            display:flex;
            -webkit-box-align:center;
                -ms-flex-align:center;
                    align-items:center;
            -ms-flex-pack:distribute;
                justify-content:space-around;

        }
.bk-image-viewer-actions-inner .bk-icon{
                cursor:pointer
            }
.bk-image-viewer-actions-inner .bk-icon:hover{
                    color:#fff;
                }
.bk-image-viewer-next, .bk-image-viewer-prev{
        top:50%;
        width:80px;
        height:80px;
        font-size:40px;
        cursor:pointer;
    }
.bk-image-viewer-prev{
        -webkit-transform:translateY(-50%);
        transform:translateY(-50%);
        left:40px
    }
.bk-image-viewer-next{
        -webkit-transform:translateY(-50%);
        transform:translateY(-50%);
        right:40px;
        text-indent:2px
    }
.bk-breadcrumb{
  font-size:14px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
      -ms-flex-align:center;
          align-items:center;
  color:#979ba5
}
.bk-breadcrumb::after{
    clear:both
  }
.bk-breadcrumb-separator{
    margin:0 9px;
    font-weight:bold
  }
.bk-breadcrumb-separator[class*=icon]{
      margin:0 6px;
      font-weight:normal;
    }
.bk-breadcrumb-item-inner.is-link, .bk-breadcrumb-item-inner a{
        text-decoration:none;
        color:#63656e
      }
.bk-breadcrumb-item-inner.is-link:hover, .bk-breadcrumb-item-inner a:hover{
          color:#699df4;
          cursor:pointer;
        }
.bk-breadcrumb-item:last-child{
      color:#979ba5;
    }
.bk-breadcrumb-item:last-child .el-breadcrumb__inner, .bk-breadcrumb-item:last-child .el-breadcrumb__inner:hover, .bk-breadcrumb-item:last-child .el-breadcrumb__inner a, .bk-breadcrumb-item:last-child .el-breadcrumb__inner a:hover{
          cursor:text;
        }
.bk-breadcrumb-item:last-child .bk-breadcrumb-separator{
        display:none;
      }
.bk-breadcrumb-goback{
    color:#699df4;
    margin-right:12px;
    cursor:pointer
  }
.bk-breadcrumb-goback .icon-default{
      font-size:26px;
    }
.bk-divider{
    position:relative
}
.bk-divider-info{
    position:absolute;
    padding:0 1.4em;
    color:#313238;
    top:50%;
    -webkit-transform:translateY(-50%);
            transform:translateY(-50%);
    background-color:#fff;
}
.bk-divider-info-left{
        left:2em;
    }
.bk-divider-info-center{
        left:50%;
        -webkit-transform:translateX(-50%) translateY(-50%);
                transform:translateX(-50%) translateY(-50%)
    }
.bk-divider-info-right{
        right:2em;
    }
.bk-compose-form-item{
    display:inline-block
}
.bk-compose-form-item > .bk-form-control,
    .bk-compose-form-item > .bk-select,
    .bk-compose-form-item > .bk-cascade,
    .bk-compose-form-item > .bk-color-picker,
    .bk-compose-form-item > .bk-date-picker,
    .bk-compose-form-item > .bk-tag-input,
    .bk-compose-form-item > .bk-tag-selector,
    .bk-compose-form-item > .search-select-wrap{
        float:left;
        width:auto;
        margin-left:-1px;
    }
.bk-compose-form-item .bk-form-input,
    .bk-compose-form-item .bk-form-password,
    .bk-compose-form-item .bk-form-textarea,
    .bk-compose-form-item .bk-select,
    .bk-compose-form-item .bk-cascade,
    .bk-compose-form-item .bk-color-picker,
    .bk-compose-form-item .bk-date-picker .bk-date-picker-editor,
    .bk-compose-form-item .bk-tag-input,
    .bk-compose-form-item .bk-search-select{
        border-radius:0;
    }
.bk-compose-form-item .bk-form-control.control-active,
    .bk-compose-form-item .bk-select.is-focus,
    .bk-compose-form-item .bk-cascade.is-focus,
    .bk-compose-form-item .bk-color-picker.bk-color-picker-show-dropdown,
    .bk-compose-form-item .bk-color-picker:hover,
    .bk-compose-form-item .bk-date-picker .bk-date-picker-editor:focus,
    .bk-compose-form-item .bk-tag-input.active,
    .bk-compose-form-item .bk-tag-selector,
    .bk-compose-form-item .bk-search-select.is-focus{
        opacity:1;
        z-index:1;
    }
.bk-compose-form-item .bk-compose-form-item-head .bk-form-input,
        .bk-compose-form-item .bk-compose-form-item-head .bk-form-password,
        .bk-compose-form-item .bk-compose-form-item-head .bk-form-textarea,
        .bk-compose-form-item .bk-compose-form-item-head.bk-select,
        .bk-compose-form-item .bk-compose-form-item-head.bk-cascade,
        .bk-compose-form-item .bk-compose-form-item-head.bk-color-picker,
        .bk-compose-form-item .bk-compose-form-item-head.bk-date-picker .bk-date-picker-editor,
        .bk-compose-form-item .bk-compose-form-item-head.bk-tag-input,
        .bk-compose-form-item .bk-compose-form-item-head .bk-tag-input,
        .bk-compose-form-item .bk-compose-form-item-head .bk-search-select{
            margin-left:0;
            border-top-right-radius:0px;
            border-bottom-right-radius:0px;
        }
.bk-compose-form-item .bk-compose-form-item-tail .bk-form-input,
        .bk-compose-form-item .bk-compose-form-item-tail .bk-form-password,
        .bk-compose-form-item .bk-compose-form-item-tail .bk-form-textarea,
        .bk-compose-form-item .bk-compose-form-item-tail.bk-select,
        .bk-compose-form-item .bk-compose-form-item-tail.bk-cascade,
        .bk-compose-form-item .bk-compose-form-item-tail.bk-color-picker,
        .bk-compose-form-item .bk-compose-form-item-tail.bk-date-picker .bk-date-picker-editor,
        .bk-compose-form-item .bk-compose-form-item-tail.bk-tag-input,
        .bk-compose-form-item .bk-compose-form-item-tail .bk-tag-input,
        .bk-compose-form-item .bk-compose-form-item-tail .bk-search-select{
            border-top-right-radius:2px;
            border-bottom-right-radius:2px;
        }
.bk-tag{
    background-color:rgba(151, 155, 165, 0.1);
    border-color:rgba(220, 222, 229, 0.6);
    color:#63656e;
    display:inline-block;
    font-size:12px;
    padding:0 10px;
    height:22px;
    line-height:22px;
    margin:2px 0 2px 6px;
    cursor:default;
    -webkit-box-sizing:border-box;
            box-sizing:border-box
}
.bk-tag:hover{
        opacity:0.8;
    }
.bk-tag-closable{
    padding:0 2px 0 10px;
}
.bk-tag-icon{
    font-size:14px;
}
.bk-tag-close{
    font-size:16px;
    cursor:pointer;
}
.bk-tag-success{
    background-color:rgba(20, 165, 104, 0.1);
    border-color:rgba(20, 165, 104, 0.3);
    color:#14a568;
}
.bk-tag-info{
    background-color:rgba(58, 132, 255, 0.1);
    border-color:rgba(58, 132, 255, 0.3);
    color:#3a84ff;
}
.bk-tag-warning{
    background-color:rgba(254, 156, 0, 0.1);
    border-color:rgba(254, 156, 0, 0.3);
    color:#fe9c00;
}
.bk-tag-danger{
    background-color:rgba(234, 53, 54, 0.1);
    border-color:rgba(234, 53, 54, 0.3);
    color:#ea3536;
}
.bk-tag-filled{
    color:#ffffff
}
.bk-tag-filled.bk-tag{
        background:#979ba5;
    }
.bk-tag-filled.bk-tag-success{
        background:#14a568;
    }
.bk-tag-filled.bk-tag-info{
        background:#3a84ff;
    }
.bk-tag-filled.bk-tag-warning{
        background:#fe9c00;
    }
.bk-tag-filled.bk-tag-danger{
        background:#ea3536;
    }
.bk-tag-stroke{
    border-width:1px;
    border-style:solid;
    padding:0 9px;
    line-height:20px
}
.bk-tag-stroke.bk-tag-closable{
        padding:0 2px 0 9px;
    }
.bk-tag-checkable{
    background:none;
    cursor:pointer
}
.bk-tag-checkable:hover{
        background:rgba(151, 155, 165, 0.15);
    }
.bk-tag-check{
    background:#3a84ff;
    color:#ffffff
}
.bk-tag-check:hover{
        color:#ffffff;
        opacity:1;
        background:#3a84ff;
    }
.bk-resize-layout{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
.bk-resize-layout-border{
        border:1px solid #dcdee5;
    }
.bk-resize-layout-collapsed > .bk-resize-layout-aside .bk-resize-layout-aside-content{
                overflow:hidden;
            }
.bk-resize-layout-collapsed > .bk-resize-layout-aside .bk-resize-collapse:before{
                display:inline-block;
                -webkit-transform:rotate(180deg);
                        transform:rotate(180deg);
            }
.bk-resize-layout-left{
        -webkit-box-orient:horizontal;
        -webkit-box-direction:normal;
            -ms-flex-direction:row;
                flex-direction:row
    }
.bk-resize-layout-left > .bk-resize-layout-aside{
            border-right:1px solid #dcdee5
        }
.bk-resize-layout-left > .bk-resize-layout-aside:after{
                right:1px;
                top:50%;
                -webkit-transform:translate3d(0, -50%, 0);
                        transform:translate3d(0, -50%, 0);
            }
.bk-resize-layout-left > .bk-resize-layout-aside .bk-resize-trigger{
                top:0;
                left:100%;
                width:5px;
                height:100%;
                cursor:col-resize
            }
.bk-resize-layout-left > .bk-resize-layout-aside .bk-resize-trigger:hover{
                    background-image:linear-gradient(to left, transparent, transparent 2px, #3a84ff 2px, #3a84ff 3px, transparent 3px, transparent);
                }
.bk-resize-layout-left > .bk-resize-layout-aside .bk-resize-collapse{
                left:100%;
                top:50%;
                -webkit-transform:translateY(-50%);
                        transform:translateY(-50%);
            }
.bk-resize-layout-right{
        -webkit-box-orient:horizontal;
        -webkit-box-direction:reverse;
            -ms-flex-direction:row-reverse;
                flex-direction:row-reverse
    }
.bk-resize-layout-right > .bk-resize-layout-aside{
            border-left:1px solid #dcdee5
        }
.bk-resize-layout-right > .bk-resize-layout-aside:after{
                left:1px;
                top:50%;
                -webkit-transform:translate3d(0, -50%, 0);
                        transform:translate3d(0, -50%, 0);
            }
.bk-resize-layout-right > .bk-resize-layout-aside .bk-resize-trigger{
                top:0;
                right:100%;
                width:5px;
                height:100%;
                cursor:col-resize
            }
.bk-resize-layout-right > .bk-resize-layout-aside .bk-resize-trigger:hover{
                    background-image:linear-gradient(to right, transparent, transparent 2px, #3a84ff 2px, #3a84ff 3px, transparent 3px, transparent);
                }
.bk-resize-layout-right > .bk-resize-layout-aside .bk-resize-collapse{
                right:100%;
                top:50%;
                -webkit-transform:translateY(-50%) rotate(180deg);
                        transform:translateY(-50%) rotate(180deg);
            }
.bk-resize-layout-top{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column
    }
.bk-resize-layout-top > .bk-resize-layout-aside{
            border-bottom:1px solid #dcdee5
        }
.bk-resize-layout-top > .bk-resize-layout-aside:after{
                bottom:1px;
                left:50%;
                -webkit-transform:translate3d(-50%, 0, 0) rotate(90deg);
                        transform:translate3d(-50%, 0, 0) rotate(90deg);
            }
.bk-resize-layout-top > .bk-resize-layout-aside .bk-resize-trigger{
                left:0;
                top:100%;
                width:100%;
                height:5px;
                cursor:row-resize
            }
.bk-resize-layout-top > .bk-resize-layout-aside .bk-resize-trigger:hover{
                    background-image:linear-gradient(to top, transparent, transparent 2px, #3a84ff 2px, #3a84ff 3px, transparent 3px, transparent);
                }
.bk-resize-layout-top > .bk-resize-layout-aside .bk-resize-collapse{
                top:100%;
                left:50%;
                margin-top:8px;
                -webkit-transform:translate3d(-50%, -50%, 0) rotate(90deg);
                        transform:translate3d(-50%, -50%, 0) rotate(90deg);
            }
.bk-resize-layout-bottom{
        -webkit-box-orient:vertical;
        -webkit-box-direction:reverse;
            -ms-flex-direction:column-reverse;
                flex-direction:column-reverse
    }
.bk-resize-layout-bottom > .bk-resize-layout-aside{
            border-top:1px solid #dcdee5
        }
.bk-resize-layout-bottom > .bk-resize-layout-aside:after{
                top:1px;
                left:50%;
                -webkit-transform:translate3d(-50%, 0, 0) rotate(90deg);
                        transform:translate3d(-50%, 0, 0) rotate(90deg);
            }
.bk-resize-layout-bottom > .bk-resize-layout-aside .bk-resize-trigger{
                left:0;
                bottom:100%;
                width:100%;
                height:5px;
                cursor:row-resize
            }
.bk-resize-layout-bottom > .bk-resize-layout-aside .bk-resize-trigger:hover{
                    background-image:linear-gradient(to bottom, transparent, transparent 2px, #3a84ff 2px, #3a84ff 3px, transparent 3px, transparent);
                }
.bk-resize-layout-bottom > .bk-resize-layout-aside .bk-resize-collapse{
                bottom:100%;
                left:50%;
                margin-bottom:8px;
                -webkit-transform:translate3d(50%, 50%, 0) rotate(-90deg);
                        transform:translate3d(50%, 50%, 0) rotate(-90deg);
            }
.bk-resize-layout > .bk-resize-layout-aside{
        position:relative
    }
.bk-resize-layout > .bk-resize-layout-aside:after{
            content:'';
            position:absolute;
            width:2px;
            height:2px;
            color:#c4c6cc;
            background:currentColor;
            -webkit-box-shadow:0 4px 0 0 currentColor, 0 8px 0 0 currentColor, 0 -4px 0 0 currentColor, 0 -8px 0 0 currentColor;
                    box-shadow:0 4px 0 0 currentColor, 0 8px 0 0 currentColor, 0 -4px 0 0 currentColor, 0 -8px 0 0 currentColor;
        }
.bk-resize-layout > .bk-resize-layout-aside .bk-resize-layout-aside-content{
            width:100%;
            height:100%;
            overflow:hidden;
        }
.bk-resize-layout > .bk-resize-layout-aside .bk-resize-trigger{
            position:absolute;
            background-color:transparent;
            z-index:3;
        }
.bk-resize-layout > .bk-resize-layout-aside .bk-resize-proxy{
            visibility:hidden;
            position:absolute;
            pointer-events:none;
            z-index:9999
        }
.bk-resize-layout > .bk-resize-layout-aside .bk-resize-proxy.left,
            .bk-resize-layout > .bk-resize-layout-aside .bk-resize-proxy.right{
                top:0;
                height:100%;
                border-left:1px dashed #3a84ff;
            }
.bk-resize-layout > .bk-resize-layout-aside .bk-resize-proxy.top,
            .bk-resize-layout > .bk-resize-layout-aside .bk-resize-proxy.bottom{
                left:0;
                width:100%;
                border-top:1px dashed #3a84ff;
            }
.bk-resize-layout > .bk-resize-layout-aside .bk-resize-collapse{
            position:absolute;
            width:16px;
            height:50px;
            line-height:50px;
            border-radius:0px 12px 12px 0px;
            background:#dcdee5;
            text-align:center;
            font-size:20px;
            color:#fff;
            cursor:pointer;
            text-indent:-2px;
            z-index:2
        }
.bk-resize-layout > .bk-resize-layout-aside .bk-resize-collapse:hover{
                background:#3a84ff;
            }
.bk-resize-layout > .bk-resize-layout-main{
        -webkit-box-flex:1;
            -ms-flex:1;
                flex:1;
        overflow:hidden;
    }
.bk-resize-layout .bk-resize-mask{
        display:none;
        position:fixed;
        left:0;
        right:0;
        top:0;
        bottom:0;
        z-index:9999;
    }
.bk-fixed-navbar-wrapper{
    width:52px;
    opacity:1;
    background:#ffffff;
    padding:22px 14px;
    border-radius:26px;
    z-index:999;
    -webkit-box-shadow:0px 2px 4px 0px rgba(0,0,0,0.10);
            box-shadow:0px 2px 4px 0px rgba(0,0,0,0.10);
    position:fixed;
    right:10px
}
.bk-fixed-navbar-wrapper.middle{
        top:50%;
        -webkit-transform:translateY(-50%);
                transform:translateY(-50%);
    }
.bk-fixed-navbar-wrapper.bottom{
        bottom:10%;
    }
.bk-fixed-navbar-wrapper.top{
        top:10%;
    }
.bk-fixed-navbar-wrapper .fixed-navbar-item{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align:center;
            -ms-flex-align:center;
                align-items:center;
        -webkit-box-pack:center;
            -ms-flex-pack:center;
                justify-content:center;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
            -ms-flex-direction:column;
                flex-direction:column;
        color:#979ba5
    }
.bk-fixed-navbar-wrapper .fixed-navbar-item:hover{
            color:#3a84ff;
            cursor:pointer;
        }
.bk-fixed-navbar-wrapper .fixed-navbar-item:not(:last-of-type){
            margin-bottom:25px;
        }
.bk-fixed-navbar-wrapper .fixed-navbar-item .bk-icon{
            font-size:17px;
            margin-bottom:5px;
        }
.bk-fixed-navbar-wrapper .fixed-navbar-item .text{
            font-size:12px;
        }
.bk-virtual-render{
    position:relative;
  }
.bk-virtual-render.bk-virtual-content,
		.bk-virtual-render .bk-virtual-content{
      position:absolute;
      left:0;
      top:0;
			bottom:0;
      width:100%;
      height:100%;
    }
.bk-virtual-render .bk-virtual-section{
      background:transparent;
      width:1px;
    }
.bk-virtual-render.bk-scroll-x{
      overflow-x:auto;
      scrollbar-color:#a0a0a0 transparent;
      scrollbar-width:thin
    }
.bk-virtual-render.bk-scroll-x::-webkit-scrollbar{
        height:8px;
        background-color:transparent;
      }
.bk-virtual-render.bk-scroll-x::-webkit-scrollbar-thumb{
        border-radius:8px;
        background-color:#a0a0a0;
      }
.bk-virtual-render.bk-scroll-y{
      overflow-y:auto
    }
.bk-virtual-render.bk-scroll-y::-webkit-scrollbar{
        width:8px;
        background-color:transparent;
      }
.bk-virtual-render.bk-scroll-y::-webkit-scrollbar-thumb{
        border-radius:8px;
        background-color:#dcdee5;
      }
.bk-affix{
  position:fixed
}
.bk-back-to-top{
    position:fixed;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#ffffff;
    border-radius:26px;
    -webkit-box-shadow:0px 2px 6px 0px rgba(0,0,0,0.10);
            box-shadow:0px 2px 6px 0px rgba(0,0,0,0.10);
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
        -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack:center;
        -ms-flex-pack:center;
            justify-content:center;
    cursor:pointer;
}
.bk-back-to-top .bk-icon{
        font-size:14px;
        color:#979ba5;
    }
.bk-back-to-top:hover .bk-icon{
            color:#3a84ff;
        }