/* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            background-color: #f0f0f0;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* 页眉样式 */
        header {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: relative;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
	width: 476px;
	height: 60px;
        }

        .logo img {
	width: 476px;
	height: 60px;
        }

        .search-box {
            display: flex;
            margin-left: 20px;
        }

        .search-box input {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            outline: none;
        }

        .search-box button {
            padding: 8px 15px;
            background-color: #78b5df;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        /* 导航栏样式 */
        nav {
            background-color: #333333;
            padding: 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
            width: 100%;
        }

        .nav-list li {
            position: relative;
        }

        .nav-list li a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            transition: background-color 0.3s;
        }

        .nav-list li a:hover {
            background-color: #555555;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: white;
            transition: all 0.3s;
        }

        /* Banner 图样式 */
        .banner {
	width: 100%;
	height: 400px;
	overflow: hidden;
	border-radius: 8px;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
        }

        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 标语样式 */
        .slogan {
            text-align: center;
            padding: 30px 0;
            background-color: white;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .slogan2 h {
            font-size: 28px;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .slogan p {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 800px;
            margin: 0 auto;
        }

        /* 内容布局样式 */
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 40px 0;
        }

        .feature-box {
            flex-basis: calc(33.333% - 20px);
            background-color: white;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 8px;
           -shadow box: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
        }

        .feature-box h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .feature-box p {
            color: #7f8c8d;
        }

        .services {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 40px 0;
        }

        .service-box {
            flex-basis: calc(50% - 15px);
            display: flex;
            margin-bottom: 30px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .service-img {
            flex-basis: 40%;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-content {
            flex-basis: 60%;
            padding: 20px;
        }

        .service-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .service-content p {
            color: #7f8c8d;
            margin-bottom: 15px;
        }

        .service-content .btn {
            display: inline-block;
            padding: 8px 15px;
            background-color: #78b5df;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .service-content .btn:hover {
            background-color: #0056b3;
        }

        /* 页脚样式 */
        footer {
            background-color: #333333;
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
/*            justify-content: space-between; */
        }

        .footer-column {
/*            flex-basis: calc(40% - 30px); */
flex-basis: 50%; 
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #ecf0f1;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555555;
            margin-top: 20px;
        }

        .footer-bottom p {
            color: #bdc3c7;
            font-size: 14px;
        }

        /* 响应式样式 */
        @media screen and (max-width: 992px) {
            .feature-box {
                flex-basis: calc(50% - 15px);
            }
        }

        @media screen and (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .search-box {
                margin: 15px 0 0 0;
                width: 100%;
            }

            .search-box input {
                flex-grow: 1;
            }

            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
            }

            .nav-list.active {
                display: flex;
            }

            .hamburger {
                display: flex;
                margin-right: 20px;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .feature-box {
                flex-basis: 100%;
            }

            .service-box {
                flex-basis: 100%;
            }

            .service-img {
                flex-basis: 100%;
                height: 200px;
            }

            .service-content {
                flex-basis: 100%;
            }

            .footer-column {
                flex-basis: calc(50% - 15px);
            }
        }

        @media screen and (max-width: 576px) {
            .banner {
                height: 250px;
            }

            .slogan h2 {
                font-size: 24px;
            }

            .slogan p {
                font-size: 16px;
            }

            .footer-column {
                flex-basis: 100%;
            }
        }





/* 页面标题 */
        .page-header {
            background-color: white;
            padding: 40px 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .page-header h1 {
            font-size: 32px;
            color: #2c3e50;
        }

        /* 关于我们内容 */
        .gywm-about-section {
            background-color: white;
            padding: 50px 0;
            margin-bottom: 30px;
        }

        .gywm-section-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gywm-section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .gywm-section-title h2 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .gywm-section-title p {
            color: #7f8c8d;
            font-size: 18px;
        }

        /* 公司介绍 */
        .gywm-company-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }

        .gywm-company-text {
            flex-basis: 60%;
            padding-right: 30px;
        }

        .gywm-company-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        .gywm-company-image {
            flex-basis: 35%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .gywm-company-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 发展历程 */
        .gywm-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .gywm-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background-color: #78b5df;
            transform: translateX(-50%);
        }

        .gywm-timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .gywm-timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: white;
            border: 4px solid #78b5df;
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }

        .gywm-timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .gywm-timeline-item:nth-child(even) {
            left: 50%;
        }

        .gywm-timeline-item:nth-child(odd)::after {
            right: -17px;
        }

        .gywm-timeline-item:nth-child(even)::after {
            left: -17px;
        }

        .gywm-timeline-content {
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .gywm-timeline-content h3 {
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .gywm-timeline-content p {
            color: #555;
        }

        /* 团队介绍 */
        .gywm-team {
            text-align: center;
            margin-bottom: 50px;
        }

        .gywm-team-title {
            margin-bottom: 30px;
        }

        .gywm-team-title h2 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .gywm-team-title p {
            color: #7f8c8d;
            font-size: 18px;
        }

        .gywm-team-members {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .gywm-team-member {
            flex-basis: calc(33.333% - 30px);
            max-width: 350px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .gywm-team-member:hover {
            transform: translateY(-5px);
        }

        .gywm-member-image {
            height: 150px;
            overflow: hidden;
        }

        .gywm-member-image img {
            width: 350px;
            height: 150px;
            object-fit: cover;
        }

        .gywm-member-info {
            padding: 20px;
        }

        .gywm-member-info h3 {
            font-size: 20px;
            margin-bottom: 5px;
            color: #2c3e50;
        }

        .gywm-member-info p {
            color: #7f8c8d;
            margin-bottom: 10px;
        }

        .gywm-member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .gywm-member-social a {
            color: #78b5df;
            font-size: 18px;
            text-decoration: none;
        }

  

        /* 响应式样式 */
        @media screen and (max-width: 992px) {
            .gywm-company-text {
                flex-basis: 100%;
                padding-right: 0;
                margin-bottom: 30px;
            }

            .gywm-company-image {
                flex-basis: 100%;
            }

            .gywm-timeline::before {
                left: 31px;
            }

            .gywm-timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .gywm-timeline-item:nth-child(even) {
                left: 0;
            }

            .gywm-timeline-item:nth-child(odd)::after,
            .gywm-timeline-item:nth-child(even)::after {
                left: 15px;
            }

            .gywm-timeline-item:nth-child(even) .gywm-timeline-content {
                margin-left: 0;
            }
        }

        @media screen and (max-width: 768px) {
            .gywm-team-member {
                flex-basis: calc(50% - 30px);
            }
        }



/* 服务部分 */
         .fw-service-section {
            background-color: white;
            padding: 50px 0;
            margin-bottom: 30px;
        }

         .fw-section-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

         .fw-section-title {
            text-align: center;
            margin-bottom: 40px;
        }

         .fw-section-title h2 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

         .fw-section-title p {
            color: #7f8c8d;
            font-size: 18px;
        }

         /* 服务项目 */
         .fw-service-categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }

         .fw-service-category {
            flex-basis: calc(33.333% - 20px);
            margin-bottom: 30px;
            text-align: center;
            padding: 30px 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

         .fw-service-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

         .fw-service-category i {
            font-size: 40px;
            color: #78b5df;
            margin-bottom: 20px;
            display: block;
        }

         .fw-service-category h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #2c3e50;
        }

         .fw-service-category p {
            color: #555;
            font-size: 16px;
        }

         /* 服务详情 */
         .fw-service-details {
            margin-bottom: 50px;
         }

         .fw-service-detail {
            margin-bottom: 40px;
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
         }

         .fw-service-detail-header {
            padding: 20px 30px;
            background-color: #2c3e50;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
         }

         .fw-service-detail-header h3 {
            font-size: 22px;
         }

         .fw-service-detail-content {
            padding: 30px;
            display: none;
         }

         .fw-service-detail.active .fw-service-detail-content {
            display: block;
         }

         .fw-service-detail-content p {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
         }

         .fw-service-features {
            display: flex;
            flex-wrap: wrap;
            margin-top: 20px;
         }

         .fw-service-feature {
            flex-basis: calc(50% - 15px);
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
         }

         .fw-service-feature i {
            color: #78b5df;
            margin-right: 10px;
            font-size: 20px;
            margin-top: 5px;
         }

         .fw-service-feature-text h4 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 5px;
         }

         .fw-service-feature-text p {
            color: #555;
            font-size: 14px;
            margin-bottom: 0;
         }

         .fw-service-image {
            width: 100%;
            height: auto;
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
         }

         .fw-service-image img {
            width: 100%;
            height: auto;
            display: block;
         }

         .fw-service-btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: #78b5df;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            margin-top: 20px;
            transition: background-color 0.3s;
         }

         .fw-service-btn:hover {
            background-color: #0056b3;
         }

         /* 响应式样式 */
         @media screen and (max-width: 992px) {
            .fw-service-category {
                flex-basis: calc(50% - 15px);
            }
         }

         @media screen and (max-width: 768px) {
            .fw-service-category {
                flex-basis: 100%;
            }

            .fw-service-detail-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .fw-service-detail-header button {
                margin-top: 15px;
            }
         }
		 
		 
		     /* 解决方案部分 */
        .jjfa-solution-section {
            background-color: white;
            padding: 50px 0;
            margin-bottom: 30px;
        }

        .jjfa-section-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .jjfa-section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .jjfa-section-title h2 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .jjfa-section-title p {
            color: #7f8c8d;
            font-size: 18px;
        }

        /* 解决方案卡片 */
        .jjfa-solution-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }

        .jjfa-solution-card {
            flex-basis: calc(33.333% - 20px);
            margin-bottom: 30px;
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .jjfa-solution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .jjfa-solution-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .jjfa-solution-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jjfa-solution-info {
            padding: 25px;
        }

        .jjfa-solution-info h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .jjfa-solution-info p {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .jjfa-solution-link {
            display: inline-block;
            padding: 8px 20px;
            background-color: #78b5df;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .jjfa-solution-link:hover {
            background-color: #0056b3;
        }

        /* 解决方案详情 */
        .jjfa-solution-details {
            margin-bottom: 50px;
        }

        .jjfa-solution-detail {
            margin-bottom: 40px;
            background-color: #f9f9f9;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        .jjfa-solution-detail-header {
            padding: 20px 30px;
            background-color: #2c3e50;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .jjfa-solution-detail-header h3 {
            font-size: 22px;
        }

        .jjfa-solution-detail-content {
            padding: 30px;
            display: none;
        }

        .jjfa-solution-detail.active .jjfa-solution-detail-content {
            display: block;
        }

        .jjfa-solution-detail-content p {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .jjfa-solution-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }

        .jjfa-solution-feature {
            padding: 15px;
            background-color: white;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .jjfa-solution-feature h4 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .jjfa-solution-feature p {
            color: #555;
            font-size: 14px;
            margin-bottom: 0;
        }

        .jjfa-solution-image-large {
            width: 100%;
            height: auto;
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
        }

        .jjfa-solution-image-large img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 响应式样式 */
        @media screen and (max-width: 992px) {
            .jjfa-solution-card {
                flex-basis: calc(50% - 15px);
            }

            .jjfa-solution-features {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 768px) {
            .jjfa-solution-card {
                flex-basis: 100%;
            }

            .jjfa-solution-detail-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .jjfa-solution-detail-header button {
                margin-top: 15px;
            }
        }
		
		 /* 联系我们部分 */
        .lxwm-contact-section {
            background-color: white;
            padding: 50px 0;
        }

        .lxwm-section-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .lxwm-section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .lxwm-section-title h2 {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .lxwm-section-title p {
            color: #7f8c8d;
            font-size: 18px;
        }

        /* 联系方式 */
        .lxwm-contact-methods {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }

        .lxwm-contact-method {
            flex-basis: calc(33.333% - 20px);
            margin-bottom: 30px;
            text-align: center;
            padding: 30px 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .lxwm-contact-method:hover {
            transform: translateY(-5px);
        }

        .lxwm-contact-method i {
            font-size: 40px;
            color: #78b5df;
            margin-bottom: 20px;
            display: block;
        }

        .lxwm-contact-method h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .lxwm-contact-method p {
            color: #555;
        }

        /* 联系表单 */
        .lxwm-contact-form {
            max-width: 800px;
            margin: 0 auto;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            padding: 40px;
        }

        .lxwm-form-group {
            margin-bottom: 20px;
        }

        .lxwm-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #2c3e50;
        }

        .lxwm-form-group input,
        .lxwm-form-group textarea,
        .lxwm-form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }

        .lxwm-form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .lxwm-form-submit {
            background-color: #78b5df;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .lxwm-form-submit:hover {
            background-color: #0056b3;
        }



    
        /* 响应式样式 */
        @media screen and (max-width: 992px) {
            .lxwm-contact-method {
                flex-basis: calc(50% - 15px);
            }
        }

        @media screen and (max-width: 768px) {
            .lxwm-contact-method {
                flex-basis: 100%;
            }

            .lxwm-contact-form {
                padding: 20px;
            }
        }