.elementor-766 .elementor-element.elementor-element-457e00ed{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:100px 60px;--row-gap:100px;--column-gap:60px;--padding-top:70px;--padding-bottom:70px;--padding-left:5px;--padding-right:5px;}.elementor-766 .elementor-element.elementor-element-48461ace{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -22px) 0px;padding:0px 0px 0px 0px;text-align:center;}.elementor-766 .elementor-element.elementor-element-1510d264{--display:grid;--e-con-grid-template-columns:repeat(3, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--gap:0px 0px;--row-gap:0px;--column-gap:0px;--grid-auto-flow:row;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:1024px){.elementor-766 .elementor-element.elementor-element-1510d264{--grid-auto-flow:row;}}@media(min-width:768px){.elementor-766 .elementor-element.elementor-element-457e00ed{--content-width:1920px;}}@media(max-width:767px){.elementor-766 .elementor-element.elementor-element-1510d264{--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(2, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for container, class: .elementor-element-1510d264 */.dd1724-card {
    position: relative;
    width: 100%; /* 宽度100% */
    max-width: 1000px; /* 限制最大宽度 */
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.0);
  }

  /* 图片容器，包含RGB滤镜 */
  .dd1724-card::before {
    content: '';
    position: absolute;
    top: 10;
    left: 10;
    width: 100%;
    height: 100%;
    background: #00000099; /* 默认的RGB滤镜颜色 (蓝色, 透明度 0.3) */
    mix-blend-mode: multiply; /* 混合模式 */
    z-index: 1;
    pointer-events: none; /* 禁止交互，确保点击穿透到图片 */
    transition: background 0.5s ease; /* 平滑动画 */
  }

  .dd1724-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
    position: relative;
    transition: transform 0.5s ease;
  }

  /* 覆盖层 */
  .dd1724-card .dd1724-overlay {
    position: absolute;
    bottom: -100%; /* 初始位置在视图之外 */
    left: 10;
    width: 100%;
    height: 100%;
    background-color: #00000000; /* 蓝色覆盖 */
    display: flex;
    flex-direction: column; /* 垂直布局 */
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    transition: bottom 0.5s ease; /* 滑动动画 */
    z-index: 2; /* 覆盖在标题之上 */
  }

  /* 标题 */
  .dd1724-card .dd1724-title {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%; /* 设置标题宽度为父容器的 90% */
  max-width: 1600px; /* 限制最大宽度 */
  text-align: center; /* 文本居中 */
  color: white;
  font-size: 20px;
  font-weight: 500;
  z-index: 1; /* 在覆盖层下方 */
  transition: opacity 0.5s ease; /* 渐隐效果 */
}


  /* 按钮 */
  .dd1724-card .dd1724-button {
    margin-top: 20px; /* 与文字保持间距 */
    padding: 10px 20px;
    background-color: white;
    color: blue;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .dd1724-card .dd1724-button:hover {
    background-color: #ff0000;
    color: #ffffff;
  }

  /* 鼠标悬停效果 */
  .dd1724-card:hover img {
    transform: scale(1.1); /* 放大图片 */
  }

  .dd1724-card:hover::before {
    background: rgba(255, 0, 0, 0.0); /* 悬停时切换为红色滤镜 (透明度 0.5) */
  }

  .dd1724-card:hover .dd1724-overlay {
    bottom: 0; /* 推上来显示文字 */
  }

  .dd1724-card:hover .dd1724-title {
    opacity: 0.5; /* 标题被覆盖层隐藏 */
  }/* End custom CSS */