/* 探索页面特有样式 */

/* 搜索区域 */
.search-section {
  padding: 1.5rem;
  border-bottom: 1px solid #f1f3f5;
  background-color: #fafbfc;
}

.search-container {
  position: relative;
  max-width: 100%;
}

.search-input {
  width: 100%;
  padding: 1rem 4rem 1rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.search-button:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* 探索页面布局调整 */
#middle-body {
  background-color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .search-section {
    padding: 1rem;
  }
  
  .search-input {
    padding: 0.75rem 3.5rem 0.75rem 1rem;
  }
  
  .search-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}