.search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 120px;
}

.search-button {
    padding: 8px 20px;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-button:hover {
    background: #1976D2;
}

/* 结果列表样式 */
.result-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.item-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.item-type {
    color: #666;
    font-size: 14px;
}

.item-content {
    color: #444;
    line-height: 1.6;
}

.item-label {
    font-weight: bold;
    color: #333;
    margin-right: 8px;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.page-link {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
}

.page-link.active {
    background: #2196F3;
    color: white;
    border-color: #2196F3;
}

/* 如果没有图片，可以使用CSS生成的图标 */
@media (max-width: 768px) {
    .nav-link.constitution-icon::before {
        content: '体';
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-right: 5px;
        background-color: #5bc0de;
        color: white;
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        border-radius: 50%;
        vertical-align: text-bottom;
        position: relative;
        top: 0;
    }
} 