 /* 浮动层样式 */
        #summerset {
            position: fixed;
            bottom: 230px;
            right: 5px;
            z-index: 99;
            cursor: pointer;
            transition: transform 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        #summerset:hover {
            transform: scale(1.1) rotate(5deg);
            animation: none;
        }
        
        #summerset img {
            width: 65px;
            height: 65px;
            /*border-radius: 50%;*/
           /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
            /*border: 3px solid #ffffff;*/
        }
        
        /* 圆形浮层容器 */
        .floating-circles {
            position: fixed;
            bottom: 280px;
            right: 5px;
            z-index: 999998;
            display: flex;
            flex-direction: column;
            gap: 13px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }
        
        .floating-circles.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        
        /* 单个圆形按钮 */
        .circle-btn {
            width: 200px;
            height: 95px;
           /* border-radius: 50%;*/
            display: flex;
            align-items: center;
            justify-content: right;
            cursor: pointer;
            /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
           /* border: 3px solid white;*/
            animation: float 3s ease-in-out infinite;
            margin-top:-25px;
        }
    
        
        .circle-btn:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .circle-btn:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .circle-btn:hover {
            transform: scale(1.1) rotate(5deg);
           /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);*/
        }
        
        .circle-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.0);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .circle-btn:hover::before {
            opacity: 1;
        }
        
        .circle-btn i {
            font-size: 24px;
            color: white;
        }
        
.circle-btn .tooltip {
            position: absolute;
            bottom: 25px;
            right: 3%;
            /*! transform: translateX(0%); */
            background: rgba(255, 255, 255, 0.98);
            color: #00a800;
            padding: 5px 10px;
            border-radius: 30px;
            font-size: 18px;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.3s ease;
            pointer-events: none;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
 
            z-index: -1;
            padding-right: 60px;
            padding-left: 20px;
             min-width: 170px;
        }


        .circle-btn:hover .tooltip {
            opacity: 1;
        }

.circle-btn .tel{
            color: #FF6B00;
            border-left: 3px solid #FF6B00;
            height: 60px;
            padding-top: 16px;
        }

.circle-btn .whatsapp{
            color: #00a800;
    border-left: 3px solid #00a800;
        }

        
        /* 不同按钮的颜色 */
        .circle-btn:nth-child(1) {
            /* background: linear-gradient(135deg, #ff7e5f, #feb47b);*/
        }
        
        .circle-btn:nth-child(2) {
           /*  background: linear-gradient(135deg, #64b3f4, #1a2a6c);*/
        }
        
               .close-btn {
         
            position: absolute;
            top: -50px;
            right: 10px;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
           /* box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);*/
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .floating-circles:hover .close-btn {
            opacity: 1;
        }
        
        .close-btn i {
            font-size: 14px;
        }
        
       .icon_img_set{
            max-width: 65px;margin-bottom:13px;
        }

        
        /* 动画效果 */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {

            
            #summerset {
                bottom: 230px;
                right: 7px;
            }
            
            #summerset img {
                 width: 60px;
            height: 60px;
            }
            
            .floating-circles {
                bottom: 280px;
                right: 7px;
            }
            
            /* 单个圆形按钮 */
        .circle-btn {
            width: 200px;
            height: 100px;
          
        }
            
        }