.float-button {
      position: fixed;
      right: 3px;
      bottom:-40px;
      transform: translateY(-50%);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;        
    }

.pls-floatbar-button {
    position: relative;
    width: 52px;
    height: 52px;
    box-sizing: border-box;
    border-radius: 26px;
    background-image: linear-gradient(0deg, #ffffff 0%, #f3f5f8 100%);
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
    border: 2px solid #fff;
    background-clip: padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    #overflow: hidden;
    transition: all .3s ease-in-out;font-size:10px;text-decoration: none;
}
.pls-floatbar-button .plsimg{
      width: 100%;
    display: block;
    border-radius: 50%;
}
.pls-floatbar-button.plebg {
    text-decoration: none;
      height: 156px;
    background: linear-gradient(180deg, #ff3b3b 0%, #ffa45a 100%);
    padding: 2px 2px calc(12px * var(--qcloud-float-ratio));
}

.pls-icon{
    width: 24px;
    display: block;
}

.plstext {
    display: block;
    text-align: center;
    width: 18px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    color: #fff;
    line-height: 20px;
    margin-top: 8px;
    text-decoration: none;
    margin-bottom: 16px;
}



    .contact-btn {
      /* background: #1890ff; */
      /* color: white; */
      /* width: 50px; */
      /* height: 50px; */
      /* border-radius: 50%; */
      /* display: flex; */
      /* align-items: center; */
      /* justify-content: center; */
      /* box-shadow: 0 5px 15px rgba(24, 144, 255, 0.4); */
      /* cursor: pointer; */
      /* transition: all 0.3s ease; */
      /* position: relative; */
        
    }
    
    .contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 7px 20px rgba(24, 144, 255, 0.5);
      background: #1478d1;
    }
    
    .contact-btn i {
      font-size: 1.5rem;
    }
    
    .contact-btn .tooltip {
      position: absolute;
      right: 70px;
      background: #5DBBA6;
      color: white;
      font-size: 0.9rem;
      padding: 6px 12px;
      border-radius: 4px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    
    .contact-btn:hover .tooltip {
      opacity: 1;
    }
    
    /* 二维码容器样式 */
    .qr-container {
      position: fixed;
      right: 90px;
      top: 50%;
      transform: translateY(-50%);
      background: white;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      padding: 20px;
      z-index: 1001;
      display: none;
      transition: all 0.3s ease;
      animation: fadeIn 0.3s ease;
    }
	.qr-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 8px;
    border: 1px solid #eee;
    border-radius: 4px;
}
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-50%) translateX(20px); }
      to { opacity: 1; transform: translateY(-50%) translateX(0); }
    }
    
    .qr-container.active {
      display: block;
    }
    
    .qr-container .close-btn {
      position: absolute;
      top: -12px;
      right: -12px;
      background: #999;
      color: white;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    
    .qr-container .close-btn:hover {
      background: #999;
      transform: rotate(90deg);
    }
    
    .qr-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .qr-item:last-child {
      margin-bottom: 0;
    }
    
    .qr-img {
      width: 160px;
      height: 160px;
      object-fit: cover;
      margin-bottom: 10px;
      border-radius: 8px;
  
      background: #f9f9f9;
      
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: #1890ff;
    }
	 .qr-img img{ width: 160px;
      height: 160px;}
    
    .qr-item p {
      font-size: 0.9rem;
      color: #666;
    }
    
    /* 响应式设计 */
    @media (max-width: 768px) {
      .float-button {
        right: 15px;
      }
      
      .qr-container {
        right: 15px;
        top: auto;
        bottom: 90px;
        transform: none;
        width: calc(100% - 30px);
        max-width: 300px;
      }
      
      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
      }
    }
	
	
	  .pls-floatbar-button {
          
 
        
            
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .pls-floatbar-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        
     
        
       
        
        /* 二维码容器 */
        .float-button .qrcode-container {
            position: absolute;
            right: 70px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
			
		 
			
        }
        
        .qrcode-container .qrcode-box {
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            width: 150px;
            height: 150px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 10px;
        }
        .playvideo img{   
           margin-top: 4px;
            width: 18px;
            height: 18px;
            margin-bottom: 2px;
  }
        
        .qrcode-box img {
            width: 148px;
            height: 130px;
            display: block;
        }
        
        .qrcode-container .qrcode-title {
            font-size: 12px;
            color: #333;
          
            font-weight: bold;
            text-align: center;
        }
        
        /* 二维码箭头 */
        .qrcode-box::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid white;
        }
        
        .pls-floatbar-button:hover .qrcode-container {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            pointer-events: auto;
        }
        
        .footer {
            text-align: center;
            padding: 30px 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
            }
            
            .content {
                grid-template-columns: 1fr;
            }
            
            .float-button {
                bottom: 0px;
                gap: 10px;
            }
            
            .pls-floatbar-button {
                width: 50px;
                height: 50px;
            }
            
            .pls-floatbar-button img {
                width: 25px;
                height: 25px;
            }
        }
		
    
    @media (max-width: 480px) {
      .contact-btn {
        width: 50px;
        height: 50px;
      }
      
      .contact-btn i {
        font-size: 1.3rem;
      }
      
      .qr-img {
        width: 130px;
        height: 130px;
      }
    }
    