body {
  background-color: #f0f2f5;
  font-family: "Microsoft YaHei", sans-serif;
  margin: 0;
  padding: 0;
}

.list {
  list-style: none;
  padding: 0;
  margin: 20px;
  background: linear-gradient(to right, #ffffff, #f8f9fa);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(21, 101, 192, 0.1);
}

.list-content {
  display: flex;
  padding: 15px;
}

.left-section {
  flex: 0 0 180px;
  padding-right: 20px;
  border-right: 2px solid rgba(21, 101, 192, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-section {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-title {
  font-size: 20px;
  color: #1565c0;
  
  margin: 0 0 10px 0;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.lottery-info {
  color: #455a64;
}

.lottery-name {
  font-size: 18px;
  
  color: #333;
  
  
}

.lottery-period {
  font-size: 14px;
  color: #333;
 
  margin-top: 20px;
  text-align: center;
}

.recommendation-row {
  margin-bottom: 12px;
  padding: 8px 12px;
  background: rgba(21, 101, 192, 0.03);
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.recommendation-row:hover {
  background: rgba(21, 101, 192, 0.06);
  transform: translateX(3px);
}

.recommendation-row:last-child {
  margin-bottom: 0;
}

.recommendation-label {
  font-weight: bold;
  color: #1565c0;
  margin-right: 10px;
  font-size: 14px;
  min-width: 70px;
}

.recommendation-zodiacs {
  color: #d32f2f;
  font-size: 15px;
  font-weight: bold;
  margin: 0 10px;
  letter-spacing: 1px;
  flex: 1;
}

.recommendation-tag {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(21, 101, 192, 0.1);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .list {
    margin: 10px;
    border-radius: 8px;
  }
  .list-content {
    flex-direction: column;
    padding: 12px;
  }
  .left-section {
    flex: none;
    padding-right: 0;
    padding-bottom: 15px;
    border-right: none;
    border-bottom: 2px solid rgba(21, 101, 192, 0.1);
    margin-bottom: 15px;
  }
  .right-section {
    padding-left: 0;
  }
  .recommendation-row {
    padding: 8px;
  }
}
