/* 热榜详情页样式 */
.detail-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px;
}

.back-bar {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}
.back-bar a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}
.back-bar a:hover {
    background: #e8e8e8;
    color: #333;
}

.detail-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.detail-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.detail-platform .icon {
    font-size: 24px;
}
.detail-platform .name {
    font-size: 14px;
    color: #888;
}

.detail-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 16px;
}

.detail-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}
.meta-item .val {
    color: #333;
    font-weight: 600;
}

.detail-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    display: block;
}

.detail-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.goto-wrap {
    text-align: center;
    margin-bottom: 24px;
}
.goto-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255,71,87,0.3);
}
.goto-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,71,87,0.4);
    color: white;
}
.goto-hint {
    font-size: 12px;
    color: #bbb;
    margin-top: 8px;
}

/* 相关搜索区域 */
.related-section {
    margin-top: 32px;
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
}
.related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.related-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.related-title .tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}
.related-count {
    font-size: 12px;
    color: #bbb;
}
.related-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fafafa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid transparent;
}
.related-item:hover {
    background: #f0f0f0;
    border-color: #e0e0e0;
    transform: translateX(4px);
    color: #333;
}
.related-item .r-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.related-item .r-meta {
    font-size: 12px;
    color: #bbb;
    flex-shrink: 0;
}
.related-item .r-arrow {
    color: #ccc;
    font-size: 12px;
    flex-shrink: 0;
}

/* 同平台热搜（相关热搜） */
.siblings-section {
    margin-top: 32px;
}
.siblings-title {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
    font-weight: 600;
}
.siblings-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sibling-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fafafa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s;
}
.sibling-item a:hover {
    background: #f0f0f0;
    color: #333;
}
.sibling-item .s-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sibling-item .s-arrow {
    color: #ccc;
    font-size: 12px;
}

/* 无相关内容提示 */
.related-empty {
    text-align: center;
    padding: 20px;
    color: #bbb;
    font-size: 13px;
}

.related-empty { color: #999; padding: 10px 0; text-align: center; }
