        /* 基础样式 & 媒体查询容器基础设置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* 支持法语特殊字符的字体栈 */
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            color: #000;
            line-height: 1.6;
            padding-top: 80px; /* 为固定导航栏预留高度 */
        }
        
        /* 容器类 - 核心响应式控制 */
        .container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }
		        
        /* 导航栏样式 - 固定顶部 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            z-index: 1000;
        }
        
        .navbar .container {
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            width: 250px;
            height: 80px;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;

        }
        
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #000;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #87CEEB; /* 天蓝色 hover 效果 */
        }
        
        .special-icon {
            width: 25px;
            height: 25px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .special-icon:hover {
        }
        
        /* 汉堡菜单（移动端隐藏） */
        .burger {
            display: none;
            cursor: pointer;
            gap: 5px;
            flex-direction: column;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background-color: #000;
            transition: all 0.3s ease;
        }        
		
		       
        /* 页脚样式 */
        .footer {
            width: 100%;
            background-color: #000;
            color: #fff;
            padding: 1rem 0;
        }
        
        .footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        
        .social-media {
            width: 250px;
            height: 150px;
            background-color: #333;
            overflow: hidden;
        }
        
        .social-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .contact-info {
            line-height: 2;
            font-size: 0.8rem;
            text-align: right;
        }
        
        /* 版权信息栏 */
        .copyright-bar {
            width: 100%;
            background-color: #582e7a;
            color: #fff;
            padding: 1.2rem 0;
            text-align: center;
            font-size: 0.8rem;
        }
		
		
		 /* -----------logo样式------------ */
		
		 /* 图片基础样式 */
        .responsive-logo {

			/* max-width: 100%;  确保图片不超出容器宽度 */
			/* height: auto;保持图片原始比例 */

			width:250px;
			height:80px;

            /* 默认桌面端样式  width: 250px;- 可根据需要调整 */

        }


		
	