@charset "utf-8";
/* CSS Document */

/* 花卉卡片容器 */
.flower-container {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));*/
  gap: 30px;
  padding: 20px;
  margin: 20px auto;
  max-width: 880px;
}

/* 花卉卡片 */
.flower-card {
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flower-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* 花卉图片 */
.flower-image {
  flex: 1;
}

.flower-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 花卉信息 */
.flower-info {
  flex: 1;
  padding: 20px;
}

.flower-name {
  font-family: 黑体;
  font-size: 45px;
  font-weight: bold;
  color: pink;
  margin-bottom: 15px;
}

.flower-alias,
.flower-feature,
.flower-language {
  font-family: 宋体;
  font-size: 18px;
  margin-bottom: 10px;
  color: #555;
}

.flower-care h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0 10px;
  color: pink;
}

.flower-care ul {
  list-style: none;
  padding-left: 0;
}

.flower-care li {
  font-family: 宋体;
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.flower-care li:before {
  content: "•";
  color: pink;
  font-size: 20px;
  position: absolute;
  left: 0;
}
