/* style.css - 网易云风格 */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4f4f4;
  color: #333;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #d43c33;
}

.search-box {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.search-box input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.search-box button {
  padding: 10px 20px;
  background-color: #d43c33;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.results {
  display: grid;
  gap: 1rem;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fafafa;
  padding: 10px;
  border-radius: 8px;
}

.result-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.result-info {
  flex: 1;
}

.result-actions button {
  margin-left: 10px;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #d43c33;
  color: white;
}

.history {
  margin: 2rem 0;
}

.history ul {
  padding-left: 1rem;
}

.history li {
  list-style: circle;
  margin-bottom: 5px;
  color: #555;
}
