<title>观澜景色 - 探索自然之美</title> <script src="https://cdn.tailwindcss.com"></script> <script> tailwind.config = { theme: { extend: { colors: { primary: '#1E88E5', secondary: '#4DB6AC', accent: '#FF9800', neutral: '#F5F7FA', dark: '#2A3342' }, fontFamily: { inter: ['Inter', 'sans-serif'], }, }, } } </script> <style type="text/tailwindcss"> @layer utilities { .content-auto { content-visibility: auto; } .text-shadow { text-shadow: 0 2px 4px rgba(0,0,0,0.3); } .text-shadow-lg { text-shadow: 0 4px 8px rgba(0,0,0,0.5); } .animate-float { animation: float 6s ease-in-out infinite; } .scrollbar-hide::-webkit-scrollbar { display: none; } .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; } } @Keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } } </style>
观澜景色
  <!-- 桌面导航 -->
  <div class="hidden md:flex items-center space-x-8">
    <a href="#home" class="text-white hover:text-accent transition-colors font-medium">首页</a>
    <a href="#attractions" class="text-white hover:text-accent transition-colors font-medium">景点介绍</a>
    <a href="#gallery" class="text-white hover:text-accent transition-colors font-medium">美景画廊</a>
    <a href="#experience" class="text-white hover:text-accent transition-colors font-medium">游玩体验</a>
    <a href="#contact" class="text-white hover:text-accent transition-colors font-medium">联系我们</a>
  </div>
  
  <!-- 移动端菜单按钮 -->
  <button id="menuBtn" class="md:hidden text-white text-2xl focus:outline-none">
    <i class="fa fa-bars"></i>
  </button>
</nav>

<!-- 移动端导航菜单 -->
<div id="mobileMenu" class="hidden md:hidden bg-white shadow-lg absolute w-full py-4 px-6">
  <div class="flex flex-col space-y-4">
    <a href="#home" class="text-dark hover:text-primary transition-colors font-medium py-2 border-b border-gray-100">首页</a>
    <a href="#attractions" class="text-dark hover:text-primary transition-colors font-medium py-2 border-b border-gray-100">景点介绍</a>
    <a href="#gallery" class="text-dark hover:text-primary transition-colors font-medium py-2 border-b border-gray-100">美景画廊</a>
    <a href="#experience" class="text-dark hover:text-primary transition-colors font-medium py-2 border-b border-gray-100">游玩体验</a>
    <a href="#contact" class="text-dark hover:text-primary transition-colors font-medium py-2">联系我们</a>
  </div>
</div>
观澜美景
<div class="container mx-auto px-6 z-20 text-center">
  <h1 class="text-[clamp(2.5rem,8vw,5rem)] font-bold text-white text-shadow-lg leading-tight mb-6 animate-float">
    探索观澜<br>自然之美
  </h1>
  <p class="text-[clamp(1rem,3vw,1.5rem)] text-white text-shadow max-w-3xl mx-auto mb-10">
    沉浸在观澜如画的自然风光中,感受山水间的宁静与生命的律动
  </p>
  <div class="flex flex-col sm:flex-row justify-center gap-4">
    <a href="#attractions" class="px-8 py-3 bg-primary hover:bg-primary/90 text-white font-medium rounded-full transition-all duration-300 transform hover:scale-105 shadow-lg">
      探索景点
    </a>
    <a href="#gallery" class="px-8 py-3 bg-white/20 hover:bg-white/30 backdrop-blur-sm text-white font-medium rounded-full transition-all duration-300 transform hover:scale-105 border border-white/40">
      浏览画廊
    </a>
  </div>
</div>

<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 z-20 animate-bounce">
  <a href="#attractions" class="text-white text-3xl opacity-80 hover:opacity-100 transition-opacity">
    <i class="fa fa-chevron-down"></i>
  </a>
</div>

观澜必游景点

