/*右侧工具栏*/
.side-toolbar {
    position: fixed;
    z-index: 1;
    bottom: 60px;
    right: 20px;
    padding: 20px 15px;
    background: #fff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
}

.side-toolbar .toolbar-item {
    cursor: pointer;
}

.side-toolbar .toolbar-item a {
    color: #333;
}

.side-toolbar .toolbar-item .iconfont {
    font-size: 20px;
    color: #333;
}

.side-toolbar .toolbar-item:hover .iconfont,
.side-toolbar .toolbar-item:hover a {
    color: #1769fe;
}

.side-toolbar .toolbar-item .hoverdown {
    position: absolute;
    right: 65px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    z-index: 10010;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
    display: none;
}

.side-toolbar .toolbar-item:hover .hoverdown {
    display: block;
}

.side-toolbar .kf-item .hoverdown {
    bottom: 96px;
}

.side-toolbar .doc-item .hoverdown,
.side-toolbar .phone-item .hoverdown {
    bottom: 50px;
    padding: 10px 20px;
    white-space: nowrap;
    border-radius: 5px;
    background: #fff;
}

.side-toolbar .phone-item .hoverdown {
    bottom: 8px;
}