 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
           
        }
        
        .container {
            max-width: 1200px;
            margin: 20px auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .banner {
			height: 560px;
			background: url(1.png) center no-repeat;
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: center;
			color: white;
			
        }
        
        h1 {
            font-size: 44px;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .subtitle {
            font-size: 20px;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .service-tabs {
            display: flex;
            background: #f0f4f9;
            padding: 0;
            overflow-x: auto;
            scrollbar-width: none;
        }
        
        .service-tabs::-webkit-scrollbar {
            display: none;
        }
        
        .tab {
            flex: 1;
            min-width: 0;
            padding: 20px 15px;
            cursor: pointer;
            border-bottom: 4px solid transparent;
            transition: all 0.3s ease;
            font-weight: 700;
            color: #555;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-align: center;
            font-size: 22px;
            height: 100px;
            white-space: normal;
            word-break: break-word;
            line-height: 1.3;
        }
        
        .tab i {
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .tab:hover {
            color: #1a6be3;
            background: rgba(255, 255, 255, 0.5);
        }
        
        .tab.active {
            color: #1a6be3;
            border-bottom: 4px solid #1a6be3;
            background: white;
        }
        
        .content-container {
            padding: 40px;
            min-height: 500px;
        }
        
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .tab-content.active {
            display: block;
        }
        
        .content-header {
            margin-bottom: 30px;
        }
        
        .content-header h2 {
            font-size: 35px;
            color: #1a6be3;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .content-header p {
            color: #666;
            font-size: 18px;
            max-width: 800px;
            line-height: 1.8;
        }
        
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .info-table th, .info-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .info-table th {
            background-color: #f8fafd;
            font-weight: 600;
            width: 30%;
            color: #444;
            font-size: 17px;
        }
        
        .info-table tr:last-child td {
            border-bottom: none;
        }
        
        .info-table tr:hover {
            background-color: #f9fbfe;
        }
        
        .process-btn {
            display: block;
            margin: 40px auto 20px;
            padding: 16px 50px;
            background: linear-gradient(135deg, #1a6be3 0%, #0a4db9 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 19px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(26, 107, 227, 0.3);
        }
        
        .process-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(26, 107, 227, 0.4);
        }
        
        .process-btn:active {
            transform: translateY(-1px);
        }
        
        .footer {
			background: #0a4c9a !important;
            text-align: center;
            padding: 30px;
            color: #FFF;
            font-size: 12px;
			line-height:23px;
            border-top: 1px solid #eee;
            background: #f9fbfe;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 35px;
            }
            
            .subtitle {
                font-size: 17px;
            }
            
            .tab {
                padding: 15px 10px;
                font-size: 18px;
                height: 90px;
            }
            
            .tab i {
                font-size: 20px;
            }
            
            .content-container {
                padding: 25px;
            }
            
            .content-header h2 {
                font-size: 28px;
            }
            
            .content-header p {
                font-size: 16px;
            }
            
            .info-table th, .info-table td {
                padding: 12px 15px;
                display: block;
                width: 100%;
            }
            
            .info-table th {
                background-color: #f0f4f9;
                border-bottom: none;
                font-size: 16px;
            }
            
            .process-btn {
                padding: 14px 35px;
                font-size: 17px;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 28px;
            }
            
            .tab {
                padding: 12px 5px;
                font-size: 16px;
                height: 85px;
            }
            
            .tab i {
                font-size: 18px;
            }
        }
    </style>