        /* 主色调定义 */
        :root {
            --primary-color: #03a882;
            --primary-light: #e6f7e9;
            --primary-dark: #028a6d;
            --text-main: #333;
            --text-secondary: #666;
            --white: #fff;
            --gray-light: #f8f8f8;
            --gray-border: #eee;
            --shadow: 0 4px 12px rgba(3, 168, 130, 0.15);
            --transition: all 0.4s ease;
        }



        .hero {
            background: linear-gradient(rgb(186 211 205 / 90%), rgb(167 185 181 / 80%)), url(../images/tbxm.jpg) center / cover no-repeat;
        }

   
   /* 滚动动画 */
        .fade-in {
            opacity: 1;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        /* 头部区域 */
        .header {
            background: linear-gradient(135deg, #03a882 0%, #028c6b 100%);
            color: white;
            padding: 3rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .header::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
            animation: bgMove 20s linear infinite;
        }
        @keyframes bgMove {
            0% { transform: translate(0, 0); }
            50% { transform: translate(10px, 10px); }
            100% { transform: translate(0, 0); }
        }
        .header h1 {
            font-size: 2rem;
            margin-bottom: 0.8rem;
            position: relative;
            z-index: 1;
            animation: titleFade 1.5s ease;
        }
        .header p {
            font-size: 1.1rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: subtitleFade 2s ease;
        }
        @keyframes titleFade {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes subtitleFade {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        /* 核心内容区 */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
        }
        /* 通用标题样式 */
        .section-title {
            color: #03a882;
            font-size: 1.8rem;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }
        .section-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background-color: #03a882;
            margin: 0.8rem auto 0;
            border-radius: 2px;
            transition: width 0.5s ease;
        }
        .section-title:hover::after {
            width: 120px;
        }
        /* 引言 */
        .intro {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: #555;
            text-align: center;
            line-height: 1.8;
        }
        /* 数据概览 */
        .stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .stat-item {
            text-align: center;
            padding: 1rem;
            min-width: 150px;
        }
        .stat-item .number {
            font-size: 2.5rem;
            color: #03a882;
            font-weight: bold;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }
        .stat-item .number::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #03a882;
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        .stat-item:hover .number::after {
            transform: scaleX(1);
        }
        .stat-item .label {
            color: #666;
            font-size: 1rem;
        }
        /* 服务列表 */
        .services {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .services .service-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-top: 1.5rem;
        }
        .services .service-item {
            padding: 1.5rem;
            border: 1px solid #e8f8f5;
            border-radius: 8px;
            background-color: #f9fefd;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .services .service-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: #03a882;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        .services .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(3,168,130,0.1);
            border-color: #03a882;
        }
        .services .service-item:hover::before {
            transform: scaleY(1);
        }
        .services .service-item h3 {
            color: #03a882;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }
        .services .service-item p {
            color: #666;
            font-size: 1rem;
        }
        /* 合作优势 */
        .advantages {
            margin-bottom: 3rem;
        }
        .advantages-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .advantage-item {
            background-color: #f7f7f7;
            padding: 2rem 1.5rem;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }
        .advantage-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(3,168,130,0.1);
        }
        .advantage-item .icon {
            font-size: 2.5rem;
            color: #03a882;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        .advantage-item:hover .icon {
            transform: rotate(10deg);
        }
        .advantage-item h3 {
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        .advantage-item p {
            color: #666;
            font-size: 0.95rem;
        }
        /* 成功案例 */
        .cases {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .cases-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .case-item {
            border-left: 3px solid #03a882;
            padding-left: 1.5rem;
            transition: all 0.3s ease;
        }
        .case-item:hover {
            border-left-color: #028c6b;
            padding-left: 2rem;
        }
        .case-item h4 {
            color: #333;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .case-item p {
            color: #666;
            font-size: 0.95rem;
        }
        /* 合作流程 */
        .process {
            margin-bottom: 3rem;
        }
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
        }
        .process-step {
            flex: 1;
            min-width: 180px;
            text-align: center;
            position: relative;
            padding: 0 1rem;
        }
        .process-step:not(:last-child)::after {
            content: "→";
            color: #03a882;
            font-size: 1.5rem;
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            animation: arrowPulse 2s infinite;
        }
        @keyframes arrowPulse {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }
        .process-step .step-number {
            width: 40px;
            height: 40px;
            line-height: 40px;
            background-color: #03a882;
            color: white;
            border-radius: 50%;
            margin: 0 auto 1rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .process-step:hover .step-number {
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(3,168,130,0.5);
        }
        .process-step h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .process-step p {
            color: #666;
            font-size: 0.9rem;
        }
        /* 强调区域 */
        .highlight {
            background: linear-gradient(135deg, #03a882 0%, #028c6b 100%);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 3rem;
            box-shadow: 0 8px 20px rgba(3,168,130,0.2);
            position: relative;
            overflow: hidden;
        }
        .highlight::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: highlightGlow 8s linear infinite;
        }
        @keyframes highlightGlow {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .highlight-text {
            position: relative;
            z-index: 1;
        }
        /* 常见问题 - 折叠效果 */
        .faq {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 1rem;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            color: #03a882;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .faq-answer {
            color: #666;
            font-size: 0.95rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            padding-left: 1rem;
        }
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
            padding-top: 0.5rem;
        }
        /* 客户评价 */
        .testimonials {
            background-color: #f9fefd;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #e8f8f5;
            margin-bottom: 3rem;
        }
        .testimonials-list {
            grid-template-columns: repeat(3, 1fr);
            display: grid;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        .testimonial-item {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            max-width: 300px;
            position: relative;
        }
        .testimonial-item::before {
            content: "“";
            font-size: 3rem;
            color: #03a882;
            opacity: 0.2;
            position: absolute;
            top: -10px;
            left: 10px;
        }
        .testimonial-text {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        .testimonial-author {
            color: #333;
            font-weight: bold;
            font-size: 0.9rem;
            text-align: right;
        }
        .testimonial-author::before {
            content: "- ";
            color: #03a882;
        }
        /* 联系方式 */
        .contact {
            background-color: #f9fefd;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #e8f8f5;
            margin-bottom: 3rem;
            text-align: center;
        }
        .contact p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #555;
        }
        .contact .phone {
            color: #03a882;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            display: block;
            transition: all 0.3s ease;
        }
        .contact .phone:hover {
            transform: scale(1.05);
            text-shadow: 0 0 5px rgba(3,168,130,0.3);
        }
        .contact-social {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }
        .contact-social a {
            color: #03a882;
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }
        .contact-social a:hover {
            color: #028c6b;
        }
        /* 行动按钮 */
        .cta {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        .cta button {
            background: linear-gradient(135deg, #03a882 0%, #028c6b 100%);
            color: white;
            border: none;
            padding: 1.2rem 4rem;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(3,168,130,0.3);
            position: relative;
            overflow: hidden;
        }
        .cta button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        .cta button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(3,168,130,0.4);
        }
        .cta button:hover::before {
            left: 100%;
        }
        /* 固定咨询按钮 */
        .fixed-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }
        .fixed-cta button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #03a882;
            color: white;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(3,168,130,0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .fixed-cta button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(3,168,130,0.6);
        }
    
    
        /* 响应式适配 */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.6rem;
            }
            .container {
                padding: 2rem 1rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .services {
                padding: 1.5rem;
            }
            .cases {
                padding: 1.5rem;
            }
            .faq {
                padding: 1.5rem;
            }
            .contact {
                padding: 1.5rem;
            }
            .highlight {
                font-size: 1.1rem;
                padding: 1.5rem;
            }
            .cta button {
                padding: 1rem 3rem;
                font-size: 1.1rem;
            }
            .process-step:not(:last-child)::after {
                display: none;
            }
            .fixed-cta {
                bottom: 20px;
                right: 20px;
            }
            .fixed-cta button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

        
 .breadcrumbS{margin-top: 0px;}
 .ksC{margin-top: 20px;border-radius: 16px;box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);}