﻿        /* 广告基础样式 */
        .ad-container {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 234px; /* 广告宽度 */
            background-image: url('/map/cjsh/ad/bg.jpg');
            border: 2px solid #fee499; /* 边框样式 */
            box-shadow: 0 0 15px rgba(0,0,0,0.3); /* 阴影效果 */
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        /* 左侧广告特定样式 */
        .ad-left {
            left: 0;
            border-radius: 0 10px 10px 0; /* 左侧圆角 */
        }
        
        /* 右侧广告特定样式 */
        .ad-right {
            right: 0;
            border-radius: 10px 0 0 10px; /* 右侧圆角 */
        }
        
        .ad-content {
            padding: 15px;
            text-align: center;
        }
        
        .ad-image-container {
            width: 100%;
            height: 281px; /* 图片容器高度 */
            overflow: hidden;
            margin-bottom: 10px;
            position: relative;
        }
        
        .ad-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 图片填充方式 */
            transition: transform 0.3s ease;
        }
        
        .ad-image:hover {
            transform: scale(1.05); /* 鼠标悬停放大效果 */
        }
        
        .ad-title {
            font-weight: bold;
            margin-bottom: 8px;
            color: #fee499; /* 标题颜色 */
            font-size: 20px;
        }
        
        .ad-desc {
            font-size: 14px;
            color: #fee499;
            margin-bottom: 12px;
        }
        
        .ad-btn {
            padding: 6px 15px;
            background: linear-gradient(to right, #fee499, #fee499); /* 按钮渐变背景 */
            color: #0b1d35;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .ad-btn:hover {
            background: linear-gradient(to right, #fee499, #fee499); /* 悬停效果 */
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .close-btn {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 22px;
            height: 22px;
            background-color: #0b1d35;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 22px;
            cursor: pointer;
            font-size: 18px;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .close-btn:hover {
            background-color: #0b1d35;
            transform: rotate(90deg);
        }
        
        /* 折叠状态 */
        .ad-container.collapsed {
            opacity: 0.7;
        }
        
        .ad-left.collapsed {
            left: -231px;
        }
        
        .ad-right.collapsed {
            right: -230px;
        }
        
        .toggle-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 25px;
            height: 70px;
            background: linear-gradient(to right, #0b1d35, #0b1d35);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .ad-left .toggle-btn {
            right: -25px;
            border-radius: 0 8px 8px 0;
        }
        
        .ad-right .toggle-btn {
            left: -25px;
            border-radius: 8px 0 0 8px;
        }
        
        .toggle-btn:hover {
            width: 30px;
            background: linear-gradient(to right, #ffe198, #ffe198);
        }
        
        
        
        
        
       .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: 150px;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: transform 0.5s ease-in-out;
            transform: translateY(150px);
        }
        
        .aion2-ad-content-inner {
            width: 1000px;
            height: 150px;
            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: 10px;
            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;
            background-color: rgba(0, 0, 0, 0.8);
            border-radius: 50% 0 0 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            position: fixed;
            bottom: 0;
            right: 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(180deg);
            transition: transform 0.3s;
        }
        
        .aion2-ad-collapsed:hover .aion2-ad-icon {
            transform: rotate(180deg) scale(1.2);
        }
        
        /* 响应式设计 */
        @media (max-width: 1100px) {
            .aion2-ad-content-inner {
                width: 90%;
            }
        }
        
        @media (max-width: 768px) {
            .aion2-ad-content-inner {
                width: 95%;
                height: 120px;
            }
            
            .aion2-ad-container {
                height: 120px;
                transform: translateY(120px);
            }
            
            .aion2-ad-collapsed {
                height: 100px;
                width: 80px;
            }
        }
        
        /* 页面内容样式 */
        .page-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            line-height: 1.6;
        }
        
        .page-content h1 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .page-content p {
            margin-bottom: 15px;
        }
        
        
        