       
        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
        }
        
        .image-section {
            flex: 1;
            min-width: 300px;
            background: linear-gradient(135deg, #1a5276 0%, #3498db 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 30px;
            color: white;
            position: relative;
        }
        
        .image-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background-image: url(/template/default/css/'data:image/svg+xml;utf8,<svg xmlns="http:/www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.05)" width="50" height="50"/><rect fill="rgba(255,255,255,0.05)" x="50" y="50" width="50" height="50"/></svg>'); */			
			background-image: url("/template/default/photo/maisse.jpg");
 
            /* background-size: 20px 20px;
            opacity: 0.3; */
        }
        
        .company-name {
            font-size: 26px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .company-tagline {
            font-size: 16px;
            text-align: center;
            max-width: 80%;
            opacity: 0.9;
            line-height: 1.5;
        }
        
        .info-section {
            flex: 2;
            min-width: 500px;
            padding: 40px;
        }
        
        h1-m {
            color: #1a5276;
            font-size: 28px;
            margin-bottom: 15px;
            border-bottom: 2px solid #eaeaea;
            padding-bottom: 15px;
        } 
        
        .company-intro {
            margin-bottom: 25px;
            font-size: 16px;
            color: #444;
            line-height: 1.7;
        }
        
        .divider {
            height: 1px;
            background-color: #eaeaea;
            margin: 25px 0;
        }
        
        h2 {
            color: #1a5276;
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .features {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        
        .feature-item {
            flex: 1;
            text-align: center;
            padding: 20px 15px;
            background-color: #f9f9f9;
            border-radius: 6px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eaeaea;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: #3498db;
        }
        
        .feature-number {
            font-size: 28px;
            font-weight: bold;
            color: #1a5276;
            margin-bottom: 10px;
        }
        
        .feature-desc {
            font-size: 14px;
            color: #666;
        }
        
        .feature-arrow {
            color: #1a5276;
            margin-right: 5px;
            font-weight: bold;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .features {
                flex-wrap: wrap;
            }
            
            .feature-item {
                flex: 0 0 calc(50% - 10px);
            }
        }
        
        @media (max-width: 900px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .image-section, .info-section {
                min-width: 100%;
            }
            
            .image-section {
                padding: 40px 20px;
            }
            
            .info-section {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
           /*  body {
                padding: 10px;
            } */
            
            .container {
               /*  padding: 0; */
            }
            
            h1-m {
                font-size: 24px;
            }
            
            h2 {
                font-size: 20px;
            }
            
            .features {
                flex-direction: column;
            }
            
            .feature-item {
                flex: 1;
            }
        }
        
        @media (max-width: 480px) {
            .info-section {
                padding: 20px;
            }
            
            .feature-item {
                padding: 15px 10px;
            }
            
            .feature-number {
                font-size: 24px;
            }
        }<!--耗时1776078152.5678秒-->