
        /* 全局样式 */
        :root {
            --groot-ui-color-gray-1: #ffffff;
            --groot-ui-color-gray-2: #f8f8f8;
            --groot-ui-color-gray-3: #f5f5f5;
            --groot-ui-color-gray-4: #eeeeee;
            --groot-ui-color-gray-5: #d8d8d8;
            --groot-ui-color-gray-6: #cccccc;
            --groot-ui-color-gray-7: #999999;
            --groot-ui-color-gray-8: #666666;
            --groot-ui-color-gray-9: #333333;
            --groot-ui-color-gray-10: #000000;
            --groot-ui-color-brand-1: #fff7f2;
            --groot-ui-color-brand-2: #ffe5d6;
            --groot-ui-color-brand-3: #ffcaad;
            --groot-ui-color-brand-4: #ffad85;
            --groot-ui-color-brand-5: #ff8f5c;
            --groot-ui-color-brand-6: #ff7033;
            --groot-ui-color-brand-7: #d95521;
            --groot-ui-color-brand-8: #b33d12;
            --groot-ui-color-brand-9: #8c2807;
            --groot-ui-color-brand-10: #661800;
            
            --groot-ui-rpx: 0.0625em;
            --groot-ui-font-size-l: 16px;
            --groot-ui-font-size-m: 14px;
            --groot-ui-font-size-s: 12px;
            --groot-ui-spacing-unit-4: 1.25em;
            --groot-ui-spacing-unit-5: 1.875em;
            --groot-ui-spacing-unit-6: 2.5em;
            --groot-ui-spacing-unit-8: 3.75em;
            
            --groot-ui-font-weight-1: 400;
            --groot-ui-font-weight-2: 500;
            --groot-ui-font-weight-3: 600;
            
            --groot-ui-border-radius-1: 2px;
            --groot-ui-border-radius-2: 4px;
            --groot-ui-shadow-2: 0 2px 4px 0 rgba(0, 0, 0, 0.04);
            
            --groot-ui-page-min-width: 1200px;
        }
        
        body {
            background-color: var(--groot-ui-color-gray-1);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            word-wrap: break-word;
            padding: 0;
            margin: 0;
            padding-top: 80px;
        }
        
        @media screen and (min-resolution: 2dppx) {
            html {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }
        }
        
        /* 布局样式 */
        .page-wrapper {
            min-width: 1190px;
        }
        
        .container {
            width: 1190px;
            margin: 0 auto;
        }
        
        .full-width {
            width: 100%;
        }
        
        /* 限制最大宽度的容器 - 保持原功能 */
        .max-width-container {
            max-width: 88.75em; /* 1420px */
            margin: 0 auto;
            width: 100%;
                background: #f5f6fb;
        }
        
        .row {
            position: relative;
            height: auto;
            display: block;
            box-sizing: border-box;
            margin: 0 auto;
        }
        
        .row:after {
            content: "";
            display: table;
            clear: both;
        }
        
        .col-24 {
            width: 100%;
            float: left;
            position: relative;
            min-height: 1px;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 固定定位容器 */
        .fixed-widgets {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 0;
        }
        
        /* 轮播图最大宽度限制 - 保持原功能 */
        .carousel-container.max-width-carousel {
            max-width: 88.75em;
            margin: 0 auto;
        }
        
        /* 图片模块最大宽度限制 - 保持原功能 */
        .gt-jmy-pc-image-single-container.groot-image-adaptive-template {
            max-width: 88.75em;
            margin: 0 auto;
        }


        /* 头部样式 */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background-color: #ffffff;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        }
        
        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            margin: 0 auto;
        }
        
        .header-left {
            display: flex;
            align-items: center;
            max-width: 300px;
            white-space: nowrap;
        }
        
        .logo-image img {
            height: 50px;
            width: auto;
        }
        
        .guarantee-badge {
            margin-left: 9px;
            margin-right: 15px;
            position: relative;
        }
        
        .guarantee-icon {
            width: 67px;
            height: 24px;
            background: url(https://fe-resource.cdn.bcebos.com/groot/mip-sjh-merchant-info/icon-safeguard.svg) no-repeat center/cover;
        }
        
        .guarantee-tooltip {
            display: none;
            position: absolute;
            top: 20px;
            width: 216px;
            padding: 8px 10px;
            background: #fff;
            border: 1px solid #eee;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-radius: 2px;
            font-size: 12px;
            white-space: normal;
            z-index: 10;
        }
        
        .guarantee-badge:hover .guarantee-tooltip {
            display: block;
        }
        
        .guarantee-link {
            color: #ff7033;
            cursor: pointer;
        }
        
        .site-title {
            margin-left: 5px;
            color: #333;
            font-weight: 500;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 16px;
        }
        
        .header-right {
            display: flex;
            align-items: center;
        }
        
        .main-nav {
            display: flex;
            align-items: center;
            height: 80px;
            line-height: 80px;
            font-size: 16px;
        }
        
        .nav-item {
            position: relative;
            margin: 0 10px;
            cursor: pointer;
        }
        
        .nav-link {
            color: #333;
            font-size: 16px;
            padding: 0 5px;
        }
        
        .nav-item:hover .nav-link {
            color: #ff7033;
        }
        
        .has-dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 60px;
            left: 0;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
            min-width: 120px;
            z-index: 10;
        }
        
        .dropdown-item {
            padding: 10px 15px;
            white-space: nowrap;
            color: #333;
            font-size: 14px;
            line-height: 20px;
        }
        
        .dropdown-item:hover {
            background: #f8f8f8;
            color: #ff7033;
        }
        
        .header-button {
            margin-left: 30px;
        }
        
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #ff7033;
            color: #fff;
            border: none;
            border-radius: 2px;
            padding: 0 20px;
            height: 40px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
            min-width: 140px;
        }
        
        .btn-primary:hover {
            background-color: #d95521;
        }
        
        .btn-primary .icon-chat {
            margin-right: 8px;
            font-size: 18px;
        }
        
        /* 轮播样式 */
        .carousel-container {
            width: 100%;
            height: 532px;
            overflow: hidden;
            position: relative;
        }
        
        .carousel {
            position: relative;
            height: 100%;
        }
        
        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: transform 0.4s;
        }
        
        .carousel-item.active {
            z-index: 2;
        }
        
        .carousel-image {
            width: 100%;
            height: 100%;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
        }
        
        .indicator.active {
            background-color: #fff;
        }
        
        /* 表单样式 */
        .form-section {
            background-color: #fff;
            padding: 40px 0;
        }
        
        .form-container {
            max-width: 790px;
            margin: 0 auto;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .form-title {
            font-size: 30px;
            font-weight: 500;
            color: #333;
            line-height: 1.5;
            margin: 0;
        }
        
        .form-row {
            margin-bottom: 20px;
        }
        
        .form-group {
            width: 100%;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            font-size: 16px;
            color: #666;
        }
        
        .required {
            color: #ff1212;
        }
        
        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .radio-group.grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        
        .radio-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 15px;
            height: 60px;
            background-color: #f5f5f5;
            border-radius: 2px;
            cursor: pointer;
            font-size: 16px;
            color: #333;
            flex: 1;
            
        }
        
        .radio-button input {
            display: none;
        }
        
        .radio-group.grid-4 .radio-button {
            width: 100%;
        }
        
        .form-input {
            width: 100%;
            height: 60px;
            padding: 0 20px;
            border: none;
            background-color: #f5f5f5;
            border-radius: 2px;
            font-size: 16px;
            color: #333;
            box-sizing: border-box;
        }
        
        .form-input::placeholder {
            color: #999;
        }
        
        .captcha-group {
            display: flex;
            position: relative;
        }
        
        .captcha-input {
            padding-right: 130px;
        }
        
        .captcha-btn {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 120px;
            background: transparent;
            border: none;
            border-left: 1px solid #d8d8d8;
            color: #ff7033;
            font-size: 16px;
            cursor: not-allowed;
        }
        
        .captcha-btn.disabled {
            color: #999;
        }
        
        .form-submit {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .submit-btn {
            width: 490px;
            height: 60px;
            background-color: #ff7033;
            color: #fff;
            border: none;
            border-radius: 2px;
            font-size: 20px;
            font-weight: 500;
            cursor: pointer;
        }
        
        .submit-btn:hover {
            background-color: #d95521;
        }
        
        /* 产品中心样式 */
        .product-center {
            padding: 0 0 30px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 30px;
            font-weight: 500;
            color: #333;
            margin: 16px 0 0;
        }
        
        .section-subtitle {
            font-size: 16px;
            color: #666;
            margin-top: 15px;
        }
        
        .product-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -8px;
            gap: 16px;
        }
        
        .product-card {
            flex: 1 1 calc(32.333% - 16px);
            margin: 0 8px 20px;
            box-sizing: border-box;
            border-radius: 4px;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        
        .product-card:hover {
            box-shadow: 0 4px 24px rgba(0,0,0,0.13);
        }
        
        .product-image {
            width: 100%;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: auto;
            transition: transform 0.3s;
            display: block;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.15);
        }
        
        .product-info {
            padding: 16px;
            border: 1px solid #f5f5f5;
            border-top: none;
            border-bottom-left-radius: 4px;
            border-bottom-right-radius: 4px;
        }
        
        .product-name {
            font-size: 18px;
            color: #333;
            font-weight: 500;
            text-align: center;
        }
        
        .product-footer {
            text-align: center;
            margin-top: 40px;
        }
        
        .btn-more {
            width: 490px;
            height: 60px;
            background-color: #fff;
            border: 1px solid #d8d8d8;
            color: #666;
            font-size: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-more:hover {
            background-color: #ff7033;
            border-color: #ff7033;
            color: #fff;
        }
        
        /* 卡片表单 */
        .card-form-section {
            background-repeat: no-repeat;
            background-size: cover;
            padding: 40px 0;
        }
        
        .card-form-container {
            width: 450px;
            margin-left: auto;
            margin-right: 40px;
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
        }
        
        .card-form .form-group {
            margin-bottom: 20px;
        }
        
        .card-form .radio-group {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        
        .card-form .radio-button {
            height: 60px;
        }
        
        .card-form .radio-group.grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .card-form .form-input {
            height: 60px;
            background-color: #f5f5f5;
            border: 1px solid #d8d8d8;
            border-radius: 9px;
        }
        
        .card-form .submit-btn {
            width: 100%;
            height: 60px;
            border-radius: 27px;
        }
        
        /* 页脚样式 */
        .site-footer {
            padding: 30px 0 20px;
        }
        
        .footer-guarantee {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-bottom: 30px;
            gap: 5em;
        }
        
        .guarantee-item {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .guarantee-item i {
            font-size: 35px;
            color: #333;
        }
        
        .guarantee-content {
            margin-left: 13px;
        }
        
        .guarantee-title {
            color: #333;
            font-weight: bold;
            font-size: 15px;
            margin-bottom: 6px;
        }
        
        .guarantee-desc {
            color: #999;
            font-size: 12px;
        }
        
        .footer-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .footer-nav-item {
            padding: 0 50px;
            font-size: 16px;
            color: #333;
            font-weight: 500;
            cursor: pointer;
            position: relative;
        }
        
        .footer-nav-item:not(:last-child):after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            border-right: 1px solid #eee;
            height: 14px;
            margin-top: -7px;
        }
        
        .footer-nav-item:hover {
            color: #ff7033;
        }
        
        .footer-copyright {
            text-align: center;
            font-size: 12px;
            color: #666;
        }
        
        .footer-copyright span {
            margin-left: 10px;
        }
        
        /* 悬浮模块 */
        .float-conversion {
            position: fixed;
            bottom: 0;
            right: 20px;
            z-index: 100;
        }
        
        .float-left {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            max-width: 120px;
            z-index: 100;
        }
        
        .float-image {
            position: relative;
            width: 100%;
        }
        
        .float-image img {
            width: 100%;
            display: block;
        }
        
        .float-close {
            position: absolute;
            top: 0;
            right: 0;
            width: 24px;
            height: 24px;
            background: rgba(0,0,0,0.6);
            border-radius: 4px;
            color: #fff;
            text-align: center;
            line-height: 24px;
            font-size: 18px;
            cursor: pointer;
        }
        
        .float-bottom {
            position: fixed;
            bottom: 0;
            right: 20px;
            z-index: 100;
            box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
        }
        
        .float-bottom-btn {
            display: flex;
            align-items: center;
            padding: 15px 40px;
            background-color: #ff7033;
            color: #fff;
            border: none;
            border-top-left-radius: 2px;
            border-top-right-radius: 2px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
        }
        
        .float-bottom-btn .icon-chat {
            margin-right: 10px;
        }
        
        .float-right {
            position: fixed;
            right: 20px;
            bottom: 190px;
            z-index: 100;
            text-align: center;
        }
        
        .float-icon {
            margin-bottom: 5px;
        }
        
        .float-right-btn {
            padding: 0 10px;
            height: 45px;
            background-color: #ff7033;
            color: #fff;
            border: none;
            border-radius: 27px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            box-shadow: 0 6px 10px rgba(51, 136, 255, 0.2);
        }
        
        /* 图标字体占位 */
        .icon-chat:before { content: "💬"; }
        .icon-safeguarding-rights:before { content: "🛡️"; }
        .icon-false-compensation:before { content: "⚠️"; }
        .icon-fraud-compensation:before { content: "💰"; }
        .icon-convertion:before { content: "📞"; }

