80 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			80 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
|   | <!DOCTYPE html> | |||
|  | <html lang="zh-CN"> | |||
|  | <head> | |||
|  |     <meta charset="UTF-8"> | |||
|  |     <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
|  |      | |||
|  |     <!-- SEO Meta Tags --> | |||
|  |     <meta name="robots" content="index, follow"> | |||
|  |     <!--<meta name="description" content="海南省学宇思网络科技有限公司专注于自主研发的软件、人工智能及大数据解决方案,已成功进入市场并实现广泛应用。">--> | |||
|  |     <!--<meta name="keywords" content="软件开发, 人工智能, 大数据, 自主研发, 海南省学宇思网络科技有限公司, 数字化转型, 智能化解决方案">--> | |||
|  |      | |||
|  |     <!--<title>关于我们 - 海南省学宇思网络科技有限公司</title>--> | |||
|  |      | |||
|  |     <?php | |||
|  |     $title = "关于我们 - 海南省学宇思网络科技有限公司"; | |||
|  |     $description = "海南省学宇思网络科技有限公司专注于自主研发的软件、人工智能及大数据解决方案,已成功进入市场并实现广泛应用"; | |||
|  |     $keywords = "软件开发, 人工智能, 大数据, 自主研发, 海南省学宇思网络科技有限公司, 数字化转型, 智能化解决方案"; | |||
|  | 
 | |||
|  |     include('container/links.php'); | |||
|  |     ?>
 | |||
|  | </head> | |||
|  | <body class="body-bg-color"> | |||
|  |     <!-- Header --> | |||
|  |     <?php include 'container/header.php'; ?>
 | |||
|  | 
 | |||
|  |     <!-- Page Title Start --> | |||
|  |     <section class="page-title"> | |||
|  |         <div class="container"> | |||
|  |             <div class="page-title__inner"> | |||
|  |                 <div class="page-title__shape-1" style="background-image: url(images/shapes/page-title-shape-1.png);"></div> | |||
|  |                 <div class="page-title__title-box"> | |||
|  | 
 | |||
|  |                     <h3 class="page-title__title">关于我们</h3> | |||
|  |                 </div> | |||
|  |             </div> | |||
|  |         </div> | |||
|  |     </section> | |||
|  | 
 | |||
|  | <!-- About Us Section Start --> | |||
|  | <section class="about-us"> | |||
|  |     <div class="container"> | |||
|  |         <div class="about-us__wrapper" style="display: flex; align-items: center; justify-content: center; flex-wrap: wrap;"> | |||
|  |             <!-- 添加公司图片 --> | |||
|  |             <div class="about-us__image" style="flex: 1; min-width: 300px; text-align: center; margin-bottom: 20px;"> | |||
|  |                 <img src="https://file.tianyuanapi.com/static/image/about.jpg" alt="公司照片" style="max-width:80%; height:auto;"> | |||
|  |             </div> | |||
|  |             <!-- 主要内容部分 --> | |||
|  |             <div class="about-us__content" style="flex: 1; max-width:600px; margin: 0 20px;"> | |||
|  |                 <p style="text-indent: 2em;">海南省学宇思网络科技有限公司成立以来,始终专注于软件开发、人工智能和大数据服务领域,致力于为客户提供高效且创新的解决方案。公司以技术为驱动,拥有一支经验丰富、技术过硬的研发团队,专注于自主研发多款智能化产品。这些产品广泛应用于企业管理、数据分析及人工智能应用等多种业务场景,已在市场中取得了显著的成效,并赢得了客户的高度认可。</p> | |||
|  |                 <p style="text-indent: 2em;">我们通过深入了解客户需求,不断优化产品功能,确保每一款解决方案都能够帮助客户提升运营效率,增强市场竞争力。多年来,公司通过技术积累与创新,为客户提供了更加智能化和自动化的系统支持,帮助他们在快速发展的数字化环境中取得优势。</p> | |||
|  |                 <p style="text-indent: 2em;">在未来,海南省学宇思网络科技有限公司将继续秉持技术创新的理念,持续加强自主研发能力,推出更多具备前瞻性的产品与服务。我们致力于成为行业领先的技术提供者,与客户携手共进,助力其在智能化升级的过程中实现更大成就。</p> | |||
|  |                   <p style="text-indent: 2em;">公司地址:海南省海口市秀英区秀英街道丽晶路17号保利秀英港项目3号地块(一期)B区3楼21层2102房。</p> | |||
|  |                    <p style="text-indent: 2em;">电话:15008098853。email:a1726850085@outlook.com</p> | |||
|  |             </div> | |||
|  |         </div> | |||
|  |     </div> | |||
|  | </section> | |||
|  | 
 | |||
|  | <style> | |||
|  |     /* 移动端媒体查询,宽度小于768px时图片和内容换行 */ | |||
|  |     @media (max-width: 768px) { | |||
|  |         .about-us__wrapper { | |||
|  |             flex-direction: column; /* 改为垂直布局 */ | |||
|  |         } | |||
|  |         .about-us__image { | |||
|  |             margin-bottom: 20px; /* 增加图片与文字之间的间距 */ | |||
|  |         } | |||
|  |     } | |||
|  | </style> | |||
|  | 
 | |||
|  | 
 | |||
|  |     <!-- Main Footer Start --> | |||
|  |     <?php include 'container/footer.php'; ?>
 | |||
|  |     <!-- Main Footer End --> | |||
|  | 
 | |||
|  |     <!-- Footer Links --> | |||
|  |     <?php include 'container/footer_links.php'; ?>
 | |||
|  | </body> | |||
|  | </html> |