
  .listing-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto; /* 容器整体居中 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
  }
  
  /* 表格居中样式 */
  .custom-spec-table {
    width: 100%;
    margin: 25px auto; /* 上下留空，左右自动外边距实现居中 */
    border-collapse: collapse;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
  }
  
  .custom-spec-table th, .custom-spec-table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
  }
  
  .custom-spec-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #111111;
    width: 30%;
  }
  
  /* Bullet Points 样式 */
  .listing-bullets {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
  }
  
  .listing-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
  }
  
  /* 使用伪元素生成高质感金色星号图标 */
  .listing-bullets li::before {
    content: "✦"; 
    position: absolute;
    left: 5px;
    top: 0;
    color: #8c6239; /* 优雅的皮质色/金色调 */
    font-size: 14px;
  }
  
  .bullet-title {
    font-weight: bold;
    color: #111111;
  }
