
      /* 容器样式 - 独立且不影响父级 */
      .ly_product_description_1 {
        overflow: hidden;
      }
      .ly_product_description_1 .d_title {
        margin-bottom: 30px;
      }
      .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 40px 20px;
        position: relative;
        overflow: visible;
        background: #ffffff; /* 白色背景，独立于父容器 */
        font-family: Arial, sans-serif;
        line-height: 1.6;
      }
      /* 仅容器内的H1/H2/H3使用特定字体颜色 */
      .container h1,
      .container h2,
      .container h3,
      .container h4 {
        color: #E67E22; /* 主橙色 - 南美热烈风格 */
        margin-top: 30px;
        animation: fadeInUp 0.8s ease-out; /* 动感入场动画 */
      }
      .container h1 {
        font-size: 2.5em;
        border-left: 5px solid #E67E22;
        padding-left: 15px;
      }
      .container h2 {
        font-size: 2em;
        border-bottom: 2px solid #E67E22;
        padding-bottom: 10px;
      }
      .container h3 {
        font-size: 1.5em;
      }
      .container p,
      .container table,
      .container ul,
      .container li {
        color: #333333; /* 深灰色文本 */
        margin-bottom: 15px;
      }
      .container strong {
        color: #E67E22; /* 强调文本用橙色 */
      }
      /* 简单动画效果 - 模拟动感 */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      /* 表格样式 */
      .container table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        animation: fadeInUp 1s ease-out;
      }
      .container table th,
      .container table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
      }
      .container table th {
        background-color: #f8f8f8;
        color: #E67E22;
      }
      .container table tr:nth-child(even) {
        background-color: #f2f2f2;
      }
      /* 列表样式 */
      .container ul {
        list-style-type: disc;
        margin-left: 20px;
      }
      .container li {
        margin-bottom: 10px;
      }
      /* 交互效果：悬停时轻微缩放 */
      .container h2:hover,
      .container h3:hover {
        transform: scale(1.02);
        transition: transform 0.3s ease;
      }
    