@charset "utf-8";
/* CSS Document */

/* 模块容器 */
    .cpzs-module {
      width: 100%;
      padding: 10px 20px; /* 将padding移到这里 */
	  margin-bottom:60px;
      overflow: visible;
    }
    .cpzs-module_container {
      margin: 0 auto;
      width: 100%;
      max-width: 1430px;
      position: relative;
    }

    /* 产品卡片容器 */
    .cpzs-product-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    /* 产品卡片核心样式 */
    .cpzs-procontent {
      width: 100%;
      max-width: 1285px; /* 1428px × 90% */
      height: 392px;
      position: relative;
      background-size: cover !important;
      background-repeat: no-repeat !important;
      background-position: center center !important;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 1;
      opacity: 0;
    }
    /* 奇偶卡片动画方向 - 确保刷新时完全在屏幕外 */
    .cpzs-procontent:nth-child(odd) {
      align-self: flex-end;
      margin-right: 0;
      transform: translateX(100vw); /* 确保在屏幕右侧外 */
    }
    .cpzs-procontent:nth-child(even) {
      align-self: flex-start;
      margin-left: 0;
      margin-top: -42px;
      margin-bottom: -82px;
      z-index: 2;
      transform: translateX(-100vw); /* 确保在屏幕左侧外 */
    }
    /* 卡片可见状态 */
    .cpzs-procontent.cpzs-visible {
      opacity: 1;
      transform: translateX(0) !important;
    }
    /* 第2、4张卡片阴影 */
    .cpzs-procontent:nth-child(2),
    .cpzs-procontent:nth-child(4) {
      box-shadow: 0 8px 25px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
    }
    .cpzs-procontent:nth-child(2)::before,
    .cpzs-procontent:nth-child(4)::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 8px;
      box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
      pointer-events: none;
    }
    /* 卡片间距调整 */
    .cpzs-procontent:nth-child(3) {
      margin-top: 42px;
    }

    /* 卡片内容容器（仅控制定位，不影响文字板块尺寸） */
    .cpzs-prolcon {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 90px 60px;
      color: #fff;
      display: flex;
      flex-direction: column;
    }
    /* 奇偶卡片文字板块定位：1/3偏左，2/4偏右 */
    .cpzs-procontent:nth-child(odd) .cpzs-prolcon {
      background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
      align-items: flex-start; /* 文字板块偏左 */
    }
    .cpzs-procontent:nth-child(even) .cpzs-prolcon {
      background: linear-gradient(to left, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
      align-items: flex-end; /* 文字板块偏右 */
    }

    /* 文字板块核心样式：固定455×210px */
    .cpzs-text-wrapper {
      width: 455px;
      height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    /* 卡片标题和描述 */
    .cpzs-prolcon .cpzs-title {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 15px; /* 减少标题与描述的间距 */
      position: relative;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    .cpzs-prolcon .cpzs-title small {
      font-size: 14px;
      font-weight: 400;
      opacity: 0.9;
      margin-left: 8px;
    }
    .cpzs-prolcon .cpzs-con {
      font-size: 16px;
      line-height: 1.7; /* 调整行高，使文字更紧凑 */
      max-width: 100%; /* 不超出文字板块宽度 */
      height: calc(210px - 46px - 60px); /* 总高度减去标题和按钮区域 */
      overflow: hidden; /* 超出部分隐藏，避免破坏尺寸 */
      opacity: 0.95;
      text-shadow: 0 1px 2px rgba(0,0,0,0.2);
      margin-bottom: 15px; /* 描述与按钮的间距 */
    }

    /* 按钮样式 - 白色文字 + 双箭头 */
    .cpzs-but {
      display: inline-block;
      margin-top: 0; /* 移除顶部边距，使用文字板块内的间距控制 */
    }
    .cpzs-more.cpzs-default {
      width: fit-content;
      height: fit-content;
      cursor: pointer;
    }
    .custom-arrow-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 26px 8px 18px;
      background-color: transparent;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: 20px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }
    /* 默认状态 - 透明背景，白色文字和箭头 */
    .custom-arrow-btn {
      background-color: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, 0.5);
    }
    /* 悬停状态 - 白色背景，黑色文字和箭头 */
    .custom-arrow-btn:hover {
      background-color: #fff;
      color: #000;
      border-color: #fff;
    }
    /* 双箭头容器 */
    .arrow-container {
      display: flex;
      align-items: center;
      margin-left: 8px;
    }
    /* 单个箭头样式 */
    .arrow {
      width: 0;
      height: 0;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-left: 6px solid #fff;
      transition: all 0.3s ease;
    }
    /* 第一个箭头 */
    .arrow:first-child {
      margin-right: 2px;
    }
    /* 悬停时箭头变黑色 */
    .custom-arrow-btn:hover .arrow {
      border-left-color: #000;
    }
    /* 悬停时箭头有轻微移动效果 */
    .custom-arrow-btn:hover .arrow:first-child {
      transform: translateX(2px);
    }
    .custom-arrow-btn:hover .arrow:last-child {
      transform: translateX(4px);
    }

    /* 第2、4张卡片的按钮左对齐（相对于文字） */
    .cpzs-procontent:nth-child(even) .cpzs-but {
      align-self: flex-start; /* 按钮左对齐，但文字板块整体保持右对齐 */
    }

    /* 移动端适配 */
    @media screen and (max-width: 992px) {
      .cpzs-module {
        padding: 20px 15px; /* 移动端调整padding */
		margin-bottom:0px;
      }
      .cpzs-procontent {
        width: 100%;
        align-self: center !important;
        margin: 0 auto 30px !important;
        transform: translateY(100vh) !important;
      }
      .cpzs-procontent.cpzs-visible {
        transform: translateY(0) !important;
      }
      .cpzs-prolcon {
        padding: 80px 25px;
        align-items: flex-start !important; /* 移动端统一偏左 */
      }
      /* 移动端文字板块自适应宽度 */
      .cpzs-text-wrapper {
        width: 100%;
        height: auto;
      }
      .cpzs-prolcon .cpzs-con {
        font-size: 14px;
        height: auto;
        overflow: visible;
        margin-bottom: 20px; /* 移动端增加间距 */
      }
      .custom-arrow-btn {
        padding: 6px 12px 6px 8px;
        font-size: 13px;
      }
      .cpzs-procontent:nth-child(even) .cpzs-but {
        align-self: flex-start; /* 移动端也保持左对齐 */
      }
      .cpzs-procontent:nth-child(odd) .cpzs-prolcon,
      .cpzs-procontent:nth-child(even) .cpzs-prolcon {
        text-align: left;
        background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
      }
    }