
  body {
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    background: #fff; /* 白色背景不变 */
    color: #5a3e36;
    line-height: 1.6;
  }
  .container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
  }
  h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #7a4e3e;
  }
  .card {
    display: flex;
    gap: 40px;
    background: #ffe8d6; /* 浅暖奶茶色 */
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* 轻微阴影更有层次 */
  }
  .desc, .spec {
    flex: 1;
  }
  .desc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .desc li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    color: #6e4b40;
    font-size: 1.1rem;
  }
  .desc li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a373; /* 暖橙色点缀 */
    font-size: 1.5rem;
    line-height: 1;
  }
  .spec dt {
    font-weight: 600;
    margin-top: 22px;
    font-size: 1.1rem;
    color: #7a4e3e;
  }
  .spec dd {
    margin: 6px 0 0 0;
    color: #6e4b40;
    font-size: 1rem;
    line-height: 1.5;
  }
