* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft Yahei", "Helvetica Neue", sans-serif;
        }
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f8f9fa;
            scroll-behavior: smooth;
        }
        /* 滚动动画类 */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }
        .animate-on-scroll.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .animate-on-scroll-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }
        .animate-on-scroll-left.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .animate-on-scroll-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }
        .animate-on-scroll-right.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .animate-on-scroll-fade {
            opacity: 0;
            transition: opacity 1s ease-out;
        }
        .animate-on-scroll-fade.animate {
            opacity: 1;
        }
        /* 头部导航 */
        .header {
            background-color: #2c3e50;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: background-color 0.3s;
        }
        .header.scrolled {
            background-color: rgba(44, 62, 80, 0.95);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #0ABAB5;
        }
        .nav {
            display: flex;
            align-items: center;
        }
        .nav a {
            color: white;
            text-decoration: none;
            margin-left: 30px;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
        }
        .nav a:hover {
            color: #0ABAB5;
        }
        .nav a.contact-btn {
            background-color: #0ABAB5;
            padding: 8px 20px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav a.contact-btn:hover {
            background-color: #09a19c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        /* 下拉菜单样式 */
        .nav .dropdown {
            position: relative;
            display: inline-block;
        }
        .nav .dropdown-btn {
            color: white;
            text-decoration: none;
            margin-left: 30px;
            font-size: 16px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
            position: relative;
            padding: 5px 0;
        }
        .nav .dropdown-btn:hover {
            color: #0ABAB5;
        }
        .nav .dropdown-btn i {
            transition: transform 0.3s ease;
        }
        .nav .dropdown.active .dropdown-btn i {
            transform: rotate(180deg);
        }
        .nav .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            color: #333;
            min-width: 1000px;
            max-height: 550px;
            overflow-y: auto;
            box-shadow: 0 15px 35px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.08);
            z-index: 1000;
            border-radius: 12px;
            top: 100%;
            left: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(10, 186, 181, 0.1);
            background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
            backdrop-filter: blur(5px);
        }
        
        .nav .dropdown-section {
            margin-bottom: 0;
            border-bottom: none;
            display: flex;
            flex-direction: column;
        }
        
        /* 第一列的第一个section顶部圆角 */
        .nav .dropdown-content div:nth-child(1) {
            border-radius: 12px 0 0 0;
        }
        
        /* 第二列的第一个section顶部圆角和左右边框 */
        .nav .dropdown-content div:nth-child(2) {
            border-radius: 0 0 0 0;
            border-left: 1px solid rgba(10, 186, 181, 0.1);
            border-right: 1px solid rgba(10, 186, 181, 0.1);
        }
        
        /* 第三列的第一个section顶部圆角 */
        .nav .dropdown-content div:nth-child(3) {
            border-radius: 0 12px 0 0;
        }
        
        /* 第一列的最后一个section底部圆角 */
        .nav .dropdown-content div:nth-last-child(3) {
            border-radius: 0 0 0 12px;
        }
        
        /* 第二列的最后一个section底部圆角和左右边框 */
        .nav .dropdown-content div:nth-last-child(2) {
            border-radius: 0 0 0 0;
            border-left: 1px solid rgba(10, 186, 181, 0.1);
            border-right: 1px solid rgba(10, 186, 181, 0.1);
        }
        
        /* 为第二列的其他section添加左右边框 */
        .nav .dropdown-content div:nth-child(n+4):nth-child(-n+7) {
            border-left: 1px solid rgba(10, 186, 181, 0.1);
            border-right: 1px solid rgba(10, 186, 181, 0.1);
        }
        
        /* 第三列的最后一个section底部圆角 */
        .nav .dropdown-content div:last-child {
            border-radius: 0 0 12px 0;
        }
        
        /* 多列布局 - 仅在active状态应用 */
        .nav .dropdown.active .dropdown-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        /* 响应式设计：中等屏幕下2列布局 */
        @media (max-width: 1100px) {
            .nav .dropdown.active .dropdown-content {
                grid-template-columns: repeat(2, 1fr);
                min-width: 760px;
            }
            
            /* 调整中等屏幕下的列边框 */
            .nav .dropdown-content div:nth-child(2) {
                border-right: none;
            }
            
            /* 调整中等屏幕下的圆角 */
            .nav .dropdown-content div:nth-child(1) {
                border-radius: 12px 0 0 0;
            }
            .nav .dropdown-content div:nth-child(2) {
                border-radius: 0 12px 0 0;
            }
            .nav .dropdown-content div:nth-last-child(2) {
                border-radius: 0 0 0 12px;
            }
            .nav .dropdown-content div:last-child {
                border-radius: 0 0 12px 0;
            }
            
            /* 调整中等屏幕下的边框规则 */
            .nav .dropdown-content div:nth-child(n+3) {
                border-left: 1px solid rgba(10, 186, 181, 0.1);
            }
            .nav .dropdown-content div:nth-child(n+4):nth-child(-n+7) {
                border-right: none;
            }
        }
    }
}

 
        /* 响应式设计：小屏幕下1列布局 */
        @media (max-width: 768px) {
            .nav .dropdown.active .dropdown-content {
                grid-template-columns: 1fr;
                min-width: 100%;
                max-width: 320px;
                left: auto;
                right: 0;
            }
            
            /* 调整小屏幕下的边框和圆角 */
            .nav .dropdown-content div {
                border-left: none !important;
                border-right: none !important;
            }
            .nav .dropdown-content div:first-child {
                border-radius: 12px 12px 0 0;
            }
            .nav .dropdown-content div:last-child {
                border-radius: 0 0 12px 12px;
            }
            .nav .dropdown-content div:nth-child(2),
            .nav .dropdown-content div:nth-last-child(2) {
                border-radius: 0;
            }
        }
        /* 下拉菜单顶部装饰条 */
        .nav .dropdown-content::before {
            content: '';
            position: absolute;
            top: -3px;
            left: 30px;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #0ABAB5, #09a19c);
            border-radius: 0 0 4px 4px;
        }
        .nav .dropdown-content a {
            color: #333;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            margin: 0;
            text-align: left;
            border-bottom: 1px solid rgba(10, 186, 181, 0.08);
            transition: all 0.25s ease;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }
        .nav .dropdown-content a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background-color: #0ABAB5;
            transform: scaleY(0);
            transition: transform 0.25s ease;
        }
        .nav .dropdown-content a:hover {
            background-color: rgba(10, 186, 181, 0.05);
            color: #0ABAB5;
            padding-left: 24px;
            box-shadow: inset 3px 0 0 #0ABAB5;
        }
        .nav .dropdown-content a:hover::before {
            transform: scaleY(1);
        }
        .nav .dropdown-content a:last-child {
            border-bottom: none;
        }
        .nav .dropdown-section {
            margin-bottom: 2px;
            position: relative;
        }
        .nav .dropdown-header {
            padding: 12px 20px;
            background: linear-gradient(135deg, #0ABAB5 0%, #09a19c 100%);
            color: white;
            font-weight: 600;
            font-size: 14px;
            border-bottom: none;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .nav .dropdown-header::before {
            content: '▶';
            font-size: 10px;
            opacity: 0.8;
            transition: transform 0.2s ease;
        }
        .nav .dropdown-section:hover .dropdown-header::before {
            transform: translateX(3px);
        }
        /* 自定义滚动条 */
        .nav .dropdown-content::-webkit-scrollbar {
            width: 6px;
        }
        .nav .dropdown-content::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        .nav .dropdown-content::-webkit-scrollbar-thumb {
            background: #0ABAB5;
            border-radius: 3px;
            transition: background 0.2s ease;
        }
        .nav .dropdown-content::-webkit-scrollbar-thumb:hover {
            background: #09a19c;
        }
        /* Firefox滚动条 */
        .nav .dropdown-content {
            scrollbar-width: thin;
            scrollbar-color: #0ABAB5 #f1f1f1;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /* 核心优势区 */
        .hero {
            background: linear-gradient(135deg, #0ABAB5 0%, #09a19c 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 40px;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .hero p {
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
        }
        .primary-btn {
            background-color: white;
            color: #09a19c;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            text-decoration: none;
        }
        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .secondary-btn {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            text-decoration: none;
        }
        .secondary-btn:hover {
            background-color: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }
        .advantage-cards {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            gap: 20px;
            flex-wrap: wrap;
        }
        .advantage-card {
            background-color: white;
            color: #333;
            padding: 30px;
            border-radius: 8px;
            flex: 1;
            min-width: 280px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background-color: #0ABAB5;
        }
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .advantage-card h3 {
            color: #09a19c;
            margin-bottom: 15px;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .advantage-card h3 i {
            font-size: 24px;
        }

        /* 用友客户专属区域 */
        .yonyou-section {
            padding: 80px 0;
            background-color: white;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-title {
            font-size: 32px;
            margin-bottom: 20px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #0ABAB5;
        }
        .section-desc {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        .yonyou-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        .yonyou-benefit {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .yonyou-benefit:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .yonyou-benefit i {
            font-size: 36px;
            color: #0ABAB5;
            margin-bottom: 20px;
        }
        .yonyou-benefit h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .yonyou-highlight {
            background-color: #e8f4fd;
            border-left: 4px solid #0ABAB5;
            padding: 20px;
            margin: 40px auto;
            max-width: 800px;
            border-radius: 0 4px 4px 0;
        }
        .yonyou-highlight h4 {
            color: #09a19c;
            margin-bottom: 10px;
            font-size: 18px;
        }

        /* 场景化选型区 */
        .selection {
            padding: 80px 0;
            background-color: white;
        }
        .selection-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            gap: 10px;
            flex-wrap: wrap;
        }
        .selection-tab {
            padding: 10px 25px;
            background-color: #f1f1f1;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .selection-tab.active {
            background-color: #0ABAB5;
            color: white;
        }
        .selection-tab:hover:not(.active) {
            background-color: #e1e1e1;
        }
        .platform-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .platform-table th, .platform-table td {
            padding: 15px;
            border: 1px solid #eee;
            text-align: left;
        }
        .platform-table th {
            background-color: #f8f9fa;
            color: #2c3e50;
            font-weight: bold;
        }
        .platform-table tr:hover {
            background-color: #f8f9fa;
        }
        .platform-table .highlight {
            color: #e74c3c;
            font-weight: bold;
        }

        /* 案例展示区 */
        .cases {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        .case-cards {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }
        .case-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            flex: 1;
            min-width: 300px;
            transition: all 0.3s;
        }
        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .case-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: all 0.5s;
        }
        .case-card:hover img {
            transform: scale(1.05);
        }
        .case-img-container {
            overflow: hidden;
            height: 200px;
        }
        .case-content {
            padding: 25px;
        }
        .case-content h3 {
            color: #09a19c;
            margin-bottom: 10px;
        }
        .case-content .industry {
            color: #666;
            margin-bottom: 15px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .case-content .industry i {
            color: #0ABAB5;
        }
        .case-content .result {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
            color: #2c3e50;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .case-content .result .tag {
            background-color: #e8f4fd;
            color: #09a19c;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 14px;
        }

        /* 价格计算器 */
        .calculator {
            padding: 80px 0;
            background-color: white;
        }
        .calc-form {
            max-width: 800px;
            margin: 0 auto;
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #2c3e50;
        }
        .form-group select, .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.3s;
        }
        .form-group select:focus, .form-group input:focus {
            border-color: #0ABAB5;
            outline: none;
            box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.2);
        }
        .calc-btn {
            background-color: #0ABAB5;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
            transition: all 0.3s;
            font-weight: bold;
        }
        .calc-btn:hover {
            background-color: #09a19c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .calc-result {
            margin-top: 30px;
            padding: 20px;
            background-color: #e8f4fd;
            border-radius: 4px;
            display: none;
            animation: fadeIn 0.5s;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .calc-result h4 {
            margin-bottom: 15px;
            color: #2c3e50;
        }
        .result-item {
            margin-bottom: 8px;
            font-size: 16px;
        }
        .result-item span {
            font-weight: bold;
            color: #e74c3c;
        }

        /* 采购流程 */
        .process {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        .process-steps {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 50px;
            right: 50px;
            height: 2px;
            background-color: #0ABAB5;
            z-index: 1;
        }
        .process-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .step-number {
            width: 50px;
            height: 50px;
            background-color: #0ABAB5;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            margin: 0 auto 20px;
            transition: all 0.3s;
        }
        .process-step:hover .step-number {
            transform: scale(1.1);
            background-color: #09a19c;
        }
        .process-step h3 {
            margin-bottom: 10px;
            color: #2c3e50;
        }
        .process-step p {
            color: #666;
            font-size: 14px;
        }

        /* 服务保障 */
        .service {
            padding: 80px 0;
            background-color: white;
        }
        .service-cards {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .service-card {
            flex: 1;
            min-width: 280px;
            text-align: center;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }
        .service-card i {
            font-size: 40px;
            color: #0ABAB5;
            margin-bottom: 20px;
        }
        .service-card h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        /* 集成架构 */
        .lowcode-integration {
            margin: 60px 0;
        }
        .integration-architecture {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 40px;
        }
        @media (max-width: 992px) {
            .integration-architecture {
                grid-template-columns: 1fr;
            }
        }
        .architecture-diagram {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .architecture-description h4 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 20px;
        }
        .architecture-layers {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
        }
        .layer-card {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #0ABAB5;
        }
        .layer-card h5 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .layer-card h5 i {
            color: #0ABAB5;
            margin-right: 10px;
        }
        .layer-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .layer-feature {
            background-color: #f8f9fa;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 13px;
            color: #666;
        }
        .integration-methods h4 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 20px;
        }
        .method-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        .method-card {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .method-card:hover {
            transform: translateY(-5px);
        }
        .method-card h5 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .method-card ul {
            margin-top: 15px;
            padding-left: 20px;
        }
        .method-card li {
            margin-bottom: 8px;
            color: #666;
        }
        .method-card li:before {
            content: "✓";
            color: #0ABAB5;
            font-weight: bold;
            margin-right: 8px;
        }
        
        /* 优势与边界的平衡之道 */
        .balance-section {
            padding: 60px 0;
            background-color: white;
        }
        .balance-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .balance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        .balance-card {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            transition: all 0.3s;
            text-align: center;
        }
        .balance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            background-color: white;
        }
        .balance-icon {
            width: 70px;
            height: 70px;
            background-color: #0ABAB5;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
        }
        .balance-card h4 {
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 18px;
        }
        .balance-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        .balance-illustration {
            text-align: center;
            margin-top: 40px;
        }
        .balance-illustration img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* 成功案例 */
        .lowcode-success-cases {
            margin: 60px 0;
        }
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .case-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: transform 0.3s;
        }
        .case-card:hover {
            transform: translateY(-5px);
        }
        .case-header {
            background-color: #f8f9fa;
            padding: 20px;
            border-bottom: 1px solid #e9ecef;
        }
        .case-industry {
            margin-bottom: 10px;
        }
        .industry-tag {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
        }
        .industry-tag.manufacturing {
            background-color: #e8f4fd;
            color: #007bff;
        }
        .industry-tag.retail {
            background-color: #e6f7e6;
            color: #28a745;
        }
        .industry-tag.services {
            background-color: #fff3e6;
            color: #ff8c00;
        }

        /* 客户案例部分 */
        .cases-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .cases-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cases-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .cases-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: bold;
            margin-bottom: 16px;
            color: #333333;
        }

        .cases-description {
            font-size: 1.125rem;
            color: #666666;
            line-height: 1.6;
        }

        .main-case {
            background-color: #f8f9fa;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 80px;
        }

        .main-case-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            padding: 40px;
        }

        @media (min-width: 992px) {
            .main-case-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .main-case-text h3 {
            font-size: 1.75rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333333;
        }

        .main-case-text p {
            font-size: 1rem;
            color: #666666;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .case-features {
            margin-bottom: 30px;
        }

        .case-features h4 {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 16px;
            color: #333333;
        }

        .case-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .case-feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 1rem;
            color: #666666;
            line-height: 1.6;
        }

        .case-feature-item i {
            margin-right: 12px;
            color: #09a19c;
            margin-top: 4px;
        }

        .case-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        @media (min-width: 768px) {
            .case-metrics {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .case-metric-item {
            text-align: center;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .case-metric-value {
            font-size: 2rem;
            font-weight: bold;
            color: #09a19c;
            margin-bottom: 8px;
        }

        .case-metric-label {
            font-size: 0.875rem;
            color: #666666;
        }

        .case-card-image {
            height: 200px;
            overflow: hidden;
        }

        .case-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .case-card:hover .case-card-image img {
            transform: scale(1.05);
        }

        .case-card-content {
            padding: 20px;
        }

        .case-card-content h3 {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 8px;
            color: #333333;
        }

        .case-card-content p {
            font-size: 0.9375rem;
            color: #666666;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .case-card-content .industry {
            font-size: 0.875rem;
            color: #09a19c;
            margin-bottom: 12px;
            display: inline-block;
            padding: 4px 12px;
            background-color: rgba(9, 161, 156, 0.1);
            border-radius: 16px;
        }
        .case-header h4 {
            margin: 0;
            color: #2c3e50;
            font-size: 18px;
        }
        .case-content {
            padding: 20px;
        }
        .case-metrics {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .case-metrics .stat-box {
            flex: 1;
            min-width: 100px;
            text-align: center;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 6px;
        }
        .case-metrics .stat-number {
            font-size: 24px;
            font-weight: bold;
            color: #0ABAB5;
        }
        .case-metrics .stat-label {
            font-size: 12px;
            color: #666;
            display: block;
            margin-top: 5px;
        }

        /* 下行市场解决方案 */
        .yonyou-lower-market {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        .lower-market-analysis {
            margin-bottom: 60px;
        }
        .market-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .market-feature {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        .market-feature:hover {
            transform: translateY(-5px);
        }
        .market-feature h4 {
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 18px;
        }
        .market-feature h4 i {
            color: #0ABAB5;
            margin-right: 10px;
        }
        .lower-market-solutions {
            margin-bottom: 60px;
        }
        .solution-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .solution-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            border-left: 4px solid #0ABAB5;
        }
        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .solution-card h4 {
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 20px;
        }
        .solution-features {
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .solution-feature {
            background-color: #e8f4fd;
            color: #007bff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
        }
        .solution-benefits h5 {
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 16px;
        }
        .solution-benefits ul {
            padding-left: 20px;
        }
        .solution-benefits li {
            margin-bottom: 10px;
            color: #666;
        }
        .solution-benefits li strong {
            color: #2c3e50;
        }
        .industry-tag.small-business {
            background-color: #f0f8ff;
            color: #4682b4;
        }
        .case-content p {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        /* 统计数据栏 */
        .stats-section {
            margin-top: 4rem;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            padding: 1.5rem;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        @media (min-width: 768px) {
            .stats-section {
                padding: 2rem;
            }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .stat-item {
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #0ABAB5;
            margin-bottom: 0.5rem;
        }
        
        @media (min-width: 768px) {
            .stat-number {
                font-size: 2.5rem;
            }
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: #666;
        }
        
        /* 常见问题 */
        .faq {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        .faq-item {
            max-width: 800px;
            margin: 0 auto 10px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .faq-question {
            padding: 15px 20px;
            background-color: #0ABAB5;
            color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        .faq-question:hover {
            background-color: #09a19c;
        }
        .faq-question i {
            transition: transform 0.3s;
        }
        .faq-question.active i {
            transform: rotate(180deg);
        }
        .faq-answer {
            padding: 20px;
            display: none;
            color: #666;
            animation: slideDown 0.3s;
        }
        @keyframes slideDown {
            from { max-height: 0; opacity: 0; }
            to { max-height: 500px; opacity: 1; }
        }

        /* 底部咨询 */
        .contact {
            padding: 80px 0;
            background-color: #2c3e50;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .contact-content {
            position: relative;
            z-index: 1;
        }
        .contact h2 {
            margin-bottom: 30px;
            font-size: 32px;
        }
        .contact-info {
            font-size: 18px;
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .contact-info-item i {
            color: #0ABAB5;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        .contact-form input {
            width: 300px;
            padding: 12px;
            margin: 0 10px 20px;
            border: none;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .contact-form input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.5);
        }
        .contact-form button {
            background-color: #0ABAB5;
            color: white;
            border: none;
            padding: 12px 40px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
        }
        .contact-form button:hover {
            background-color: #09a19c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        /* 产品页面通用样式 */
        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        .feature-card {
            flex: 1;
            min-width: 280px;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
            text-align: center;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .feature-card i {
            font-size: 48px;
            color: #0ABAB5;
            margin-bottom: 20px;
        }
        .feature-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* 产品矩阵 */
        .product-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        .product-card {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0ABAB5 0%, #09a19c 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .product-card:hover::before {
            transform: scaleX(1);
        }
        .product-card:hover .product-img img {
            transform: scale(1.05);
        }
        .product-card h3 {
            color: #0ABAB5;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .product-card p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        /* 平台卡片内部样式 */
        /* 语言服务网格 */
        .language-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        .language-item {
            flex: 1;
            min-width: 200px;
            padding: 25px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            color: #333;
        }
        .language-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .language-flag {
            font-size: 40px;
            margin-bottom: 15px;
        }
        .language-name {
            font-size: 18px;
            font-weight: bold;
            color: #0ABAB5;
            margin-bottom: 8px;
        }
        .language-type {
            color: #666;
            font-size: 14px;
        }
        /* 平台网格 */
        .platform-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        .platform-card {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0ABAB5 0%, #09a19c 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .platform-card:hover::before {
            transform: scaleX(1);
        }
        .platform-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .platform-logo {
            height: 40px;
            width: auto;
        }
        .platform-badge {
            background-color: #0ABAB5;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: bold;
        }
        .platform-name {
            color: #0ABAB5;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .platform-desc {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .platform-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .platform-price {
            color: #e74c3c;
            font-weight: bold;
            font-size: 16px;
        }
        .platform-link {
            color: #0ABAB5;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        .platform-link:hover {
            color: #09a19c;
        }
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }
        .platform-badge {
            background-color: rgba(10, 186, 181, 0.1);
            color: #0ABAB5;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 12px;
            font-weight: 500;
        }
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        .price-tag {
            color: #e74c3c;
            font-weight: bold;
        }
        .inquire-btn {
            color: #0ABAB5;
            font-weight: 500;
            font-size: 14px;
        }
        .service-guarantee-btn {
            margin-top: 1rem;
            display: inline-block;
            color: #0ABAB5;
            font-weight: 500;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        .service-guarantee-btn i {
            margin-left: 0.5rem;
            font-size: 0.875rem;
            transition: transform 0.3s ease;
        }
        .service-guarantee-btn:hover i {
            transform: translateX(2px);
        }
        
        /* 服务保障列表样式 */
        .service-guarantee-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        
        .guarantee-icon {
            color: #0ABAB5;
            margin-right: 0.75rem;
            font-size: 1rem;
        }
        
        .guarantee-text {
            color: #333;
            font-size: 0.9375rem;
        }
        
        /* 价格优势部分样式 */
        .price-advantage {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 0;
            margin: 40px 0;
        }
        
        .price-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .price-text {
            flex: 1;
            min-width: 300px;
        }
        
        .price-advantage .section-title {
            color: white;
            margin-bottom: 25px;
            font-size: 2.5rem;
        }
        
        .price-advantage .section-title::after {
            background-color: rgba(255, 255, 255, 0.8);
        }
        
        .price-advantage .section-desc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.8;
            margin: 0;
        }
        
        .price-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 40px 50px;
            min-width: 280px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        
        .price-highlight {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .discount-rate {
            font-size: 4rem;
            font-weight: bold;
            margin: 0;
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        
        .discount-label {
            font-size: 1.1rem;
            margin: 15px 0 0;
            opacity: 0.9;
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .price-advantage {
                padding: 60px 0;
            }
            
            .price-content {
                flex-direction: column;
                text-align: center;
            }
            
            .price-advantage .section-title {
                font-size: 2rem;
            }
            
            .price-card {
                padding: 30px 40px;
            }
            
            .discount-rate {
                font-size: 3rem;
            }
        }
        /* 优势卡片部分样式 */
        .advantages-section {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        .advantages-content {
            max-width: 800px;
            margin: 0 auto 4rem;
            text-align: center;
        }
        .advantages-title {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }
        .advantages-subtitle {
            color: #666;
            font-size: 1.125rem;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 768px) {
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .advantages-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .advantage-card {
            background-color: white;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        .advantage-card:hover {
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            transform: translateY(-2px);
        }
        .advantage-icon {
            width: 7rem;
            height: 7rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .advantage-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #333;
        }
        .advantage-card p {
            color: #666;
            font-size: 0.9375rem;
        }
        .platform-logo {
            height: 40px;
        }
        .card-title {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 8px;
            color: #333;
        }
        .card-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 16px;
        }
        /* 广告卡片样式 */
        .ad-card {
            background: linear-gradient(135deg, rgba(10, 186, 181, 0.05) 0%, rgba(10, 186, 181, 0.1) 100%);
            border: 2px solid rgba(10, 186, 181, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .ad-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background-color: rgba(10, 186, 181, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .ad-icon i {
            font-size: 32px;
            color: #0ABAB5;
        }
        .ad-title {
            font-weight: 600;
            font-size: 18px;
            color: #0ABAB5;
            margin-bottom: 12px;
        }
        .ad-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 16px;
        }
        .ad-link {
            color: #0ABAB5;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.3s;
        }
        .ad-link:hover {
            color: #09a19c;
        }
        .product-img {
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        .product-img img {
            transition: transform 0.5s ease;
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        /* 行业解决方案样式 */
        .industry-solutions {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .industry-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
        }
        
        .industry-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(10, 186, 181, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease-in-out;
        }
        
        .industry-card:hover .industry-icon {
            background-color: #0ABAB5;
            transform: scale(1.1) rotate(5deg);
        }
        
        .industry-icon i {
            font-size: 24px;
            color: #0ABAB5;
            transition: all 0.3s ease-in-out;
        }
        
        .industry-card:hover .industry-icon i {
            color: white;
            transform: rotate(-5deg);
        }
        
        .industry-card h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: 600;
            transition: color 0.3s ease-in-out;
        }
        
        .industry-card:hover h3 {
            color: #0ABAB5;
        }
        
        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0ABAB5 0%, #09a19c 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .industry-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 0 3px rgba(10, 186, 181, 0.1);
        }
        
        .industry-card:hover::before {
            transform: scaleX(1);
        }
        
        /* 行业卡片内容的过渡效果 */
        .industry-features,
        .industry-needs,
        .yonyou-recommendation,
        .lowcode-expansion {
            transition: all 0.3s ease-in-out;
        }
        
        .industry-card:hover .industry-features,
        .industry-card:hover .industry-needs,
        .industry-card:hover .yonyou-recommendation,
        .industry-card:hover .lowcode-expansion {
            opacity: 0.95;
        }
        
        /* 行业卡片内容样式 */
        .industry-content {
            color: #666;
        }
        
        .industry-features,
        .industry-needs,
        .yonyou-recommendation,
        .lowcode-expansion {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            background-color: #fafafa;
            padding: 20px;
            border-radius: 6px;
            transition: all 0.3s ease-in-out;
        }
        
        .industry-card:hover .industry-features,
        .industry-card:hover .industry-needs,
        .industry-card:hover .yonyou-recommendation,
        .industry-card:hover .lowcode-expansion {
            background-color: #f5f5f5;
            transform: translateX(5px);
        }
        
        .industry-features:last-child,
        .industry-needs:last-child,
        .yonyou-recommendation:last-child,
        .lowcode-expansion:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .industry-features h4,
        .industry-needs h4,
        .yonyou-recommendation h4,
        .lowcode-expansion h4 {
            color: #0ABAB5;
            margin-bottom: 15px;
            font-size: 19px;
            font-weight: 600;
            border-left: 4px solid #0ABAB5;
            padding-left: 10px;
            background-color: white;
            padding: 10px 15px;
            border-radius: 0 6px 6px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .industry-features p,
        .industry-needs p,
        .yonyou-recommendation p,
        .lowcode-expansion p {
            margin-bottom: 12px;
            line-height: 1.6;
            font-size: 14px;
            color: #555;
        }
        
        .industry-features ul,
        .industry-needs ul,
        .yonyou-recommendation ul,
        .lowcode-expansion ul {
            padding-left: 25px;
            margin: 0;
        }
        
        .industry-features li,
        .industry-needs li,
        .yonyou-recommendation li,
        .lowcode-expansion li {
            margin-bottom: 10px;
            line-height: 1.7;
            font-size: 14px;
            color: #555;
            position: relative;
        }
        
        .industry-features li::before,
        .industry-needs li::before,
        .yonyou-recommendation li::before,
        .lowcode-expansion li::before {
            content: '•';
            color: #0ABAB5;
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
        }
        
        .learn-more {
            display: inline-block;
            color: #0ABAB5;
            text-decoration: none;
            font-weight: bold;
            padding: 8px 16px;
            border: 2px solid #0ABAB5;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .learn-more:hover {
            background-color: #0ABAB5;
            color: white;
            transform: translateY(-2px);
        }
        
        /* 功能模块 */
        .module-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        .module-card {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .module-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .module-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: #0ABAB5;
        }
        .module-card h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 20px;
            padding-left: 15px;
        }
        .module-card ul {
            list-style-type: none;
            padding-left: 15px;
        }
        .module-card ul li {
            color: #666;
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        .module-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #0ABAB5;
            font-weight: bold;
        }
        
        /* 价格信息 */
        .pricing-img {
            margin-top: 40px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .pricing-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 产品介绍区域 */
        .tcloud-intro,
        .tcloud-products,
        .tcloud-pricing,
        .mes-intro,
        .mes-modules,
        .mes-pricing,
        .tonline-intro,
        .tonline-products,
        .tonline-pricing,
        .finance-intro,
        .finance-modules,
        .finance-pricing {
            padding: 80px 0;
            background-color: white;
        }
        
        .tcloud-products,
        .mes-modules,
        .tonline-products,
        .finance-modules {
            background-color: #f8f9fa;
        }
        .learn-more {
            display: inline-block;
            color: #0ABAB5;
            text-decoration: none;
            font-weight: bold;
            padding: 8px 16px;
            border: 2px solid #0ABAB5;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .learn-more:hover {
            background-color: #0ABAB5;
            color: white;
        }
        
        /* 模块网格 */
        .module-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        .module-card {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .module-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .module-card h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .module-card h3::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 20px;
            background-color: #0ABAB5;
            border-radius: 2px;
        }
        .module-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .module-card li {
            color: #666;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            line-height: 1.6;
        }
        .module-card li::before {
            content: '✓';
            color: #0ABAB5;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* 价格图片区域 */
        .pricing-img {
            margin-top: 40px;
            text-align: center;
        }
        .pricing-img img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        /* 页脚 */
        .footer {
            background-color: #233140;
            color: white;
            padding: 40px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h3 {
            margin-bottom: 20px;
            color: #0ABAB5;
            font-size: 18px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
        }
        .footer-col ul li a:hover {
            color: #0ABAB5;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #aaa;
            font-size: 14px;
        }

        /* 产品比较表格样式 */
        .comparison-table-wrapper {
            overflow-x: auto;
            margin-top: 40px;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table th {
            background-color: #0ABAB5;
            color: white;
            font-weight: bold;
        }
        
        .comparison-table tr:hover {
            background-color: #f8f9fa;
        }
        
        /* 用友产品选择板块样式 */
        .selection-dimensions {
            margin: 40px 0;
        }
        
        .dimension-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .dimension-card {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .dimension-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .dimension-card h5 {
            color: #09a19c;
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .dimension-card ul {
            padding-left: 20px;
            color: #555;
        }
        
        .dimension-card li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .selection-flow {
            margin: 40px 0;
        }
        
        .flow-chart {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-top: 25px;
        }
        
        .flow-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 150px;
            text-align: center;
        }
        
        .flow-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #0ABAB5;
            color: white;
            border-radius: 50%;
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .flow-text {
            color: #555;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .flow-arrow {
            color: #0ABAB5;
            font-size: 24px;
            margin: 0 10px;
        }
        
        .selection-cases {
            margin: 40px 0;
        }
        
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        
        .selection-tips {
            margin: 40px 0;
        }
        
        .selection-tips ul {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-top: 25px;
            list-style: none;
        }
        
        .selection-tips li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
            color: #555;
        }
        
        .selection-tips li i {
            color: #0ABAB5;
            position: absolute;
            left: 0;
            top: 5px;
            font-size: 18px;
        }
        
        .selection-tips li:last-child {
            margin-bottom: 0;
        }
        
        /* 低代码服务的核心优势样式 */
        .lowcode-benefits {
            margin: 60px 0;
            padding: 40px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .lowcode-benefits h3 {
            color: #2c3e50;
            margin-bottom: 40px;
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .lowcode-benefits h3::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0ABAB5 0%, #009a95 100%);
            border-radius: 2px;
        }
        
        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(10, 186, 181, 0.1);
        }
        
        .benefit-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #0ABAB5 0%, #009a95 100%);
        }
        
        .benefit-card i {
            font-size: 50px;
            color: #0ABAB5;
            margin-bottom: 25px;
            display: block;
            transition: transform 0.4s ease;
        }
        
        .benefit-card:hover i {
            transform: scale(1.1) rotate(5deg);
        }
        
        .benefit-card h4 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .benefit-card:hover h4 {
            color: #0ABAB5;
        }
        
        .benefit-card p {
            color: #666;
            font-size: 15px;
            line-height: 1.8;
            margin: 0;
            transition: color 0.3s ease;
        }
        
        .benefit-card:hover p {
            color: #444;
        }
        
        /* 卡片内部元素动画 */
        .benefit-card * {
            transition: all 0.3s ease;
        }
        
        /* 响应式调整 */
        @media (max-width: 1100px) {
            /* 中等屏幕下改为两列布局 */
            .nav .dropdown.active .dropdown-content {
                grid-template-columns: repeat(2, 1fr);
                min-width: 760px;
            }
            
            /* 调整两列布局的圆角和边框 */
            .nav .dropdown-content div:nth-child(2) {
                border-radius: 0 12px 0 0;
                border-left: 1px solid rgba(10, 186, 181, 0.1);
                border-right: none;
            }
            
            .nav .dropdown-content div:nth-child(3) {
                border-radius: 0 0 0 0;
                border-left: 1px solid rgba(10, 186, 181, 0.1);
            }
            
            .nav .dropdown-content div:nth-last-child(3) {
                border-radius: 0 0 0 12px;
            }
            
            .nav .dropdown-content div:nth-last-child(2) {
                border-radius: 0 0 12px 0;
                border-left: 1px solid rgba(10, 186, 181, 0.1);
                border-right: none;
            }
            
            /* 移除多余的边框规则 */
            .nav .dropdown-content div:nth-child(n+4):nth-child(-n+7) {
                border-left: 1px solid rgba(10, 186, 181, 0.1);
                border-right: none;
            }
            
            /* 行业解决方案在中等屏幕下改为两列 */
            .industry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .process-steps::before {
                display: none;
            }
        }
        @media (max-width: 768px) {
            /* 小屏幕下改为单列布局 */
            .nav .dropdown.active .dropdown-content {
                grid-template-columns: 1fr;
                min-width: 100%;
                max-width: 320px;
            }
            
            /* 调整单列布局的圆角和边框 */
            .nav .dropdown-content div:nth-child(1),
            .nav .dropdown-content div:nth-child(2),
            .nav .dropdown-content div:nth-child(3),
            .nav .dropdown-content div:nth-last-child(3),
            .nav .dropdown-content div:nth-last-child(2),
            .nav .dropdown-content div:last-child {
                border-radius: 0;
                border-left: none;
                border-right: none;
            }
            
            .nav .dropdown-content div:first-child {
                border-radius: 8px 8px 0 0;
            }
            
            .nav .dropdown-content div:last-child {
                border-radius: 0 0 8px 8px;
            }
            
            /* 移除所有边框 */
            .nav .dropdown-content div:nth-child(n+4):nth-child(-n+7) {
                border-left: none;
                border-right: none;
            }
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 30px;
                line-height: 1.2;
            }
            
            .hero p {
                font-size: 16px;
                margin-bottom: 30px;
            }
            
            .hero-btns {
                margin-bottom: 40px;
            }
            .section-title {
                font-size: 26px;
            }
            .contact-form input {
                width: 80%;
                margin: 0 auto 20px;
                display: block;
            }
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #2c3e50;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav.active {
                display: flex;
            }
            .nav a {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            .hero-btns a {
                width: 80%;
            }
            /* 移动端表格优化 */
            .platform-table {
                display: block;
                overflow-x: auto;
            }
            
            /* 行业解决方案在小屏幕下改为单列布局 */
            .industry-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            /* 行业卡片在移动端的样式调整 */
            .industry-card {
                padding: 25px;
                box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            }
            
            .industry-card:hover {
                transform: translateY(-5px) scale(1.01);
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }
            
            .industry-icon {
                width: 55px;
                height: 55px;
            }
            
            .industry-icon i {
                font-size: 22px;
            }
            
            .industry-card h3 {
                font-size: 19px;
                margin-bottom: 18px;
                line-height: 1.4;
            }
            
            .industry-features,
            .industry-needs,
            .yonyou-recommendation,
            .lowcode-expansion {
                margin-bottom: 20px;
                padding: 15px;
                border-radius: 4px;
            }
            
            .industry-card:hover .industry-features,
            .industry-card:hover .industry-needs,
            .industry-card:hover .yonyou-recommendation,
            .industry-card:hover .lowcode-expansion {
                transform: translateX(3px);
            }
            
            .industry-features h4,
            .industry-needs h4,
            .yonyou-recommendation h4,
            .lowcode-expansion h4 {
                font-size: 15px;
                margin-bottom: 10px;
                font-weight: 600;
                padding: 8px 12px;
            }
            
            .industry-features p,
            .industry-needs p,
            .yonyou-recommendation p,
            .lowcode-expansion p {
                font-size: 13px;
                line-height: 1.5;
            }
            
            .industry-features li,
            .industry-needs li,
            .yonyou-recommendation li,
            .lowcode-expansion li {
                font-size: 13px;
                margin-bottom: 8px;
            }
            
            .industry-features li,
            .industry-needs li,
            .yonyou-recommendation li,
            .lowcode-expansion li {
                font-size: 13px;
                margin-bottom: 8px;
                line-height: 1.6;
            }
            
            /* 优化移动端列表样式 */
            .industry-features ul,
            .industry-needs ul,
            .yonyou-recommendation ul,
            .lowcode-expansion ul {
                padding-left: 18px;
            }
            
            /* 产品网格在小屏幕下的调整 */
            .product-grid {
                flex-direction: column;
                gap: 20px;
            }
            
            .product-card {
                min-width: auto;
                padding: 20px;
            }
            
            /* 产品卡片图片高度调整 */
            .product-img img {
                height: 150px;
                object-fit: cover;
            }
            
            /* 产品卡片字体大小调整 */
            .product-card h5 {
                font-size: 18px;
                margin-bottom: 12px;
            }
            
            .product-card p {
                font-size: 14px;
                line-height: 1.5;
                margin-bottom: 15px;
            }
            
            /* 产品详情区域调整 */
            .product-details h6 {
                font-size: 16px;
                margin-bottom: 10px;
            }
            
            .product-details ul {
                padding-left: 20px;
            }
            
            .product-details li {
                font-size: 13px;
                line-height: 1.4;
                margin-bottom: 8px;
            }
            
            /* 功能标签在移动端的调整 */
            .product-features {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                margin-top: 15px;
            }
            
            .feature-tag {
                font-size: 12px;
                padding: 4px 10px;
                border-radius: 15px;
            }
            
            /* 调整比较表格在移动端的显示 */
            .comparison-table-wrapper {
                margin-top: 30px;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 12px 8px;
                font-size: 14px;
            }
            
            /* 价格方案样式 */
        .pricing-plans {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 40px;
        }
        
        .pricing-plan {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .pricing-plan.recommended {
            box-shadow: 0 5px 20px rgba(10, 186, 181, 0.2);
            border: 2px solid #0ABAB5;
            transform: translateY(-10px);
        }
        
        .recommended-badge {
            display: inline-block;
            background-color: #0ABAB5;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .price {
            margin: 20px 0;
        }
        
        .price-amount {
            font-size: 36px;
            font-weight: bold;
            color: #0ABAB5;
        }
        
        .price-period {
            font-size: 16px;
            color: #666;
        }
        
        .plan-features {
            margin: 20px 0;
        }
        
        .plan-features ul {
            list-style: none;
            padding: 0;
            text-align: left;
        }
        
        .plan-features li {
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
        }
        
        .plan-features li i {
            color: #0ABAB5;
            position: absolute;
            left: 0;
            top: 5px;
        }
        
        /* 模块网格在小屏幕下的调整 */
        .module-grid {
            flex-direction: column;
            gap: 20px;
        }
        
        .module-card {
            min-width: auto;
            padding: 20px;
        }
        
        /* 价格方案在小屏幕下的调整 */
        .pricing-plans {
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }
        
        .pricing-plan {
            min-width: auto;
            width: 90%;
            max-width: 320px;
            padding: 20px;
        }
        
        .pricing-plan.recommended {
            transform: translateY(0);
        }
        
        .price-amount {
            font-size: 30px;
        }
            
            /* 调整标题和内容的字体大小 */
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 24px;
            }
            
            h3 {
                font-size: 20px;
            }
            
            p {
                font-size: 14px;
            }
            
            /* 调整容器宽度，让内容更贴近屏幕边缘 */
            .container {
                width: 95%;
                padding: 0 10px;
            }
            
            /* 调整页面各部分的内边距 */
            section {
                padding: 40px 0;
            }
            
            /* 调整页脚内容在移动端的显示 */
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-col {
            min-width: auto;
        }
        }

        /* 应用边界与延伸需求部分样式 */
        .pros-cons-col.boundary-section {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin-top: 30px;
        }
        .boundary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .boundary-card {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
            transition: all 0.3s;
        }
        .boundary-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .boundary-icon {
            color: #0ABAB5;
            font-size: 28px;
            margin-right: 20px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        .boundary-content {
            flex: 1;
        }
        .boundary-content h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .boundary-content p {
            color: #666;
            margin-bottom: 15px;
        }
        .boundary-solution {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 6px;
            border-left: 4px solid #0ABAB5;
        }
        .boundary-solution h5 {
            color: #09a19c;
            margin-bottom: 10px;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .boundary-solution p {
            margin-bottom: 10px;
        }
        .solution-case {
            font-style: italic;
            color: #555;
            font-size: 14px;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed #e0e0e0;
        }

/* 国际办事处图片卡片 */
.international-office-image {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 6rem;
    transition: all 0.3s ease;
}

.international-office-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
}

/* 全球化布局相关样式 */
.global-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* 响应式设计 - 全球覆盖网格 */
@media (max-width: 1200px) {
    .global-coverage-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .global-coverage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 响应式设计 - 全球覆盖卡片 */
@media (max-width: 768px) {
    .global-coverage-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .global-coverage-card-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .global-coverage-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

/* 响应式设计 - 城市网格 */
@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .global-coverage-image {
        height: 200px;
    }
}

/* 响应式设计 - 语言列表 */
@media (max-width: 768px) {
    .language-list {
        gap: 0.75rem;
    }
    
    .global-coverage-link {
        padding: 0.75rem;
    }
    
    .country-icon {
        font-size: 1.5rem;
    }
}

/* 响应式设计 - 统计数据 */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

/* 响应式设计 - 服务保障列表 */
@media (max-width: 768px) {
    .service-guarantee-item {
        padding: 0.75rem;
    }
    
    .guarantee-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .guarantee-icon {
        font-size: 1rem;
    }
}

/* 响应式设计 - 标题区域 */
@media (max-width: 768px) {
    .global-coverage-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-desc {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
}

/* 卡片基础样式 */
.global-coverage-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    /* 组合内外阴影效果，增强深度感 */
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 12px 24px rgba(0, 0, 0, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.02);
    /* 添加3D效果基础 */
    transform-style: preserve-3d;
}

.global-coverage-card:hover {
    transform: translateY(-8px) scale(1.02) translateZ(10px);
    border-color: rgba(59, 130, 246, 0.3);
    /* 合并的阴影效果，包括内阴影、外阴影和边框发光 */
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 32px 64px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(59, 130, 246, 0.2);
    /* 增强边框发光效果 */
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* 卡片装饰形状 */
.card-decorative-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* 添加模糊效果增强深度 */
    filter: blur(20px);
    /* 添加第二层次的装饰 */
    background: radial-gradient(circle, var(--gradient-color) 0%, transparent 70%);
}

/* 增强悬停时装饰形状的效果 */
.global-coverage-card:hover .card-decorative-shape {
    transform: scale(1.3) translateZ(20px);
    opacity: 1;
    filter: blur(25px);
}

/* 卡片颜色变体 */
.global-coverage-card.primary-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-color: rgba(59, 130, 246, 0.1);
    /* 定义渐变颜色变量 */
    --gradient-color: rgba(59, 130, 246, 0.2);
}

/* 增强主卡片的装饰形状效果 */
.global-coverage-card.primary-card .card-decorative-shape {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 70%, transparent 100%);
}

.global-coverage-card.secondary-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    border-color: rgba(16, 185, 129, 0.1);
    /* 定义渐变颜色变量 */
    --gradient-color: rgba(16, 185, 129, 0.2);
}

/* 增强次要卡片的装饰形状效果 */
.global-coverage-card.secondary-card .card-decorative-shape {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 70%, transparent 100%);
}

.global-coverage-card.tertiary-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(245, 158, 11, 0.02) 100%);
    border-color: rgba(245, 158, 11, 0.1);
    /* 定义渐变颜色变量 */
    --gradient-color: rgba(245, 158, 11, 0.2);
}

/* 增强第三卡片的装饰形状效果 */
.global-coverage-card.tertiary-card .card-decorative-shape {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 70%, transparent 100%);
}

/* 第四卡片样式（如果需要） */
.global-coverage-card.quaternary-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-color: rgba(139, 92, 246, 0.1);
    /* 定义渐变颜色变量 */
    --gradient-color: rgba(139, 92, 246, 0.2);
}

.global-coverage-card.quaternary-card .card-decorative-shape {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 70%, transparent 100%);
}

/* 卡片头部 */
.global-coverage-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.global-coverage-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
}

.global-coverage-card-icon.secondary {
    background: rgba(16, 185, 129, 0.1);
}

.global-coverage-card-icon.tertiary {
    background: rgba(245, 158, 11, 0.1);
}

.global-coverage-icon {
    font-size: 1.5rem;
    color: #3b82f6;
}

.global-coverage-card-icon.secondary .global-coverage-icon {
    color: #10b981;
}

.global-coverage-card-icon.tertiary .global-coverage-icon {
    color: #f59e0b;
}

.global-coverage-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    letter-spacing: -0.025em;
    transition: color 0.3s ease;
}

.global-coverage-card:hover .global-coverage-card-title {
    color: #2563eb;
}

/* 卡片主要内容区域 */
.global-coverage-card-content {
    position: relative;
    z-index: 10;
}

/* 卡片描述文本 */
.global-coverage-card-desc {
    color: #4b5563;
    line-height: 1.7;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.global-coverage-card:hover .global-coverage-card-desc {
    color: #374151;
}

/* 卡片内容网格 */
.global-coverage-card .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 图片容器 */
.global-coverage-image {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.global-coverage-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.global-coverage-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.global-coverage-image:hover .global-coverage-image-img {
    transform: scale(1.1);
}

/* 图片叠加层 */
.global-coverage-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    transition: all 0.3s ease;
}

.global-coverage-image:hover .global-coverage-image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.global-coverage-image-overlay .city-name {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.global-coverage-image-overlay .country-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    opacity: 0.9;
}

/* 卡片描述 */
.global-coverage-card-desc {
    color: #6b7280;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* 服务保障列表 */
.service-guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-guarantee-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #10b981, #059669);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.service-guarantee-item:hover {
    background-color: rgba(16, 185, 129, 0.08);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.service-guarantee-item:hover::before {
    transform: scaleY(1);
}

.guarantee-icon-wrapper {
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-guarantee-item:hover .guarantee-icon-wrapper {
    transform: scale(1.1);
    background-color: rgba(5, 150, 105, 0.1);
}

.guarantee-icon {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-guarantee-item:hover .guarantee-icon {
    transform: scale(1.1) rotate(5deg);
    color: #059669;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.2) rotate(5deg); }
}

.guarantee-text {
    color: #374151;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.service-guarantee-item:hover .guarantee-text {
    color: #059669;
    font-weight: 500;
}

/* 服务保障按钮 */
.service-guarantee-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-guarantee-btn::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;
    z-index: -1;
}

.service-guarantee-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-guarantee-btn:hover::before {
    left: 100%;
}

.service-guarantee-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* 卡片装饰 */
.global-coverage-card-decor {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    pointer-events: none;
}

/* 链接样式 */
.global-coverage-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.global-coverage-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.global-coverage-link:hover::before {
    left: 100%;
}

.global-coverage-link:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px) translateX(4px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.global-coverage-link.active-link {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.global-coverage-link.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.02);
}

.global-coverage-link.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.country-icon {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.global-coverage-link:hover .country-icon {
    transform: scale(1.1);
}

.global-coverage-link-content {
    flex: 1;
}

.link-title {
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    transition: color 0.3s ease;
}

.global-coverage-link:hover .link-title {
    color: #2563eb;
}

.global-coverage-link-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    transition: color 0.3s ease;
}

.global-coverage-link:hover .global-coverage-link-desc {
    color: #4b5563;
}

.link-arrow {
    color: #3b82f6;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 1.125rem;
}

.global-coverage-link:hover .link-arrow {
    transform: translateX(6px);
    color: #1d4ed8;
}

/* 即将推出徽章 */
.coming-soon-badge {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* 城市描述 */
.coverage-description {
    color: #6b7280;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}