
*,
*:before,
*:after {
  -webkit-box-sizing:border-box;
}


    
     /* 浮动层样式 */
        #summerset {
            position: fixed;
            bottom: 230px;
            right: 5px;
            z-index: 999;
            cursor: move; /* 修改为move光标 */
            transition: transform 0.3s ease;
            animation: pulse 2s infinite;
            user-select: none; /* 防止拖拽时选中文本 */
            touch-action: none; /* 防止触摸默认行为 */
        }
        
        #summerset:hover {
            transform: scale(1.1) rotate(5deg);
            animation: none;
        }
        
        #summerset img {
            width: 65px;
            height: 65px;
            pointer-events: none; /* 防止图片干扰拖拽 */
        }
        
        /* 增加拖拽时的样式 */
        #summerset.dragging {
            cursor: grabbing;
            animation: none;
            transform: scale(1.1);
            opacity: 0.9;
        }
        
        /* 圆形浮层容器 */
        .floating-circles {
            position: fixed;
            z-index: 999998;
            display: flex;
            flex-direction: column;
            gap: 13px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        
        .floating-circles.visible {
            opacity: 1;
            pointer-events: auto;
        }
        
        /* 单个圆形按钮 */
        .circle-btn {
            width: 200px;
            height: 95px;
            display: flex;
            align-items: center;
            justify-content: right;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            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);
        }
        
        .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%;
            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;
        }

               .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;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        /* 修改这里：弹出层显示时关闭按钮也显示 */
        .floating-circles.visible .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;
            }
            
            /* 单个圆形按钮 */
        .circle-btn {
            width: 200px;
            height: 100px;
          
        }
            
        }
     