
  .ameson-interactive-blog { line-height: 1.6; font-size: 16px; color: #333; }
  .ameson-interactive-blog p { margin-bottom: 20px; }

  .booth-container {
    position: relative; width: 100%; max-width: 1200px; 
    margin: 30px auto; overflow: hidden; border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .booth-panner {
    position: relative; width: 100%; height: 100%;
    transform: scale(1.1); transform-origin: center center;
    transition: transform 0.1s ease-out; will-change: transform;
  }

  .booth-image { display: block; width: 100%; height: auto; }

  .hotspot-dot {
    position: absolute; width: 10px; height: 10px; background-color: #ffffff;
    border-radius: 50%; transform: translate(-50%, -50%); cursor: pointer;
    z-index: 10; box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); transition: transform 0.2s;
  }

  .hotspot-dot::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%; background-color: rgba(255, 255, 255, 0.6);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; z-index: -1;
  }

  .hotspot-dot:hover { transform: translate(-50%, -50%) scale(1.2); }

  @keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
  }

  .product-card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6); z-index: 999999;
    display: none; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease;
  }

  .product-card-overlay.active { display: flex; opacity: 1; }

  .product-card {
    position: relative; background: #fff; width: 90%; max-width: 400px;
    border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(20px); transition: transform 0.3s ease; box-sizing: border-box;
    max-height: 95%; overflow-y: auto; 
  }

  .product-card-overlay.active .product-card { transform: translateY(0); }

  .card-close-btn {
    position: absolute; top: 10px; right: 10px; width: 32px; height: 32px;
    background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 50%;
    font-size: 20px; line-height: 1; cursor: pointer; z-index: 2;
    display: flex; justify-content: center; align-items: center; padding: 0;
  }
  .card-close-btn:hover { background: rgba(0,0,0,0.9); }

  .card-image-wrapper {
    width: 100%; height: 300px; background-color: #ffffff;
    display: flex; align-items: center; justify-content: center; box-sizing: border-box;
  }

  .card-image-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; }

  .card-content { padding: 10px 25px 10px; text-align: center; background: #F5F7F9;}
  
  .card-title {
    font-size: 22px; font-weight: bold; color: #333; margin: 0 0 10px 0; line-height: 1.3;
  }

  .card-desc { font-size: 15px; color: #666; margin: 0; line-height: 1.3; }

  .card-desc ul {
    text-align: left; padding-left: 20px; margin: 0; 
  }
  
  .card-desc li { margin-bottom: 8px; list-style-type: disc; }

  .card-footer { padding: 0px 25px 15px; text-align: center; background: #F5F7F9;}

  .btn-view-details {
    display: inline-block; background-color: #286ab4; color: #F5F7F9 !important;
    text-decoration: none; padding: 12px 35px; border-radius: 4px;
    font-size: 16px; font-weight: bold; transition: background-color 0.2s; border: none;
  }
  .btn-view-details:hover { background-color: #1c4c82; }

  @media (max-width: 768px) {
    .hotspot-dot {
      width: 4px;  
      height: 4px;
      box-shadow: 0 0 7px rgba(255, 255, 255, 0.8);
    }
    

    .product-card-overlay {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      z-index: 9999999 !important; /* 确保它在最顶层 */
    }
  }
