        /* 服务领域主区域 */
        .service-hero {
            height: 816px;
            display: flex;
            position: relative;
            overflow: hidden;
        }
        
        .service-hero-content {
            flex: 1;
            padding: 120px 300px 60px 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-hero-image {
            flex: 1;
            background-size: cover;
            background-position: center;
        }
        
        .service-title {
            font-size: 64px;
            font-weight: 300;
            margin-bottom: 30px;
        }
        
        .service-desc {
			font-size: 20px;
            margin-bottom: 20px;
            line-height: 24px;
        }
        
        .contact-info {
            /* margin-bottom: 30px; */
			font-size: 20px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #d8d8d8;
            color: #1e2b49;
            padding: 18px 15px;
            font-size: 16px;
            margin-top: 20px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
			width: 240px;
			height: 50px;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn:hover {
            background-color: #1e2b49;
			color: #fff;
        }
        
        .contact-item {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-item i {
            margin-right: 10px;
            width: 20px;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
            border-radius: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .contact-btn:hover {
            background-color: #fff;
            color: #222;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            right: 30px;
            font-size: 36px;
            color: #fff;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }
        
        /* 服务内容区域 */
        .service-section {
            display: flex;
            min-height: 813px;
        }
        
        .service-content {
	        width: 50%;		
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-image {
	        width: 50%;
            background-size: cover;
            background-position: center;
        }
        
        .service-section:nth-child(odd) {
            background-color: #222;
        }
        
        .service-section:nth-child(even) {
            background-color: #ffffff;
            flex-direction: row-reverse;
        }
        
        .service-section-title {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .service-section-desc {
			font-size: 18px;
			color: #333333;
            margin-bottom: 30px;
            line-height: 36px;
        }
        
        .view-more-btn {
            display: inline-block;
            padding: 13px 35px;
            background-color: #d7d7d7;
            color: #333;
			width: 210px;
            border: 1px solid #fff;
            border-radius: 0;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            cursor: pointer;
        }
        
        .view-more-btn:hover {
            background-color: #d2d2d2;
            color: #666;
        }
        
        .case-list {
            margin-top: 20px;
        }
        
        .case-item {
            margin-bottom: 15px;
			padding-bottom: 26px;
			border-bottom: solid 1px #d7d7d74d;
            display: flex;
            align-items: flex-start;
			font-size: 16px;
        }
        
        .case-item ii {
			background-color: #1e2b49;
			width: 8px;
			height: 8px;
            margin-right: 20px;
            margin-top: 10px;
        }
        .case-item iii {
			background-color: #ffffff;
			width: 8px;
			height: 8px;
            margin-right: 20px;
            margin-top: 10px;
        }
        
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .service-hero-content, .service-content {
			    width: 100%;
                padding: 120px 40px 40px;
            }
        }
        /* Responsive */
        @media (max-width: 992px) {
            .stats-container, .awards-container, .why-container {
                flex-direction: column;
            }
            
            .company-intro, .awards-intro, .stats-grid, .awards-slider, .why-title-container, .accordion-container {
                width: 100%;
            }
            
            .company-intro, .awards-intro, .why-title-container {
                margin-bottom: 40px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-links {
                margin-top: 30px;
                margin-left: 0;
            }
            
            .footer-qrcode {
                margin-top: 10px;
				margin-left: 1px;
            }
        }
        
        @media (max-width: 768px) {
		
        .service-hero {
            height: 816px;
			background-image: url('/template/pc/image/fwly.jpg');
            display: flex;
            position: relative;
            overflow: hidden;
        }
        .service-hero-content {
            flex: 1;
            padding: 120px 60px 60px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-hero-image {
            flex: 1;
            background-size: cover;
            background-position: center;
        }
        
        .service-title {
            font-size: 64px;
            font-weight: 400;
            margin-bottom: 30px;
        }
        
        .service-desc {
			font-size: 14px;
            margin-bottom: 30px;
            line-height: 30px;
        }
        
        .contact-info {
            margin-bottom: 30px;
			font-size: 16px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #d8d8d8;
            color: #1e2b49;
            padding: 18px 15px;
            border-radius: 3px;
            font-size: 16px;
            margin-top: 20px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
			width: 240px;
			height: 50px;
        }
        
        .btn i {
            margin-right: 8px;
        }
        
        .btn:hover {
            background-color: #1e2b49;
            color: #fff;
        }
        
        .contact-item {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-item i {
            margin-right: 10px;
            width: 20px;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
            border-radius: 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .contact-btn:hover {
            background-color: #fff;
            color: #222;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 30px;
            right: 30px;
            font-size: 36px;
            color: #fff;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }
        
        /* 服务内容区域 */
        .service-section {
            display: flex;
            min-height: 813px;
        }
        
        .service-content {
	        width: 50%;		
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-image {
	        width: 50%;
            background-size: cover;
            background-position: center;
        }
        
        .service-section:nth-child(odd) {
            background-color: #222;
        }
        
        .service-section:nth-child(even) {
            background-color: #ffffff;
            flex-direction: row-reverse;
        }
        
        .service-section-title {
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 20px;
        }
        
        .service-section-desc {
			font-size: 18px;
			color: #333333;
            margin-bottom: 30px;
            line-height: 36px;
        }
        
        .view-more-btn {
            display: inline-block;
            padding: 13px 40px;
            background-color: #d7d7d7;
            color: #333;
			width: 180px;
            border: 1px solid #fff;
            border-radius: 0;
            transition: all 0.3s ease;
            margin-bottom: 30px;
            cursor: pointer;
        }
        
        .view-more-btn:hover {
            background-color: #d2d2d2;
            color: #666;
        }
        
        .case-list {
            margin-top: 20px;
        }
        
        .case-item {
            margin-bottom: 15px;
			padding-bottom: 26px;
			border-bottom: solid 1px #d7d7d74d;
            display: flex;
            align-items: flex-start;
			font-size: 16px;
        }
        
        .case-item ii {
			background-color: #1e2b49;
			width: 8px;
			height: 8px;
            margin-right: 20px;
            margin-top: 10px;
        }
        .case-item iii {
			background-color: #ffffff;
			width: 8px;
			height: 8px;
            margin-right: 20px;
            margin-top: 10px;
        }
		
            .nav-list {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            .language-selector {
                display: none;
            }
           
            .service-hero, .service-section {
                flex-direction: column;
                min-height: auto;
            }
            
            .service-hero-image, .service-image {
                height: 300px;
				width:100%;
            }
            
            .service-hero-content, .service-content {
                padding: 50px 30px 40px;
				width: 100%;
            }
            
            .service-section:nth-child(even) {
                flex-direction: column;
            }
            
            .office-item {
                width: 100%;
            }

            .job-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .job-toggle {
                position: absolute;
                top: 15px;
                right: 15px;
            }			

        }
        
        @media (max-width: 576px) {
            .service-title {
                font-size: 24px;
            }
            
            .service-section-title {
                font-size: 24px;
            }
            
            .service-hero-content {
			    width: 100%;
                padding: 200px 20px 30px;
            }
            .service-content {
			    width: 100%;
                padding: 50px 20px 30px;
            }
            .footer-column {
                width: 50%;
            }
            
            .footer-nav-column {
                flex: 0 0 100%;
            }
        }
