
  /* 主容器 - 响应式高度 */
  .e-con-full {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 宽高比 */
    overflow: hidden;
    background-color: #000;
  }

  /* 视频容器 */
  .elementor-background-video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }

  /* 视频样式 */
  .elementor-background-video-hosted {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* 修复移动端黑屏问题 */
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
  }

  /* 热点图片容器 */
  .elementor-widget-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
  }

  /* 热点图片 */
  .wp-image-3111 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
  }

  /* 热点样式 */
  .e-hotspot {
    position: absolute;
    z-index: 3;
    animation: pulse 2s infinite;
  }

  /* 脉冲动画 */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }

  /* 热点按钮 - 改为 #001EB4 */
  .e-hotspot__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    background: rgba(0, 30, 180, 0.8); /* 改为 #001EB4 */
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .e-hotspot__button:hover {
    background: rgba(0, 30, 180, 0.9); /* 悬停时更亮的蓝色 */
  }

  /* 热点图标 - 白色 */
  .e-font-icon-svg {
    width: 8px;
    height: 8px;
    fill: #fff;
  }
  
  .e-hotspot__button:hover .e-font-icon-svg {
    fill: #fff;
  }

  /* 工具提示 - 改为 #001EB4 */
  .e-hotspot__tooltip {
    position: absolute;
    background: rgba(0, 30, 180, 0.9); /* 改为 #001EB4 */
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 4;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    pointer-events: none;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* 工具提示箭头 - 改为 #001EB4 */
  .e-hotspot__tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: rgba(0, 30, 180, 0.9) transparent transparent transparent; /* 改为 #001EB4 */
  }

  /* 工具提示链接 */
  .e-hotspot__tooltip a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    pointer-events: auto;
    display: block;
    padding: 5px 0;
  }

  /* 悬停时显示工具提示 */
  .e-hotspot:hover .e-hotspot__tooltip,
  .e-hotspot__tooltip:hover {
    opacity: 1;
    pointer-events: auto;
  }

  /* 移动端优化 */
  @media (max-width: 767px) {
    .e-hotspot {
      transform: scale(0.8);
    }
    
    .e-hotspot__button {
      width: 14px;
      height: 14px;
    }
    
    .e-font-icon-svg {
      width: 7px;
      height: 7px;
    }
    
    .e-hotspot__tooltip {
      font-size: 12px;
      padding: 8px 12px;
      min-width: 100px;
    }
    
    /* 确保移动端视频播放 */
    .elementor-background-video-hosted {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  }

  /* 超小屏幕优化 */
  @media (max-width: 480px) {
    .e-hotspot {
      transform: scale(0.7);
    }
    
    .e-hotspot__tooltip {
      font-size: 11px;
      padding: 6px 10px;
      min-width: 80px;
    }
  }
