   /* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
            box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            border-radius: 5px;
        }
        
        .logo h1 {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            letter-spacing: 1px;
        }
        
        /* 导航菜单 */
        .nav-menu {
            display: flex;
            align-items: center;
        }
        
        .nav-menu.active {
            display: block;
        }
        
        .nav-menu ul {
            display: flex;
        }
        
        .nav-menu li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-menu a {
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #3498db;
        }
        
        /* 汉堡菜单 */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 24px;
            color: #2c3e50;
        }
        
        /* 英雄区域 */
        .hero {
            padding-top: 80px;
            height: 80vh;
            position: relative;
        }
        
        .slide-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }
        
        .slide-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .slide-content h2 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .slide-content p {
            font-size: 18px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn:hover {
            background: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        .slide-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .slide-nav-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slide-nav-btn.active {
            background: white;
            transform: scale(1.3);
        }
        
        .slide-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 32px;
            color: white;
            background: rgba(0, 0, 0, 0.3);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }
        
        .slide-arrow:hover {
            background: rgba(0, 0, 0, 0.6);
        }
        
        .slide-prev {
            left: 20px;
        }
        
        .slide-next {
            right: 20px;
        }
        
        /* 关于我们部分 */
        .about {
            padding: 80px 0;
            background: #f9f9f9;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #3498db;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-img:hover img {
            transform: scale(1.05);
        }
        
        /* 服务部分 */
        .services {
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .service-item {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }
        
        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 50px;
            color: #3498db;
            margin-bottom: 20px;
        }
        
        .service-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .service-item p {
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        
        /* 每日新闻部分 */
        .daily-news {
            padding: 80px 0;
            background: #2c3e50;
            color: white;
        }
        
        .daily-news .section-title h2 {
            color: white;
        }
        
        .daily-news .section-title h2::after {
            background: #3498db;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .news-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .news-img {
            height: 200px;
            overflow: hidden;
        }
        
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-item:hover .news-img img {
            transform: scale(1.1);
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-date {
            font-size: 14px;
            color: #3498db;
            margin-bottom: 10px;
            display: block;
        }
        
        .news-title {
            font-size: 18px;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .news-excerpt {
            font-size: 14px;
            color: #bdc3c7;
            margin-bottom: 15px;
        }
        
        .news-link {
            color: #3498db;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        
        .news-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .news-link:hover i {
            transform: translateX(5px);
        }
        
        /* 页脚版权 */
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            text-align: center;
            padding: 20px 0;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
            }
            
            .nav-menu.active {
                transform: translateY(0);
            }
            
            .nav-menu ul {
                flex-direction: column;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .slide-content h2 {
                font-size: 36px;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .slide-content h2 {
                font-size: 28px;
            }
            
            .slide-content p {
                font-size: 16px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
        }
		
		
		
		       /* 关于我们部分 */
        .gywm-about {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        .gywm-container {
            display: flex;
            align-items: center;
            gap: 60px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .gywm-text {
            flex: 1;
            padding: 60px;
        }
        
        .gywm-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 15px;
        }
        
        .gywm-text h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #3498db;
        }
        
        .gywm-text p {
            margin-bottom: 25px;
            color: #555;
            line-height: 1.8;
        }
        
        .gywm-text ul {
            margin-bottom: 25px;
            padding-left: 20px;
        }
        
        .gywm-text ul li {
            margin-bottom: 10px;
            color: #555;
        }
        
        .gywm-text ul li i {
            color: #3498db;
            margin-right: 10px;
        }
        
        .gywm-btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .gywm-btn:hover {
            background: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        
        .gywm-img {
            flex: 1;
            position: relative;
            overflow: hidden;
        }
        
        .gywm-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gywm-img::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            background: rgba(52, 152, 219, 0.1);
            border-radius: 50%;
            z-index: 1;
        }
        
        .gywm-img::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
            background: rgba(52, 152, 219, 0.1);
            border-radius: 50%;
            z-index: 1;
        }
        
        .gywm-img:hover img {
            transform: scale(1.05);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .gywm-container {
                flex-direction: column;
            }
            
            .gywm-text {
                padding: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .gywm-text h2 {
                font-size: 28px;
            }
            
            .gywm-img {
                height: 300px;
            }
        }
		
		
	/* 服务项目部分 */
        .fw-services {
            padding: 100px 0;
            background-color: #f9f9f9;
        }
        
        .fw-section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .fw-section-title h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .fw-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #3498db;
        }
        
        .fw-section-title p {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .fw-services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .fw-service-item {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .fw-service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
        }
        
        .fw-service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .fw-service-icon {
            font-size: 40px;
            color: #3498db;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .fw-service-item:hover .fw-service-icon {
            transform: scale(1.1);
            color: #2ecc71;
        }
        
        .fw-service-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .fw-service-item p {
            color: #7f8c8d;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .fw-service-features {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .fw-service-features li {
            margin-bottom: 8px;
            padding-left: 25px;
            position: relative;
        }
        
        .fw-service-features li::before {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #3498db;
        }
        
        .fw-service-btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .fw-service-btn:hover {
            background: #2980b9;
        }
        
        .fw-service-highlight {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
        }
        
        .fw-service-highlight::before {
            background: linear-gradient(90deg, #2ecc71, #3498db);
        }
        
        .fw-service-highlight .fw-service-icon {
            color: white;
        }
        
        .fw-service-highlight h3 {
            color: white;
        }
        
        .fw-service-highlight p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .fw-service-highlight .fw-service-features li {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .fw-service-highlight .fw-service-features li::before {
            color: #2ecc71;
        }
        
        .fw-service-highlight .fw-service-btn {
            background: white;
            color: #3498db;
        }
        
        .fw-service-highlight .fw-service-btn:hover {
            background: rgba(255, 255, 255, 0.8);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .fw-services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .fw-services-grid {
                grid-template-columns: 1fr;
            }
            
            .fw-section-title h2 {
                font-size: 28px;
            }
            
            .fw-section-title p {
                font-size: 16px;
            }
        }
		
		
		
		
		      /* 每日新闻部分 */
        .xw-news {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .xw-section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .xw-section-title h2 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .xw-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #3498db;
        }
        
        .xw-section-title p {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .xw-news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .xw-news-item {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid #3498db;
        }
        
        .xw-news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left-color: #2ecc71;
        }
        
        .xw-news-date {
            font-size: 14px;
            color: #3498db;
            margin-bottom: 10px;
            display: block;
        }
        
        .xw-news-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 10px;
        }
        
        .xw-news-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: #3498db;
        }
        
        .xw-news-excerpt {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .xw-news-content {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .xw-news-tags {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .xw-news-tag {
            background: #f1f1f1;
            color: #555;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        
        .xw-news-tag:hover {
            background: #3498db;
            color: white;
        }
        
        .xw-news-meta {
            display: flex;
            justify-content: space-between;
            color: #999;
            font-size: 14px;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        
        .xw-news-author {
            display: flex;
            align-items: center;
        }
        
        .xw-news-author img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        .xw-news-comments a {
            color: #3498db;
            transition: color 0.3s ease;
        }
        
        .xw-news-comments a:hover {
            color: #2980b9;
        }
        
        .xw-news-btn {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .xw-news-btn:hover {
            background: #2980b9;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .xw-news-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .xw-section-title h2 {
                font-size: 28px;
            }
            
            .xw-section-title p {
                font-size: 16px;
            }
        }