 
 
 /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
            padding: 20px;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        } */
 
 /* .container {
            width: 100%;
            max-width: 1000px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        } */
        
        .header {
            background: #1e5799;
            color: white;
            padding: 30px 40px;
            text-align: center;
        }
        
        .header h1 {
            font-size: 28px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .header p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .content {
            padding: 30px;
        }
        
        .grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .grid-item {
            background: #f9f9f9;
            /* border-radius: 6px; */
            padding: 25px 20px;
            text-align: center;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .grid-item::before {
            content: '';
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(26, 115, 232);
            transition: bottom 0.3s ease;
            z-index: 1;
        }
        
        .grid-item:hover::before {
            bottom: 0;
        }
        
        .grid-content {
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .grid-title {
            font-size: 25px;
            font-weight: bold;
            color: white;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .grid-desc {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            margin-bottom: 15px;
        }
        
        .grid-link {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 16px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .grid-item:hover .grid-link {
            opacity: 1;
            transform: translateY(0);
        }
        
        .grid-link:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .section-title {
            font-size: 22px;
            font-weight: bold;
            color: #1e5799;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #1e5799;
        }
        
        /* .footer {
            background: #f0f0f0;
            padding: 20px;
            text-align: center;
            color: #666;
            font-size: 14px;
        } */
		
		/* 首页数字化车间三阶驱动模型 */
		.hfmes-methodology-compact {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0px;
        }
        
        .hfmes-methodology-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .hfmes-methodology-title {
            font-size: 2.2rem;
            color: #1a3c6e;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .hfmes-methodology-subtitle {
            font-size: 1.1rem;
            color: #5a6c7d;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .hfmes-methodology-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .hfmes-stage-card {
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            background: #fff;
            border-radius: /* 12px */;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .hfmes-stage-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .hfmes-stage-header {
            padding: 25px 20px;
            color: white;
            position: relative;
            overflow: hidden;
            min-height: 140px;
        }
        
        .hfmes-stage-header::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            z-index: 1;
        }
        
        .hfmes-stage-index {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
            opacity: 0.9;
        }
        
        .hfmes-stage-name {
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .hfmes-stage-tag {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            position: relative;
            z-index: 2;
        }
        
        .hfmes-stage-content {
            padding: 25px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .hfmes-stage-description {
            font-size: 1rem;
            color: #444;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .hfmes-stage-systems {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .hfmes-system-tag {
            background-color: #f0f5ff;
            color: #2c5aa0;
            padding: 5px 12px;
            border-radius: 16px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        /* 各阶段色彩规划 */
        .hfmes-stage-1 .hfmes-stage-header {
            background: linear-gradient(135deg, #2c5aa0 0%, #3a77d0 100%);
        }
        
        .hfmes-stage-2 .hfmes-stage-header {
            background: linear-gradient(135deg, #2c8fa0 0%, #3ab0d0 100%);
        }
        
        .hfmes-stage-3 .hfmes-stage-header {
            background: linear-gradient(135deg, #2ca06a 0%, #3ad090 100%);
        }
        
        /* 模型衔接示意 */
        .hfmes-model-connection {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0 30px;
            position: relative;
        }
        
        .hfmes-connection-line {
            width: 80%;
            height: 3px;
            background: linear-gradient(to right, #2c5aa0, #2ca06a);
            border-radius: 3px;
            position: relative;
        }
        
        .hfmes-connection-arrow {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background-color: #2ca06a;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 0.8rem;
        }
        
        .hfmes-connection-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: #fff;
            border: 2px solid #2c5aa0;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .hfmes-connection-dot:nth-child(1) {
            left: 0;
        }
        
        .hfmes-connection-dot:nth-child(2) {
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .hfmes-connection-dot:nth-child(3) {
            right: 0;
        }
        
        /* 模型总结 */
        .hfmes-model-summary {
            background-color: #f8fafc;
            border-radius: 10px;
            padding: 25px;
            margin-top: 20px;
            border-left: 5px solid #2c5aa0;
        }
        
        .hfmes-summary-title {
            color: #1a3c6e;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .hfmes-summary-text {
            color: #5a6c7d;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 1100px) {
            .hfmes-stage-card {
                min-width: 280px;
            }
        }
        
        @media (max-width: 900px) {
            .hfmes-methodology-container {
                gap: 20px;
            }
            
            .hfmes-stage-card {
                min-width: 100%;
                max-width: 500px;
            }
            
            .hfmes-methodology-title {
                font-size: 1.9rem;
            }
        }
        
        @media (max-width: 600px) {
            .hfmes-methodology-title {
                font-size: 1.7rem;
            }
            
            .hfmes-methodology-subtitle {
                font-size: 1rem;
            }
            
            .hfmes-stage-name {
                font-size: 1.3rem;
            }
            
            .hfmes-stage-description {
                font-size: 0.95rem;
            }
        }
        
        /* 动画成效 */
        @keyframes hfmes-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hfmes-animated {
            animation: hfmes-fadeInUp 0.6s ease forwards;
        }
        
        .hfmes-delay-1 {
            animation-delay: 0.1s;
        }
        
        .hfmes-delay-2 {
            animation-delay: 0.2s;
        }
        
        .hfmes-delay-3 {
            animation-delay: 0.3s;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .grid-container {
                grid-template-columns: 1fr;
            }
        }<!--耗时1776075649.8427秒-->