﻿body {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    max-width: 580px;
  }
  
  
  .kf {
    position: fixed;
    top: 230px;
    right: 0px;
    z-index: cover;
  }
  
  
  .kf .floatright {
    width: 80px !important;
    height: auto !important;
  }
  
  
  .space {
    height: 1.264574rem;
  }
  
  .header {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    max-width: 580px;
  }
  
  .header>img {
    width: 100%;
    display: block;
  }
  
  .footer>img {
    width: 100%;
    display: block;
  }
  
  .content img {
    width: 100%;
    margin-top:-16px;
  }
  
  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99;
    max-width: 580px;
  }
  
  #qrcode {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    width: 116px;
    height: 116px;
    margin: auto;
    position: absolute;
    top: 230px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .out-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 50;
  }
  
  .out-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 25%;
    width: 80%;
    margin: 0 auto;
    max-width: 660px;
    padding: 15px 15px 0;
  }
  
  .out-panel .out-close {
    position: absolute;
    right: 20px;
    top: -35px;
    width: 25px;
  }
  
  .out-panel .out-bg {
    width: 100%;
  }
  
  .out-panel .pup-btn {
    position: absolute;
    display: block;
    width: 50%;
    height: 20%;
    bottom: -60px;
    left: 25%;
  }
  
  .out-panel .pup-btn {
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  

  img {
    pointer-events: none;
  }
  
  .download-btn {
    position: fixed;
    top: 90%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff6b35;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    cursor: pointer;
    z-index: 100;
    animation: bounce 1.5s infinite;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }
  
  /* 悬浮询盘通知组件样式 */
  .floating-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 15px 25px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 95%;
    white-space: nowrap;
    pointer-events: none;
  }
  
  .floating-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  
  .notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .notification-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
  }
  
  .notification-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #333;
    white-space: nowrap;
  }
  
  .user-info, .action-info {
    display: inline;
  }
  
  .city, .time {
    font-weight: bold;
    color: #ff6b35;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* 响应式设计 */
  @media (max-width: 768px) {
    .floating-notification {
      top: 15px;
      padding: 12px 20px;
      min-width: auto;
    }
    
    .notification-text {
      font-size: 16px;
    }
    
    .notification-icon {
      font-size: 22px;
    }
  }
  
  @media (max-width: 480px) {
    .floating-notification {
      top: 10px;
      padding: 10px 16px;
      min-width: auto;
    }
    
    .notification-text {
      font-size: 14px;
    }
    
    .notification-icon {
      font-size: 20px;
    }
  }