探索观澜最具代表性的自然和人文景观,感受独特的魅力与风情

  <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
    <!-- 景点卡片 1 -->
    <div class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow group">
      <div class="h-64 overflow-hidden">
        <img src="https://picsum.photos/id/15/800/600" alt="观澜湖" class="w-full h-full object-cover object-center transform group-hover:scale-110 transition-transform duration-500">
      </div>
      <div class="p-6">
        <div class="flex justify-between items-start mb-4">
          <h3 class="text-xl font-semibold">观澜湖</h3>
          <span class="bg-accent/10 text-accent text-sm font-medium px-3 py-1 rounded-full">自然景观</span>
        </div>
        <p class="text-gray-600 mb-4">清澈湛蓝的湖水倒映着周围的山峦,四季景色各异,是观澜最具代表性的自然景观之一。</p>
        <div class="flex items-center text-sm text-gray-500">
          <i class="fa fa-map-marker-alt mr-1"></i>
          <span>广东省深圳市龙华区</span>
        </div>
      </div>
    </div>
    
    <!-- 景点卡片 2 -->
    <div class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow group">
      <div class="h-64 overflow-hidden">
        <img src="https://picsum.photos/id/28/800/600" alt="版画村" class="w-full h-full object-cover object-center transform group-hover:scale-110 transition-transform duration-500">
      </div>
      <div class="p-6">
        <div class="flex justify-between items-start mb-4">
          <h3 class="text-xl font-semibold">观澜版画村</h3>
          <span class="bg-secondary/10 text-secondary text-sm font-medium px-3 py-1 rounded-full">人文景观</span>
        </div>
        <p class="text-gray-600 mb-4">有着悠久历史的古村落,以传统版画艺术闻名,保留了大量明清时期的建筑风貌。</p>
        <div class="flex items-center text-sm text-gray-500">
          <i class="fa fa-map-marker-alt mr-1"></i>
          <span>广东省深圳市龙华区</span>
        </div>
      </div>
    </div>
    
    <!-- 景点卡片 3 -->
    <div class="bg-white rounded-xl overflow-hidden shadow-lg hover:shadow-xl transition-shadow group">
      <div class="h-64 overflow-hidden">
        <img src="https://picsum.photos/id/42/800/600" alt="山水田园" class="w-full h-full object-cover object-center transform group-hover:scale-110 transition-transform duration-500">
      </div>
      <div class="p-6">
        <div class="flex justify-between items-start mb-4">
          <h3 class="text-xl font-semibold">山水田园</h3>
          <span class="bg-primary/10 text-primary text-sm font-medium px-3 py-1 rounded-full">休闲胜地</span>
        </div>
        <p class="text-gray-600 mb-4">集自然风光与休闲娱乐于一体的度假胜地,适合家庭出游和放松身心。</p>
        <div class="flex items-center text-sm text-gray-500">
          <i class="fa fa-map-marker-alt mr-1"></i>
          <span>广东省深圳市龙华区</span>
        </div>
      </div>
    </div>
  </div>
  
  <div class="text-center mt-12">
    <a href="#" class="inline-flex items-center px-6 py-3 bg-primary hover:bg-primary/90 text-white font-medium rounded-full transition-all duration-300 transform hover:scale-105 shadow-md">
      查看更多景点
      <i class="fa fa-arrow-right ml-2"></i>
    </a>
  </div>
</div>

游玩体验

