        .ubs-gov {
            max-width: 100%;
            margin: 0 auto;
            overflow-x: hidden;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        /* 第一版：全屏大图背景 */
        .ubs-gov-section-1 {
            min-height: 100vh;
            background: linear-gradient(rgb(0 173 239 / 73%), rgb(85 93 101 / 88%)), url(/static/index/picture/zfjg1.jpg) no-repeat center center / cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            padding: 0 20px;
        }
        
        .ubs-gov-logo {
            position: absolute;
            top: 40px;
            left: 60px;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            z-index: 10;
        }
        
        .ubs-gov-logo i {
            color: #ffcc00;
            margin-right: 10px;
            font-size: 2.5rem;
        }
        
        .ubs-gov-hero-content {
            max-width: 1200px;
            padding: 20px;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }
        
        .ubs-gov-hero-content h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }
        
        .ubs-gov-hero-content p {
            font-size: 1.8rem;
            max-width: 900px;
            margin: 0 auto 50px;
            line-height: 1.6;
            font-weight: 300;
            opacity: 0.9;
        }
        
        .ubs-gov-cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, #ffcc00 0%, #e6b800 100%);
            color: #002855;
            font-size: 1.3rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(255, 204, 0, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.3);
            letter-spacing: 1px;
        }
        
        .ubs-gov-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(255, 204, 0, 0.7);
            background: linear-gradient(135deg, #ffd633 0%, #ffcc00 100%);
        }
        
        .ubs-gov-scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            animation: bounce 2s infinite;
        }
        
        /* 第二版：痛点与解决方案 */
        .ubs-gov-section-2 {
            padding: 120px 60px;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ubs-gov-section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .ubs-gov-section-title h2 {
            font-size: 3rem;
            color: #002855;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        .ubs-gov-section-title h2:after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: #ffcc00;
            border-radius: 3px;
        }
        
        .ubs-gov-section-title p {
            font-size: 1.4rem;
            color: #555;
            max-width: 900px;
            margin: 40px auto 0;
            line-height: 1.8;
        }
        
        .ubs-gov-solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .ubs-gov-solution-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .ubs-gov-solution-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .ubs-gov-card-header {
            padding: 30px;
            background: linear-gradient(135deg, #002855 0%, #004a8f 100%);
            color: white;
            display: flex;
            align-items: center;
        }
        
        .ubs-gov-card-icon {
            font-size: 3.5rem;
            margin-right: 25px;
            color: #ffcc00;
        }
        
        .ubs-gov-card-header h3 {
            font-size: 1.8rem;
            font-weight: 600;
        }
        
        .ubs-gov-card-content {
            padding: 35px;
        }
        
        .ubs-gov-card-content p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        
        .ubs-gov-feature-list {
            list-style: none;
            padding-left: 0;
        }
        
        .ubs-gov-feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .ubs-gov-feature-list li:before {
            content: '✓';
            color: #ffcc00;
            font-weight: bold;
            font-size: 1.3rem;
            margin-right: 15px;
        }
        
        /* 第三版：技术优势 */
        .ubs-gov-section-3 {
            padding: 120px 60px;
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .ubs-gov-advantages-container {
            display: flex;
            max-width: 1600px;
            margin: 0 auto;
            gap: 60px;
            align-items: center;
        }
        
        .ubs-gov-advantages-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .ubs-gov-advantages-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .ubs-gov-advantages-image:hover img {
            transform: scale(1.05);
        }
        
        .ubs-gov-advantages-content {
            flex: 1;
        }
        
        .ubs-gov-advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }
        
        .ubs-gov-advantage-item {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }
        
        .ubs-gov-advantage-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .ubs-gov-advantage-icon {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 20px;
        }
        
        .ubs-gov-advantage-item h3 {
            font-size: 1.5rem;
            color: #002855;
            margin-bottom: 15px;
        }
        
        .ubs-gov-advantage-item p {
            color: #555;
            line-height: 1.7;
        }
        
        /* 第四版：应用场景 */
        .ubs-gov-section-4 {
            padding: 120px 60px;
            background: linear-gradient(135deg, #002855 0%, #004a8f 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ubs-gov-scenarios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1600px;
            margin: 60px auto 0;
        }
        
        .ubs-gov-scenario-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .ubs-gov-scenario-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
        }
        
        .ubs-gov-scenario-icon {
            font-size: 3.5rem;
            color: #ffcc00;
            margin-bottom: 25px;
        }
        
        .ubs-gov-scenario-card h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .ubs-gov-scenario-features {
            list-style: none;
            padding-left: 0;
        }
        
        .ubs-gov-scenario-features li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .ubs-gov-scenario-features li:before {
            content: '•';
            color: #ffcc00;
            font-weight: bold;
            font-size: 1.8rem;
            margin-right: 15px;
            line-height: 0;
        }
        
        /* 第五版：行动号召 */
        .ubs-gov-section-5 {
            padding: 120px 60px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .ubs-gov-cta-box {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 30px;
            padding: 70px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }
        
        .ubs-gov-cta-box h2 {
            font-size: 2.8rem;
            color: #002855;
            margin-bottom: 30px;
        }
        
        .ubs-gov-cta-box p {
            font-size: 1.4rem;
            color: #555;
            margin-bottom: 50px;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .ubs-gov-contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            flex-wrap: wrap;
        }
        
        .ubs-gov-contact-item {
            display: flex;
            align-items: center;
            font-size: 1.2rem;
            color: #002855;
        }
        
        .ubs-gov-contact-item i {
            font-size: 2rem;
            color: #ffcc00;
            margin-right: 15px;
        }
        
        /* 装饰元素 */
        .ubs-gov-decoration {
            position: absolute;
            z-index: 0;
        }
        
        .ubs-gov-circle {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 15px solid rgba(255, 204, 0, 0.1);
            position: absolute;
        }
        
        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
            40% {transform: translateY(-20px) translateX(-50%);}
            60% {transform: translateY(-10px) translateX(-50%);}
        }
        
        /* 响应式调整 */
        @media (max-width: 1200px) {
            .ubs-gov-hero-content h1 {
                font-size: 3.8rem;
            }
            
            .ubs-gov-advantages-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 992px) {
            .ubs-gov-hero-content h1 {
                font-size: 3.2rem;
            }
            
            .ubs-gov-hero-content p {
                font-size: 1.5rem;
            }
            
            .ubs-gov-section-2, .ubs-gov-section-3, .ubs-gov-section-4, .ubs-gov-section-5 {
                padding: 80px 40px;
            }
        }
        
        @media (max-width: 768px) {
            .ubs-gov-hero-content h1 {
                font-size: 2.6rem;
            }
            
            .ubs-gov-hero-content p {
                font-size: 1.3rem;
            }
            
            .ubs-gov-section-title h2 {
                font-size: 2.4rem;
            }
            
            .ubs-gov-solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .ubs-gov-cta-box {
                padding: 40px 25px;
            }
            
            .ubs-gov-cta-box h2 {
                font-size: 2.2rem;
            }
            
            .ubs-gov-logo {
                left: 30px;
                font-size: 1.8rem;
            }
            
            .ubs-gov-scroll-down {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .ubs-gov-hero-content h1 {
                font-size: 2.2rem;
            }
            
            .ubs-gov-hero-content p {
                font-size: 1.1rem;
            }
            
            .ubs-gov-cta-button {
                padding: 14px 30px;
                font-size: 1.1rem;
            }
            
            .ubs-gov-section-title h2 {
                font-size: 2rem;
            }
            
            .ubs-gov-section-title p {
                font-size: 1.1rem;
            }
            
            .ubs-gov-card-header h3 {
                font-size: 1.5rem;
            }
        }
