<style>
/* 响应式布局基础样式 */
body { font-family: 'Lora', serif; line-height: 1.8; color: #2c3e50; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
/* 导航栏样式 */
.nav { background: rgba(255,255,255,0.95); padding: 20px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.nav ul { display: flex; gap: 40px; list-style: none; }
/* 主视觉样式 */
.hero { height: 80vh; background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://source.unsplash.com/1600x900/?wedding');
background-size: cover; display: flex; align-items: center; justify-content: center; text-align: center; }
/* 产品卡片样式 */
.product-card { background: #fff; border-radius: 10px; overflow: hidden; transition: transform 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
/* 文章卡片样式 */
.blog-card { background: #f8f9fa; padding: 30px; border-radius: 8px; }
</style>
<!-- 首页主视觉 -->
<section class="hero container">
<h1>让爱情在经纬线中永恒</h1>
<p>自1923年创立以来,我们以0.01mm级的工艺精度,为全球12万对新人编织幸福记忆</p>
<button class="cta-button">立即预约咨询</button>
</section>
<!-- 产品展示模块 -->
<section id="products" class="container">
<h2>经典系列 - 时间淬炼的品质</h2>
<div class="product-grid">
<div class="product-card">
<img src="https://images.unsplash.com/photo-1522551927714-05066d560cbb" alt="蕾丝婚纱" width="300">
<h3>永恒之吻系列</h3>
<p>采用19姆米桑蚕丝面料,手工缝制6800颗水晶</p>
</div>
<!-- 更多产品卡片... -->
</div>
</section>
<!-- 定制服务流程 -->
<section id="custom" class="container">
<h2>1V1定制服务 - 专属您的爱情密码</h2>
<ol class="process-steps">
<li class="step done">3D体型扫描(误差<0.5cm)</li>
<li class="step current">面料实验室体验(200+色卡可选)</li>
<li class="step">手工刺绣工坊(支持家族纹样传承)</li>
<li class="step">专属试衣间(配备专业灯光系统)</li>
</ol>
<button class="process-CTA">开启您的定制之旅</button>
</section>
<!-- 婚礼美学专栏 -->
<section id="blog" class="container">
<h2>婚庆研究院 | 知识赋能幸福</h2>
<div class="blog-grid">
<article class="blog-card">
<h3>2024流行趋势解码</h3>
<p>新数据显示:70%新人选择"混搭风格",传统元素与现代剪裁的碰撞创造新美学...</p>
</article>
<!-- 更多文章卡片... -->
</div>
</section>
<!-- 联系我们模块 -->
<section id="contact" class="container">
<h2>全球服务网络</h2>
<div class="location-grid">
<div class="location-card">
<h3>巴黎设计中心</h3>
<p>地址:5 Av. des Champs-Élysées 75008 Paris</p>
<p>服务时间:10:00-18:00(周一至周日)</p>
</div>
<!-- 更多分支机构... -->
</div>
</section>
<!-- 页脚 -->
<footer class="container">
<div class="footer-content">
<div class="footer-section">
<h4>关于我们</h4>
<p>百年传承的婚庆美学品牌,累计服务时长超5000万小时</p>
</div>
<div class="footer-section">
<h4>服务承诺</h4>
<ul>
<li>72小时应急补货</li>
<li>终身免费护理指导</li>
<li>碳中和物流体系</li>
</ul>
</div>
</div>
<div class=" copyright">© 2024 Bridal Haven. All Rights Reserved</div>
</footer>
<script>
// 实时导航高亮
document.addEventListener('scroll', () => {
const sections = document.querySelectorAll('section');
const navLinks = document.querySelectorAll('nav a');
sections.forEach((section, index) => {
const rect = section.getBoundingClientRect();
if (rect.top <= 80) {
navLinks[index].classList.add('active');
} else {
navLinks[index].classList.remove('active');
}
});
});
</script>