  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .fw-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 - 保留渐变 */
        .fw-header {
            background: linear-gradient(87deg, #152fd7 0%, #e405a4 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .fw-header::before {
            content: '';
            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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center bottom;
        }
        
        .fw-header .fw-container {
            position: relative;
            z-index: 1;
        }
        
        .fw-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: aliceblue;
        }
        
        .fw-header p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        /* 服务导航 */
        .fw-service-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .fw-service-nav a {
            /* color: white; */
            text-decoration: none;
            margin: 0 15px 10px;
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .fw-service-nav a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        /* 服务内容区域 */
        .fw-services-section {
            padding: 80px 0;
        }
        
        .fw-section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .fw-section-title h2 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .fw-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, #152fd7, #e405a4);
        }
        
        .fw-section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .fw-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .fw-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .fw-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .fw-service-icon {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0 10px;
        }
        
        /* 图标样式 - 使用img标签 */
        .fw-service-icon img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }
        
        .fw-service-content {
            padding: 0 25px 25px;
            text-align: center;
        }
        
        .fw-service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        .fw-service-price {
            background: linear-gradient(to right, #152fd7, #e405a4);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            display: inline-block;
            margin: 15px 0;
            font-size: 1.2rem;
        }
        
        .fw-service-content ul {
            list-style-type: none;
            text-align: left;
            margin-top: 15px;
        }
        
        .fw-service-content li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
            color: #555;
        }
        
        .fw-service-content li:before {
            content: "•";
            color: #e405a4;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* 温馨提示区域 */
        .fw-note-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-top: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 5px solid #e405a4;
        }
        
        .fw-note-section h3 {
            color: #e405a4;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .fw-note-section p {
            color: #666;
            line-height: 1.8;
        }
        
        /* 页脚 */
        .fw-footer {
            background: #333;
            color: #fff;
            padding: 40px 0;
            text-align: center;
        }
        
        .fw-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .fw-footer-links {
            display: flex;
            margin: 20px 0;
        }
        
        .fw-footer-links a {
            color: #fff;
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .fw-footer-links a:hover {
            color: #e405a4;
        }
        
        .fw-copyright {
            margin-top: 20px;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .fw-services-grid {
                grid-template-columns: 1fr;
            }
            
            .fw-header h1 {
                font-size: 2.2rem;
            }
            
            .fw-header p {
                font-size: 1.1rem;
            }
            
            .fw-service-nav a {
                margin: 0 8px 10px;
                padding: 6px 12px;
                font-size: 0.9rem;
            }
        }
         /* 售后服务-草 */
         .sh-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        .sh-header {
            background: linear-gradient(87deg, #152fd7 0%, #e405a4 100%);
            color: white;
            padding: 60px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .sh-header::before {
            content: '';
            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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center bottom;
        }
        
        .sh-header .sh-container {
            position: relative;
            z-index: 1;
        }
        
        .sh-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: aliceblue;
        }
        
        .sh-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 主要内容区域 */
        .sh-main-section {
            padding: 60px 0;
        }
        
        .sh-section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .sh-section-title h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .sh-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #152fd7, #e405a4);
        }
        
        /* 服务卡片 */
        .sh-service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .sh-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .sh-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .sh-card-header {
            background: linear-gradient(to right, #152fd7, #e405a4);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .sh-card-header h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
              color: aliceblue;
        }
        
        .sh-card-content {
            padding: 25px;
        }
        
        .sh-card-content ul {
            list-style-type: none;
        }
        
        .sh-card-content li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .sh-card-content li:before {
            content: "•";
            color: #e405a4;
            font-weight: bold;
            position: absolute;
            left: 10px;
        }
        
        .sh-price-tag {
            background: linear-gradient(to right, #152fd7, #e405a4);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
            margin-top: 10px;
            font-size: 1rem;
        }
        
        /* 页脚 */
        .sh-footer {
            background: #333;
            color: #fff;
            padding: 30px 0;
            text-align: center;
        }
        
        .sh-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .sh-footer-links {
            display: flex;
            margin: 15px 0;
        }
        
        .sh-footer-links a {
            color: #fff;
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .sh-footer-links a:hover {
            color: #e405a4;
        }
        
        .sh-copyright {
            margin-top: 15px;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .sh-service-cards {
                grid-template-columns: 1fr;
            }
            
            .sh-header h1 {
                font-size: 2rem;
            }
            
            .sh-header p {
                font-size: 1rem;
            }
        }
         /* 关于我们 */
        @media (max-width: 500px) {
            .sh-service-cards {
                grid-template-columns: 1fr;
            }
            
            .sh-card-content {
                padding: 20px;
            }
        }
        
         .gy-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部样式 */
        .gy-header {
            background: linear-gradient(87deg, #152fd7 0%, #e405a4 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .gy-header::before {
            content: '';
            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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center bottom;
        }
        
        .gy-header .gy-container {
            position: relative;
            z-index: 1;
        }
        
        .gy-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: aliceblue;
        }
        
        .gy-header p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 主要内容区域 */
        .gy-main-section {
            padding: 80px 0;
        }
        
        .gy-section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .gy-section-title h2 {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .gy-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, #152fd7, #e405a4);
        }
        
        .gy-section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 使命部分 */
        .gy-mission {
            background: white;
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .gy-mission h3 {
            font-size: 1.8rem;
            color: #152fd7;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .gy-mission p {
            margin-bottom: 20px;
            color: #555;
        }
        
        /* 服务部分 */
        .gy-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .gy-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            padding: 30px;
            text-align: center;
        }
        
        .gy-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .gy-service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: linear-gradient(to right, #152fd7, #e405a4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }
        
        .gy-service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        .gy-service-card p {
            color: #666;
        }
        
        /* 核心价值部分 */
        .gy-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .gy-value-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            text-align: center;
            border-top: 4px solid #152fd7;
        }
        
        .gy-value-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        .gy-value-card p {
            color: #666;
        }
        
        /* 承诺部分 */
        .gy-commitment {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            border-left: 5px solid #e405a4;
        }
        
        .gy-commitment h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .gy-commitment p {
            color: #555;
            margin-bottom: 20px;
        }
        
        .gy-commitment-quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #152fd7;
            margin: 30px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 5px;
        }
        
        /* 页脚 */
        .gy-footer {
            background: #333;
            color: #fff;
            padding: 40px 0;
            text-align: center;
        }
        
        .gy-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .gy-footer-links {
            display: flex;
            margin: 20px 0;
        }
        
        .gy-footer-links a {
            color: #fff;
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .gy-footer-links a:hover {
            color: #e405a4;
        }
        
        .gy-copyright {
            margin-top: 20px;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .gy-services, .gy-values {
                grid-template-columns: 1fr;
            }
            
            .gy-header h1 {
                font-size: 2.2rem;
            }
            
            .gy-header p {
                font-size: 1.1rem;
            }
            
            .gy-mission, .gy-commitment {
                padding: 30px 20px;
            }
        }
          /* 网站侧边栏漂浮部分 */
           /* 侧边栏样式 */
    .cb-rollbar {
            position: fixed;
            right: 20px;
            bottom: 120px;
            z-index: 9999;
        }
        
        .cb-floatbar {
            margin-bottom: 15px;
            text-align: center;
        }
        
        .cb-floatbar a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(87deg, #152fd7 0%, #e405a4 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            padding: 5px;
        }
        
        .cb-floatbar a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .cb-floatbar-text {
            font-size: 12px;
            margin-top: 5px;
            display: block;
            color: white;
        }
        
        .cb-actions {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .cb-contbar {
            margin-bottom: 10px;
            position: relative;
        }
        
        .cb-contbar a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: white;
            color: #333;
            text-decoration: none;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 5px;
        }
        
        .cb-contbar a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cb-contbar.cb-wx a {
            color: #07c160;
        }
        
        .cb-contbar.cb-qq a {
            color: #12b7f5;
        }
        
        .cb-contbar.cb-gotop a {
            color: #666;
        }
        
        .cb-icon-img {
            width: 24px;
            height: 24px;
            margin-bottom: 5px;
        }
        
        .cb-contbar-text {
            font-size: 12px;
            display: block;
        }
        
        .cb-rtbar_shwx {
            position: absolute;
            right: 70px;
            top: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 15px;
            display: none;
            z-index: 10000;
            width: 150px;
        }
        
        .cb-rtbar_qrimg {
            text-align: center;
        }
        
        .cb-rtbar_qrimg img {
            width: 120px;
            height: 120px;
            display: block;
            margin: 0 auto 8px;
            border: 1px solid #eee;
        }
        
        .cb-rtbar_qrimg span {
            font-size: 14px;
            color: #666;
            display: block;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .cb-rollbar {
                right: 10px;
                bottom: 10px;
            }
            
            .cb-floatbar a {
                width: 60px;
                height: 60px;
            }
            
            .cb-contbar a {
                width: 50px;
                height: 50px;
            }
            
            .cb-rtbar_shwx {
                right: 60px;
                width: 130px;
            }
            
            .cb-rtbar_qrimg img {
                width: 100px;
                height: 100px;
            }
        }
        
        
        
        