
        /* 基础重置 */
        body {
            margin: 0;
            padding: 0;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            color: #333;
            background-color: #f9fafb;
            line-height: 1.6;
        }

        /* 导航栏复用首页样式 */
        .trlmO-haqi {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }
        .trlmO-loporo {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            flex-wrap: wrap;
        }
        .trlmO-logo {
            display: flex;
            align-items: center;
            min-width: 0;
        }
        .trlmO-logo img {
            height: 32px;
            width: auto;
        }
        .trlmO-trlmO-guide-items {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            min-width: 0;
        }
        .trlmO-trlmO-route {
            text-decoration: none;
            color: #666;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
            white-space: nowrap;
        }
        .trlmO-trlmO-route:hover {
            color: #D42D2D;
        }
        .trlmO-trlmO-route.active {
            color: #D42D2D;
            border-bottom: 2px solid #D42D2D;
        }

        /* 创意布局样式 */
        .trlmO-kava {
            max-width: 1400px;
            margin: 0 auto;
            padding: 48px 24px;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 展示区域 - Ayonicu (Hero) */
        .trlmO-ayonicu {
            background: linear-gradient(135deg, #D42D2D 0%, #ff5e5e 100%);
            border-radius: 24px;
            padding: 80px 48px;
            color: #fff;
            margin-bottom: 64px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }
        .trlmO-ayonicu::after {
            content: "";
            position: absolute;
            right: -100px;
            top: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }
        .trlmO-ayonicu-text {
            flex: 1;
            min-width: 320px;
            z-index: 1;
        }
        .trlmO-ayonicu h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin: 0 0 24px 0;
            font-weight: 800;
            word-break: keep-all;
        }
        .trlmO-ayonicu p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            opacity: 0.9;
            margin-bottom: 32px;
            max-width: 600px;
        }

        /* 按钮组件 */
        .trlmO-akiqa {
            display: inline-flex;
            align-items: center;
            padding: 16px 32px;
            background: #fff;
            color: #D42D2D;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .trlmO-akiqa:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .trlmO-equfoko {
            display: inline-flex;
            padding: 16px 32px;
            background: rgba(255,255,255,0.2);
            color: #fff;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            margin-left: 16px;
            border: 1px solid rgba(255,255,255,0.4);
            transition: background 0.3s;
        }
        .trlmO-equfoko:hover {
            background: rgba(255,255,255,0.3);
        }

        /* 筛选区域 - Yizidi */
        .trlmO-yizidi {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 48px;
            padding: 16px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        }
        .trlmO-yizidi-tag {
            padding: 8px 20px;
            background: #f3f4f6;
            border-radius: 30px;
            font-size: 14px;
            color: #4b5563;
            cursor: pointer;
            transition: all 0.3s;
        }
        .trlmO-yizidi-tag:hover, .trlmO-yizidi-tag.active {
            background: #D42D2D;
            color: #fff;
        }

        /* 模板网格 - Yate + Atoca */
        .trlmO-yate {
            margin-bottom: 96px;
        }
        .trlmO-atoca {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 32px;
        }

        /* 卡片组件 - Umope */
        .trlmO-umope {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }
        .trlmO-umope:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .trlmO-umope-preview {
            aspect-ratio: 16/9;
            background: #f0f2f5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .trlmO-umope-preview::before {
            content: "PPT PREVIEW";
            font-weight: 800;
            color: #ddd;
            font-size: 1.5rem;
        }
        .trlmO-umope-content {
            padding: 24px;
        }
        .trlmO-umope-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 12px 0;
            color: #111;
        }
        .trlmO-umope-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #6b7280;
        }
        .trlmO-juzuja {
            background: #fee2e2;
            color: #dc2626;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
        }

        /* 解决方案区域 - Pahatav */
        .trlmO-pahatav {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            background: #fff;
            padding: 64px;
            border-radius: 32px;
            margin-bottom: 96px;
            align-items: center;
        }
        .trlmO-pahatav-visual {
            flex: 1;
            min-width: 300px;
            background: #f9fafb;
            border-radius: 20px;
            padding: 40px;
            border: 2px dashed #e5e7eb;
            text-align: center;
        }
        .trlmO-pahatav-text {
            flex: 1.2;
            min-width: 320px;
        }
        .trlmO-pahatav h2 {
            font-size: 2.5rem;
            margin: 0 0 24px 0;
            color: #111;
        }
        .trlmO-pahatav-item {
            margin-bottom: 24px;
            padding-left: 24px;
            border-left: 4px solid #D42D2D;
        }
        .trlmO-pahatav-item h3 {
            margin: 0 0 8px 0;
            font-size: 1.25rem;
        }

        /* 页脚区域 */
        .trlmO-bivoku {
            background: #111;
            color: #9ca3af;
            padding: 80px 24px;
        }
        .trlmO-rimuvo {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
        }
        .trlmO-bivoku-brand {
            flex: 1;
            min-width: 250px;
        }
        .trlmO-bivoku-brand h4 {
            color: #fff;
            font-size: 1.5rem;
            margin: 0 0 16px 0;
        }
        .trlmO-bivoku-links {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            flex: 2;
        }
        .trlmO-bivoku-group h5 {
            color: #fff;
            margin: 0 0 20px 0;
            font-size: 1rem;
        }
        .trlmO-bivoku-group a {
            display: block;
            color: #9ca3af;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .trlmO-bivoku-group a:hover {
            color: #fff;
        }

        @media (max-width: 768px) {
            .trlmO-ayonicu { padding: 40px 24px; }
            .trlmO-equfoko { margin-left: 0; margin-top: 16px; width: 100%; text-align: center; }
            .trlmO-akiqa { width: 100%; text-align: center; }
            .trlmO-pahatav { padding: 32px; }
            .trlmO-trlmO-guide-items { display: none; } /* 移动端简化导航 */
        }
    