       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            background-color: #fef8f0;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, #FF8C00 0%, #FF6A00 100%);
            color: white;
            padding: 25px 0;
            box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        header::before {
         
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .logo h1 {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .logo p {
            font-size: 16px;
            margin-top: 5px;
            opacity: 0.9;
        }
        
        .contact-info {
            text-align: right;
        }
        
        .contact-info .phone {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 5px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .contact-info .wechat {
            font-size: 16px;
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
        }
        
        /* 内容区样式 */
        .section {
            background-color: white;
            margin: 30px 0;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 5px solid #FF8C00;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            color: #FF8C00;
            border-bottom: 2px solid #FF8C00;
            padding-bottom: 12px;
            margin-bottom: 25px;
            font-size: 26px;
            display: flex;
            align-items: center;
        }
        
        .section-title::before {
        
            margin-right: 10px;
            font-size: 20px;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(to right, #FF8C00, #FF6A00);
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 30px;
            margin-top: 20px;
            transition: all 0.3s;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: linear-gradient(to right, #FF6A00, #FF8C00);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
        }
        
        /* 平台主要业务范围样式 */
        .business-scope {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .business-item {
            background: linear-gradient(135deg, #fff5e6 0%, #ffebcc 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #FF8C00;
            transition: all 0.3s;
        }
        
        .business-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(255, 140, 0, 0.2);
        }
        
        .business-item h3 {
            color: #FF8C00;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .business-item h3::before {
      
            margin-right: 8px;
            font-weight: bold;
        }
        
        /* 合作模式样式 */
        .cooperation-modes {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 25px;
        }
        
        .mode-card {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, #fff9f2 0%, #fff0e0 100%);
            padding: 25px;
            border-radius: 10px;
            border-top: 4px solid #FF8C00;
            transition: all 0.3s;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
        }
        
        .mode-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 140, 0, 0.15);
        }
        
        .mode-card h3 {
            color: #FF8C00;
            margin-bottom: 15px;
            font-size: 20px;
        }
        
        .mode-card ul {
            padding-left: 20px;
        }
        
        .mode-card li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .mode-card li::before {
      
            color: #FF8C00;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        
        /* 成功案例样式 */
        .success-cases {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .case-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border-top: 4px solid #FF8C00;
        }
        
        .case-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .case-header {
            background: linear-gradient(135deg, #FF8C00, #FF6A00);
            color: white;
            padding: 15px;
            text-align: center;
        }
        
        .case-body {
            padding: 20px;
        }
        
        .case-body h4 {
            color: #FF8C00;
            margin-bottom: 10px;
            font-size: 18px;
        }
        
        .case-type {
            display: inline-block;
            background: #FFE4CC;
            color: #FF8C00;
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 12px;
            margin-bottom: 10px;
        }
        
        /* 优势列表样式 */
        .advantages {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .advantage-item {
            background: linear-gradient(135deg, #fff9f2 0%, #fff0e0 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #FF8C00;
            transition: all 0.3s;
        }
        
        .advantage-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(255, 140, 0, 0.2);
        }
        
        .advantage-item h3 {
            color: #FF8C00;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .advantage-item h3::before {
      
            margin-right: 8px;
            font-size: 18px;
        }
        
        /* 流程样式 */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 25px;
        }
        
        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FF8C00, #FF6A00);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-weight: bold;
            font-size: 20px;
            box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
        }
        
        .process-step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 25px;
            right: -10px;
            width: 20px;
            height: 2px;
            background-color: #FF8C00;
        }
        
        /* 资格要求样式 */
        .qualifications {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 25px;
        }
        
        .qualification-card {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, #fff9f2 0%, #fff0e0 100%);
            padding: 25px;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .qualification-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(255, 140, 0, 0.2);
        }
        
        .qualification-card h3 {
            color: #FF8C00;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #FF8C00;
        }
        
        /* 链接样式 */
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 25px;
        }
        
        .links-grid a {
            display: block;
            padding: 12px 15px;
            background: linear-gradient(135deg, #fff5e6 0%, #ffebcc 100%);
            color: #333;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
            text-align: center;
            font-weight: bold;
        }
        
        .links-grid a:hover {
            background: linear-gradient(135deg, #FF8C00, #FF6A00);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(255, 107, 0, 0.3);
        }
        
        /* 联系方式样式 */
        .contact-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 25px;
        }
        
        .contact-method {
            flex: 1;
            min-width: 250px;
            background: linear-gradient(135deg, #fff9f2 0%, #fff0e0 100%);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .contact-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(255, 140, 0, 0.2);
        }
        
        .contact-method h3 {
            color: #FF8C00;
            margin-bottom: 15px;
        }
        
        .contact-method p.contact-highlight {
            font-size: 24px;
            font-weight: bold;
            color: #FF8C00;
            margin: 10px 0;
        }
        
        /* 页脚样式 */
        footer {
            background: linear-gradient(135deg, #333 0%, #222 100%);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            color: #FF8C00;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
            font-size: 18px;
        }
        
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
        }
        
        .footer-section a:hover {
            color: #FF8C00;
            padding-left: 5px;
        }
        
        .footer-section p {
            margin-bottom: 10px;
            line-height: 1.8;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
            color: #aaa;
        }
        
        .copyright a {
            color: #FF8C00;
            text-decoration: none;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 20px;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
            
            .section {
                padding: 25px 20px;
            }
        }