
    /* 万圣节主题色彩变量 */
    :root {
      --primary-color: #c0392b;
      --secondary-color: #FFA500;
      --text-color: #333;
      --light-text: #666;
      --background-color: #ffffff;
      --card-bg: #ffffff;
      --border-radius: 8px;
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }

    /* 基础样式重置 */
    html, body {
      background-color: #ffffff;
      margin: 0;
      padding: 0;
    }

    .halloween-homepage-module {
      font-family: Helvetica, Arial, sans-serif;
      background-color: #ffffff;
      padding: 40px 20px;
      max-width: 1440px;
      margin: 0 auto;
    }

    /* 主内容区域网格布局 */
    .homepage-content {
      display: flex;
      align-items: flex-start;
      gap: 0;
      margin-bottom: 20px;
    }

    /* 标题区域 */
    .title-section {
      margin-bottom: 20px;
      text-align: center;
    }

    /* 主标题样式 */
    .main-title {
      color: var(--primary-color);
      font-size: 2.5rem;
      font-weight: bold;
      margin: 0 0 15px 0;
      position: relative;
      display: block;
      text-align: center;
    }

    /* 标题下划线 */
    .main-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 4px;
      background-color: var(--primary-color);
      border-radius: 2px;
      transition: var(--transition);
    }

    .main-title:hover::after {
      width: 90%;
    }

    /* 副标题样式 */
    .sub-title {
      color: var(--secondary-color);
      font-size: 1.2rem;
      margin: 0 0 20px 0;
      font-weight: 500;
    }

    /* 主内容文字 */
    .main-content {
      color: var(--text-color);
      line-height: 1.5;
      margin: 0;
      padding: 0;
      max-width: 560px;
      font-size: 18px;
    }

    .main-content p {
      margin: 0 0 10px 0;
    }

    /* 部分标题样式 */
    .section-title {
      color: var(--primary-color);
      font-size: 1.5rem;
      font-weight: bold;
      margin: 10px 0 10px 0;
      position: relative;
      display: inline-block;
    }

    /* 优势点列表样式 */
    .strength-list {
      list-style: none;
      margin: 10px 0 15px 0;
      padding: 0;
    }

    .strength-list li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 5px;
      color: var(--text-color);
    }

    .strength-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--primary-color);
      font-size: 1.5rem;
      line-height: 1;
    }

    /* 右侧图片内容 */
    .image-section {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      margin: 0;
      padding: 0;
    }

    /* 竖版图片容器 */
    .vertical-images {
      display: flex;
      flex-direction: row;
      gap: 5px;
      height: 500px;
      margin: 0;
      padding: 0;
    }

    /* 竖版图片 */
    .vertical-img {
      width: 405px;
      height: 100%;
      object-fit: cover;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      margin: 0;
      padding: 0;
    }

    .vertical-img:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    /* 下方横版图片容器 */
    .horizontal-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5px;
    }

    /* 横版图片 */
    .horizontal-img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .horizontal-img:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    /* 制造实力和供应能力区域 */
    .strength-section {
      margin: 40px 0;
      padding: 0;
      text-align: center;
    }

    .strength-section .section-title {
      margin: 0 0 30px 0;
      font-size: 1.8rem;
      position: relative;
    }

    .strength-section .strength-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin: 0;
      padding: 0;
      max-width: 1440px;
      margin: 0 auto;
    }

    .strength-section .strength-list li {
      background: var(--background-color);
      border-radius: var(--border-radius);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
      padding: 40px 30px;
      margin: 0;
      transition: var(--transition);
      text-align: center;
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
    }

    .strength-section .strength-list li::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }

    .strength-section .strength-list li:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
      border-color: var(--primary-color);
    }

    .strength-section .strength-list li {
      color: var(--text-color);
      font-size: 20px;
      font-weight: 500;
      line-height: 1.4;
      text-align: center;
      padding: 40px 30px;
      margin: 0;
    }

    /* 响应式设计 */
    @media (max-width: 1024px) {
      .homepage-content {
        flex-direction: column;
        gap: 30px;
      }

      .main-content {
        max-width: 100%;
      }

      .vertical-images {
        height: 300px;
      }

      .vertical-img {
        width: calc(50% - 10px);
        height: 100%;
      }

      .strength-section .strength-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .halloween-homepage-module {
        padding: 20px 15px;
      }

      .main-title {
        font-size: 2rem;
      }

      .vertical-images {
        flex-direction: column;
        height: auto;
      }

      .vertical-img {
        width: 100%;
        height: 300px;
      }

      .horizontal-images {
        grid-template-columns: 1fr;
      }

      .horizontal-img {
        height: 200px;
      }

      .strength-section .strength-list {
        grid-template-columns: 1fr;
      }
    }

    /* 确保文本对比度 */
    @media (prefers-contrast: high) {
      .main-content {
        color: #000;
      }

      .advantage-text {
        color: #000;
      }
    }
  