听听游客们分享他们在观澜的美好回忆和独特体验

  <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
    <div class="order-2 md:order-1">
      <div class="bg-white p-8 rounded-xl shadow-lg relative">
        <div class="absolute -top-6 -left-6 text-6xl text-primary/10">"</div>
        <p class="text-gray-700 text-lg mb-6 relative z-10">在观澜的这几天,我仿佛置身于画卷之中。清晨在湖边散步,呼吸着清新的空气,看着日出慢慢照亮整个湖面,那景色简直太美了。版画村也很有特色,能感受到浓厚的文化氛围。下次一定还会再来!</p>
        <div class="flex items-center">
          <img src="https://picsum.photos/id/64/100/100" alt="游客照片" class="w-12 h-12 rounded-full object-cover mr-4">
          <div>
            <h4 class="font-semibold">李明</h4>
            <p class="text-gray-500 text-sm">来自上海</p>
          </div>
        </div>
      </div>
      
      <div class="bg-white p-8 rounded-xl shadow-lg mt-8 relative">
        <div class="absolute -top-6 -left-6 text-6xl text-primary/10">"</div>
        <p class="text-gray-700 text-lg mb-6 relative z-10">带家人来观澜度假,山水田园的环境非常好,设施也很完善。孩子们玩得特别开心,还有很多亲子活动可以参加。晚上住在湖边的小木屋里,听着蛙鸣虫叫,感觉特别放松。</p>
        <div class="flex items-center">
          <img src="https://picsum.photos/id/65/100/100" alt="游客照片" class="w-12 h-12 rounded-full object-cover mr-4">
          <div>
            <h4 class="font-semibold">王芳</h4>
            <p class="text-gray-500 text-sm">来自北京</p>
          </div>
        </div>
      </div>
    </div>
    
    <div class="order-1 md:order-2 relative">
      <img src="https://picsum.photos/id/25/800/1000" alt="游客体验" class="w-full h-auto rounded-xl shadow-xl">
      <div class="absolute -bottom-6 -right-6 bg-white p-6 rounded-xl shadow-lg max-w-xs">
        <div class="flex items-center mb-4">
          <div class="text-accent">
            <i class="fa fa-star"></i>
            <i class="fa fa-star"></i>
            <i class="fa fa-star"></i>
            <i class="fa fa-star"></i>
            <i class="fa fa-star"></i>
          </div>
          <span class="ml-2 font-semibold">4.9/5</span>
        </div>
        <p class="text-gray-600 text-sm">基于2,500+游客评价</p>
      </div>
    </div>
  </div>
  
  <div class="mt-16 bg-gray-50 rounded-2xl p-8 md:p-12">
    <div class="flex flex-col md:flex-row items-center">
      <div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
        <h3 class="text-2xl font-bold mb-4">计划你的观澜之旅</h3>
        <p class="text-gray-600 mb-6">无论你是想欣赏自然风光,体验文化艺术,还是寻找一个宁静的度假胜地,观澜都能满足你的需求。填写下方表单,获取个性化的旅行建议。</p>
        <a href="#contact" class="inline-flex items-center px-6 py-3 bg-primary hover:bg-primary/90 text-white font-medium rounded-full transition-all duration-300 transform hover:scale-105 shadow-md">
          获取旅行指南
          <i class="fa fa-arrow-right ml-2"></i>
        </a>
      </div>
      <div class="md:w-1/2 md:border-l md:pl-8">
        <div class="grid grid-cols-2 gap-6">
          <div class="text-center">
            <div class="text-4xl font-bold text-primary mb-2">20+</div>
            <p class="text-gray-600">景点</p>
          </div>
          <div class="text-center">
            <div class="text-4xl font-bold text-primary mb-2">15+</div>
            <p class="text-gray-600">美食餐厅</p>
          </div>
          <div class="text-center">
            <div class="text-4xl font-bold text-primary mb-2">10+</div>
            <p class="text-gray-600">住宿选择</p>
          </div>
          <div class="text-center">
            <div class="text-4xl font-bold text-primary mb-2">4.9</div>
            <p class="text-gray-600">游客评分</p>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>

联系我们

