<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
  <title>梦泽软件库已被明月破解</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
  <style>
    /* 全局变量 - 贴合牢橘/极光UI的清新配色 */
    :root {
      --primary: #4f46e5; /* 极光UI主蓝 */
      --secondary: #f472b6; /* 牢橘UI粉玫 */
      --text-main: #1e293b;
      --text-light: #64748b;
      --text-white: #ffffff;
      --bg-main: #f8fafc;
      --bg-trans: rgba(255, 255, 255, 0.7);
      --bg-card: rgba(255, 255, 255, 0.9);
      --border: rgba(79, 70, 229, 0.1);
      --border-pink: rgba(244, 114, 182, 0.1);
      --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      /* 牢橘UI风格二次元背景 */
      --anime-bg: url('appcon.png');
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    }

    body {
      min-height: 100vh;
      overflow-x: hidden;
      color: var(--text-main);
      background: var(--anime-bg);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      background-repeat: no-repeat;
      padding: 0;
    }

    /* 顶部导航栏 - 仿参考UI的深色顶栏 */
    .top-bar {
      width: 100%;
      height: 45px;
      background: #1e293b;
      display: flex;
      align-items: center;
      justify-content: center;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .top-bar-text {
      color: var(--text-white);
      font-size: 0.95rem;
      font-weight: 500;
    }

    /* 顶部走马灯 - 无限循环滚动 */
    .marquee-top {
      width: 100%;
      height: 36px;
      line-height: 36px;
      background: rgba(79, 70, 229, 0.1);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      position: sticky;
      top: 45px;
      z-index: 998;
    }

    .marquee-top-content {
      white-space: nowrap;
      color: var(--primary);
      font-size: 0.85rem;
      animation: marquee 25s linear infinite;
      padding-left: 100%;
    }

    /* 中间公告走马灯 - 反向无限循环滚动 */
    .marquee-middle {
      width: 100%;
      height: 32px;
      line-height: 32px;
      background: rgba(244, 114, 182, 0.1);
      border: 1px solid var(--border-pink);
      border-radius: 8px;
      overflow: hidden;
      margin: 15px 0;
      box-shadow: var(--shadow);
    }

    .marquee-middle-content {
      white-space: nowrap;
      color: var(--secondary);
      font-size: 0.8rem;
      animation: marquee-reverse 20s linear infinite;
      padding-left: 100%;
    }

    /* 走马灯滚动动画 */
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    @keyframes marquee-reverse {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    /* 主容器 - 适配手机端，保证内容居中 */
    .page-container {
      max-width: 100%;
      width: 100%;
      padding: 15px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* 头像与标题区 - 仿极光UI布局+美化 */
    .header-box {
      text-align: center;
      padding: 20px 0;
      margin-bottom: 15px;
    }

    .avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--primary);
      margin: 0 auto 12px;
      box-shadow: 0 0 12px rgba(79, 70, 229, 0.25);
      transition: transform 0.3s ease;
    }

    .avatar:hover {
      transform: scale(1.05);
    }

    .title-main {
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 6px;
      text-shadow: 0 0 8px rgba(79, 70, 229, 0.1);
    }

    .title-desc {
      font-size: 0.85rem;
      color: var(--text-light);
    }

    /* 时间卡片 - 仿极光UI的简洁卡片+美化 */
    .time-card {
      background: var(--bg-card);
      border-radius: 12px;
      padding: 18px 15px;
      margin-bottom: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      border: 1px solid var(--border);
      text-align: center;
    }

    .date-text {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-bottom: 6px;
    }

    .time-text {
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 1px;
      text-shadow: 0 0 8px rgba(79, 70, 229, 0.15);
    }

    /* 随机一言卡片 - 仿极光UI样式+美化 */
    .quote-card {
      background: var(--bg-card);
      border-radius: 12px;
      padding: 18px 15px;
      margin-bottom: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      border-left: 4px solid var(--primary);
      border-top: 1px solid var(--border);
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .quote-title {
      font-size: 1rem;
      color: var(--primary);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .quote-content {
      min-height: 38px;
      font-size: 0.9rem;
      color: var(--text-light);
      padding: 10px;
      background: #f1f5f9;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      border: 1px solid #e2e8f0;
    }

    .quote-btn {
      background: linear-gradient(90deg, var(--primary), #6366f1);
      color: var(--text-white);
      border: none;
      padding: 8px 22px;
      border-radius: 20px;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
    }

    .quote-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }

    /* 模块标题 - 仿牢橘UI的大标题+美化 */
    .module-title {
      font-size: 1.4rem;
      color: var(--secondary);
      text-align: center;
      margin: 25px 0 18px;
      font-weight: 600;
      position: relative;
      padding-bottom: 6px;
    }

    .module-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      height: 2px;
      background: var(--secondary);
      border-radius: 2px;
    }

    /* 按钮网格 - 仿牢橘UI的通透按钮布局，保证按钮完全显示 */
    .btn-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 20px;
    }

    /* 功能按钮 - 仿牢橘UI的通透样式+美化 */
    .func-btn {
      background: var(--bg-trans);
      border: 1px solid var(--border-pink);
      border-radius: 10px;
      padding: 14px 5px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      backdrop-filter: blur(4px);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }

    .func-btn:hover {
      background: rgba(244, 114, 182, 0.15);
      border-color: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(244, 114, 182, 0.1);
    }

    .func-btn a {
      color: var(--text-light);
      text-decoration: none;
      font-size: 0.9rem;
      display: block;
      line-height: 1.2;
      transition: color 0.3s ease;
    }

    .func-btn:hover a {
      color: var(--secondary);
      font-weight: 500;
    }

    /* 页脚+美化 */
    footer {
      text-align: center;
      padding: 20px 15px;
      margin-top: 30px;
      font-size: 0.8rem;
      color: var(--text-light);
      background: var(--bg-trans);
      border-top: 1px solid var(--border);
      border-radius: 12px 12px 0 0;
      backdrop-filter: blur(4px);
    }

    /* 响应式适配 - 确保按钮在小屏完全显示 */
    @media (max-width: 375px) {
      .btn-grid {
        gap: 10px;
      }

      .func-btn {
        padding: 12px 3px;
      }

      .func-btn a {
        font-size: 0.85rem;
      }
    }
  </style>
  
      <script>
        // 保存当前滚动位置
        window.addEventListener('beforeunload', function() {
            sessionStorage.setItem('scrollPosition', window.scrollY);
        });

        // 页面加载时恢复滚动位置
        window.addEventListener('load', function() {
            const scrollPosition = sessionStorage.getItem('scrollPosition');
            if (scrollPosition) {
                window.scrollTo(0, scrollPosition);
                sessionStorage.removeItem('scrollPosition');
            }
        });

        // 按钮点击事件
        document.getElementById('myButton').addEventListener('click', function() {
            // 模拟页面跳转
            window.location.href = 'otherpage.html';
        });
    </script>
</head>
<body>


  <div class="page-container">
    <!-- 头像与标题区 -->
    <div class="header-box">
      <img src="appcon.png" alt="头像" class="avatar" loading="lazy" />
      <h1 class="title-main">梦泽©MZ</h1>
      <p class="title-desc">科技 · 资源 · 分享</p>
    </div>

    <!-- 时间卡片 -->
    <div class="time-card">
      <div class="date-text" id="current-date">2025-12-19 星期五</div>
      <div class="time-text" id="current-time">20:39:57</div>
    </div>

    <!-- 随机一言卡片 -->
    <div class="quote-card">
      <h3 class="quote-title"><i class="fas fa-chevron-right"></i> 随机一言</h3>
      <div class="quote-content" id="quote-content">点击获取暖心语录</div>
      <button class="quote-btn" id="get-quote-btn">点击获取</button>
    </div>

    <!-- 中间公告走马灯 - 反向无限循环滚动 -->
    <div class="marquee-middle">
      <div class="marquee-middle-content">
        📢 重要公告：明月软件库牛逼
              </div>
    </div>

 
    <div class="card-container core-section">
      <div class="core-title">核心区</div>
     <div class="btn-grid">
        <div class="func-btn"><a href="mqqapi://card/show_pslcard?src_type=internal&version=1&card_type=group&source=qrcode&uin=1080403351">梦泽官方总部群</a></div> 
        <div class="func-btn"><a href="mqqapi://card/show_pslcard?src_type=internal&version=1&card_type=group&source=qrcode&uin=1080403351">梦泽官方QQ②群</a></div>
        <div class="func-btn"><a href="mqqapi://card/show_pslcard?src_type=internal&version=1&card_type=group&source=qrcode&uin=1080403351">梦泽官方qq群③</a></div>
        <div class="func-btn"><a href="mqqapi://card/show_pslcard?src_type=internal&version=1&card_type=group&source=qrcode&uin=1080403351">梦泽官方QQ群④</a></div>           
    </div>
     <h2 class="module-title">在线使用</div>
     <div class="btn-grid">
     <div class="func-btn"><a href="获取GPS位置webapp源码/index.html">获取GPS位置webapp源码</a></div>
     <div class="func-btn"><a href="提取APK源码/提取APK/index.html">提供apk</a></div>
     <div class="func-btn"><a href="黄密.html">黄少加密-安全防护</a></div>
     <div class="func-btn"><a href="可视化.html">音频可视化工具</a></div>
     <div class="func-btn"><a href="播放器1.html">牢橘播放器</a></div>
     <div class="func-btn"><a href="播放器2.html">单播放器音乐列表</a></div>
     <div class="func-btn"><a href="172.html">今天吃什么</a></div>
     <div class="func-btn"><a href="zn.html">QQ群聊天模拟</a></div>
     <div class="func-btn"><a href="H工具.html">多功能网页代码工具</a></div>
              
     <div class="func-btn"><a href="9/index.html">极通云AI五子棋</a></div>
     <div class="func-btn"><a href="198366.html">二十四节气</a></div>
     <div class="func-btn"><a href="fadingjiejiari/index.html">法定节假日</a></div>
        
     
                      
   
   
        </div>
      </div>
    </div>

 
     <h2 class="module-title">在线实用工具</div>
     <div class="btn-grid">
        <div class="func-btn"><a href="原创抽奖盒_0/index.html">原创抽奖盒</a></div>
        <div class="func-btn"><a href="ICO.html">图标生成器 - 文字转PNG/ICO</a></div> 
        <div class="func-btn"><a href="别踩炮仗_0/index.html">别踩炮仗</a></div> 
        <div class="func-btn"><a href="无限随机游戏网名生成器.html">无限随机游戏网名生成器</a></div>
        <div class="func-btn"><a href="随机美女视频.html">随机美女视频</a></div>
        <div class="func-btn"><a href="ZMoon Video_0/index.html">随机白丝美女视频</a></div>
        <div class="func-btn"><a href="平衡挑战.html">平衡挑战</a></div>
        <div class="func-btn"><a href="贪吃蛇.html">贪吃蛇</a></div>
        <div class="func-btn"><a href="死了么_0/index.html">死了么</a></div>
        <div class="func-btn"><a href="简易节奏大师（可选难度）.html">简易节奏大师（可选难度）</a></div>
        <div class="func-btn"><a href="太阳系认知学习站.html">太阳系认知学习站</a></div>
        <div class="func-btn"><a href="随机美女视频.html">随机美女视频</a></div>
        <div class="func-btn"><a href="射击游戏_0/index.html">雷霆战机在线小游戏</a></div>
        <div class="func-btn"><a href="跑了么.html">跑了么</a></div>
        <div class="func-btn"><a href="手写签名webapp源码/index.html">手写签名</a></div>
        <div class="func-btn"><a href="打牌_0/主页面.html">打牌</a></div>
        <div class="func-btn"><a href="去除衣服webapp源码/index.html">去除衣服</a></div>
        <div class="func-btn"><a href="爱心屋.html">爱心屋</a></div>
        <div class="func-btn"><a href="让你的照片动起来webapp源码/index.html">让你的照片动起来</a></div>  
         <div class="func-btn"><a href="美女视频播放器.html">美女视频播放器</a></div>
         <div class="func-btn"><a href="黑丝举牌.html">黑丝举牌</a></div>
         <div class="func-btn"><a href="仿微信桌面.html">仿微信桌面</a></div>
         <div class="func-btn"><a href="网站取源.html">网站取源</a></div>
         <div class="func-btn"><a href="新增美女小姐姐视频.html">新增美女小姐姐视频</a></div>
         <div class="func-btn"><a href="黑丝白丝小视频合集随机播放.html">黑丝白丝小视频合集随机播放</a></div>
         <div class="func-btn"><a href="卫星地图-Google Earth高清卫星地图-谷歌地图-地球在线.html">卫星地图-Google Earth高清卫星地图-谷歌地图-地球在线</a></div>
         <div class="func-btn"><a href="随机点名系统.html">随机点名系统</a></div>
         <div class="func-btn"><a href="服务器调用管理系统.html">服务器调用管理系统</a></div>
         <div class="func-btn"><a href="牛币老虎机 - 极简版.html">牛币老虎机 - 极简版</a></div>
         <div class="func-btn"><a href="安全浏览器.html">安全浏览器</a></div>
         <div class="func-btn"><a href="记账小工具.html">记账小工具</a></div>
         <div class="func-btn"><a href="班级成绩查询系统.html">班级成绩查询系统</a></div>
         <div class="func-btn"><a href="全分类播放器.html">全分类播放器</a></div>
         <div class="func-btn"><a href="小鱼云笔记.html">小鱼云笔记</a></div>
 
 
     <h2 class="module-title">加固区</div>
     <div class="btn-grid">
        <div class="func-btn"><a href="https://dun.163.com/product/app-protect">网易易盾</a></div>
        <div class="func-btn"><a href="https://www.bangcle.com">梆梆安全</a></div>
        <div class="func-btn"><a href="https://www.nagain.com">娜迦信息科技</a></div>
        <div class="func-btn"><a href="https://jiagu.360.cn">三六零天御</a></div>    
        <div class="func-btn"><a href="https://www.ijiami.cn">爱加密</a></div>
        <div class="func-btn"><a href="https://cloud.tencent.com/product/ms">腾讯乐固</a></div>
        <div class="func-btn"><a href="https://www.neusoft.com">东软集团</a></div>
        <div class="func-btn"><a href="https://www.dingxiang-inc.com/products/fortify">顶象加固</a></div>
        <div class="func-btn"><a href="https://www.testin.cn">Testin云测</a></div>
        <div class="func-btn"><a href="https://www.rising.com.cn">瑞星</a></div>
        <div class="func-btn"><a href="https://www.tongfudun.com">通付盾</a></div>
        <div class="func-btn"><a href="https://www.kiwisec.com">几维安全</a></div>
        <div class="func-btn"><a href="https://cloud.baidu.com/product/appbuilder">百度加固</a></div>
        <div class="func-btn"><a href="https://www.sangfor.com.cn/product-and-solution/sangfor-security">深信服</a></div>
        <div class="func-btn"><a href="https://www.winsec.cn">信安世纪</a></div>
      </div>
    </div>

 
     <h2 class="module-title">其他资源</div>
     <div class="btn-grid">
         <div class="func-btn"><a href="https://www.douyin.com/?is_from_mobile_home=1">抖音在线观看</a></div>
         <div class="func-btn"><a href="https://m.kuaishou.com/fw/photo/3x5bappbuheqnx9">快手在线观看</a></div>
      
        <div class="func-btn"><a href="https://m.buyiju.com/bazi/">算命</a></div>
        <div class="func-btn"><a href="https://bbs.binmt.cc">MT论坛在线使用</a></div>
        <div class="func-btn"><a href="https://www.cgown.com/">CC资源网</a></div>
        <div class="func-btn"><a href="https://www.122q.com/">小刀辅助网</a></div>
        <div class="func-btn"><a href="https://mip.d1xz.net/astro/zhishi/art49911.aspx?from=415a">12星座查看</a></div>
        <div class="func-btn"><a href="https://m.youxibao.com/">游戏宝手游网</a></div>
        <div class="func-btn"><a href="https://m.19yxw.com">19游戏网</a></div>
        <div class="func-btn"><a href="https://cdn.198434.com/cli/H5/sheep2sheepkun/">坤坤小游戏</a></div>
        <div class="func-btn"><a href="http://api.tangdouz.com/tg.php">舔狗日记</a></div>
        <div class="func-btn"><a href="https://xxtyme.github.io/EatCxk">坤坤版弹琴</a></div>
        <div class="func-btn"><a href="http://m.5577.com/d/668464">5577安卓网(资源大全)</a></div>
        <div class="func-btn"><a href="https://g.ccplay.cn/">虫虫助手官方网页</a></div>
        <div class="func-btn"><a href="https://m.bamenhezi.com/">八门神器官方网页</a></div>
        <div class="func-btn"><a href="http://pk.4399.com/">4399游戏盒网页版</a></div>
        <div class="func-btn"><a href="https://app.tanwan.com/flash/jhcx/index.html?agent_id=1447&amp;placeid=96031&amp;cplaceid=3288562568549479950628922871722&amp;type=8&amp;game_id=12612&amp;aid=jhcx&amp;rand=1&amp;ref=https://m.baidu.com/baidu.php?url=K60000avpXkFvm72&amp;bd_vid=8218815448174085869">2023游戏大全随便在线玩</a></div>
        <div class="func-btn"><a href="http://m.2265.com/k.html">2265安卓网破解大全</a></div>
        <div class="func-btn"><a href="https://jiagu.360.cn">360加固</a></div>
        <div class="func-btn"><a href="https://m.simayi.net/">百家手游网</a></div>
        <div class="func-btn"><a href="https://mip.liulanqi.net/">浏览器家园</a></div>
        <div class="func-btn"><a href="https://m.crsky.com/">非凡软件站</a></div>
        <div class="func-btn"><a href="http://wap.z4root.cn/">多多root网</a></div>
        <div class="func-btn"><a href="https://m.doyo.cn/">逗游网</a></div>
        <div class="func-btn"><a href="http://www.csshytbc.cn/">SHY下载站</a></div>
        <div class="func-btn"><a href="https://m.9k9k.com/">9k9k手游网</a></div>
        <div class="func-btn"><a href="3g.7723.cn">7723手游网</a></div>
      </div>
    </div>

    <!-- 页脚 -->
    <footer>
      <p>明月软件库©版权所有 | 资源仅供学习交流</p>
    </footer>
  </div>

  <script>
    // 1. 实时更新时间
    function updateTime() {
      const now = new Date();
      const dateOptions = { year: 'numeric', month: '2-digit', day: '2-digit', weekday: 'long' };
      const timeOptions = { hour: '2-digit', minute: '2-digit', second: '2-digit', hour12: false };
      
      const dateStr = now.toLocaleDateString('zh-CN', dateOptions).replace(/\//g, '-');
      const timeStr = now.toLocaleTimeString('zh-CN', timeOptions);
      
      document.getElementById('current-date').textContent = dateStr;
      document.getElementById('current-time').textContent = timeStr;
    }
    updateTime();
    setInterval(updateTime, 1000);

    // 2. 随机一言功能
    const quoteBtn = document.getElementById('get-quote-btn');
    const quoteContent = document.getElementById('quote-content');
    
    quoteBtn.addEventListener('click', () => {
      fetch('https://v1.hitokoto.cn/')
        .then(response => response.json())
        .then(data => {
          quoteContent.textContent = data.hitokoto;
        })
        .catch(() => {
          quoteContent.textContent = '获取失败，稍后再试~';
        });
    });
   </script> 
 </body>
</html>