* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 100%;
    padding: 0 0;
    margin: 0 auto;
}

/* 头部样式 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-btn {
    padding: 10px 10px;
    font-size: 1.2rem;
    color: #333;
}

.back-btn img { 
     width: 24px;
    height: 24px;

}

.title {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.more-btn {
    font-size: 1.2rem;
    color: #333;
}

/* 搜索区域 */
.search-container {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 250px;
}

.search-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.search-btn:hover {
    background-color: #3367d6;
}

/* 数据列表 */
.data-list {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.data-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.data-item:last-child {
    border-bottom: none;
}

.data-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.data-code {
    color: #666;
    font-size: 0.9rem;
}

.data-category {
    color: #e53935;
    font-size: 0.9rem;
}

.data-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.data-detail {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.detail-item {
    margin-bottom: 8px;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .search-container {
        margin: 15px 0;
    }
    
    .search-input {
        padding: 12px;
    }
    
    .search-btn {
        padding: 12px 15px;
    }
    
    .data-title {
        font-size: 1.1rem;
    }
}