* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px;
        }
        #province, #city, #district, #area {
  /* 移除默认样式 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  /* 添加自定义箭头（通过背景图片） */
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path  d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 2px center; /* 控制箭头位置 */
  padding-right: 30px; /* 避免文字与箭头重叠 */
}
        /* 筛选区域 */
        .filter-section {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .filter-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #555;
            text-align: center;
        }
        
        .filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        .filter-item {
            flex: 1;
            min-width: 150px;
            max-width: 200px;
        }
        
        .filter-item label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #666;
        }
        
        .filter-item select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: white;
        }
        
        /* 产区列表 - 网格布局 */
        .production-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .production-item {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .production-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            
        }
        
        .production-image {
            height: 180px;
            overflow: hidden;
        }
        
        .production-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .production-item:hover .production-image img {
            transform: scale(1.05);
        }
        
        .production-info {
            padding: 15px;
        }
        
        .fruit-name {
            font-size: 18px;
            font-weight: bold;
            color: #4CAF50;
            margin-bottom: 5px;
        }
        
        .fruit-location {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .fruit-details {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: #888;
            margin-bottom: 15px;
        }

 