
        :root {
            --u25mzy-primary: #1e56a0;
            --u25mzy-accent: #d4b106;
            --u25mzy-text: #2c3e50;
            --u25mzy-bg-light: #f8fbff;
            --u25mzy-white: #ffffff;
            --u25mzy-shadow: 0 10px 30px rgba(30, 86, 160, 0.08);
            --u25mzy-max-width: 1100px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: var(--u25mzy-text);
            background-color: var(--u25mzy-bg-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* 布局规范 */
        .u25mzy-container {
            max-width: var(--u25mzy-max-width);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        .u25mzy-flex {
            display: flex;
            flex-wrap: wrap;
        }

        .u25mzy-flex-item {
            min-width: 0;
        }

        /* 导航栏 */
        .u25mzy-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(30, 86, 160, 0.1);
            transition: all 0.3s ease;
        }

        .u25mzy-nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            flex-wrap: wrap;
        }

        .u25mzy-logo {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
        }

        .u25mzy-logo img {
            height: 32px;
            width: auto;
        }

        .u25mzy-menu {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 16px;
        }

        .u25mzy-menu a {
            text-decoration: none;
            color: var(--u25mzy-text);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 4px;
            transition: color 0.3s;
            word-break: keep-all;
        }

        .u25mzy-menu a:hover, .u25mzy-menu a.u25mzy-active {
            color: var(--u25mzy-primary);
            border-bottom: 2px solid var(--u25mzy-primary);
        }

        /* Hero 区 - 对角线分割设计 */
        .u25mzy-hero {
            padding-top: 140px;
            padding-bottom: 96px;
            background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
            position: relative;
            overflow: hidden;
        }

        .u25mzy-hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><path d="M0 400L400 0V400H0Z" fill="rgba(30,86,160,0.03)"/></svg>');
            background-size: cover;
            z-index: 1;
        }

        .u25mzy-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            word-break: break-word;
        }

        .u25mzy-hero h1 {
            font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--u25mzy-primary);
            font-weight: 800;
        }

        .u25mzy-hero p {
            font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
            color: #5d6d7e;
            margin-bottom: 48px;
            line-height: 1.8;
        }

        .u25mzy-btn-group {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .u25mzy-btn {
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            min-width: 180px;
            text-align: center;
        }

        .u25mzy-btn-primary {
            background: var(--u25mzy-primary);
            color: var(--u25mzy-white);
            box-shadow: 0 4px 15px rgba(30, 86, 160, 0.3);
        }

        .u25mzy-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(30, 86, 160, 0.4);
        }

        /* 简历模板展示区 - 网格布局 */
        .u25mzy-section {
            padding: 96px 0;
            word-break: break-word;
        }

        .u25mzy-section-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .u25mzy-section-title h2 {
            font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
            color: var(--u25mzy-primary);
            margin-bottom: 16px;
        }

        .u25mzy-template-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .u25mzy-template-card {
            background: var(--u25mzy-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--u25mzy-shadow);
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
        }

        .u25mzy-template-card:hover {
            transform: translateY(-10px);
        }

        .u25mzy-card-img {
            height: 240px;
            background: #edf2f7;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* 使用SVG模拟简历缩略图视觉效果 */
        .u25mzy-card-img svg {
            width: 60%;
            height: auto;
            opacity: 0.8;
        }

        .u25mzy-card-info {
            padding: 24px;
        }

        .u25mzy-card-info h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--u25mzy-text);
        }

        .u25mzy-card-info p {
            font-size: 14px;
            color: #7f8c8d;
            margin-bottom: 20px;
        }

        .u25mzy-tag {
            background: #f0f4f8;
            color: var(--u25mzy-primary);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        /* 解决方案场景区 - 交错布局 */
        .u25mzy-synergy {
            background-color: var(--u25mzy-white);
        }

        .u25mzy-scenario-item {
            display: flex;
            align-items: center;
            gap: 64px;
            margin-bottom: 80px;
        }

        .u25mzy-scenario-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .u25mzy-scenario-text {
            flex: 1;
            min-width: 0;
        }

        .u25mzy-scenario-visual {
            flex: 1;
            min-width: 0;
            background: var(--u25mzy-bg-light);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(30, 86, 160, 0.05);
        }

        .u25mzy-scenario-text h3 {
            font-size: 28px;
            color: var(--u25mzy-primary);
            margin-bottom: 20px;
        }

        .u25mzy-pain-points {
            margin: 24px 0;
            list-style: none;
        }

        .u25mzy-pain-points li {
            padding-left: 28px;
            position: relative;
            margin-bottom: 12px;
            font-size: 15px;
            color: #e74c3c;
        }

        .u25mzy-pain-points li::before {
            content: "✕";
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .u25mzy-architecture {
            background: #fcfdfe;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid var(--u25mzy-accent);
        }

        /* 成功案例区 */
        .u25mzy-success {
            background: var(--u25mzy-primary);
            color: var(--u25mzy-white);
        }

        .u25mzy-success .u25mzy-section-title h2 {
            color: var(--u25mzy-white);
        }

        .u25mzy-narrative-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
        }

        .u25mzy-narrative-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .u25mzy-narrative-card h4 {
            font-size: 22px;
            margin-bottom: 16px;
            color: var(--u25mzy-accent);
        }

        .u25mzy-outcome {
            margin-top: 24px;
            font-weight: 700;
            font-size: 18px;
            color: #ffffff;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
        }

        /* 页脚 */
        .u25mzy-footer {
            background: #1a1a1a;
            color: #bdc3c7;
            padding: 80px 0 40px;
        }

        .u25mzy-footer-content {
            display: flex;
            justify-content: space-between;
            gap: 48px;
            margin-bottom: 64px;
        }

        .u25mzy-footer-brand h2 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .u25mzy-footer-links {
            display: flex;
            gap: 80px;
            flex-wrap: wrap;
        }

        .u25mzy-footer-links ul {
            list-style: none;
        }

        .u25mzy-footer-links h5 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .u25mzy-footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 14px;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s;
        }

        .u25mzy-footer-links a:hover {
            color: var(--u25mzy-accent);
        }

        .u25mzy-copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 13px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .u25mzy-nav-wrapper {
                height: auto;
                padding: 16px 0;
            }
            .u25mzy-menu {
                display: none; /* 移动端简化 */
            }
            .u25mzy-scenario-item, .u25mzy-scenario-item:nth-child(even) {
                flex-direction: column;
                gap: 32px;
            }
            .u25mzy-narrative-grid {
                grid-template-columns: 1fr;
            }
            .u25mzy-hero {
                padding-top: 100px;
            }
        }

        /* 动画增强 */
        .u25mzy-fade-in {
            transition: transform 0.6s ease, box-shadow 0.6s ease;
        }
    