/*
Theme Name:     鸿伍导航
Theme URI:      https://www.sucaijun.com/
Description:    鸿伍导航主题。
Author:         Ricky
Author URI:     https://sucaijun.com
Template:       onenav
Version:        0.3.0
*/
@import url("../onenav/style.css");
/*下面是您自己DIY的css样式代码*/

/* 悬浮窗样式 */
.add-bookmarks {
    position: fixed;
    top: 100px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-size: 14px;
    z-index: 1000;
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
    opacity: 0;
    visibility: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.add-bookmarks.show {
    opacity: 1;
    visibility: visible;
}

.add-bookmarks:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.add-bookmarks {
    --arrow-left: 20px;
}

.add-bookmarks::before {
    content: '';
    position: absolute;
    top: -8px;
    left: var(--arrow-left);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #667eea;
    transition: left 0.3s ease;
}

.add-bookmarks-content {
    flex: 1;
    line-height: 1.4;
}

.add-bookmarks-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.add-bookmarks-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.add-bookmarks-btn span {
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
}

.add-bookmarks-btn em {
    font-style: normal;
    font-weight: normal;
    opacity: 0.8;
}

.yinghe-follow-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yinghe-follow-close:hover {
    background: #fff;
    transform: scale(1.1);
}

.yinghe-follow-close i {
    font-size: 14px;
    color: #666;
}




