        .aion2-ad * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .aion2-ad-body {
            font-family: Arial, sans-serif;
            min-height: 150vh;
            padding-bottom: 150px; /* 增加底部内边距以适应更高的广告 */
        }
        
        .aion2-ad-content {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .aion2-ad-container {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 130px; /* 更新为180px高度 */
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: transform 0.5s ease-in-out;
            transform: translateY(180px); /* 更新为180px */
        }
        
        .aion2-ad-content-inner {
            width: 1000px; /* 更新为1000px宽度 */
            height: 150px; /* 更新为180px高度 */
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            position: relative;
            border-radius: 4px;
        }
        
        .aion2-ad-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .aion2-ad-close-btn {
            position: absolute;
            top: 30px;
            right: 10px;
            width: 30px;
            height: 30px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            color: white;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .aion2-ad-close-btn:hover {
            background-color: rgba(255, 255, 255, 0.4);
        }
        
        .aion2-ad-collapsed {
            width: 100px;
            height: 150px; /* 更新为180px高度 */
            background-color: rgba(0, 0, 0, 0.8);
            border-radius: 0 50% 50% 0;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            position: fixed;
            bottom: 0;
            left: 0;
            z-index: 999;
            transform: translateX(-100px);
            transition: transform 0.5s ease-in-out;
        }
        
        .aion2-ad-collapsed .aion2-ad-icon {
            color: white;
            font-size: 40px;
            transform: rotate(0deg);
            transition: transform 0.3s;
        }
        
        .aion2-ad-collapsed:hover .aion2-ad-icon {
            transform: rotate(0deg) scale(1.2);
        }
        
        /* 响应式设计 */
        @media (max-width: 1100px) {
            .aion2-ad-content-inner {
                width: 90%;
            }
        }
        
        @media (max-width: 768px) {
            .aion2-ad-content-inner {
                width: 95%;
                height: 150px; /* 在小屏幕上适当减小高度 */
            }
            
            .aion2-ad-container {
                height: 150px; /* 在小屏幕上适当减小高度 */
                transform: translateY(150px);
            }
            
            .aion2-ad-collapsed {
                height: 120px; /* 在小屏幕上适当减小高度 */
                width: 80px;
            }
        }
        
        
