webs/驭鑫/yxsilicon/index.html

172 lines
6.1 KiB
HTML
Raw Permalink Normal View History

2025-04-15 07:54:58 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="imgs/SVG/LOGO黑色字.svg">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/footer.css">
<title>深圳驭鑫科技有限公司</title>
</head>
<body>
<section class="banner">
<div class="container">
<section class="content">
<div class="title">
<h1>深圳驭鑫科技有限公司</h1>
<p>YXSILICON</p>
</div>
<div class="text">
<p>深圳驭鑫科技有限公司成立于2021年1月公司地址位于深圳市南山区。主要经营范围是芯片销售代理芯片进出口云计算服务器设备研发生产销售。公司注册资本为100万元人民币。</p>
</div>
<div class="list">
<ul>
<li class="nav-item" data-href="html/aboutUs.html">
<div class="roundImg">
<img src="imgs/关于我们.png" alt="关于我们">
</div>
<div class="textImg">
<pc class="imgTitle">关于我们</pc>
<p class="imgTitleEN"> About us</p>
</div>
</li>
<li class="nav-item" data-href="html/productIntroduction.html">
<div class="roundImg">
<img src="imgs/产品介绍.png" alt="产品介绍">
</div>
<div class="textImg">
<pc class="imgTitle">产品介绍</pc>
<p class="imgTitleEN"> Product introduction</p>
</div>
</li>
<li class="nav-item" data-href="html/solution.html">
<div class="roundImg">
<img src="imgs/解决方案.png" alt="解决方案">
</div>
<div class="textImg">
<pc class="imgTitle">解决方案</pc>
<p class="imgTitleEN">Service case</p>
</div>
</li>
<li class="nav-item" data-href="html/contactUs.html">
<div class="roundImg">
<img src="imgs/联系我们.png" alt="联系我们">
</div>
<div class="textImg">
<pc class="imgTitle">联系我们</pc>
<p class="imgTitleEN">Contact us</p>
</div>
</li>
</ul>
</div>
</section>
</div>
</section>
<section class="we">
<ul class="weList">
<li class="weList1">
<img src="imgs/核心技术.png" alt="核心技术">
<div class="core">
<p class="weListTitle">强大的核心技术</p>
<p class="weListText">自主研发先进技术体系</p>
<p class="weListText">产品竞争的关键技术集群</p>
</div>
</li>
<li class="weList2">
<img src="imgs/技术团队.png" alt="技术团队">
<div class="core2">
<p class="weListTitle">优秀的技术团队</p>
<p class="weListText">专业技术开发团队</p>
<p class="weListText">专注于产品的研发和测试</p>
</div>
</li>
<li class="weList3">
<img src="imgs/技术支持.png" alt="技术支持">
<div class="core3">
<p class="weListTitle">专业的技术支持</p>
<p class="weListText">定制化的解决方案</p>
<p class="weListText">资深工程师团队全程护航</p>
</div>
</li>
</ul>
</section>
<footer class="footer">
<div class="footer-content">
<div class="footer-left">
<img src="./imgs/LOGO白色字.svg" alt="logo">
<div class="footer-left-content">
<p>广东省深圳市南山区高新中三道2号软件园一期7栋303室</p>
<p><a class="YXemail" href="mailto:zmz@yxsilicon.com">zmz@yxsilicon.com</a></p>
<p>工作时间: 9:30-18:00</p>
</div>
</div>
<div class="footer-right">
<p>Copyright &copy深圳驭鑫科技有限公司 &nbsp;&nbsp; <a class="record" href="https://beian.miit.gov.cn/#/Integrated/index">粤ICP备2021012067号-2</a></p>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', () => {
const items = document.querySelectorAll('.nav-item');
items.forEach(item => {
item.addEventListener('click', (e) => {
const href = item.getAttribute('data-href');
if (!href) {
console.error('未设置跳转路径');
e.preventDefault();
return;
}
// 检查路径是否有效
if (href.startsWith('/page')) {
console.error('无效的路径:', href);
e.preventDefault();
return;
}
window.location.href = href;
});
// 保持现有的键盘访问支持
item.addEventListener('keydown', (e) => {
if (e.key === 'Enter') {
const href = item.getAttribute('data-href');
if (href && !href.startsWith('/page')) {
window.location.href = href;
}
}
});
});
});
</script>
</body>
</html>