有任何问题或需要更多信息?请随时与我们联系

  <div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
    <div class="bg-white p-8 rounded-xl shadow-lg">
      <h3 class="text-xl font-semibold mb-6">发送消息</h3>
      <form>
        <div class="mb-6">
          <label for="name" class="block text-gray-700 font-medium mb-2">姓名</label>
          <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary transition-all">
        </div>
        <div class="mb-6">
          <label for="email" class="block text-gray-700 font-medium mb-2">电子邮箱</label>
          <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary transition-all">
        </div>
        <div class="mb-6">
          <label for="subject" class="block text-gray-700 font-medium mb-2">主题</label>
          <input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary transition-all">
        </div>
        <div class="mb-6">
          <label for="message" class="block text-gray-700 font-medium mb-2">消息</label>
          <textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary transition-all"></textarea>
        </div>
        <button type="submit" class="w-full px-6 py-3 bg-primary hover:bg-primary/90 text-white font-medium rounded-lg transition-all duration-300 transform hover:scale-[1.02] shadow-md">
          发送消息
        </button>
      </form>
    </div>
    
    <div>
      <div class="bg-white p-8 rounded-xl shadow-lg mb-8">
        <h3 class="text-xl font-semibold mb-6">联系方式</h3>
        <div class="space-y-4">
          <div class="flex items-start">
            <div class="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center text-primary mr-4">
              <i class="fa fa-map-marker-alt"></i>
            </div>
            <div>
              <h4 class="font-medium mb-1">地址</h4>
              <p class="text-gray-600">广东省深圳市龙华区观澜街道</p>
            </div>
          </div>
          <div class="flex items-start">
            <div class="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center text-primary mr-4">
              <i class="fa fa-phone"></i>
            </div>
            <div>
              <h4 class="font-medium mb-1">电话</h4>
              <p class="text-gray-600">+86 755-12345678</p>
            </div>
          </div>
          <div class="flex items-start">
            <div class="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center text-primary mr-4">
              <i class="fa fa-envelope"></i>
            </div>
            <div>
              <h4 class="font-medium mb-1">电子邮箱</h4>
              <p class="text-gray-600">info@guanlan-scenery.com</p>
            </div>
          </div>
          <div class="flex items-start">
            <div class="w-10 h-10 rounded-full bg-primary/10 flex items-center justify-center text-primary mr-4">
              <i class="fa fa-clock"></i>
            </div>
            <div>
              <h4 class="font-medium mb-1">开放时间</h4>
              <p class="text-gray-600">每天 9:00 - 18:00</p>
            </div>
          </div>
        </div>
      </div>
      
      <div class="bg-white p-8 rounded-xl shadow-lg">
        <h3 class="text-xl font-semibold mb-6">关注我们</h3>
        <div class="flex space-x-4">
          <a href="#" class="w-12 h-12 rounded-full bg-[#1877F2] flex items-center justify-center text-white hover:bg-[#1877F2]/90 transition-colors">
            <i class="fa fa-facebook"></i>
          </a>
          <a href="#" class="w-12 h-12 rounded-full bg-[#1DA1F2] flex items-center justify-center text-white hover:bg-[#1DA1F2]/90 transition-colors">
            <i class="fa fa-twitter"></i>
          </a>
          <a href="#" class="w-12 h-12 rounded-full bg-[#E4405F] flex items-center justify-center text-white hover:bg-[#E4405F]/90 transition-colors">
            <i class="fa fa-instagram"></i>
          </a>
          <a href="#" class="w-12 h-12 rounded-full bg-[#FF0000] flex items-center justify-center text-white hover:bg-[#FF0000]/90 transition-colors">
            <i class="fa fa-youtube"></i>
          </a>
          <a href="#" class="w-12 h-12 rounded-full bg-[#07C160] flex items-center justify-center text-white hover:bg-[#07C160]/90 transition-colors">
            <i class="fa fa-weixin"></i>
          </a>
        </div>
      </div>
    </div>
  </div>
</div>

观澜景色

