/* 友链菜单样式 */
.boxmoe-links-menu {
    position: fixed;
    top: 70px; /* 调整到logo下方 */
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 9999;
    display: none; /* 默认隐藏 */
    min-width: 200px;
    left: 17%;
}

.boxmoe-links-menu.active {
    display: block;
}

.boxmoe-links-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.boxmoe-links-menu li {
    margin: 0;
    padding: 0;
}

.boxmoe-links-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.boxmoe-links-menu a:hover {
    background-color: #f5f5f5;
    color: #0073aa;
}

/* 关闭按钮 */
.boxmoe-links-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #999;
}

.boxmoe-links-close:hover {
    color: #333;
}
