/* 首页样式 */
.fayan-home { max-width: 800px; margin: 0 auto; }
.project-list { margin-top: 30px; }
.project-item {
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.project-cover {
    flex: 0 0 200px;
    margin-right: 20px;
}
.project-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.project-info { flex: 1; }
.project-desc {
    color: #666;
    margin: 10px 0;
}
.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.project-price {
    font-size: 18px;
    color: #e74c3c;
    font-weight: bold;
}
.query-btn {
    background: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
}

/* 查询页样式 */
.fayan-query { max-width: 600px; margin: 0 auto; }
.query-form .form-group { margin-bottom: 20px; }
.query-form label { 
    display: block; 
    font-weight: bold;
    margin-bottom: 5px;
}
.query-form input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.query-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.user-balance {
    font-size: 16px;
    color: #27ae60;
}
.agreement-section {
    margin-top: 30px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #eee;
}
.required { color: red; }