@charset "UTF-8";

/* ========================================
   友情链接区域样式 - friend-links.css
   配合 footer 深色主题，作为底部延伸条带
   ======================================== */

/* PC端显示控制 */
.pc-only {
    display: block;
}

/* ===== 友情链接容器 ===== */
.friend-links {
    background: #111111;
    border-top: 1px solid #2a2a2a;
    padding: 24px 0;
}

.friend-links .container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* ===== 标题 ===== */
.friend-links .links-title {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin: 0;
}

/* 标题前装饰竖线 */
.friend-links .links-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 14px;
    background: #0f6ab4;
    border-radius: 2px;
}

/* ===== 链接列表 ===== */
.friend-links .links-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 0;
    flex: 1;
    min-width: 0;
}

/* 单个链接 */
.friend-links .links-list a {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #888;
    padding: 4px 14px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* 链接之间的分隔符 */
.friend-links .links-list a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #333;
}

.friend-links .links-list a:last-child::after {
    display: none;
}

/* hover 效果 */
.friend-links .links-list a:hover {
    color: #0f6ab4;
}

.friend-links .links-list a:hover::after {
    background: #0f6ab4;
}


/* ===== 响应式：移动端隐藏 ===== */
@media screen and (max-width: 1024px) {
    .pc-only {
        display: none !important;
    }
}