探索自然之美,感受观澜魅力。

    <div>
      <h4 class="text-lg font-semibold mb-6">快速链接</h4>
      <ul class="space-y-3">
        <li><a href="#home" class="text-gray-400 hover:text-white transition-colors">首页</a></li>
        <li><a href="#attractions" class="text-gray-400 hover:text-white transition-colors">景点介绍</a></li>
        <li><a href="#gallery" class="text-gray-400 hover:text-white transition-colors">美景画廊</a></li>
        <li><a href="#experience" class="text-gray-400 hover:text-white transition-colors">游玩体验</a></li>
        <li><a href="#contact" class="text-gray-400 hover:text-white transition-colors">联系我们</a></li>
      </ul>
    </div>
    
    <div>
      <h4 class="text-lg font-semibold mb-6">景点分类</h4>
      <ul class="space-y-3">
        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">自然风光</a></li>
        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">人文景观</a></li>
        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">休闲娱乐</a></li>
        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">美食推荐</a></li>
        <li><a href="#" class="text-gray-400 hover:text-white transition-colors">住宿选择</a></li>
      </ul>
    </div>
    
    <div>
      <h4 class="text-lg font-semibold mb-6">订阅通讯</h4>
      <p class="text-gray-400 mb-4">订阅我们的通讯,获取最新的景点信息和优惠活动。</p>
      <form class="flex">
        <input type="email" placeholder="输入您的电子邮箱" class="px-4 py-2 bg-gray-800 text-white rounded-l-lg focus:outline-none focus:ring-1 focus:ring-primary w-full">
        <button type="submit" class="bg-primary hover:bg-primary/90 text-white px-4 py-2 rounded-r-lg transition-colors">
          <i class="fa fa-paper-plane"></i>
        </button>
      </form>
    </div>
  </div>
  
  <div class="border-t border-gray-800 pt-8">
    <div class="flex flex-col md:flex-row justify-between items-center">
      <p class="text-gray-500 text-sm mb-4 md:mb-0">© 2025 观澜景色. 保留所有权利.</p>
      <div class="flex space-x-6">
        <a href="#" class="text-gray-500 hover:text-white text-sm transition-colors">隐私政策</a>
        <a href="#" class="text-gray-500 hover:text-white text-sm transition-colors">使用条款</a>
        <a href="#" class="text-gray-500 hover:text-white text-sm transition-colors">Cookie 政策</a>
      </div>
    </div>
  </div>
</div>
大图预览
<script> // 导航栏滚动效果 const navbar = document.getElementById('navbar'); const backToTopBtn = document.getElementById('backToTop'); window.addEventListener('scroll', function() { if (window.scrollY > 50) { navbar.classList.add('bg-dark/90', 'backdrop-blur-sm', 'shadow-md'); navbar.classList.remove('bg-transparent'); backToTopBtn.classList.remove('translate-y-20', 'opacity-0'); backToTopBtn.classList.add('translate-y-0', 'opacity-100'); } else { navbar.classList.remove('bg-dark/90', 'backdrop-blur-sm', 'shadow-md'); navbar.classList.add('bg-transparent'); backToTopBtn.classList.add('translate-y-20', 'opacity-0'); backToTopBtn.classList.remove('translate-y-0', 'opacity-100'); } }); // 移动端菜单 const menuBtn = document.getElementById('menuBtn'); const mobileMenu = document.getElementById('mobileMenu'); menuBtn.addEventListener('click', function() { mobileMenu.classList.toggle('hidden'); if (mobileMenu.classList.contains('hidden')) { menuBtn.innerHTML = ''; } else { menuBtn.innerHTML = ''; } }); // 平滑滚动 document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); // 关闭移动端菜单 if (!mobileMenu.classList.contains('hidden')) { mobileMenu.classList.add('hidden'); menuBtn.innerHTML = ''; } const targetId = this.getAttribute('href'); const targetElement = document.querySelector(targetId); if (targetElement) { window.scrollTo({ top: targetElement.offsetTop - 80, behavior: 'smooth' }); } }); }); // 回到顶部按钮 backToTopBtn.addEventListener('click', function() { window.scrollTo({ top: 0, behavior: 'smooth' }); }); // 图片查看器 const imageViewer = document.getElementById('imageViewer'); const viewedImage = document.getElementById('viewedImage'); const closeViewer = document.getElementById('closeViewer'); // 打开图片查看器 document.querySelectorAll('#gallery img').forEach(img => { img.addEventListener('click', function() { viewedImage.src = this.src.replace('/800/1000', '/1920/1080'); imageViewer.classList.remove('hidden'); document.body.style.overflow = 'hidden'; }); }); // 关闭图片查看器 closeViewer.addEventListener('click', function() { imageViewer.classList.add('hidden'); document.body.style.overflow = 'auto'; }); // 点击图片查看器背景关闭 imageViewer.addEventListener('click', function(e) { if (e.target === imageViewer) { imageViewer.classList.add('hidden'); document.body.style.overflow = 'auto'; } }); // 加载更多图片按钮 const loadMoreBtn = document.getElementById('loadMoreBtn'); loadMoreBtn.addEventListener('click', function() { this.innerHTML = ' 加载中...'; // 模拟加载延迟 setTimeout(() => { this.innerHTML = '加载更多图片 '; alert('已加载全部图片'); }, 1500); }); </script>