
        :root {
            --primary-color: #1976d2;
            --secondary-color: #2196f3;
            --accent-color: #64b5f6;
            --dark-color: #333;
            --light-color: #f5f9ff;
            --white: #fff;
            --gray: #e0e0e0;
            --text-gray: #757575;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }
        
        body {
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 - 修改为左侧Logo右侧导航 */
        header {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 40px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 26px;
            font-weight: bold;
            color: var(--white);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 16px;
            padding: 8px 0;
            transition: all 0.3s;
            display: inline-block;
        }
        
        nav ul li a:hover {
            transform: translateY(-2px);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--white);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        /* 轮播图 */
        .slider {
            position: relative;
            height: 250px;
            overflow: hidden;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            width: 80%;
        }
        
        .slide-content h2 {
            font-size: 42px;
            margin-bottom: 20px;
            animation: fadeInUp 1s;
        }
        
        .slide-content p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 1s 0.3s forwards;
            opacity: 0;
        }
        
        .slide-btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s;
            animation: fadeInUp 1s 0.6s forwards;
            opacity: 0;
        }
        
        .slide-btn:hover {
            background-color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        /* 主要内容区 */
        .main-content {
            margin: 40px 0;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .section-title {
            font-size: 28px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        .more-btn {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .more-btn i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .more-btn:hover {
            color: var(--secondary-color);
        }
        
        .more-btn:hover i {
            transform: translateX(5px);
        }
        
        /* 表格样式 */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 40px;
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .info-table th, .info-table td {
            border: 1px solid var(--gray);
            padding: 15px;
            text-align: left;
        }
        
        .info-table th {
            background-color: var(--primary-color);
            color: var(--white);
            font-weight: bold;
        }
        
        .info-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .info-table tr:hover {
            background-color: #f1f1f1;
        }
        
        .view-btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 6px 18px;
            border-radius: 4px;
            text-decoration: none;
           
            transition: all 0.3s;
        }
        
        .view-btn:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        /* 分割图片 */
        .divider-image {
            height: 130px;
            background-image: url('../images/ban1.jpg');
            background-size: cover;
            background-position: center;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .divider-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(25, 118, 210, 0.7), rgba(33, 150, 243, 0.7));
            border-radius: 8px;
        }
		
		
		
		
		
		
		.divider-image2 {
            height: 130px;
            background-image: url('../images/ban2.jpg');
            background-size: cover;
            background-position: center;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .divider-image2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(25, 118, 210, 0.7), rgba(33, 150, 243, 0.7));
            border-radius: 8px;
        }
		
		
		
		.divider-image3 {
            height: 130px;
            background-image: url('../images/ban3.jpg');
            background-size: cover;
            background-position: center;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .divider-image3::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(25, 118, 210, 0.7), rgba(33, 150, 243, 0.7));
            border-radius: 8px;
        }
		
		
		
		
		
        
        .divider-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: var(--white);
            width: 80%;
        }
        
        .divider-content h3 {
            font-size: 28px;
            margin-bottom: 15px;
        }
        
        .divider-content p {
            font-size: 16px;
            margin-bottom: 20px;
        }
		
		
		
		
        
        /* 页脚样式 */
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bdbdbd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #bdbdbd;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: var(--white);
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #424242;
            color: #9e9e9e;
            font-size: 14px;
        }
        
        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .nav-container {
                flex-direction: column;
            }
            
            .nav-left, .nav-right {
                width: 100%;
                justify-content: center;
                margin: 10px 0;
            }
            
            .nav-logo {
                margin: 15px 0;
            }
            
            .slider {
                height: 300px;
            }
            
            .slide-content h2 {
                font-size: 32px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
        }
        
        @media (max-width: 768px) {
            .slide-content h2 {
                font-size: 28px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .info-table {
                display: block;
                overflow-x: auto;
            }
        }
   