        .adx-float-container {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            width: 120px;
            height: 240px;
            z-index: 9999;
            transition: all 0.5s ease;
        }
        
        .adx-float-box {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .adx-float-box:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        }
        
        .adx-float-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .adx-float-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(255, 65, 108, 0.4);
            animation: adx-pulse 2s infinite;
        }
        
        @keyframes adx-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 65, 108, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 65, 108, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 65, 108, 0);
            }
        }
        
        .adx-close-btn {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 26px;
            height: 26px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.8);
        }
        
        .adx-float-container:hover .adx-close-btn {
            opacity: 1;
            transform: scale(1);
        }
        
        .adx-close-btn:hover {
            background: #ff4757;
            transform: scale(1.1) rotate(90deg);
        }
        
        .adx-countdown {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            font-size: 12px;
            font-weight: bold;
            background: rgba(0, 0, 0, 0.4);
            padding: 4px;
            border-radius: 4px;
            margin: 0 10px;
        }
        
        .adx-highlight {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.3);
            pointer-events: none;
            animation: adx-highlight 3s infinite;
        }
        
        @keyframes adx-highlight {
            0%, 100% {
                box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.3);
            }
            50% {
                box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.6);
            }
        }
        
        .adx-arrow {
            position: absolute;
            top: 50%;
            right: 100%;
            width: 40px;
            height: 40px;
            margin-top: -20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: adx-bounce 1.5s infinite;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        
        .adx-arrow i {
            color: #ff416c;
            font-size: 24px;
        }
        
        @keyframes adx-bounce {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(-10px);
            }
        }

        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .adx-float-container {
                top: auto;
                bottom: 20px;
                right: 20px;
                transform: none;
            }
            
            .adx-arrow {
                display: none;
            }
            
            h1 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .adx-float-container {
                width: 100px;
                height: 200px;
            }
            
            h1 {
                font-size: 1.8rem;
            }
        }