  :root {
            --primary-color: #1e88e5; /* 默认主题颜色 */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           font-family: "宋体", sans-serif;
			/* font-family: "Microsoft YaHei", sans-serif; */
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }
        
        /*.logo {*/
        /*    font-size: 24px;*/
        /*    font-weight: bold;*/
        /*    color: var(--primary-color);*/
        /*}*/
         /*电脑访问时logo隐藏不使用*/
        
        .theme-switcher {
            display: flex;
            align-items: center;
        }
        
        .theme-switcher span {
            margin-right: 10px;
        }
        
        .theme-option {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            border: 1px solid #ddd;
        }
        
        .theme-option.blue  { background-color: #1e88e5; }
        .theme-option.red  { background-color: #e53935; }
        .theme-option.green  { background-color: #43a047; }
        .theme-option.purple  { background-color: #8e24aa; }
        
        /* 导航栏样式 - 已调整为全宽 */
        nav {
            background-color: var(--primary-color);
            width: 100%; /* 新增：确保导航栏宽度为100% */
        }
        
        .nav-container { /* 新增：用于容纳导航内容并居中 */
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .nav-menu {
            display: flex;
            position: relative;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            display: block;
            padding: 15px 20px;
            color: #fff;
            transition: background-color 0.3s;
        }
        
        .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            min-width: 200px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 10;
        }
        
        .nav-item:hover .submenu {
            opacity: 1;
            visibility: visible;
        }
        
        .submenu-item {
            border-bottom: 1px solid #eee;
        }
        
        .submenu-link {
            display: block;
            padding: 10px 20px;
            color: #333;
            transition: background-color 0.3s;
        }
        
        .submenu-link:hover {
            background-color: #f5f5f5;
            color: var(--primary-color);
        }
        
        /* 移动端导航按钮 */
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        
        
        /* Banner 轮播图 */
        .banner {
            height: 400px;
            background-color: #eee;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .banner-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s;
        }
        
        .banner-slide.active  {
            opacity: 1;
        }
 /* 新增：Banner文字描述样式 */

       .banner-text {
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%); /* 同时实现水平和垂直居中 */
           width: 80%; /* 限制宽度避免过宽 */
           max-width: 1000px; /* 最大宽度 */
           padding: 40px;
           /* background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%); */
		   /* 优化渐变方向 */
           color: white;
           z-index: 10;
           text-align: center; /* 文本内容居中 */
           border-radius: 8px; /* 轻微圆角 */
		   
       }
       
       .banner-title {
            font-family: "黑体", SimHei, sans-serif;
            letter-spacing: 10px;  /*文字间距*/
           font-size: 100px; /* 增大标题字体 */
           font-weight: bolder;
           margin-bottom: 15px;
           text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
		   color: #E53935;
       }
       
       .banner-desc {
           font-size: 18px; /* 增大描述字体 */
           margin-bottom: 0;
           text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
       }
         
                
         @media (max-width: 920px) {
             
              /*banner-slide {*/
             .banner {
                height: 120px;
            }
            .about-section img {
                max-width: 100%;
              height: auto !important
            }
            .banner img {
              max-width: 100%;
              height: auto !important
            }
            
             .logo {
                display: block; margin: 0 auto;
            }
            
			.banner-title {
			    font-size: 35px; /* 增大标题字体 */
			     letter-spacing: 5px; /*文字间距*/
							 }
            
            /*.theme-switcher {*/
            /*    display: none;*/
            /*}*/
         }
        
        
         @media (min-width: 921px) {
            
         .logo {
             display: none;
         }   
            
        }
        
        /* 关于我们页面样式 */
        .about-page {
            margin-bottom: 60px;
        }
        
        .breadcrumb {
            padding: 10px 0;
            margin-bottom: 20px;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a {
            color: var(--primary-color);
        }
        
        .about-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .about-section {
            margin-bottom: 40px;
        }
        
        .about-title {
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .timeline {
            position: relative;
            padding-left: 40px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--primary-color);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -47px;
            top: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--primary-color);
            border: 3px solid #fff;
            box-shadow: 0 0 0 2px var(--primary-color);
        }
        
        .timeline-year {
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .mission-vision {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .mission, .vision {
            flex: 1;
            min-width: 300px;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 5px;
        }
        
        .core-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .value-item {
            text-align: center;
            background-color: #f9f9f9;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            font-size: 48px;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: inline-block;
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            background-color: rgba(30, 136, 229, 0.1);
        }
        
        .value-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        /* 页脚 */
        footer {
            background-color: #316fff;
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
            padding: 0 15px;
        }
        
        .footer-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #fff;
        }
        
        .contact-info {
            margin-bottom: 15px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                flex-direction: column;
            }
            
            .nav-menu.active  {
                display: flex;
            }
            
            .nav-item {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .submenu {
                position: static;
                opacity: 1;
                visibility: visible;
                display: none;
                box-shadow: none;
                background-color: rgba(0, 0, 0, 0.1);
            }
            
            .nav-item:hover .submenu {
                display: block;
            }
            
            
            
            .core-values {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }
        }
        
        @media (max-width: 576px) {
            
            
            .about-content {
                padding: 20px;
            }
            
            .mission-vision {
                gap: 20px;
            }
            
            .mission, .vision {
                min-width: 100%;
            }
            
            .core-values {
                grid-template-columns: 1fr;
            }
        }