/* Go to Top 按钮样式 */
:root {
    --go-to-top-main-color: var(--quick-navigate-main-color, rgb(145, 145, 241));
}

.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--go-to-top-main-color);
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: 999;
}

.go-to-top:hover {
    opacity: 1;
}

.go-to-top i {
    font-size: 24px;
}
