﻿/* 寻根问祖页面样式 */

.xungeng-container {
    padding: 20px 0;
    min-height: calc(100vh - 200px);
}

/* 搜索区域 */
.xungeng-search-section {
    margin-bottom: 30px;
}

.xungeng-search-form .form-control-lg {
    height: calc(2.5rem + 1px);
}

/* 寻根项目 */
.xungeng-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

    .xungeng-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        border-color: #007bff;
    }

/* 寻根标题 */
.xungeng-title {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

    .xungeng-title a:hover {
        color: #007bff !important;
    }

    .xungeng-title mark {
        background-color: #fff3cd;
        padding: 2px 4px;
        border-radius: 3px;
        color: #856404;
    }

/* 寻根元数据 */
.xungeng-meta {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

    .xungeng-meta span {
        margin-right: 20px;
        display: inline-block;
        margin-bottom: 5px;
    }

/* 寻根内容 */
.xungeng-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

    .xungeng-content a:hover {
        color: #007bff !important;
    }

    .xungeng-content mark {
        background-color: #fff3cd;
        padding: 2px 4px;
        border-radius: 3px;
        color: #856404;
        font-weight: 500;
    }

/* 寻根底部信息 */
.xungeng-footer {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.xungeng-author {
    flex: 1;
}

/* 操作按钮 */
.xungeng-actions .btn {
    min-width: 90px;
}

/* 详情页面 */
.xungeng-detail-container {
    padding: 20px 0;
    min-height: calc(100vh - 200px);
}

    .xungeng-detail-container .xungeng-title {
        margin: 0 0 15px 0;
        font-size: 2rem;
        font-weight: 600;
        color: #333;
        border-bottom: 2px solid #007bff;
        padding-bottom: 10px;
    }

.xungeng-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

    .xungeng-details .row > div {
        margin-bottom: 10px;
    }

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 50px 20px;
}

    .empty-state i {
        opacity: 0.5;
    }

/* 分页 */
.pagination-container {
    margin-top: 30px;
}

.pagination-info {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* 右侧边栏 */
.sidebar-section {
    margin-bottom: 30px;
}

    .sidebar-section h5 {
        border-bottom: 2px solid #007bff;
        padding-bottom: 10px;
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

.sidebar-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

    .sidebar-item:last-child {
        border-bottom: none;
    }

.sidebar-item-title {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.sidebar-item-meta {
    font-size: 0.85rem;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .xungeng-container {
        padding: 15px 0;
    }

    .xungeng-search-section {
        margin-bottom: 20px;
    }

    .xungeng-title {
        font-size: 1.2rem;
    }

    .xungeng-meta {
        flex-direction: column;
        gap: 8px;
    }

        .xungeng-meta span {
            margin-right: 0;
        }

    .xungeng-footer {
        flex-direction: column;
        gap: 15px;
    }

    .xungeng-actions {
        width: 100%;
        justify-content: center !important;
    }

        .xungeng-actions .btn {
            flex: 1;
            margin: 0 5px;
        }

    .xungeng-detail-container .xungeng-title {
        font-size: 1.6rem;
    }

    .xungeng-details {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .xungeng-container .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .xungeng-title {
        font-size: 1.1rem;
    }

    .xungeng-content {
        font-size: 0.95rem;
    }

    .xungeng-actions .btn {
        width: 100%;
        margin: 5px 0 !important;
    }
}
