html {
    overflow-y: hidden;
    overflow-x: hidden;
    touch-action: auto;
    overscroll-behavior: contain;
    margin: 0;
  }
  body {
    overflow-y: hidden;
    overflow-x: hidden;
    overscroll-behavior: none;
    background-color: black;
    margin: 0;
    height: 100dvh;
    left: 0px;
    top: 0px;
    /* 液态玻璃背景效果 */
    background: linear-gradient(135deg, #232946 0%, #1a1a2e 100%);
    position: relative;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    padding-bottom: env(safe-area-inset-bottom);
  }
  :root { --safe-area-inset-bottom: env(safe-area-inset-bottom); }
  
  /* 背景装饰元素 */
  body::before,
  body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
  }
  body::before {
    width: 400px;
    height: 400px;
    left: 10%;
    top: 20%;
    background: radial-gradient(circle, #5f72bd 0%, #9a5cff 100%);
  }
  body::after {
    width: 300px;
    height: 300px;
    right: 15%;
    bottom: 15%;
    background: radial-gradient(circle, #00c6fb 0%, #005bea 100%);
  }
  .chat-message {
    margin-bottom: 10px; /* 设置每条消息的底部外边距 */
    margin-top: 10px;
  }
  
  .user {
    text-align: right;
    color: #ffffff;
    margin-right: 8px;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.8);
  }
  .bot {
    text-align: left;
    color: #a0e8d7;
    margin-left: 8px;
    font-weight: 500;
    animation: botFadeIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: both; /* 保持最终状态，避免闪烁 */
    will-change: transform, opacity; /* 提示浏览器GPU合成 */
  }
  .bot_think {
    text-align: left;
    color: #a0e8d7;
    margin-left: 8px;
    font-weight: 500;
    font-size: 13px;
    opacity: 0.75;
    border: 1px #a0e8d7 solid;
    border-radius: 15px;
    animation: botFadeIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: both;
    will-change: transform, opacity;
  }
  
  /* 机器人消息滑入动画 - 仅左右位移带弹性回弹 */
  @keyframes botFadeIn {
    0% {
      transform: translateX(-110px);
    }
    60% {
      transform: translateX(16px); /* 超调 */
    }
    80% {
      transform: translateX(-4px); /* 回拉 */
    }
    100% {
      transform: translateX(0);
    }
  }
  
  /* 用户文件URL显示框样式 */
  .user-file-url-box {
    text-align: right;
    margin: 5px 8px 10px 0;
  }
  
  .file-url-content {
    display: inline-block;
    max-width: 80%;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px) saturate(160%);
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
      0 4px 16px rgba(31, 38, 135, 0.12),
      0 1px 4px rgba(255, 255, 255, 0.15) inset;
    text-align: left;
    transition: all 0.3s ease;
  }
  
  .file-url-content:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
      0 6px 20px rgba(31, 38, 135, 0.18),
      0 1px 6px rgba(255, 255, 255, 0.2) inset;
    transform: translateY(-1px);
  }
  
  .file-icon {
    font-size: 16px;
    margin-right: 6px;
    vertical-align: middle;
  }
  
  .file-type {
    color: #a0e8d7;
    font-weight: 600;
    font-size: 13px;
    margin-right: 6px;
    text-shadow: 0 1px 4px rgba(160, 232, 215, 0.5);
    vertical-align: middle;
  }
  
  .file-url-link {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    word-break: break-all;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    vertical-align: middle;
  }
  
  .file-url-link:hover {
    opacity: 1;
    text-decoration: underline;
  }
  
  .Notes_style {
    position: relative;
    width: 95%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    margin: 10px auto;
    padding: 18px 20px;
    padding-right: 45px; /* 为选择按钮留出空间 */
    border-radius: 12px;
    box-sizing: border-box;
    cursor: pointer;
    
    /* 初始只是透明，不改变transform，避免影响容器高度 */
    opacity: 0;

    /* 现代化玻璃拟态样式 */
    background: linear-gradient(135deg, 
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
      0 8px 32px rgba(31, 38, 135, 0.12),
      0 2px 8px rgba(0, 0, 0, 0.1),
      inset 0 1px 1px rgba(255, 255, 255, 0.3),
      inset 0 -1px 1px rgba(0, 0, 0, 0.05);
  }
  
  /* 入场动画（通过JS触发） */
  .Notes_style.note-animate {
    animation: noteSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  @keyframes noteSlideIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* hover效果只在动画完成后生效 */
  .Notes_style.note-animate:hover {
    transform: translateY(-2px);
    box-shadow: 
      0 12px 40px rgba(31, 38, 135, 0.18),
      0 4px 12px rgba(0, 0, 0, 0.15),
      inset 0 1px 1px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* 移动端优化 */
  @media (max-width: 768px) {
    .Notes_style {
      width: 98%;
      margin: 8px auto;
      padding: 14px 16px;
      padding-right: 40px;
      border-radius: 10px;
    }
  }
  
  .Notes_Knowledge_point {
    width: 100%;
    position: relative;
    margin: 6px 0;
    padding: 6px 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    word-break: break-word;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  }
  
  .Notes_Knowledge_point:first-child {
    margin-top: 0;
  }
  
  .Notes_Knowledge_point:last-of-type {
    margin-bottom: 0;
  }
  
  .Notes_button {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    text-indent: -9999px; /* 隐藏文本但保留在DOM中 */
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
      0 2px 8px rgba(255, 68, 68, 0.3),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 10;
  }
  
  .Notes_button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }
  
  .Notes_button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
      0 4px 12px rgba(255, 68, 68, 0.5),
      inset 0 1px 1px rgba(255, 255, 255, 0.3);
  }
  
  .Notes_button:active {
    transform: translateY(-50%) scale(0.95);
  }
  
  /* 选中状态 */
  .Notes_button.selected {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    box-shadow: 
      0 2px 8px rgba(0, 255, 0, 0.4),
      inset 0 1px 1px rgba(255, 255, 255, 0.2);
  }
  
  .Notes_button.selected::before {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.5);
  }
  @keyframes clickEffect {
    0% {
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      width: 200px;
      height: 200px;
      opacity: 0;
    }
  }
  
  /* 液态玻璃效果样式 */
   .glass-effect {
     background: rgba(255, 255, 255, 0.10);
     border-radius: 24px;
     box-shadow: 
       0 8px 32px 0 rgba(31, 38, 135, 0.18), 
       0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
       0 0 24px 2px rgba(255,255,255,0.12) inset, 
       0 0 0 4px rgba(255,255,255,0.08), 
       0 0 0 2px rgba(0,255,255,0.08);
     border: 2.5px solid rgba(255,255,255,0.35);
     backdrop-filter: blur(18px) saturate(160%);
     -webkit-backdrop-filter: blur(18px) saturate(160%);
     position: relative;
     overflow: hidden;
   }
  
  /* 多层高光效果 */
  .glass-effect::before,
  .glass-effect::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 3;
  }
  
  .glass-effect::before {
    top: 10px;
    left: 30px;
    width: 60%;
    height: 20px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 20px;
    filter: blur(2px);
    opacity: 0.7;
  }
  
  .glass-effect::after {
    bottom: 18px;
    right: 24px;
    width: 40%;
    height: 12px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 12px;
    filter: blur(1.5px);
    opacity: 0.5;
  }
  
  /* 神秘多维几何体效果 */
  .glass-prism-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 3D透视效果 */
    perspective: 1200px;
    perspective-origin: center center;
  }

  .prism-svg {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.45;
    /* 柔和发光效果 */
    filter: 
      drop-shadow(0 0 12px rgba(0, 255, 255, 0.35))
      drop-shadow(0 0 20px rgba(176, 38, 255, 0.25))
      drop-shadow(0 0 30px rgba(255, 0, 128, 0.2));
    animation: neonPrismGlow 10s ease-in-out infinite;
    /* GPU加速 + 3D效果 */
    will-change: transform, filter, opacity;
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: visible;
  }

  @keyframes neonPrismGlow {
    0% {
      filter: 
        drop-shadow(0 0 12px rgba(0, 255, 255, 0.35))
        drop-shadow(0 0 20px rgba(176, 38, 255, 0.25))
        drop-shadow(0 0 30px rgba(255, 0, 128, 0.2));
      opacity: 0.4;
    }
    25% {
      filter: 
        drop-shadow(0 0 15px rgba(176, 38, 255, 0.4))
        drop-shadow(0 0 25px rgba(255, 0, 255, 0.3))
        drop-shadow(0 0 35px rgba(0, 255, 255, 0.2));
      opacity: 1;
    }
    50% {
      filter: 
        drop-shadow(0 0 18px rgba(255, 0, 128, 0.38))
        drop-shadow(0 0 28px rgba(0, 212, 255, 0.28))
        drop-shadow(0 0 38px rgba(176, 38, 255, 0.22));
      opacity: 0.48;
    }
    75% {
      filter: 
        drop-shadow(0 0 15px rgba(0, 212, 255, 0.4))
        drop-shadow(0 0 25px rgba(255, 0, 128, 0.3))
        drop-shadow(0 0 35px rgba(176, 38, 255, 0.2));
      opacity: 1;
    }
    100% {
      filter: 
        drop-shadow(0 0 12px rgba(0, 255, 255, 0.35))
        drop-shadow(0 0 20px rgba(176, 38, 255, 0.25))
        drop-shadow(0 0 30px rgba(255, 0, 128, 0.2));
      opacity: 0.4;
    }
  }

  /* 呼吸灯光晕动画 */
  @keyframes breathingGlow {
    0%, 100% {
      opacity: 0.3;
      transform: scale(1);
    }
    50% {
      opacity: 0.8;
      transform: scale(1.5);
    }
  }

  @media screen and (max-width: 10000px) {
    /* 电脑端*/
    .AI_auto_cruise {
      width: 10px;
      height: 10px;
      position: absolute;
      top: 2px;
      right: 2px;
      border-radius: 50%;

      /* 特效样式 */
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(20px) saturate(200%);
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1),
        0 8px 40px rgba(255, 255, 255, 0.15),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    /* 小圆球呼吸灯光晕效果 */
    .AI_auto_cruise::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      border-radius: 50%;
      background: rgba(100, 217, 254, 0.6);
      box-shadow: 0 0 10px rgba(100, 217, 254, 0.8),
                  0 0 20px rgba(100, 217, 254, 0.6),
                  0 0 30px rgba(100, 217, 254, 0.4);
      animation: breathingGlow 2s ease-in-out infinite;
      z-index: -1;
      pointer-events: none;
    }
    
    /* 扩大点击区域为4倍（40px），但视觉上保持10px */
    .AI_auto_cruise::before {
      content: '';
      position: absolute;
      width: 60px;
      height: 60px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      /* 透明的，只用于扩大点击区域 */
    }
    .AI_auto_cruise_border {
      width: 200px;
      height: 200px;
      position: absolute;
      top: calc(50% - 100px);
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 15px;
      display: none;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;

      /* SVG液态玻璃特效样式 */
      box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
      background: rgba(255, 255, 255, 0.25);
      
      /* 动画效果 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    
    .AI_auto_cruise_border.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      pointer-events: auto;
    }
    
    .AI_auto_cruise_border::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      backdrop-filter: blur(4px);
      filter: url(#lg-dist);
      isolation: isolate;
      pointer-events: none;
      border-radius: 15px;
    }
    
    .AI_auto_cruise_border::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.75),
      inset 0 0 5px rgba(255, 255, 255, 0.75);
      pointer-events: none;
    }
    .AI_auto_cruise_input {
      width: 250px;
      height: 50px;
      position: absolute;
      top: calc(50% + 40px);
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.5);
      border: 1.5px solid rgba(100, 217, 254, 0.4);
      outline: none;
      display: none;
      color: rgba(0, 0, 0, 0.9);
      caret-color: #52c41a; /* 光标颜色 - 绿色 */
      font-size: 14px;
      padding: 0 15px;
      font-weight: 600;
      
      /* 毛玻璃模糊效果 */
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      box-shadow: 0 4px 20px rgba(100, 217, 254, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
      
      /* 动画效果 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    
    .AI_auto_cruise_input::placeholder {
      color: rgba(0, 0, 0, 0.45);
    }
    
    .AI_auto_cruise_input.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      pointer-events: auto;
    }
    .AI_auto_cruise_input_seed {
      width: 25px;
      height: 25px;
      position: absolute;
      top: calc(50% + 40px);
      left: calc(50% + 80px);
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: transparent;
      border: none;
      outline: none;
      display: none;
      cursor: pointer;
      color: rgb(1, 235, 252);

      /* 青色发光效果 */
      border: 2px solid rgb(1, 235, 252);
      box-shadow: 0px 0px 100px rgb(1, 235, 252), inset 0px 0px 10px rgb(1, 235, 252), 0px 0px 5px rgb(255, 255, 255);
      
      /* 动画效果 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    
    .AI_auto_cruise_input_seed.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      pointer-events: auto;
    }
    
    .AI_auto_cruise_input_seed.show:hover {
      box-shadow: 0px 0px 150px rgb(1, 235, 252), 0px 0px 80px rgba(1, 235, 252, 0.6), inset 0px 0px 15px rgb(1, 235, 252), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(1, 235, 252, 0.8));
    }
    
    /* 感叹号按钮样式（与发送按钮一样大，位置在最右边） */
    .AI_auto_cruise_alert_btn {
      width: 25px;
      height: 25px;
      position: absolute;
      top: calc(50% + 40px);
      left: calc(50% + 120px);
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: transparent;
      border: none;
      outline: none;
      display: none;
      cursor: pointer;
      
      /* 橙黄色发光效果 */
      color: rgb(255, 200, 100);
      border: 2px solid rgb(255, 200, 100);
      box-shadow: 0px 0px 100px rgb(255, 200, 100), inset 0px 0px 10px rgb(255, 200, 100), 0px 0px 5px rgb(255, 255, 255);
      
      /* 动画效果 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
      
      /* 字体样式 */
      font-size: 16px;
      font-weight: bold;
      line-height: 25px;
      text-align: center;
    }
    
    .AI_auto_cruise_alert_btn.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      pointer-events: auto;
    }
    
    .AI_auto_cruise_alert_btn.show:hover {
      box-shadow: 0px 0px 150px rgb(255, 200, 100), 0px 0px 80px rgba(255, 200, 100, 0.6), inset 0px 0px 15px rgb(255, 200, 100), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(255, 200, 100, 0.8));
    }
    
    /* 感叹号按钮展开的可滚动列表 */
    .AI_auto_cruise_alert_menu {
      width: 120px;
      max-height: 200px;
      position: absolute;
      display: none;
      border-radius: 15px;
      overflow-y: auto;
      overflow-x: hidden;
      
      /* 隐藏滚动条但保持滚动功能 */
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE/Edge */
      
      /* 模糊玻璃效果 */
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.2) inset;
      
      /* 动画效果 */
      opacity: 0;
      transform: scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    
    /* 隐藏滚动条 - Webkit浏览器（Chrome, Safari） */
    .AI_auto_cruise_alert_menu::-webkit-scrollbar {
      display: none;
    }
    
    .AI_auto_cruise_alert_menu.show {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }
    
    /* 感叹号列表项样式 */
    .AI_auto_cruise_alert_menu_item {
      width: 100%;
      height: 40px;
      margin: 4px 0;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      user-select: none;
      position: relative;
    }
    
    /* ===== 设备在线列表样式（iPhone风格）===== */
    .device-list-container {
      width: 340px;
      max-height: 500px;
      position: fixed;
      display: none;
      border-radius: 20px;
      overflow: hidden;
      z-index: 1001;
      
      /* 居中定位（通过JS设置left: 50%, top: 50%, transform: translate(-50%, -50%)）*/
      
      /* iPhone风格的玻璃拟态效果 */
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(30px) saturate(180%);
      -webkit-backdrop-filter: blur(30px) saturate(180%);
      box-shadow: 
        0 20px 60px 0 rgba(0, 0, 0, 0.35),
        0 2px 10px 0 rgba(255, 255, 255, 0.2) inset,
        0 0 40px 5px rgba(255, 255, 255, 0.1) inset,
        0 0 0 1px rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.2);
      
      /* 动画效果 - 使用弹性曲线 */
      opacity: 0;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                  opacity 0.3s ease;
      pointer-events: none;
    }
    
    .device-list-container.show {
      opacity: 1;
      pointer-events: auto;
    }
    
    /* 设备列表头部 */
    .device-list-header {
      width: 100%;
      height: 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      box-sizing: border-box;
      background: rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .device-list-title {
      font-size: 18px;
      font-weight: 600;
      color: white;
      letter-spacing: 0.3px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .device-list-close {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.12);
      color: white;
      font-size: 18px;
      font-weight: 300;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.2s ease;
      backdrop-filter: blur(10px);
    }
    
    .device-list-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }
    
    .device-list-close:active {
      transform: scale(0.95);
    }
    
    /* 设备列表内容区 */
    .device-list-content {
      width: 100%;
      max-height: 440px;
      overflow-y: auto;
      padding: 12px;
      box-sizing: border-box;
      
      /* ✅ 隐藏滚动条（保留滚动功能） */
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE/Edge */
    }
    
    .device-list-content::-webkit-scrollbar {
      display: none; /* Chrome/Safari/Opera */
    }
    
    /* 单个设备项 */
    .device-item {
      width: 100%;
      padding: 16px 18px;
      margin-bottom: 10px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-sizing: border-box;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      
      /* 设备项入场动画 */
      opacity: 0;
      transform: translateY(-10px);
      animation: deviceItemFadeIn 0.4s ease-out forwards;
    }
    
    @keyframes deviceItemFadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .device-item:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    
    .device-item:active {
      transform: translateY(0);
    }
    
    /* 设备项顶部（设备类型 + 在线状态）*/
    .device-item-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .device-type {
      font-size: 16px;
      font-weight: 600;
      color: white;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    
    /* 当前设备标签 */
    .current-device-tag {
      display: inline-block;
      padding: 2px 8px;
      margin-left: 4px;
      font-size: 11px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.95);
      background: linear-gradient(135deg, rgba(52, 199, 89, 0.85), rgba(48, 209, 88, 0.85));
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3),
                  0 0 0 1px rgba(255, 255, 255, 0.15) inset;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      animation: currentDevicePulse 2s ease-in-out infinite;
    }
    
    @keyframes currentDevicePulse {
      0%, 100% {
        box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3),
                    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
      }
      50% {
        box-shadow: 0 2px 12px rgba(52, 199, 89, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.25) inset,
                    0 0 20px rgba(52, 199, 89, 0.2);
      }
    }
    
    .device-icon {
      font-size: 20px;
    }
    
    /* 在线状态指示器 */
    .device-status {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      position: relative;
      box-shadow: 0 0 8px currentColor;
    }
    
    .device-status.online {
      background: #34C759;
      color: #34C759;
      animation: deviceStatusPulse 2s ease-in-out infinite;
    }
    
    .device-status.offline {
      background: #8E8E93;
      color: #8E8E93;
    }
    
    @keyframes deviceStatusPulse {
      0%, 100% {
        box-shadow: 0 0 8px currentColor;
        opacity: 1;
      }
      50% {
        box-shadow: 0 0 15px currentColor;
        opacity: 0.7;
      }
    }
    
    /* 设备项底部（浏览器信息）*/
    .device-item-bottom {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    
    .device-browser,
    .device-time {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    
    .device-browser-icon {
      font-size: 14px;
    }
    
    /* 空状态提示 */
    .device-list-empty {
      width: 100%;
      padding: 40px 20px;
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
    }
    
    .login {
      /* 登录框 */
      /* 基本样式 */
      width: 70vw;
      height: 22vh;
      border-radius: 24px;
      top: 45vh;
      left: 15vw;

      /* 液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);
      transition: all 0.3s ease;
    }
    
    .login_container {
      /* 登录输入框容器 */
      width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2vh;
    }
    
    .login_border {
      /* 登录框的输入样式框 */
      /* 基本样式 */
      width: 65vw;
      height: 5vh;
      border-radius: 100px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-right: 1vw;

      /* 特效样式 */
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px) saturate(200%);
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1),
        0 8px 40px rgba(255, 255, 255, 0.15),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }
    
    .login_border:hover {
      box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15),
        0 10px 50px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.25);
    }
    
    .login_border_input,
    .login_border_password {
      /* 登录框的输入实际框 */
      flex: 1;
      height: 100%;
      background: transparent;
      border: none;
      outline: none;
      font-size: 16px;
      padding: 0 1vw;
      color: white;
      caret-color: #52c41a; /* 光标颜色 - 绿色 */
    }
    
    .login_border_input::placeholder,
    .login_border_password::placeholder {
      /* 登录框的输入提示词样式 */
      color: white;
      opacity: 0.7;
    }
    
    .password_eye_icon {
      /* 密码显示/隐藏小眼睛图标 */
      width: 24px;
      height: 24px;
      cursor: pointer;
      opacity: 0.7;
      transition: all 0.3s ease;
      flex-shrink: 0;
      margin-left: 8px;
    }
    
    .password_eye_icon:hover {
      opacity: 1;
      transform: scale(1.1);
    }
    
    .password_eye_icon:active {
      transform: scale(0.95);
    }
    .AI {
      margin: 0;
      width: 100vw;
      height: 100dvh;
      position: absolute;
      top: 0px;
      left: 0px;
      opacity: 1;
      transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .AI.page-hide {
      opacity: 0;
      pointer-events: none;
    }
    .AI_border_send {
      /* AI输入框 */
      /* 基本样式 */
      width: 330px;
      min-width: 320px;
      height: 90px;
      border-radius: 15px;
      position: absolute;
      bottom: max(16px, var(--safe-area-inset-bottom, 16px));
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10; /* 确保输入框在对话框上面 */

      /* SVG液态玻璃特效样式 */
      box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
      background: rgba(255, 255, 255, 0.25);
      transition: all 0.3s ease;
    }
    
    .AI_border_send::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;  /* 改为负值，确保在内容下方 */
      backdrop-filter: blur(4px);
      filter: url(#lg-dist);  /* 应用液态扭曲滤镜 */
      isolation: isolate;      /* 创建独立渲染层 */
      pointer-events: none;  /* 确保不拦截鼠标事件 */
      border-radius: 15px;
    }
    
    .AI_border_send::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;  /* 改为负值，确保在内容下方 */
      border-radius: 15px;
      overflow: hidden;
      box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.75),
      inset 0 0 5px rgba(255, 255, 255, 0.75);
      pointer-events: none;  /* 确保不拦截鼠标事件 */
    }
    .img_file {
      width: 327px;
      height: 50px;
      border-radius: 15px 15px 0 0;
      position: absolute;
      display: flex;
      flex-direction: row;
      gap: 2px;
      padding: 2px;
      left: 0px;

      /* 特效样式 */
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(16px) saturate(150%);
      box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 0 12px rgba(94, 96, 230, 0.1);
    }
    .AI_border_receive {
      /* AI内容框 */
      min-width: none;
      max-width: 99.9vw;
      min-height: 0vh; /* 设置最小高度，内容可顶开容器 */
      max-height: 100dvh; /* 设置最大高度，防止内容超出容器 */
      position: relative;
      top: 0px;
      left: 0px;
      overflow-y: auto;
      scrollbar-width: none;
      padding-bottom: 50vh; /* 给底部留出空间，避免被输入框遮挡 */
      box-sizing: border-box;
    }
    
    /* AI输出的图片和视频预览样式 */
    .AI_border_receive img,
    .AI_border_receive video {
      max-width: 300px;
      max-height: 300px;
      border-radius: 8px;
      object-fit: cover;
      border: 2px solid rgba(100, 217, 254, 0.3);
      cursor: pointer;
      transition: all 0.2s ease;
      display: inline-block;
    }
    
    .AI_border_receive img:hover,
    .AI_border_receive video:hover {
      border: 2px solid rgba(100, 217, 254, 0.8);
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(100, 217, 254, 0.4);
    }
    .AI_button {
      /* AI功能按钮 */
      /* 基本样式 */
      width: 75px;
      height: 30px;
      color: white;
      border-radius: 20px;
      position: absolute;
      bottom: max(1vh, var(--safe-area-inset-bottom, 8px));
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;
      z-index: 11; /* 确保按钮在输入框上面 */
      cursor: pointer;

      /* 液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);
      transition: all 0.3s ease;
    }
    
    /* AI对话-深度思考按钮 - 青色发光 */
    #id_AI_think {
      color: rgb(1, 235, 252);
      border: 2px solid rgb(1, 235, 252);
      box-shadow: 0px 0px 100px rgb(1, 235, 252), inset 0px 0px 10px rgb(1, 235, 252), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;
      background: rgba(1, 235, 252, 0.1);
      backdrop-filter: blur(18px) saturate(160%);
    }
    
    #id_AI_think:hover {
      box-shadow: 0px 0px 150px rgb(1, 235, 252), 0px 0px 80px rgba(1, 235, 252, 0.6), inset 0px 0px 15px rgb(1, 235, 252), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(1, 235, 252, 0.8));
    }
    
    /* AI对话-Agent按钮 - 亮橙色发光 */
    #id_AI_Agent {
      color: rgb(255, 165, 0);
      border: 2px solid rgb(255, 165, 0);
      box-shadow: 0px 0px 100px rgb(255, 165, 0), inset 0px 0px 10px rgb(255, 165, 0), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;
      background: rgba(255, 165, 0, 0.1);
      backdrop-filter: blur(18px) saturate(160%);
    }
    
    #id_AI_Agent:hover {
      box-shadow: 0px 0px 150px rgb(255, 165, 0), 0px 0px 80px rgba(255, 165, 0, 0.6), inset 0px 0px 15px rgb(255, 165, 0), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(255, 165, 0, 0.8));
    }
    
    /* 笔记-深度分析按钮 - 橙色发光 */
    #id_AI_Notes_high {
      color: rgb(255, 152, 0);
      border: 2px solid rgb(255, 152, 0);
      box-shadow: 0px 0px 100px rgb(255, 152, 0), inset 0px 0px 10px rgb(255, 152, 0), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;
      background: rgba(255, 152, 0, 0.1);
      backdrop-filter: blur(18px) saturate(160%);
    }
    
    #id_AI_Notes_high:hover {
      box-shadow: 0px 0px 150px rgb(255, 152, 0), 0px 0px 80px rgba(255, 152, 0, 0.6), inset 0px 0px 15px rgb(255, 152, 0), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(255, 152, 0, 0.8));
    }
    
    /* 笔记-超长分析按钮 - 金黄色发光 */
    #id_AI_Notes_long {
      color: rgb(255, 215, 0);
      border: 2px solid rgb(255, 215, 0);
      box-shadow: 0px 0px 100px rgb(255, 215, 0), inset 0px 0px 10px rgb(255, 215, 0), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;
      background: rgba(255, 215, 0, 0.1);
      backdrop-filter: blur(18px) saturate(160%);
    }
    
    #id_AI_Notes_long:hover {
      box-shadow: 0px 0px 150px rgb(255, 215, 0), 0px 0px 80px rgba(255, 215, 0, 0.6), inset 0px 0px 15px rgb(255, 215, 0), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(255, 215, 0, 0.8));
    }
    
    /* 笔记-深度思考按钮 - 洋红色发光 */
    #id_AI_Notes_think {
      color: rgb(255, 0, 255);
      border: 2px solid rgb(255, 0, 255);
      box-shadow: 0px 0px 100px rgb(255, 0, 255), inset 0px 0px 10px rgb(255, 0, 255), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;
      background: rgba(255, 0, 255, 0.1);
      backdrop-filter: blur(18px) saturate(160%);
    }
    
    #id_AI_Notes_think:hover {
      box-shadow: 0px 0px 150px rgb(255, 0, 255), 0px 0px 80px rgba(255, 0, 255, 0.6), inset 0px 0px 15px rgb(255, 0, 255), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(255, 0, 255, 0.8));
    }
    .AI_button1 {
      /* AI文件功能按钮 */
      /* 基本样式 */
      width: 30px;
      height: 30px;
      color: white;
      border-radius: 20px;
      position: absolute;
      bottom: max(1vh, var(--safe-area-inset-bottom, 8px));
      right: 1vh;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;
      font-size: 20px;
      cursor: pointer;
      z-index: 11; /* 确保按钮在输入框上面 */

      /* 液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);
      transition: all 0.3s ease;
    }
    
    .AI_button1:hover {
      background: rgba(255, 255, 255, 0.15);
      scale: 1.05;
      box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.25), 
        0 2px 8px 0 rgba(255,255,255,0.3) inset, 
        0 0 32px 4px rgba(255,255,255,0.15) inset, 
        0 0 0 4px rgba(255,255,255,0.12), 
        0 0 0 2px rgba(0,255,255,0.12);
    }
    .AI_input {
      /* AI输入框 */
      width: 90%;
      height: 5vh;
      position: absolute;
      left: 5%;
      top: 0.3vh;
      border-radius: 15px;
      color: white;
      caret-color: #52c41a; /* 光标颜色 - 绿色 */
      border: none;
      outline: none;
      background: transparent;
      font-size: 15px;
    }
    .AI_Notes {
      /* AI笔记 */
      width: 100vw;
      height: 100dvh;
      position: absolute;
      top: 0px;
      left: 0px;
      opacity: 1;
      transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .AI_Notes.page-hide {
      opacity: 0;
      pointer-events: none;
    }
    .AI_Notes_menu {
      /* AI笔记菜单 */
      width: fit-content;
      min-width: 40px;
      max-width: 80px;
      height: auto;
      max-height: 80vh;
      top: 0px;
      left: 0px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 8px 4px;
      position: relative;
      overflow-y: auto;
      scrollbar-width: none; /* Firefox 隐藏滚动条 */
      
      /* 优化液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.25),
        0 2px 8px 0 rgba(255,255,255,0.3) inset,
        0 0 24px 2px rgba(147, 51, 234, 0.08) inset,
        0 0 0 1px rgba(255,255,255,0.2);
      border: 1.5px solid rgba(255,255,255,0.3);
      border-radius: 15px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* WebKit 隐藏滚动条 */
    .AI_Notes_menu::-webkit-scrollbar {
      display: none;
    }
    
    .AI_Notes_menu::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.75),
      inset 0 0 5px rgba(255, 255, 255, 0.75);
      pointer-events: none;
    }
    .AI_Notes_menu_son {
      /* AI笔记菜单子项目 */
      width: 100%;
      min-width: 32px;
      height: 3vw;
      min-height: 32px;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 14px;
      font-weight: 500;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      user-select: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;

      /* 优化液态玻璃特效 */
      background: rgba(100, 217, 254, 0.15);
      backdrop-filter: blur(15px) saturate(180%);
      -webkit-backdrop-filter: blur(15px) saturate(180%);
      box-shadow: 
        0 4px 12px rgba(100, 217, 254, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.25);
      border: 1px solid rgba(100, 217, 254, 0.3);
      border-radius: 8px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .AI_Notes_menu_son::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
    }
    
    .AI_Notes_menu_son:hover::before {
      left: 100%;
    }
    
    .AI_Notes_menu_son:hover {
      background: rgba(100, 217, 254, 0.25);
      transform: scale(1.05);
      box-shadow: 
        0 6px 16px rgba(100, 217, 254, 0.35),
        inset 0 1px 3px rgba(255, 255, 255, 0.35);
    }
    
    .AI_Notes_menu_son:active {
      background: rgba(100, 217, 254, 0.2);
      transform: scale(0.98);
    }
    .AI_Notes_menu_son_Function {
      /* AI笔记菜单功能子项目 */
      width: 100%;
      min-width: 32px;
      height: 3vw;
      min-height: 32px;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 13px;
      font-weight: 500;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      user-select: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;

      /* 功能按钮橙色系液态玻璃特效 */
      background: rgba(255, 152, 0, 0.15);
      backdrop-filter: blur(15px) saturate(180%);
      -webkit-backdrop-filter: blur(15px) saturate(180%);
      box-shadow: 
        0 4px 12px rgba(255, 152, 0, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.25);
      border: 1px solid rgba(255, 152, 0, 0.3);
      border-radius: 8px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .AI_Notes_menu_son_Function::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
    }
    
    .AI_Notes_menu_son_Function:hover::before {
      left: 100%;
    }
    
    .AI_Notes_menu_son_Function:hover {
      background: rgba(255, 152, 0, 0.25);
      transform: scale(1.05);
      box-shadow: 
        0 6px 16px rgba(255, 152, 0, 0.35),
        inset 0 1px 3px rgba(255, 255, 255, 0.35);
    }
    
    .AI_Notes_menu_son_Function:active {
      background: rgba(255, 152, 0, 0.2);
      transform: scale(0.98);
    }
    

    .AI_Notes_border_receive {
      /* AI笔记内容框 */
      left: 90px;
      right: 0px;
      max-height: 100dvh;
      position: fixed;
      top: 0px;
      overflow-y: auto;
      scrollbar-width: none;
      padding: 10px 0 50vh 0; /* 上右下左，底部留出50vh空间避免被输入框遮挡 */
      box-sizing: border-box;
      overflow-x: hidden;
      border-radius: 16px;
      
      /* 展开动画初始状态 */
      display: none;
      opacity: 0;
      transform: scale(0);
      transform-origin: center center;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    
    .AI_Notes_border_receive.show {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }
    .AI_Notes_AI_border {
      /* AI笔记中AI的内容框 */
      /* 基本样式 */
      left: 90px;
      right: 0px;
      max-height: 100dvh;
      position: fixed;
      top: 0px;
      overflow-y: auto;
      padding: 10px 0 50vh 0; /* 上右下左，底部留出50vh空间避免被输入框遮挡 */
      box-sizing: border-box;
      scrollbar-width: none;
      border-radius: 16px;
      
      /* 展开动画初始状态 */
      display: none;
      opacity: 0;
      transform: scale(0);
      transform-origin: center center;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    
    .AI_Notes_AI_border.show {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }
    .menu {
      /* 基本样式 */
      width: 100px;
      height: 200px;
      position: absolute;
      right: 0px;
      bottom: 40px;
      display: none;
      flex-direction: column;
      border-radius: 20px;
      overflow: hidden;
      z-index: 12; /* 确保菜单在按钮上面 */

      /* 升级液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.25), 
        0 2px 8px 0 rgba(255,255,255,0.3) inset, 
        0 0 32px 4px rgba(255,255,255,0.15) inset, 
        0 0 0 4px rgba(255,255,255,0.12), 
        0 0 0 2px rgba(0,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.4);
      
      /* GPU加速优化 */
      will-change: transform, opacity;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      
      /* 展开动画 */
      opacity: 0;
      transform: scale(0) translateZ(0);
      transform-origin: right bottom;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    
    .menu.show {
      opacity: 1;
      transform: scale(1) translateZ(0);
      pointer-events: auto;
    }
    .menu_son {
      width: 100px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;
      font-size: 19px;
      color: white;
      cursor: pointer;
      
      /* 菜单项液态玻璃效果 */
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px) saturate(160%);
      -webkit-backdrop-filter: blur(10px) saturate(160%);
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s ease;
    }
    
    .menu_son:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: scale(1.05);
    }
    
    .menu_son:active {
      background: rgba(255, 255, 255, 0.08);
      transform: scale(0.98);
    }
    #Notes_file {
      /* 电脑文件选择按钮 */
      display: block;
    }
    .Pop-up {
      /* 强提醒遮罩 - 增强版 */
      position: fixed !important;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 999999 !important;
      display: none;
      margin: 0;
      pointer-events: all !important;
      opacity: 0;
    }
    
    /* 打开动画 */
    .Pop-up.popup-opening {
      animation: popupFadeIn 0.2s ease forwards;
    }
    
    /* 关闭动画 */
    .Pop-up.popup-closing {
      animation: popupFadeOut 0.15s ease forwards;
    }
    
    @keyframes popupFadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
    
    @keyframes popupFadeOut {
      from {
        opacity: 1;
      }
      to {
        opacity: 0;
      }
    }
    
    .Pop-up_win {
      /* 强提醒弹窗 - 增强版 */
      position: relative;
      width: 340px;
      min-height: 180px;
      max-height: 500px;
      padding: 35px 25px 25px 25px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.9);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      font-size: 16px;
      line-height: 1.6;
      border-radius: 24px;
      box-sizing: border-box;
      
      /* 液态玻璃效果 */
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(22px) saturate(180%);
      -webkit-backdrop-filter: blur(22px) saturate(180%);
      box-shadow: 
        0 16px 56px rgba(0, 0, 0, 0.35),
        0 3px 10px rgba(255, 255, 255, 0.3) inset,
        0 0 28px 3px rgba(255, 255, 255, 0.15) inset,
        0 0 0 1.5px rgba(255, 255, 255, 0.25);
      border: 2.5px solid rgba(255, 255, 255, 0.35);
    }
    
    /* 弹窗打开动画 */
    .Pop-up.popup-opening .Pop-up_win {
      animation: popupBounceIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    
    /* 弹窗关闭动画 */
    .Pop-up.popup-closing .Pop-up_win {
      animation: popupBounceOut 0.2s ease forwards;
    }
    
    @keyframes popupBounceIn {
      0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
      }
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }
    }
    
    @keyframes popupBounceOut {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }
      100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
      }
    }
    
    /* 加载旋转图标 */
    .popup-loading-icon {
      width: 45px;
      height: 45px;
      margin-bottom: 20px;
      border: 3.5px solid rgba(255, 255, 255, 0.2);
      border-top-color: #00d4ff;
      border-radius: 50%;
      animation: popupSpin 0.8s linear infinite;
    }
    
    @keyframes popupSpin {
      to {
        transform: rotate(360deg);
      }
    }
    
    /* 文本内容 */
    .popup-text-content {
      font-size: 16px;
      line-height: 1.6;
      color: white;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      margin-bottom: 15px;
      word-break: break-word;
    }
    
    /* 进度条容器 */
    .popup-progress-container {
      width: 100%;
      height: 6px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      overflow: hidden;
      margin-top: 15px;
      position: relative;
    }
    
    /* 进度条 */
    .popup-progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #00d4ff 0%, #0ff 50%, #00b8ff 100%);
      background-size: 200% 100%;
      border-radius: 10px;
      transition: width 0.03s linear;
      animation: progressShimmer 2s linear infinite;
      box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
    
    @keyframes progressShimmer {
      0% {
        background-position: 200% 0;
      }
      100% {
        background-position: -200% 0;
      }
    }
    
    .Pop-up_not_important {
      /* 轻提醒弹窗 */
      position: relative;
      top: 5%;
      left: 50%;
      transform: translate(-50%, -10%);
      display: none;
      
      /* 自适应尺寸 */
      width: fit-content;
      min-width: 100px;
      max-width: min(500px, calc(100vw - 40px));
      height: auto;
      min-height: 25px;
      max-height: 200px;
      padding: 10px 20px;
      box-sizing: border-box;
      
      /* 支持图片+文字布局 */
      align-items: center;
      gap: 12px;
      
      /* 文字排版 */
      color: white;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
      word-wrap: break-word;
      word-break: break-word;
      white-space: pre-wrap;
      overflow-wrap: break-word;
      
      /* 外观 */
      border-radius: 24px;

      /* 液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);
      transition: all 0.3s ease;
    }
    
    /* 有图片时使用flex布局 */
    .Pop-up_not_important.with-image {
      display: flex !important;
      flex-direction: row;
      align-items: center;
      text-align: left;
      padding: 12px 16px;
    }
    
    /* 提示框内的图片样式 */
    .Pop-up_not_important .popup-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      object-fit: contain;
      margin-right: 10px;
    }
    
    /* 加载图标旋转动画 */
    .Pop-up_not_important .popup-icon.loading {
      animation: popup-icon-rotate 1s linear infinite;
    }
    
    @keyframes popup-icon-rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    
    /* 提示框内的文字容器 */
    .Pop-up_not_important .popup-text {
      flex: 1;
      line-height: 1.5;
    }
    .I_file {
      /* 文件管理主页 */
      width: 100vw;
      height: 97dvh;
      display: none;
      opacity: 1;
      transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .I_file.page-hide {
      opacity: 0;
      pointer-events: none;
    }
    .Upload_border {
      /* 上传框 */
      width: 90vw;
      min-width: 380px;
      height: calc(15vh);
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: 20px;
      border-radius: 24px;
      display: flex;

      /* SVG液态玻璃特效样式 */
      box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
      background: rgba(255, 255, 255, 0.25);
      transition: all 0.3s ease;
    }
    
    .Upload_border::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      backdrop-filter: blur(4px);
      filter: url(#lg-dist);
      isolation: isolate;
      pointer-events: none;
      border-radius: 24px;
    }
    
    .Upload_border::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.75),
      inset 0 0 5px rgba(255, 255, 255, 0.75);
      pointer-events: none;
    }
    /* 浏览文件按钮样式 - 薄荷绿发光效果 */
    .I_file_browse {
      /* 基本样式 */
      width: 130px;
      height: 42px;
      color: rgb(0, 255, 127);
      font-weight: 500;
      border-radius: 24px;
      position: absolute;
      top: 50%;
      left: calc(50% - 145px);
      transform: translateY(-0px);
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;
      cursor: pointer;
      
      /* 薄荷绿发光效果 */
      border: 2px solid rgb(0, 255, 127);
      box-shadow: 0px 0px 100px rgb(0, 255, 127), inset 0px 0px 10px rgb(0, 255, 127), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;
      transition: all 0.3s ease;
    }
    
    .I_file_browse:hover {
      box-shadow: 0px 0px 150px rgb(0, 255, 127), 0px 0px 80px rgba(0, 255, 127, 0.6), inset 0px 0px 15px rgb(0, 255, 127), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(0, 255, 127, 0.8));
    }

    /* 上传文件按钮样式 - 青色发光效果 */
    .I_file_upload {
      /* 基本样式 */
      width: 130px;
      height: 42px;
      color: rgb(1, 235, 252);
      font-weight: 500;
      border-radius: 24px;
      position: absolute;
      top: 50%;
      left: calc(50% + 15px);
      transform: translateY(-0px);
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;
      cursor: pointer;
      
      /* 青色发光效果 */
      border: 2px solid rgb(1, 235, 252);
      box-shadow: 0px 0px 100px rgb(1, 235, 252), inset 0px 0px 10px rgb(1, 235, 252), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;
      transition: all 0.3s ease;
    }
    
    .I_file_upload:hover {
      box-shadow: 0px 0px 150px rgb(1, 235, 252), 0px 0px 80px rgba(1, 235, 252, 0.6), inset 0px 0px 15px rgb(1, 235, 252), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(1, 235, 252, 0.8));
    }
    /* 显示文件名字和上传进度的框 */
    .file-upload-info {
      /* 基本样式 */
      width: 700px;
      height: 40px;
      color: white;
      border-radius: 24px;
      position: absolute;
      top: calc(50% - 60px); /* 在上传和浏览按钮上方一点 */
      left: 50%;
      transform: translateX(-50%); /* 实现左右居中 */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden; /* 超出部分不显示 */
      padding: 0 10px;
      font-weight: 500;

      /* 和搜索框一样的液态玻璃特效样式 */
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
      backdrop-filter: blur(20px) saturate(170%);
      -webkit-backdrop-filter: blur(20px) saturate(170%);
      box-shadow: 
        0 4px 20px 0 rgba(31, 38, 135, 0.15), 
        0 2px 8px 0 rgba(255,255,255,0.15) inset, 
        0 0 30px 3px rgba(255,255,255,0.08) inset, 
        0 0 0 1px rgba(100, 217, 254, 0.2);
      border: 2px solid rgba(255,255,255,0.25);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    /* 下载框样式 */
    .download-box {
      /* 基本样式 */
      width: 90vw;
      min-width: 380px;
      height: 75vh;
      border-radius: 24px;
      position: absolute;
      top: calc(20px + 15vh + 20px);
      left: 50%;
      transform: translate(-50%, 0%);
      /* position: relative; */

      /* SVG液态玻璃特效样式 */
      box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
      background: rgba(255, 255, 255, 0.25);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }
    
    .download-box::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      backdrop-filter: blur(4px);
      filter: url(#lg-dist);
      isolation: isolate;
      pointer-events: none;
      border-radius: 24px;
    }
    
    .download-box::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.75),
      inset 0 0 5px rgba(255, 255, 255, 0.75);
      pointer-events: none;
    }

    /* 下载列表样式 */
    .download-list {
      width: calc(90vw - 40px);
      height: 80%;
      margin: 20px auto 0;
      padding: 10px;
      border-radius: 24px;
      background: rgba(100, 100, 100, 0.3);

      /* 布局相关 */
      display: flex;
      flex-direction: column;
      box-sizing: border-box;

      /* 滚动相关 */
      overflow-y: auto;
      scrollbar-width: none;
      /* 手机端不会整个body滑动的关键 */
      overscroll-behavior: none;

      /* 简单边框 */
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
    }

    /* 下载列表项样式 - 优化版 */
    .download-item {
      width: 100%;
      min-height: 75px;
      margin: 10px 0;
      padding: 15px 20px 15px 25px;
      box-sizing: border-box;
      color: white;
      cursor: pointer;
      user-select: none;

      /* 布局相关 */
      display: flex;
      align-items: center;
      position: relative;
      border-radius: 16px;

      /* 背景和边框 - 增加层次感 */
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
      border-left: 4px solid transparent;
      
      /* 阴影 */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

      /* 过渡动画 */
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

      /* 文字特效 */
      text-shadow: 0 0 4px rgba(160, 232, 215, 0.6),
        0 0 12px rgba(94, 96, 230, 0.4), 0 0 20px rgba(200, 230, 255, 0.2);
    }

    /* 选中状态 - 增强品牌色 */
    .download-item.selected {
      background: linear-gradient(135deg, 
        rgba(100, 217, 254, 0.25) 0%, 
        rgba(147, 51, 234, 0.15) 100%);
      border-left: 5px solid #64d9fe;
      transform: translateX(5px) translateY(-1px);
      box-shadow: 
        -5px 0 20px rgba(100, 217, 254, 0.4),
        0 5px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(100, 217, 254, 0.1);
    }

    /* 文件名区域 */
    .download-item-name {
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      padding-right: 225px;
      font-size: 15px;
      font-weight: 500;
    }

    /* 下载项文件大小样式 - 优化 */
    .download-item-size {
      position: absolute;
      right: 180px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 500;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
      padding: 5px 12px;
      border-radius: 8px;
      min-width: 60px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    /* 文件类型标签优化 - 增加渐变 */
    .download-item-type {
      position: absolute;
      right: 75px;
      top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(135deg, rgba(100, 217, 254, 0.25) 0%, rgba(147, 51, 234, 0.15) 100%);
      color: #64d9fe;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      font-size: 10px;
      font-weight: bold;
      letter-spacing: 0.5px;
      text-shadow: 0 0 8px rgba(100, 217, 254, 0.5);
      box-shadow: 0 3px 12px rgba(100, 217, 254, 0.25), inset 0 0 20px rgba(100, 217, 254, 0.1);
      border: 1px solid rgba(100, 217, 254, 0.3);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* 文件类型标签悬停效果 */
    .download-item-type:hover {
      transform: translateY(-50%) scale(1.08);
      box-shadow: 0 5px 20px rgba(100, 217, 254, 0.5), inset 0 0 30px rgba(100, 217, 254, 0.2);
      background: linear-gradient(135deg, rgba(100, 217, 254, 0.35) 0%, rgba(147, 51, 234, 0.25) 100%);
      border-color: rgba(100, 217, 254, 0.5);
    }

    /* ==================== Windows 风格网格视图（列表样式图标）==================== */
    
    /* 网格视图容器 */
    .download-list.grid-view {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      gap: 4px;
      padding: 12px;
      align-content: start;
      background: transparent;
    }

    /* 文件卡片 - 基础样式 */
    .download-list.grid-view .download-item {
      /* 布局 - 强制正确的显示顺序 */
      width: 100%;
      height: auto;
      min-height: 115px;
      display: grid !important;
      grid-template-rows: auto auto auto;
      grid-template-areas: 
        "icon"
        "name"
        "size";
      justify-items: center;
      align-content: start;
      padding: 10px 6px 8px 6px;
      margin: 0;
      box-sizing: border-box;
      position: relative;
      
      /* 外观 */
      background: transparent;
      border: 1.5px solid transparent;
      border-radius: 6px;
      cursor: pointer;
      user-select: none;
      
      /* 动画 */
      transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
      
      /* 重置列表视图的样式 */
      box-shadow: none !important;
      transform: none !important;
    }

    /* 悬停效果 */
    .download-list.grid-view .download-item:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.08);
      transform: none;
    }

    /* 选中状态 */
    .download-list.grid-view .download-item.selected {
      background: rgba(0, 120, 215, 0.25) !important;
      border-color: rgba(0, 120, 215, 0.6) !important;
      transform: none;
    }

    /* 选中+悬停 */
    .download-list.grid-view .download-item.selected:hover {
      background: rgba(0, 120, 215, 0.35) !important;
      border-color: rgba(0, 120, 215, 0.7) !important;
    }

    /* 图标区域容器（方形背景）- 强制在最上面 */
    .download-list.grid-view .download-item-icon-wrapper {
      grid-area: icon !important;
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 6px;
      flex-shrink: 0;
      position: relative;
    }

    /* 文件类型图标 - 方形背景样式（跟列表视图一样）*/
    .download-list.grid-view .download-item-type {
      grid-area: icon !important;
      position: static !important;
      width: 64px !important;
      height: 64px !important;
      margin: 0 0 6px 0 !important;
      padding: 0 !important;
      
      /* 方形背景（跟列表视图一致）*/
      background: linear-gradient(135deg, rgba(100, 217, 254, 0.25) 0%, rgba(147, 51, 234, 0.15) 100%) !important;
      border-radius: 10px !important;
      border: 1px solid rgba(100, 217, 254, 0.3) !important;
      box-shadow: 0 3px 12px rgba(100, 217, 254, 0.25), inset 0 0 20px rgba(100, 217, 254, 0.1) !important;
      
      /* 图标文字 */
      font-size: 10px !important;
      font-weight: bold !important;
      letter-spacing: 0.5px !important;
      line-height: 1 !important;
      color: #64d9fe !important;
      text-shadow: 0 0 8px rgba(100, 217, 254, 0.5) !important;
      
      /* 布局 */
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      
      /* 动画 */
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
      transform: none !important;
    }

    .download-list.grid-view .download-item:hover .download-item-type {
      transform: scale(1.05) !important;
      box-shadow: 0 5px 20px rgba(100, 217, 254, 0.5), inset 0 0 30px rgba(100, 217, 254, 0.2) !important;
      background: linear-gradient(135deg, rgba(100, 217, 254, 0.35) 0%, rgba(147, 51, 234, 0.25) 100%) !important;
      border-color: rgba(100, 217, 254, 0.5) !important;
    }

    /* 缩略图 - 覆盖在类型图标上 */
    .download-list.grid-view .thumbnail-container {
      position: absolute !important;
      top: 10px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      width: 64px !important;
      height: 64px !important;
      margin: 0 !important;
      padding: 0 !important;
      border-radius: 10px !important;
      overflow: hidden !important;
      background: rgba(0, 0, 0, 0.2) !important;
      border: 1px solid rgba(100, 217, 254, 0.3) !important;
      box-shadow: 0 3px 12px rgba(100, 217, 254, 0.25) !important;
      z-index: 2 !important;
    }

    .download-list.grid-view .thumbnail-container img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      border-radius: 9px !important;
    }

    /* 视频/音频/文档按钮容器 - 覆盖在类型图标上 */
    .download-list.grid-view .video-play-button-container,
    .download-list.grid-view .audio-play-button-container,
    .download-list.grid-view .document-preview-button-container {
      position: absolute !important;
      top: 10px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      width: 64px !important;
      height: 64px !important;
      margin: 0 !important;
      padding: 0 !important;
      border-radius: 10px !important;
      z-index: 2 !important;
    }

    /* 文件信息容器（文件名+文件大小）- 在图标下方 */
    .download-list.grid-view .download-item-info {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      order: 0 !important;
    }

    /* 文件名 - 强制在中间 */
    .download-list.grid-view .download-item-name {
      grid-area: name !important;
      width: 100%;
      max-width: 100%;
      padding: 0 4px;
      margin: 0;
      
      /* 文字样式 */
      font-size: 11px;
      font-weight: 400;
      line-height: 1.3;
      text-align: center;
      color: rgba(255, 255, 255, 0.95);
      
      /* 多行文本（最多1行，保持紧凑）*/
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      
      /* 文字阴影 */
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    }

    /* 选中时文件名样式 */
    .download-list.grid-view .download-item.selected .download-item-name {
      color: white;
      font-weight: 500;
    }

    /* 文件大小标签 - 强制在最下面 */
    .download-list.grid-view .download-item-size {
      grid-area: size !important;
      display: block !important;
      position: static !important;
      width: auto !important;
      height: auto !important;
      margin: 0 !important;
      padding: 2px 6px !important;
      
      /* 样式 */
      font-size: 9px !important;
      font-weight: 500 !important;
      color: rgba(255, 255, 255, 0.7) !important;
      background: rgba(0, 0, 0, 0.3) !important;
      border-radius: 4px !important;
      text-align: center !important;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
      
      /* 重置列表视图样式 */
      transform: none !important;
      border: none !important;
      box-shadow: none !important;
    }

    /* 隐藏文件夹"打开"按钮 */
    /* 网格视图下的文件夹"打开"按钮样式 */
    .download-list.grid-view .folder-open-button {
      display: flex !important;
      width: 64px !important;
      height: 64px !important;
      margin: 0 !important;
      padding: 0 !important;
      font-size: 11px !important;
      background: #52c41a !important;
      border-radius: 10px !important;
      border: 1px solid rgba(82, 196, 26, 0.6) !important;
      box-shadow: 0 3px 12px rgba(82, 196, 26, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2) !important;
      align-items: center !important;
      justify-content: center !important;
      transition: none !important;
    }
    
    .download-list.grid-view .folder-open-button:hover {
      transform: none !important;
      box-shadow: 0 3px 12px rgba(82, 196, 26, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2) !important;
      background: #52c41a !important;
      border-color: rgba(82, 196, 26, 0.6) !important;
    }

    /* 网格视图下的"返回上一级"按钮优化 */
    .download-list.grid-view .download-item[data-is-back-button="true"] {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .download-list.grid-view .download-item[data-is-back-button="true"]:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
    }

    /* 文件夹特殊样式 */
    .download-list.grid-view .download-item[data-is-folder="true"] .download-item-name {
      color: rgba(100, 217, 254, 0.95);
    }

    .download-list.grid-view .download-item[data-is-folder="true"].selected .download-item-name {
      color: #64d9fe;
      font-weight: 600;
    }

    /* PC端缩略图样式优化 */
    .thumbnail-container {
      position: absolute;
      right: 75px;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    /* 缩略图悬停效果 */
    .thumbnail-container:hover {
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
      z-index: 20;
    }

    /* 缩略图内图片样式 */
    .thumbnail-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 6px;
      transition: transform 0.3s ease;
    }

    /* 缩略图图片悬停效果 */
    .thumbnail-container:hover img {
      transform: scale(1.02);
    }

    /* 超大图片加载按钮样式（PC端）*/
    .thumbnail-container[style*="background-color: #ff6b6b"] {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
      font-weight: bold;
      color: white;
      text-align: center;
      line-height: 1.1;
      padding: 2px;
      word-break: break-word;
    }

    /* 正常图片绿色边框样式 */
    .thumbnail-container[style*="background-color: #90ee90"] {
      border: 2px solid rgba(144, 238, 144, 0.5);
      background: rgba(144, 238, 144, 0.1) !important;
    }

    /* ===== Viewer.js 图片查看器自定义样式 ===== */
    
    /* 主容器背景 */
    .viewer-backdrop {
      background-color: rgba(0, 0, 0, 0.9) !important;
      backdrop-filter: blur(10px);
    }
    
    /* 工具栏样式 */
    .viewer-toolbar {
      background: rgba(35, 41, 70, 0.95) !important;
      backdrop-filter: blur(20px);
      border-radius: 16px 16px 0 0;
      padding: 12px 20px !important;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* 工具栏按钮优化 */
    .viewer-toolbar > li {
      width: 40px !important;
      height: 40px !important;
      margin: 0 4px !important;
      border-radius: 10px !important;
      background: rgba(100, 217, 254, 0.15) !important;
      transition: all 0.3s ease !important;
    }
    
    .viewer-toolbar > li:hover {
      background: rgba(100, 217, 254, 0.3) !important;
      transform: translateY(-2px);
    }
    
    .viewer-toolbar > li::before {
      color: #64d9fe !important;
      font-size: 18px !important;
      line-height: 40px !important;
    }
    
    /* 标题栏样式 */
    .viewer-title {
      background: rgba(35, 41, 70, 0.95) !important;
      backdrop-filter: blur(20px);
      color: #fff !important;
      padding: 15px 20px !important;
      font-size: 16px !important;
      font-weight: 500;
      border-radius: 0 0 16px 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* 导航按钮优化 */
    .viewer-button {
      background: rgba(100, 217, 254, 0.2) !important;
      backdrop-filter: blur(10px);
      border-radius: 50% !important;
      width: 50px !important;
      height: 50px !important;
      opacity: 0.8 !important;
      transition: all 0.3s ease !important;
    }
    
    .viewer-button:hover {
      background: rgba(100, 217, 254, 0.4) !important;
      opacity: 1 !important;
      transform: scale(1.1);
    }
    
    .viewer-button::before {
      color: #fff !important;
      font-size: 24px !important;
    }
    
    /* 关闭按钮特殊样式 */
    .viewer-close {
      background: rgba(255, 107, 107, 0.3) !important;
    }
    
    .viewer-close:hover {
      background: rgba(255, 107, 107, 0.5) !important;
    }
    
    /* 图片容器 */
    .viewer-canvas {
      background: transparent !important;
    }
    
    .viewer-canvas > img {
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
      border-radius: 16px !important;
    }
    
    /* 缩放提示 */
    .viewer-tooltip {
      background: rgba(35, 41, 70, 0.95) !important;
      backdrop-filter: blur(10px);
      color: #64d9fe !important;
      border-radius: 12px !important;
      padding: 8px 16px !important;
      font-size: 14px !important;
      font-weight: 500;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    /* 加载动画 */
    .viewer-loading {
      color: #64d9fe !important;
    }
    
    /* 移动端优化 */
    @media (max-width: 768px) {
      .viewer-toolbar > li {
        width: 36px !important;
        height: 36px !important;
        margin: 0 2px !important;
      }
      
      .viewer-toolbar > li::before {
        font-size: 16px !important;
        line-height: 36px !important;
      }
      
      .viewer-button {
        width: 44px !important;
        height: 44px !important;
      }
      
      .viewer-title {
        font-size: 14px !important;
        padding: 12px 15px !important;
      }
    }

    /* ===== Video.js 视频播放器自定义样式 ===== */
    
    /* 视频播放按钮容器（类似图片缩略图） */
    .video-play-button-container {
      position: absolute;
      right: 75px;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(100, 217, 254, 0.2), rgba(147, 51, 234, 0.2));
      backdrop-filter: blur(10px);
      border: 2px solid rgba(100, 217, 254, 0.3);
    }
    
    .video-play-button-container:hover {
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
      background: linear-gradient(135deg, rgba(100, 217, 254, 0.25), rgba(147, 51, 234, 0.25));
    }
    
    .video-play-button-container::before {
      content: '▶';
      font-size: 18px;
      color: #fff;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    .video-play-button-container.loading::before {
      content: '⏳';
      animation: pulse 1s ease-in-out infinite;
    }
    
    /* 音频播放按钮样式 */
    .audio-play-button-container {
      position: absolute;
      right: 75px;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 193, 7, 0.2));
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 152, 0, 0.3);
    }
    
    .audio-play-button-container:hover {
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
      background: linear-gradient(135deg, rgba(255, 152, 0, 0.25), rgba(255, 193, 7, 0.25));
    }
    
    .audio-play-button-container::before {
      content: '♪';
      font-size: 20px;
      color: #fff;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    .audio-play-button-container.loading::before {
      content: '⏳';
      animation: pulse 1s ease-in-out infinite;
    }
    
    /* 文档预览按钮样式 */
    .document-preview-button-container {
      position: absolute;
      right: 75px;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.2));
      backdrop-filter: blur(10px);
      border: 2px solid rgba(76, 175, 80, 0.3);
    }
    
    .document-preview-button-container:hover {
      transform: translateY(-50%) scale(1.05);
      box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
      background: linear-gradient(135deg, rgba(76, 175, 80, 0.25), rgba(56, 142, 60, 0.25));
    }
    
    .document-preview-button-container::before {
      content: '📄';
      font-size: 20px;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    .document-preview-button-container.loading::before {
      content: '⏳';
      animation: pulse 1s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.1); }
    }
    
    /* 视频模态框 */
    #video-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 10000;
      padding: 20px;
      box-sizing: border-box;
    }
    
    #video-modal.active {
      display: flex;
    }
    
    /* 视频容器 */
    .video-container {
      position: relative;
      width: 90vw;
      max-width: 1400px;
      max-height: 85vh;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
      background: #000;
    }
    
    /* Video.js 播放器样式优化 */
    .video-js {
      width: 100% !important;
      height: auto !important;
      border-radius: 16px;
    }
    
    .video-js .vjs-big-play-button {
      border-radius: 50% !important;
      width: 80px !important;
      height: 80px !important;
      line-height: 80px !important;
      border: 3px solid rgba(100, 217, 254, 0.8) !important;
      background: rgba(35, 41, 70, 0.9) !important;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease !important;
    }
    
    .video-js .vjs-big-play-button:hover {
      background: rgba(100, 217, 254, 0.3) !important;
      border-color: #64d9fe !important;
      transform: scale(1.1);
    }
    
    .video-js .vjs-control-bar {
      background: rgba(35, 41, 70, 0.95) !important;
      backdrop-filter: blur(20px);
      border-radius: 0 0 16px 16px;
      height: 50px !important;
    }
    
    .video-js .vjs-button > .vjs-icon-placeholder:before {
      line-height: 50px !important;
    }
    
    .video-js .vjs-progress-control {
      position: absolute;
      top: -8px;
      width: 100%;
      height: 8px;
      z-index: 11;
    }
    
    .video-js .vjs-progress-holder {
      height: 8px !important;
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.2) !important;
      z-index: 11;
      position: relative;
    }
    
    .video-js .vjs-play-progress {
      background: linear-gradient(90deg, #64d9fe, #9333ea) !important;
      border-radius: 4px;
      z-index: 12;
      position: relative;
    }
    
    .video-js .vjs-load-progress {
      background: rgba(255, 255, 255, 0.3) !important;
      border-radius: 4px;
      z-index: 11;
      position: relative;
    }
    
    .video-js .vjs-slider {
      background: transparent !important;
    }
    
    /* 关闭按钮 */
    .video-close-button {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 107, 107, 0.3);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 107, 107, 0.5);
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10001;
    }
    
    .video-close-button:hover {
      background: rgba(255, 107, 107, 0.5);
      transform: scale(1.1);
    }
    
    /* 视频信息栏 */
    .video-info-bar {
      position: absolute;
      top: 20px;
      left: 20px;
      background: rgba(35, 41, 70, 0.95);
      backdrop-filter: blur(20px);
      padding: 12px 20px;
      border-radius: 12px;
      color: #fff;
      font-size: 14px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      max-width: calc(100% - 120px);
      z-index: 10001;
    }
    
    .video-info-bar .video-filename {
      font-weight: 500;
      color: #64d9fe;
      margin-bottom: 4px;
      word-break: break-all;
    }
    
    .video-info-bar .video-details {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* 移动端视频优化 */
    @media (max-width: 768px) {
      .video-play-button-container {
        width: 50px !important;
        height: 50px !important;
        right: 70px !important;
        top: 10px !important;
        transform: none !important;
        border-radius: 8px !important;
      }
      
      .video-play-button-container:hover {
        transform: none !important;
      }
      
      .video-play-button-container::before {
        font-size: 24px;
      }
      
      /* 移动端音频播放按钮 */
      .audio-play-button-container {
        width: 50px !important;
        height: 50px !important;
        right: 70px !important;
        top: 10px !important;
        transform: none !important;
        border-radius: 8px !important;
      }
      
      .audio-play-button-container:hover {
        transform: none !important;
      }
      
      .audio-play-button-container::before {
        font-size: 24px;
      }
      
      /* 移动端文档预览按钮 */
      .document-preview-button-container {
        width: 50px !important;
        height: 50px !important;
        right: 70px !important;
        top: 10px !important;
        transform: none !important;
        border-radius: 8px !important;
      }
      
      .document-preview-button-container:hover {
        transform: none !important;
      }
      
      .document-preview-button-container::before {
        font-size: 24px;
      }
      
      .video-container {
        width: 95vw;
        max-height: 80vh;
      }
      
      .video-info-bar {
        font-size: 12px;
        padding: 8px 12px;
        max-width: calc(100% - 90px);
      }
      
      .video-close-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 10px;
        right: 10px;
      }
      
      .video-js .vjs-control-bar {
        height: 44px !important;
      }
      
      .video-js .vjs-button > .vjs-icon-placeholder:before {
        line-height: 44px !important;
      }
    }

    /* 下载按钮样式 - 紫罗兰色发光效果 */
    .download-btn {
      /* 基础尺寸与颜色 */
      width: 120px;
      height: 42px;
      color: rgb(238, 130, 238);
      font-weight: 500;

      /* 布局相关 */
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 24px;
      position: absolute;
      top: 12px;
      left: 12px;
      user-select: none;

      /* 紫罗兰色发光效果 */
      border: 2px solid rgb(238, 130, 238);
      box-shadow: 0px 0px 100px rgb(238, 130, 238), inset 0px 0px 10px rgb(238, 130, 238), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;

      /* 交互相关 */
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .download-btn:hover {
      box-shadow: 0px 0px 150px rgb(238, 130, 238), 0px 0px 80px rgba(238, 130, 238, 0.6), inset 0px 0px 15px rgb(238, 130, 238), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(238, 130, 238, 0.8));
    }

    /* 显示文件名的框 */
    .file-name-display {
      /* 基础尺寸与颜色 */
      width: 250px;
      height: 40px;
      color: white;
      background: rgba(100, 100, 100, 0.3);

      /* 布局相关 */
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden; /* 超出部分不显示 */
      padding: 0 10px;
      position: absolute; /* 设置绝对定位 */
      top: 10px; /* 与下载按钮顶部对齐 */
      left: calc(
        20px + 120px + 10px + 120px + 10px
      ); /* 放在下载按钮右侧，间隔 10px */

      /* 简单边框 */
      border: 1px solid rgba(255, 255, 255, 0.3);

      /* 交互相关 */
      transition: all 0.3s ease;
      opacity: 0;
    }
    /* 删除文件按钮样式 - 红色发光效果 */
    .delete-file-btn {
      /* 基础尺寸与颜色 */
      width: 120px;
      height: 42px;
      color: rgb(255, 67, 67);
      font-weight: 500;

      /* 布局相关 */
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 24px;
      position: absolute;
      top: 12px;
      left: calc(12px + 120px + 12px);
      user-select: none;

      /* 红色发光效果 */
      border: 2px solid rgb(255, 67, 67);
      box-shadow: 0px 0px 100px rgb(255, 67, 67), inset 0px 0px 10px rgb(255, 67, 67), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;

      /* 交互相关 */
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .delete-file-btn:hover {
      box-shadow: 0px 0px 150px rgb(255, 67, 67), 0px 0px 80px rgba(255, 67, 67, 0.6), inset 0px 0px 15px rgb(255, 67, 67), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(255, 67, 67, 0.8));
    }
    /* 重命名文件按钮样式 - 橙色发光效果 */
    .rename-file-btn {
      /* 基础尺寸与颜色 */
      width: 120px;
      height: 42px;
      color: rgb(255, 152, 0);
      font-weight: 500;

      /* 布局相关 */
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 24px;
      position: absolute;
      bottom: calc(12px + env(safe-area-inset-bottom));
      left: 12px;
      user-select: none;
      z-index: 10;

      /* 橙色发光效果 */
      border: 2px solid rgb(255, 152, 0);
      box-shadow: 0px 0px 100px rgb(255, 152, 0), inset 0px 0px 10px rgb(255, 152, 0), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;

      /* 交互相关 */
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .rename-file-btn:hover {
      box-shadow: 0px 0px 150px rgb(255, 152, 0), 0px 0px 80px rgba(255, 152, 0, 0.6), inset 0px 0px 15px rgb(255, 152, 0), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(255, 152, 0, 0.8));
    }
    .rename-file-input {
      /* 基础尺寸与颜色 */
      width: 200px;
      height: 40px;
      color: white;
      caret-color: #52c41a; /* 光标颜色 - 绿色 */
      outline: 0px;
      font-size: 15px;
      padding: 0 10px;
      display: none;

      /* 布局相关 */
      border-radius: 24px;
      position: absolute; /* 设置绝对定位 */
      top: 50%; /* 垂直居中 */
      left: 50%; /* 水平居中 */
      z-index: 50;
      border: none;

      /* 展开动画 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;

      /* 液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);
      transition: all 0.3s ease;
    }

    .rename-file-input.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      pointer-events: auto;
    }
    
    .rename-file-input::placeholder {
      color: rgba(255, 255, 255, 0.7);
    }

    .rename-file-input_yes {
      /* 基础尺寸与颜色 */
      width: 40px;
      height: 40px;
      color: white;
      display: none;

      /* 布局相关 */
      border-radius: 50%;
      position: absolute; /* 设置绝对定位 */
      top: 50%; /* 垂直居中 */
      left: calc(50% + 130px); /* 位置调整到输入框右侧 */
      z-index: 50;

      /* 展开动画 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;

      /* 液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);

      /* 交互相关 */
      cursor: pointer;
      user-select: none;
    }

    .rename-file-input_yes.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      pointer-events: auto;
    }
    
    /* 新建文件夹输入框样式 */
    .create-folder-input {
      /* 基础尺寸与颜色 */
      width: 200px;
      height: 40px;
      color: white;
      caret-color: #52c41a; /* 光标颜色 - 绿色 */
      outline: 0px;
      font-size: 15px;
      padding: 0 10px;
      display: none;

      /* 布局相关 */
      border-radius: 24px;
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 50;
      border: none;

      /* 展开动画 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

      /* 液态玻璃特效样式 */
      background: rgba(82, 196, 26, 0.15);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(82, 196, 26, 0.25), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(82, 196, 26, 0.12) inset, 
        0 0 0 4px rgba(82, 196, 26, 0.08);
      border: 2.5px solid rgba(82, 196, 26, 0.35);
    }

    .create-folder-input.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .create-folder-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    /* 新建文件夹确认按钮样式 */
    .create-folder-input_yes {
      /* 基础尺寸与颜色 */
      width: 40px;
      height: 40px;
      color: white;
      display: none;

      /* 布局相关 */
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: calc(50% + 130px);
      z-index: 50;

      /* 展开动画 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;

      /* 液态玻璃特效样式 */
      background: rgba(82, 196, 26, 0.2);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(82, 196, 26, 0.25), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(82, 196, 26, 0.12) inset, 
        0 0 0 4px rgba(82, 196, 26, 0.08);
      border: 2.5px solid rgba(82, 196, 26, 0.35);
      transition: all 0.3s ease;

      /* 交互相关 */
      cursor: pointer;
      user-select: none;
    }

    .create-folder-input_yes.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      pointer-events: auto;
    }
    
    /* 文件管理菜单子项样式 */
    .menu_son_1 {
      width: 100px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;
      font-size: 19px;
      color: white;
      cursor: pointer;
      
      /* 升级液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px) saturate(180%);
      -webkit-backdrop-filter: blur(12px) saturate(180%);
      border-bottom: 1px solid rgba(255,255,255,0.15);
      transition: all 0.3s ease;
    }
    
    .menu_son_1:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: scale(1.05);
    }
    
    .menu_son_1:active {
      background: rgba(255, 255, 255, 0.08);
      transform: scale(0.98);
    }
    /* 获取链接按钮样式 - 黄色发光效果 */
    .get_direct_link_name{
      /* 基础尺寸与颜色 */
      width: 120px;
      height: 42px;
      color: rgb(255, 235, 59);
      font-weight: 500;

      /* 布局相关 */
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 24px;
      position: absolute;
      bottom: calc(12px + env(safe-area-inset-bottom));
      left: calc(12px + 120px + 12px);
      user-select: none;
      z-index: 10;

      /* 黄色发光效果 */
      border: 2px solid rgb(255, 235, 59);
      box-shadow: 0px 0px 100px rgb(255, 235, 59), inset 0px 0px 10px rgb(255, 235, 59), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;

      /* 交互相关 */
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .get_direct_link_name:hover {
      box-shadow: 0px 0px 150px rgb(255, 235, 59), 0px 0px 80px rgba(255, 235, 59, 0.6), inset 0px 0px 15px rgb(255, 235, 59), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(255, 235, 59, 0.8));
    }
    
    /* 新建文件夹按钮样式 - 亮绿色发光效果 */
    .create-folder-btn {
      /* 基础尺寸与颜色 */
      width: 120px;
      height: 42px;
      color: rgb(0, 255, 50);
      font-weight: 500;

      /* 布局相关 */
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 24px;
      position: absolute;
      bottom: calc(12px + env(safe-area-inset-bottom));
      left: calc(12px + 120px + 12px + 120px + 12px);
      user-select: none;
      z-index: 10;

      /* 亮绿色发光效果 */
      border: 2px solid rgb(0, 255, 50);
      box-shadow: 0px 0px 100px rgb(0, 255, 50), inset 0px 0px 10px rgb(0, 255, 50), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;

      /* 交互相关 */
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .create-folder-btn:hover {
      box-shadow: 0px 0px 150px rgb(0, 255, 50), 0px 0px 80px rgba(0, 255, 50, 0.6), inset 0px 0px 15px rgb(0, 255, 50), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(0, 255, 50, 0.8));
    }
    
    /* ===== 文件管理设置按钮样式 - 银白色发光效果 ===== */
    .file-settings-btn {
      /* 基础尺寸与颜色 */
      width: 50px;
      height: 42px;
      color: rgb(200, 200, 200);
      font-weight: 600;
      font-size: 18px;

      /* 布局相关 */
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 24px;
      position: absolute;
      bottom: calc(12px + env(safe-area-inset-bottom));
      left: calc(12px + 120px + 12px + 120px + 12px + 120px + 12px); /* 新建文件夹右边 */
      user-select: none;
      z-index: 10;
      cursor: pointer;

      /* 银白色发光效果 */
      border: 2px solid rgb(200, 200, 200);
      box-shadow: 0px 0px 100px rgb(200, 200, 200), inset 0px 0px 10px rgb(200, 200, 200), 0px 0px 5px rgb(255, 255, 255);
      opacity: 1;
      
      /* 动画过渡 */
      transition: all 0.3s ease;
    }

    .file-settings-btn:hover {
      box-shadow: 0px 0px 150px rgb(200, 200, 200), 0px 0px 80px rgba(200, 200, 200, 0.6), inset 0px 0px 15px rgb(200, 200, 200), 0px 0px 8px rgb(255, 255, 255);
      filter: drop-shadow(0px 0px 40px rgba(200, 200, 200, 0.8));
    }

    /* ===== 文件管理设置菜单样式 ===== */
    .file-settings-menu {
      /* 尺寸和位置 */
      width: 120px;
      max-height: 300px;
      position: absolute;
      display: none;
      bottom: 70px; /* 按钮上方 */
      left: calc(12px + 120px + 12px + 120px + 12px + 120px + 12px); /* 与按钮水平对齐 */
      
      /* 布局 */
      flex-direction: column;
      border-radius: 15px;
      z-index: 12;
      
      /* 滚动 */
      overflow-y: auto;
      overflow-x: hidden;
      
      /* 液态玻璃特效 */
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.25), 
        0 2px 8px 0 rgba(255,255,255,0.3) inset, 
        0 0 32px 4px rgba(255,255,255,0.15) inset, 
        0 0 0 4px rgba(255,255,255,0.12), 
        0 0 0 2px rgba(0,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.4);
      
      /* 展开动画（与file_menu一致）*/
      opacity: 0;
      transform: scale(0);
      transform-origin: center bottom; /* 默认，会被JS动态修改 */
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
      
      /* GPU加速 */
      will-change: transform, opacity;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      
      /* 滚动条样式（与AI_auto_cruise_alert_menu一致）*/
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }

    .file-settings-menu::-webkit-scrollbar {
      width: 6px;
    }

    .file-settings-menu::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 3px;
    }

    .file-settings-menu::-webkit-scrollbar-track {
      background: transparent;
    }

    /* 菜单展开状态 */
    .file-settings-menu.show {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }

    /* 菜单项样式 */
    .file-settings-menu-item {
      width: 100%;
      height: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white; /* PC端默认白色（高级动效） */
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      user-select: none;
      transition: all 0.2s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .file-settings-menu-item:last-child {
      border-bottom: none;
    }

    .file-settings-menu-item:hover {
      background: rgba(100, 217, 254, 0.15);
      color: #64d9fe; /* PC端悬停高亮色 */
    }

    .file-settings-menu-item:active {
      background: rgba(100, 217, 254, 0.25);
      transform: scale(0.95);
    }
    
    /* ===== 右键菜单样式 ===== */
    .context-menu {
      /* 尺寸和位置 */
      min-width: 140px;
      max-width: 180px;
      max-height: 300px;
      position: fixed;
      display: none;
      /* 位置由JavaScript动态设置 */
      
      /* 布局 */
      flex-direction: column;
      border-radius: 12px;
      z-index: 9999;
      
      /* 滚动 */
      overflow-y: auto;
      overflow-x: hidden;
      
      /* 液态玻璃特效 */
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.25), 
        0 2px 8px 0 rgba(255,255,255,0.3) inset, 
        0 0 32px 4px rgba(255,255,255,0.15) inset, 
        0 0 0 4px rgba(255,255,255,0.12), 
        0 0 0 2px rgba(0,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.4);
      
      /* 展开动画 */
      opacity: 0;
      transform: scale(0);
      transform-origin: center center; /* 会被JS动态修改 */
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
      
      /* GPU加速 */
      will-change: transform, opacity;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      
      /* 滚动条样式 */
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }

    .context-menu::-webkit-scrollbar {
      width: 6px;
    }

    .context-menu::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 3px;
    }

    .context-menu::-webkit-scrollbar-track {
      background: transparent;
    }

    /* 菜单展开状态 */
    .context-menu.show {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }

    /* 右键菜单项样式 */
    .context-menu-item {
      width: 100%;
      height: 40px;
      display: flex;
      align-items: center;
      padding: 0 15px;
      color: white;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      user-select: none;
      transition: all 0.2s ease;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      white-space: nowrap;
    }

    .context-menu-item:last-child {
      border-bottom: none;
    }

    .context-menu-item:hover {
      background: rgba(100, 217, 254, 0.15);
      color: #64d9fe;
    }

    .context-menu-item:active {
      background: rgba(100, 217, 254, 0.25);
      transform: scale(0.98);
    }

    /* 禁用状态 */
    .context-menu-item.disabled {
      opacity: 0.4;
      cursor: not-allowed;
      pointer-events: none;
    }
    
    /* 搜索栏样式 */
    .search-container {
      /* 基本样式 */
      width: 50%;
      height: 40px;
      position: relative;
      display: flex;
      justify-content: center;
      top: 10px; /* 与下载按钮顶部对齐 */
      left: calc(120px); /* 放在下载按钮右侧，间隔 10px */
      /* transform: translateX(-50%); */
      /* overflow: hidden; */
      border-radius: 15px;
    }

    .search-bar {
      /* 搜索框样式 - 优化 */
      width: 60vw;
      height: 42px;
      border-radius: 24px;
      color: white;
      padding: 0 20px;
      outline: none;
      font-size: 14px;
      font-weight: 400;
      cursor: text;

      /* 液态玻璃特效样式 + 渐变 */
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
      backdrop-filter: blur(20px) saturate(170%);
      -webkit-backdrop-filter: blur(20px) saturate(170%);
      box-shadow: 
        0 4px 20px 0 rgba(31, 38, 135, 0.15), 
        0 2px 8px 0 rgba(255,255,255,0.15) inset, 
        0 0 30px 3px rgba(255,255,255,0.08) inset, 
        0 0 0 1px rgba(100, 217, 254, 0.2);
      border: 2px solid rgba(255,255,255,0.25);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .search-bar:focus {
      background: linear-gradient(135deg, rgba(100, 217, 254, 0.18) 0%, rgba(147, 51, 234, 0.12) 100%);
      border-color: rgba(100, 217, 254, 0.5);
      box-shadow: 
        0 6px 30px 0 rgba(100, 217, 254, 0.3), 
        0 2px 10px 0 rgba(255,255,255,0.2) inset, 
        0 0 40px 5px rgba(100, 217, 254, 0.1) inset, 
        0 0 0 1px rgba(100, 217, 254, 0.4);
    }
    
    .search-bar::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .search-btn {
      /* 搜索按钮样式 - 优化 */
      width: 100px;
      height: 42px;
      color: white;
      font-weight: 500;
      border-radius: 24px;
      margin-left: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;

      /* 液态玻璃特效样式 + 渐变 */
      background: linear-gradient(135deg, rgba(100, 217, 254, 0.22) 0%, rgba(147, 51, 234, 0.18) 100%);
      backdrop-filter: blur(20px) saturate(170%);
      -webkit-backdrop-filter: blur(20px) saturate(170%);
      box-shadow: 
        0 6px 25px 0 rgba(100, 217, 254, 0.3), 
        0 2px 8px 0 rgba(255,255,255,0.25) inset, 
        0 0 30px 3px rgba(100, 217, 254, 0.15) inset, 
        0 0 0 1px rgba(100, 217, 254, 0.4);
      border: 2px solid rgba(100, 217, 254, 0.5);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }
    
    .search-btn:hover {
      background: linear-gradient(135deg, rgba(100, 217, 254, 0.32) 0%, rgba(147, 51, 234, 0.28) 100%);
      transform: translateY(-2px) scale(1.02);
      box-shadow: 
        0 10px 35px 0 rgba(100, 217, 254, 0.4), 
        0 3px 12px 0 rgba(255,255,255,0.3) inset, 
        0 0 40px 5px rgba(100, 217, 254, 0.2) inset, 
        0 0 0 1px rgba(100, 217, 254, 0.6);
      border-color: rgba(100, 217, 254, 0.7);
    }
    
    .search-btn:active {
      transform: translateY(0px) scale(0.98);
    }
    .id_memory_word_border {
      /* 记忆模块主容器 */
      width: 65vw;
      max-width: 800px;
      height: 70vh;
      max-height: 600px;
      position: absolute;
      border-radius: 20px;
      top: 50%;
      left: 50%;
      display: none;
      padding: 20px;
      box-sizing: border-box;
      z-index: 10000; /* 确保在最上层 */

      /* 简单模糊效果（与笔记单项一致） */
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(22px) saturate(140%);
      -webkit-backdrop-filter: blur(22px) saturate(140%);
      box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.18);
      
      /* 展开动画初始状态 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    
    /* 移除液态玻璃伪元素，使用简单模糊 */
    
    .id_memory_word_border.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      pointer-events: auto;
    }
    .id_memory_word_add {
      /* 添加记忆输入区域容器 */
      width: calc(100% - 40px);
      height: 50px;
      bottom: 10px;
      left: 20px;
      position: absolute;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0;
    }
    
    .id_memory_word_add_input {
      /* 记忆输入框 */
      flex: 1;
      height: 48px;
      border-radius: 14px;
      border: none;
      outline: none;
      font-size: 15px;
      padding: 0 18px;
      color: white;
      caret-color: #52c41a; /* 光标颜色 - 绿色 */
      box-sizing: border-box;

      /* 输入框液态玻璃 */
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(15px) saturate(160%);
      -webkit-backdrop-filter: blur(15px) saturate(160%);
      box-shadow: 
        0 4px 15px rgba(31, 38, 135, 0.1), 
        inset 0 1px 3px rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.2);
    }
    
    .id_memory_word_add_input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }
    
    .id_memory_word_add_button {
      /* 添加按钮 */
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      outline: none;
      color: white;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;
      flex-shrink: 0;

      /* 橙色渐变按钮 */
      background: linear-gradient(135deg, rgba(255, 152, 0, 0.3) 0%, rgba(255, 193, 7, 0.25) 100%);
      backdrop-filter: blur(15px) saturate(180%);
      -webkit-backdrop-filter: blur(15px) saturate(180%);
      box-shadow: 
        0 4px 15px rgba(255, 152, 0, 0.3), 
        inset 0 1px 3px rgba(255,255,255,0.3);
      border: 1.5px solid rgba(255, 152, 0, 0.4);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .id_memory_word_add_button:hover {
      transform: scale(1.1);
      box-shadow: 
        0 6px 20px rgba(255, 152, 0, 0.4), 
        inset 0 1px 3px rgba(255,255,255,0.4);
      background: linear-gradient(135deg, rgba(255, 152, 0, 0.4) 0%, rgba(255, 193, 7, 0.35) 100%);
    }
    
    .id_memory_word_add_button:active {
      transform: scale(0.95);
      box-shadow: 
        0 3px 12px rgba(255, 152, 0, 0.35), 
        inset 0 1px 3px rgba(255,255,255,0.35);
    }
    
    .id_memory_word_add_button img {
      width: 20px;
      height: 20px;
      display: block;
    }
    
    .id_memory_word_delete img {
      width: 16px;
      height: 16px;
      display: block;
    }

    .memory_display_box {
      /* 记忆列表显示区域 */
      width: calc(100% - 40px);
      height: calc(100% - 130px);
      top: 62px;
      left: 20px;
      position: absolute;
      overflow-y: auto;
      scrollbar-width: none;
      padding-right: 8px;
      box-sizing: border-box;
    }
    
    .memory_display_box::-webkit-scrollbar {
      display: none;
    }

    .memory_display_box_son {
      /* 记忆列表卡片 */
      width: 90%;
      max-width: 700px;
      min-height: 50px;
      height: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: center;
      padding: 12px 15px;
      margin: 0 auto 10px auto;
      color: white;
      border-radius: 12px;
      gap: 8px;
      box-sizing: border-box;

      /* 卡片式液态玻璃特效 */
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(15px) saturate(160%);
      -webkit-backdrop-filter: blur(15px) saturate(160%);
      box-shadow: 
        0 4px 15px 0 rgba(31, 38, 135, 0.15), 
        inset 0 1px 3px rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.2);
    }

    .id_memory_word_get {
      /* 记忆标签 */
      height: 32px;
      padding: 0 14px;
      color: white;
      font-size: 13px;
      font-weight: 500;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
      border-radius: 16px;
      cursor: pointer;
      user-select: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;

      /* 彩色渐变标签 */
      background: linear-gradient(135deg, rgba(147, 51, 234, 0.25) 0%, rgba(100, 217, 254, 0.2) 100%);
      backdrop-filter: blur(10px) saturate(150%);
      -webkit-backdrop-filter: blur(10px) saturate(150%);
      box-shadow: 
        0 3px 10px rgba(147, 51, 234, 0.2), 
        inset 0 1px 2px rgba(255,255,255,0.25);
      border: 1px solid rgba(147, 51, 234, 0.3);
    }

    .id_memory_word_delete {
      /* 基础尺寸与颜色 */
      width: 80px;
      height: 30px;
      color: white;
      border-radius: 24px;
      cursor: pointer;
      user-select: none;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4px;

      /* 液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);
    }

    .memory_text {
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .memory_buttons {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .memory_refresh {
      /* 刷新按钮 */
      width: auto;
      min-width: 90px;
      height: 42px;
      padding: 0 20px;
      border-radius: 12px;
      border: none;
      outline: none;
      font-size: 14px;
      font-weight: 500;
      position: absolute;
      top: 10px;
      left: 20px;
      color: white;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      user-select: none;

      /* 绿色系液态玻璃按钮 */
      background: linear-gradient(135deg, rgba(0, 255, 127, 0.2) 0%, rgba(0, 200, 100, 0.15) 100%);
      backdrop-filter: blur(15px) saturate(180%);
      -webkit-backdrop-filter: blur(15px) saturate(180%);
      box-shadow: 
        0 4px 15px rgba(0, 255, 127, 0.25), 
        inset 0 1px 3px rgba(255,255,255,0.3);
      border: 1.5px solid rgba(0, 255, 127, 0.4);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .memory_refresh:hover {
      transform: translateY(-2px);
      box-shadow: 
        0 6px 20px rgba(0, 255, 127, 0.35), 
        inset 0 1px 3px rgba(255,255,255,0.4);
      background: linear-gradient(135deg, rgba(0, 255, 127, 0.3) 0%, rgba(0, 200, 100, 0.2) 100%);
    }
    
    .memory_refresh:active {
      transform: translateY(0px);
      box-shadow: 
        0 3px 12px rgba(0, 255, 127, 0.3), 
        inset 0 1px 3px rgba(255,255,255,0.35);
    }
    .AI_URL {
      width: 350px;
      height: 100px;
      border-radius: 24px;
      display: none;
      
      /* 液态玻璃特效样式 */
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);
      justify-content: center; /* 水平居中 */
      align-items: center; /* 垂直居中 */
      padding: 0 10px; /* 添加内边距 */
      box-sizing: border-box; /* 防止内边距影响总宽度 */
      position: absolute; /* 绝对定位 */
      top: 50%; /* 顶部偏移50% */
      left: 50%; /* 左侧偏移50% */
      transform: translate(-50%, -50%); /* 向左向上移动自身宽高的一半实现完全居中 */
      
      /* 动画效果 */
      opacity: 0;
      transform: translate(-50%, -50%) scale(0);
      transform-origin: center center;
      transition: all 0.6s cubic-bezier(0.34, 1.26, 0.64, 1);
      pointer-events: none;
    }
    
    .AI_URL.show {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      pointer-events: auto;
    }
    .AI_URL_text {
      width: calc(100% - 90px); /* 减去按钮宽度和间距 */
      height: 30px;
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);
      border-radius: 24px;
      color: white;
      outline: none;
      margin: 0; /* 移除原有外边距 */
      display: inline-block; /* 修改为行内块元素 */
      margin-right: 10px; /* 与按钮之间的间距 */
    }
    .AI_file_button {
      width: 80px;
      height: 30px;
      background: rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.18), 
        0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
        0 0 24px 2px rgba(255,255,255,0.12) inset, 
        0 0 0 4px rgba(255,255,255,0.08), 
        0 0 0 2px rgba(0,255,255,0.08);
      border: 2.5px solid rgba(255,255,255,0.35);
      border-radius: 24px;
      color: white;
      cursor: pointer;
      margin: 0; /* 移除原有外边距 */
      display: inline-block; /* 修改为行内块元素 */
      transition: all 0.3s ease;
      user-select: none;
    }
    .AI_file_button:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: scale(1.05);
    }
    
    @media screen and (max-width: 768px) {
      /* 手机端*/
      
      /* ===== 移动端GPU性能优化：禁用所有模糊效果 ===== */
      * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
      }
      
      /* ===== AI点击模块移动端适配（无模糊） ===== */
      .AI_auto_cruise_input {
        background: rgba(255, 255, 255, 0.5) !important;
        border: 1.5px solid rgba(100, 217, 254, 0.5) !important;
        box-shadow: 
          0 4px 20px rgba(100, 217, 254, 0.2),
          0 0 0 1.5px rgba(255, 255, 255, 0.6) inset !important;
        color: rgba(0, 0, 0, 0.95) !important;
        font-weight: 600 !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
      }
      
      .AI_auto_cruise_input::placeholder {
        color: rgba(0, 0, 0, 0.4) !important;
        text-shadow: none !important;
      }
      
      .AI_auto_cruise_border {
        background: rgba(255, 255, 255, 0.5) !important;
        border: 1.5px solid rgba(100, 217, 254, 0.4) !important;
        box-shadow: 
          0 4px 20px rgba(100, 217, 254, 0.2),
          0 0 0 1.5px rgba(255, 255, 255, 0.6) inset !important;
        color: rgba(0, 0, 0, 0.95) !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
      }
      
      .AI_auto_cruise_input_seed {
        background: transparent !important;
        color: rgb(1, 235, 252) !important;
        border: 2px solid rgb(1, 235, 252) !important;
        box-shadow: 0px 0px 100px rgb(1, 235, 252), inset 0px 0px 10px rgb(1, 235, 252), 0px 0px 5px rgb(255, 255, 255) !important;
      }
      
      .AI_auto_cruise_input_seed.show {
        opacity: 1 !important;
      }
      
      .AI_auto_cruise_input_seed.show:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(1, 235, 252), 0px 0px 80px rgba(1, 235, 252, 0.6), inset 0px 0px 15px rgb(1, 235, 252), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(1, 235, 252, 0.8)) !important;
      }
      
      .AI_auto_cruise_alert_btn {
        background: transparent !important;
        color: rgb(255, 200, 100) !important;
        border: 2px solid rgb(255, 200, 100) !important;
        box-shadow: 0px 0px 100px rgb(255, 200, 100), inset 0px 0px 10px rgb(255, 200, 100), 0px 0px 5px rgb(255, 255, 255) !important;
      }
      
      .AI_auto_cruise_alert_btn.show {
        opacity: 1 !important;
      }
      
      .AI_auto_cruise_alert_btn.show:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(255, 200, 100), 0px 0px 80px rgba(255, 200, 100, 0.6), inset 0px 0px 15px rgb(255, 200, 100), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(255, 200, 100, 0.8)) !important;
      }
      
      .AI_auto_cruise_alert_menu {
        background: rgba(255, 255, 255, 0.55) !important;
        border: 1.5px solid rgba(100, 217, 254, 0.4) !important;
        box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.3),
          0 0 0 1.5px rgba(255, 255, 255, 0.6) inset !important;
      }
      
      .AI_auto_cruise_alert_menu_item {
        color: rgba(0, 0, 0, 0.95) !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
        font-weight: 600 !important;
      }
      
      .AI_auto_cruise_alert_menu_item:active {
        background: rgba(100, 217, 254, 0.25) !important;
      }
      
      /* ===== 设备列表移动端适配 ===== */
      .device-list-container {
        width: 90vw !important;
        max-width: 360px !important;
        max-height: 70vh !important;
        position: fixed !important;
        background: rgba(255, 255, 255, 0.55) !important;
        border: 1.5px solid rgba(100, 217, 254, 0.4) !important;
        box-shadow: 
          0 12px 40px rgba(0, 0, 0, 0.35),
          0 0 0 1.5px rgba(255, 255, 255, 0.6) inset !important;
      }
      
      .device-list-header {
        height: 55px !important;
        padding: 0 16px !important;
        background: rgba(255, 255, 255, 0.15) !important;
      }
      
      .device-list-title {
        font-size: 17px !important;
        color: rgba(0, 0, 0, 0.95) !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
        font-weight: 700 !important;
      }
      
      .device-list-close {
        background: rgba(255, 255, 255, 0.6) !important;
        color: rgba(0, 0, 0, 0.8) !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
      }
      
      .device-list-content {
        max-height: calc(70vh - 55px) !important;
        padding: 10px !important;
        
        /* ✅ 隐藏滚动条（保留滚动功能） */
        scrollbar-width: none !important; /* Firefox */
        -ms-overflow-style: none !important; /* IE/Edge */
      }
      
      .device-list-content::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari/Opera */
      }
      
      .device-item {
        background: rgba(255, 255, 255, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        padding: 14px 16px !important;
        margin-bottom: 8px !important;
      }
      
      .device-item:active {
        background: rgba(255, 255, 255, 0.5) !important;
      }
      
      .device-type {
        font-size: 15px !important;
        color: rgba(0, 0, 0, 0.95) !important;
        font-weight: 700 !important;
        flex-wrap: wrap !important;
      }
      
      /* 手机端当前设备标签样式 */
      .current-device-tag {
        font-size: 10px !important;
        padding: 1px 6px !important;
        margin-left: 2px !important;
        color: rgba(255, 255, 255, 0.98) !important;
        background: linear-gradient(135deg, rgba(52, 199, 89, 0.9), rgba(48, 209, 88, 0.9)) !important;
      }
      
      .device-browser,
      .device-time {
        font-size: 12px !important;
        color: rgba(0, 0, 0, 0.7) !important;
      }
      
      .device-list-empty {
        color: rgba(0, 0, 0, 0.5) !important;
        font-size: 13px !important;
        padding: 30px 20px !important;
      }
      
      /* ===== 轻提醒弹窗移动端适配 ===== */
      .Pop-up_not_important {
        max-width: calc(100vw - 32px) !important;
        font-size: 13px !important;
        padding: 10px 16px !important;
        background: rgba(255, 255, 255, 0.55) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 2.5px rgba(255, 255, 255, 0.7) inset !important;
        box-sizing: border-box !important;
        color: rgba(0, 0, 0, 0.95) !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
        font-weight: 700 !important;
      }
      
      .Pop-up_not_important.with-image {
        padding: 10px 14px !important;
      }
      
      .Pop-up_not_important .popup-icon {
        width: 20px !important;
        height: 20px !important;
      }
      
      /* 移动端加载图标旋转动画（性能优化） */
      .Pop-up_not_important .popup-icon.loading {
        /* 使用GPU加速，提升移动端性能 */
        will-change: transform;
        transform: translateZ(0);
      }
      
      /* ===== 强提醒弹窗移动端适配（尺寸调整，动效交给JS动态样式控制） ===== */
      .Pop-up_win {
        width: 90% !important;
        max-width: 320px !important;
        min-height: 160px !important;
        padding: 30px 20px 20px 20px !important;
        box-sizing: border-box !important;
      }
      
      /* 加载图标移动端 */
      .popup-loading-icon {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 16px !important;
      }
      
      /* 文本内容移动端 */
      .popup-text-content {
        font-size: 15px !important;
        margin-bottom: 12px !important;
      }
      
      /* 进度条移动端 */
      .popup-progress-container {
        height: 5px !important;
        margin-top: 12px !important;
      }
      
      
      /* ===== AI URL弹窗移动端适配 ===== */
      .AI_URL {
        background: rgba(255, 255, 255, 0.55) !important;
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 0 2.5px rgba(255, 255, 255, 0.7) inset !important;
        box-sizing: border-box !important;
        color: rgba(0, 0, 0, 0.95) !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
        font-weight: 700 !important;
      }
      
      /* ===== 用户文件URL框移动端适配 ===== */
      .user-file-url-box {
        margin: 5px 0 10px auto !important;
        display: flex !important;
        justify-content: flex-end !important;
      }
      
      .file-url-content {
        max-width: 90% !important;
        padding: 6px 10px !important;
        background: rgba(255, 255, 255, 0.18) !important;
        border-radius: 10px !important;
        border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 
          0 3px 12px rgba(31, 38, 135, 0.15),
          0 1px 3px rgba(255, 255, 255, 0.2) inset !important;
      }
      
      .file-icon {
        font-size: 14px !important;
        margin-right: 4px !important;
      }
      
      .file-type {
        font-size: 11px !important;
        margin-right: 4px !important;
      }
      
      .file-url-link {
        font-size: 10px !important;
      }
      
      /* 文件列表项样式 - 柔和亮度适配 */
      .download-item {
        background: rgba(255, 255, 255, 0.15) !important;
        border-left: 3px solid transparent !important;
        color: white !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
      }
      
      .download-item.selected {
        background: linear-gradient(135deg, rgba(100, 217, 254, 0.35) 0%, rgba(147, 51, 234, 0.25) 100%) !important;
        border-left: 4px solid #64d9fe !important;
        color: white !important;
      }
      
      /* 文件名文字颜色 */
      .download-item-name {
        color: white !important;
      }
      
      /* 文件夹名称颜色（移动端） */
      .download-item[data-is-folder="true"] .download-item-name {
        color: #52c41a !important;
      }
      
      /* 返回上一级按钮颜色（移动端） */
      .download-item[data-is-back-button="true"] .download-item-name {
        color: #1890ff !important;
      }
      
      /* 菜单按钮样式 */
      .menu,
      .menu_son,
      .menu_son_1,
      .AI_border_send {
        background: rgba(255, 255, 255, 0.48) !important;
        box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.6) inset !important;
        box-sizing: border-box !important;
      }
      
      .menu_son,
      .menu_son_1 {
        color: rgba(0, 0, 0, 0.95) !important;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;
        font-weight: 600 !important;
      }
      
      /* 浏览文件按钮 - 薄荷绿发光效果 */
      .I_file_browse {
        background: transparent !important;
        color: rgb(0, 255, 127) !important;
        font-weight: 500 !important;
        text-shadow: none !important;
        border: 2px solid rgb(0, 255, 127) !important;
        box-shadow: 0px 0px 100px rgb(0, 255, 127), inset 0px 0px 10px rgb(0, 255, 127), 0px 0px 5px rgb(255, 255, 255) !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
      }
      
      .I_file_browse:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(0, 255, 127), 0px 0px 80px rgba(0, 255, 127, 0.6), inset 0px 0px 15px rgb(0, 255, 127), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(0, 255, 127, 0.8)) !important;
        transform: scale(1) !important;
      }
      
      /* 上传文件按钮 - 青色发光效果 */
      .I_file_upload {
        background: transparent !important;
        color: rgb(1, 235, 252) !important;
        font-weight: 500 !important;
        text-shadow: none !important;
        border: 2px solid rgb(1, 235, 252) !important;
        box-shadow: 0px 0px 100px rgb(1, 235, 252), inset 0px 0px 10px rgb(1, 235, 252), 0px 0px 5px rgb(255, 255, 255) !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
      }
      
      .I_file_upload:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(1, 235, 252), 0px 0px 80px rgba(1, 235, 252, 0.6), inset 0px 0px 15px rgb(1, 235, 252), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(1, 235, 252, 0.8)) !important;
        transform: scale(1) !important;
      }
      
      /* 下载按钮 - 紫罗兰色发光效果 */
      .download-btn {
        background: transparent !important;
        color: rgb(238, 130, 238) !important;
        font-weight: 500 !important;
        text-shadow: none !important;
        border: 2px solid rgb(238, 130, 238) !important;
        box-shadow: 0px 0px 100px rgb(238, 130, 238), inset 0px 0px 10px rgb(238, 130, 238), 0px 0px 5px rgb(255, 255, 255) !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
      }
      
      .download-btn:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(238, 130, 238), 0px 0px 80px rgba(238, 130, 238, 0.6), inset 0px 0px 15px rgb(238, 130, 238), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(238, 130, 238, 0.8)) !important;
        transform: scale(1) !important;
      }
      
      /* 删除按钮 - 红色发光效果 */
      .delete-file-btn {
        background: transparent !important;
        color: rgb(255, 67, 67) !important;
        font-weight: 500 !important;
        text-shadow: none !important;
        border: 2px solid rgb(255, 67, 67) !important;
        box-shadow: 0px 0px 100px rgb(255, 67, 67), inset 0px 0px 10px rgb(255, 67, 67), 0px 0px 5px rgb(255, 255, 255) !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
      }
      
      .delete-file-btn:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(255, 67, 67), 0px 0px 80px rgba(255, 67, 67, 0.6), inset 0px 0px 15px rgb(255, 67, 67), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(255, 67, 67, 0.8)) !important;
        transform: scale(1) !important;
      }
      
      /* 重命名按钮 - 橙色发光效果 */
      .rename-file-btn {
        background: transparent !important;
        color: rgb(255, 152, 0) !important;
        font-weight: 500 !important;
        text-shadow: none !important;
        border: 2px solid rgb(255, 152, 0) !important;
        box-shadow: 0px 0px 100px rgb(255, 152, 0), inset 0px 0px 10px rgb(255, 152, 0), 0px 0px 5px rgb(255, 255, 255) !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
      }
      
      .rename-file-btn:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(255, 152, 0), 0px 0px 80px rgba(255, 152, 0, 0.6), inset 0px 0px 15px rgb(255, 152, 0), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(255, 152, 0, 0.8)) !important;
        transform: scale(1) !important;
      }
      
      /* 获取链接按钮 - 黄色发光效果 */
      .get_direct_link_name {
        background: transparent !important;
        color: rgb(255, 235, 59) !important;
        font-weight: 500 !important;
        text-shadow: none !important;
        border: 2px solid rgb(255, 235, 59) !important;
        box-shadow: 0px 0px 100px rgb(255, 235, 59), inset 0px 0px 10px rgb(255, 235, 59), 0px 0px 5px rgb(255, 255, 255) !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
      }
      
      .get_direct_link_name:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(255, 235, 59), 0px 0px 80px rgba(255, 235, 59, 0.6), inset 0px 0px 15px rgb(255, 235, 59), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(255, 235, 59, 0.8)) !important;
        transform: scale(1) !important;
      }
      
      /* 新建文件夹按钮 - 亮绿色发光效果 */
      .create-folder-btn {
        background: transparent !important;
        color: rgb(0, 255, 50) !important;
        font-weight: 500 !important;
        text-shadow: none !important;
        border: 2px solid rgb(0, 255, 50) !important;
        box-shadow: 0px 0px 100px rgb(0, 255, 50), inset 0px 0px 10px rgb(0, 255, 50), 0px 0px 5px rgb(255, 255, 255) !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
      }
      
      .create-folder-btn:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(0, 255, 50), 0px 0px 80px rgba(0, 255, 50, 0.6), inset 0px 0px 15px rgb(0, 255, 50), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(0, 255, 50, 0.8)) !important;
        transform: scale(1) !important;
      }
      
      /* 设置按钮 - 银白色发光效果 */
      .file-settings-btn {
        background: transparent !important;
        color: rgb(200, 200, 200) !important;
        font-weight: 500 !important;
        text-shadow: none !important;
        border: 2px solid rgb(200, 200, 200) !important;
        box-shadow: 0px 0px 100px rgb(200, 200, 200), inset 0px 0px 10px rgb(200, 200, 200), 0px 0px 5px rgb(255, 255, 255) !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
      }
      
      .file-settings-btn:active {
        opacity: 1 !important;
        box-shadow: 0px 0px 150px rgb(200, 200, 200), 0px 0px 80px rgba(200, 200, 200, 0.6), inset 0px 0px 15px rgb(200, 200, 200), 0px 0px 8px rgb(255, 255, 255) !important;
        filter: drop-shadow(0px 0px 40px rgba(200, 200, 200, 0.8)) !important;
        transform: scale(1) !important;
      }
      
      .file-settings-menu {
        background: rgba(255, 255, 255, 0.55) !important;
        border: 1.5px solid rgba(100, 217, 254, 0.4) !important;
        box-shadow: 
          0 4px 20px rgba(100, 217, 254, 0.2),
          0 8px 40px rgba(255, 255, 255, 0.15),
          inset 0 0 15px rgba(255, 255, 255, 0.2) !important;
      }
      
      .file-settings-menu-item {
        background: rgba(255, 255, 255, 0.45) !important;
        border: 1px solid white !important;
        box-shadow: 
          0 4px 20px rgba(255, 255, 255, 0.1),
          0 8px 40px rgba(255, 255, 255, 0.15),
          inset 0 0 15px rgba(255, 255, 255, 0.2) !important;
        color: black !important;
      }
      
      .file-settings-menu-item:active {
        transform: scale(0.95) !important;
        background: rgba(255, 255, 255, 0.6) !important;
      }
      
      /* 文件管理的主框 - 去除液态玻璃效果，增强对比度 */
      .Upload_border,
      .download-box {
        background: rgba(255, 255, 255, 0.45) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(255, 255, 255, 0.6) inset !important;
        box-sizing: border-box !important;
      }
      
      /* 移动端去掉Upload_border和download-box的伪元素液态玻璃效果 */
      .Upload_border::before,
      .Upload_border::after,
      .download-box::before,
      .download-box::after {
        display: none !important;
      }
      
      /* 文件类型标签 - 增强对比度 */
      .download-item-type {
        background: linear-gradient(135deg, rgba(100, 217, 254, 0.6) 0%, rgba(147, 51, 234, 0.5) 100%) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(100, 217, 254, 0.6) inset !important;
        box-sizing: border-box !important;
        font-weight: 700 !important;
      }
      
      /* 文件大小标签 - 增强对比度 */
      .download-item-size {
        background: rgba(0, 0, 0, 0.45) !important;
        font-weight: 600 !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
        box-sizing: border-box !important;
        color: rgba(255, 255, 255, 0.9) !important;
      }
      
      /* 缩略图容器 - 移动端优化 */
      .thumbnail-container,
      .video-play-button-container,
      .audio-play-button-container,
      .document-preview-button-container {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
      }
      
      /* 搜索框 - 移动端优化 */
      .search-bar {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        color: white !important;
      }
      
      .search-bar::placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
      }
      
      .search-btn {
        background: linear-gradient(135deg, rgba(100, 217, 254, 0.5) 0%, rgba(147, 51, 234, 0.4) 100%) !important;
        color: white !important;
        font-weight: 600 !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
      }
      
      /* 文件名显示框和重命名输入框 */
      .file-name-display,
      .rename-file-input {
        color: white !important;
        background: rgba(0, 0, 0, 0.2) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
      }
      
      /* 上传进度框和搜索框保持一致的玻璃效果 */
      .file-upload-info {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        color: white !important;
      }
      
      .rename-file-input::placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
      }
      
      /* 视频/图片查看器背景加深 */
      .viewer-backdrop,
      #video-modal {
        background: rgba(0, 0, 0, 0.98) !important;
      }
      
      .viewer-toolbar,
      .viewer-title,
      .video-js .vjs-control-bar,
      .video-info-bar {
        background: rgba(35, 41, 70, 0.98) !important;
      }
      
      /* 按钮背景优化 */
      .video-play-button-container,
      .audio-play-button-container {
        background: rgba(100, 217, 254, 0.4) !important;
      }
      
      .video-close-button {
        background: rgba(255, 107, 107, 0.6) !important;
      }
      
      /* AI笔记界面移动端适配 */
      .AI_Notes_menu {
        width: fit-content !important;
        min-width: 45px !important;
        max-width: 70px !important;
        max-height: 60vh !important;
        padding: 4px 2px !important;
        gap: 4px !important;
        background: rgba(255, 255, 255, 0.35) !important;
        left: 8px !important;
      }
      
      .AI_Notes_menu_son,
      .AI_Notes_menu_son_Function {
        font-size: 10px !important;
        padding: 4px 2px !important;
        min-width: 37px !important;
        min-height: 30px !important;
        height: auto !important;
        max-height: 40px !important;
      }
      
      .AI_Notes_border_receive,
      .AI_Notes_AI_border {
        left: 80px !important;
        right: 0px !important;
        max-height: 100dvh !important;
      }
      
      .Notes_style {
        width: 96% !important;
        margin: 6px auto !important;
        padding: 8px 10px !important;
        background: rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
      }
      
      .Notes_Knowledge_point {
        font-size: 12px !important;
        line-height: 1.5 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
      }
      
      .Notes_button {
        width: 30px !important;
        height: 30px !important;
        right: 3px !important;
        bottom: 3px !important;
      }
      
      /* 记忆模块移动端适配 */
      .id_memory_word_border {
        width: 75vw !important;
        max-width: 75vw !important;
        height: 65vh !important;
        max-height: 65vh !important;
        padding: 10px !important;
        left: auto !important;
        right: 5vw !important;
        top: 40% !important;
        background: rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2) !important;
      }
      
      .id_memory_word_border:not(.show) {
        transform: translateY(-50%) scale(0) !important;
      }
      
      .id_memory_word_border.show {
        transform: translateY(-50%) scale(1) !important;
      }
      
      /* 移动端GPU加速优化，提升动画性能 */
      .id_memory_word_border {
        will-change: transform, opacity !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
        perspective: 1000px !important;
        -webkit-perspective: 1000px !important;
      }
      
      .memory_display_box {
        width: calc(100% - 20px) !important;
        left: 10px !important;
        height: calc(100% - 140px) !important;
        padding-right: 4px !important;
        padding-bottom: 10px !important;
      }
      
      .memory_display_box_son {
        width: 95% !important;
        padding: 6px 8px !important;
        gap: 5px !important;
        min-height: 40px !important;
        color: white !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
      }
      
      .id_memory_word_get {
        color: white !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
      }
      
      .memory_refresh {
        top: 8px !important;
        left: 10px !important;
      }
      
      .id_memory_word_add {
        width: calc(100% - 20px) !important;
        left: 10px !important;
        bottom: 8px !important;
      }
      
      .id_memory_word_get {
        font-size: 10px !important;
        padding: 0 8px !important;
        height: 26px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
      }
      
      .memory_refresh {
        min-width: 65px !important;
        height: 34px !important;
        font-size: 11px !important;
        padding: 0 10px !important;
        color: white !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
      }
      
      .id_memory_word_add {
        height: 45px !important;
        gap: 8px !important;
      }
      
      .id_memory_word_add_input {
        height: 38px !important;
        font-size: 12px !important;
        padding: 0 10px !important;
        color: white !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
      }
      
      .id_memory_word_add_input::placeholder {
        color: rgba(255, 255, 255, 0.5) !important;
      }
      
      .id_memory_word_add_button {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
      }
      
      .id_memory_word_add_button img,
      .id_memory_word_delete img {
        width: 18px !important;
        height: 18px !important;
        display: block !important;
      }
      
      .id_memory_word_delete {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
      }

      body {
        background-size: 100% 100%; /* 扩大背景范围 */
      }

      .login {
        /* 登录框 */
        /* 基本样式 */
        width: 90vw;
        height: 28vh;
        border-radius: 15px;
        top: 45vh;
        left: 5vw;
      }
      
      .login_container {
        /* 登录输入框容器（移动端） */
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5vh;
      }
      
      .login_border {
        /* 登录框的输入样式框 */
        /* 基本样式 */
        width: 80vw;
        height: 7vh;
        border-radius: 100px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 3vw;
      }
      
      .login_border_input,
      .login_border_password {
        /* 登录框的输入实际框 */
        flex: 1;
        height: 100%;
        background: transparent;
        border: none;
        outline: none;
        font-size: 16px;
        padding: 0 2.5vw;
        color: white;
        caret-color: #52c41a; /* 光标颜色 - 绿色 */
      }
      
      .login_border_input::placeholder,
      .login_border_password::placeholder {
        /* 登录框的输入提示词样式 */
        color: white;
        opacity: 0.7;
      }
      
      .password_eye_icon {
        /* 密码显示/隐藏小眼睛图标（移动端） */
        width: 28px;
        height: 28px;
        cursor: pointer;
        opacity: 0.7;
        transition: all 0.3s ease;
        flex-shrink: 0;
        margin-left: 10px;
      }
      
      .password_eye_icon:active {
        opacity: 1;
        transform: scale(0.9);
      }
      .AI {
        margin: 0;
        width: 100vw;
        height: 100dvh;
        position: absolute;
        top: 0px;
        left: 0px;
      }
      .AI_border_send {
        /* AI输入框 */
        /* 基本样式 */
        width: 80vw;
        min-width: 320px;
        height: 120px;
        border-radius: 15px;
        position: absolute;
        bottom: max(8px, var(--safe-area-inset-bottom, 8px));
        left: 50%;
        transform: translate(-50%, -50%);
      }
      .img_file {
        width: 79vw;
      }
      .AI_border_receive {
        /* AI内容框 */
        width: 98vw;
        max-height: 100dvh; /* 设置最大高度为整个视口，让内容可以穿过输入框 */
        position: absolute;
        top: 1vh;
        left: 1vw;
        padding-bottom: 50vh; /* 给底部留出空间，避免被输入框遮挡 */
        box-sizing: border-box;
        overflow-y: auto;
        scrollbar-width: none;
        overscroll-behavior: contain;
        /* 手机端不会整个body滑动的关键 */
        overscroll-behavior: none; /* 阻止滚动溢出当前容器，防止触发页面整体的滚动回弹效果 */
      }
      .AI_button {
        /* AI功能按钮 */
        /* 基本样式 */
        width: 75px;
        height: 35px;
        color: white;
        border-radius: 20px;
        position: absolute;
        bottom: 1vh;
        display: flex;
        justify-content: center;
        align-items: center;
        user-select: none;
        cursor: pointer;
      }
      
      /* 手机端 - AI对话-深度思考按钮 - 青色发光 */
      #id_AI_think {
        color: rgb(1, 235, 252);
        border: 2px solid rgb(1, 235, 252);
        box-shadow: 0px 0px 100px rgb(1, 235, 252), inset 0px 0px 10px rgb(1, 235, 252), 0px 0px 5px rgb(255, 255, 255);
        opacity: 1;
        background: rgba(1, 235, 252, 0.1);
      }
      
      #id_AI_think:active {
        box-shadow: 0px 0px 150px rgb(1, 235, 252), 0px 0px 80px rgba(1, 235, 252, 0.6), inset 0px 0px 15px rgb(1, 235, 252), 0px 0px 8px rgb(255, 255, 255);
        filter: drop-shadow(0px 0px 40px rgba(1, 235, 252, 0.8));
      }
      
      /* 手机端 - AI对话-Agent按钮 - 亮橙色发光 */
      #id_AI_Agent {
        color: rgb(255, 165, 0);
        border: 2px solid rgb(255, 165, 0);
        box-shadow: 0px 0px 100px rgb(255, 165, 0), inset 0px 0px 10px rgb(255, 165, 0), 0px 0px 5px rgb(255, 255, 255);
        opacity: 1;
        background: rgba(255, 165, 0, 0.1);
      }
      
      #id_AI_Agent:active {
        box-shadow: 0px 0px 150px rgb(255, 165, 0), 0px 0px 80px rgba(255, 165, 0, 0.6), inset 0px 0px 15px rgb(255, 165, 0), 0px 0px 8px rgb(255, 255, 255);
        filter: drop-shadow(0px 0px 40px rgba(255, 165, 0, 0.8));
      }
      
      /* 手机端 - 笔记-深度分析按钮 - 橙色发光 */
      #id_AI_Notes_high {
        color: rgb(255, 152, 0);
        border: 2px solid rgb(255, 152, 0);
        box-shadow: 0px 0px 100px rgb(255, 152, 0), inset 0px 0px 10px rgb(255, 152, 0), 0px 0px 5px rgb(255, 255, 255);
        opacity: 1;
        background: rgba(255, 152, 0, 0.1);
      }
      
      #id_AI_Notes_high:active {
        box-shadow: 0px 0px 150px rgb(255, 152, 0), 0px 0px 80px rgba(255, 152, 0, 0.6), inset 0px 0px 15px rgb(255, 152, 0), 0px 0px 8px rgb(255, 255, 255);
        filter: drop-shadow(0px 0px 40px rgba(255, 152, 0, 0.8));
      }
      
      /* 手机端 - 笔记-超长分析按钮 - 金黄色发光 */
      #id_AI_Notes_long {
        color: rgb(255, 215, 0);
        border: 2px solid rgb(255, 215, 0);
        box-shadow: 0px 0px 100px rgb(255, 215, 0), inset 0px 0px 10px rgb(255, 215, 0), 0px 0px 5px rgb(255, 255, 255);
        opacity: 1;
        background: rgba(255, 215, 0, 0.1);
      }
      
      #id_AI_Notes_long:active {
        box-shadow: 0px 0px 150px rgb(255, 215, 0), 0px 0px 80px rgba(255, 215, 0, 0.6), inset 0px 0px 15px rgb(255, 215, 0), 0px 0px 8px rgb(255, 255, 255);
        filter: drop-shadow(0px 0px 40px rgba(255, 215, 0, 0.8));
      }
      
      /* 手机端 - 笔记-深度思考按钮 - 洋红色发光 */
      #id_AI_Notes_think {
        color: rgb(255, 0, 255);
        border: 2px solid rgb(255, 0, 255);
        box-shadow: 0px 0px 100px rgb(255, 0, 255), inset 0px 0px 10px rgb(255, 0, 255), 0px 0px 5px rgb(255, 255, 255);
        opacity: 1;
        background: rgba(255, 0, 255, 0.1);
      }
      
      #id_AI_Notes_think:active {
        box-shadow: 0px 0px 150px rgb(255, 0, 255), 0px 0px 80px rgba(255, 0, 255, 0.6), inset 0px 0px 15px rgb(255, 0, 255), 0px 0px 8px rgb(255, 255, 255);
        filter: drop-shadow(0px 0px 40px rgba(255, 0, 255, 0.8));
      }
      .AI_button1 {
        /* AI文件功能按钮 */
        /* 基本样式 */
        width: 35px;
        height: 35px;
        color: white;
        border-radius: 20px;
        position: absolute;
        bottom: 1vh;
      right: 1vh;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        user-select: none;

        /* 液态玻璃特效样式 */
        background: rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
        box-shadow: 
          0 8px 32px 0 rgba(31, 38, 135, 0.18), 
          0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
          0 0 24px 2px rgba(255,255,255,0.12) inset, 
          0 0 0 4px rgba(255,255,255,0.08), 
          0 0 0 2px rgba(0,255,255,0.08);
        border: 2.5px solid rgba(255,255,255,0.35);
        transition: all 0.3s ease;
      }
      
      .AI_button1:hover {
        background: rgba(255, 255, 255, 0.15);
        scale: 1.05;
        box-shadow: 
          0 12px 40px 0 rgba(31, 38, 135, 0.25), 
          0 2px 8px 0 rgba(255,255,255,0.3) inset, 
          0 0 32px 4px rgba(255,255,255,0.15) inset, 
          0 0 0 4px rgba(255,255,255,0.12), 
          0 0 0 2px rgba(0,255,255,0.12);
      }
      .AI_input {
        /* AI输入框 */
        width: 75vw;
        height: 5vh;
        position: absolute;
        left: 2.5vw;
        top: 1vh;
        border-radius: 15px;
        color: white;
        caret-color: #52c41a; /* 光标颜色 - 绿色 */
        border: none;
        outline: none;
        background: transparent;
        font-size: 15px;
      }
      .AI_Notes {
        /* AI笔记 */
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0px;
        left: 0px;
      }
      .AI_Notes_menu {
        /* AI笔记菜单 */
        width: fit-content;
        min-width: 55px;
        max-width: 85px;
        height: auto;
        max-height: 80vh;
        top: 8px;
        left: 8px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 10px 4px;
        overflow-y: auto;
        scrollbar-width: none;
        
        /* 移动端液态玻璃特效 */
        background: rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
        box-shadow: 
          0 8px 32px 0 rgba(31, 38, 135, 0.18), 
          0 1.5px 6px 0 rgba(255,255,255,0.25) inset, 
          0 0 24px 2px rgba(255,255,255,0.12) inset, 
          0 0 0 4px rgba(255,255,255,0.08), 
          0 0 0 2px rgba(0,255,255,0.08);
        border: 2.5px solid rgba(255,255,255,0.35);
        border-radius: 15px;
        transition: all 0.3s ease;
      }
      
      .AI_Notes_menu::-webkit-scrollbar {
        display: none;
      }
      
      .AI_Notes_menu_son {
        /* AI笔记菜单项 - 移动端 */
        width: 100%;
        min-width: 47px;
        min-height: 42px;
        padding: 8px 4px;
        font-size: 12px;
      }
      
      .AI_Notes_menu_son_Function {
        /* AI笔记功能按钮 - 移动端 */
        width: 100%;
        min-width: 47px;
        min-height: 38px;
        padding: 6px 4px;
        font-size: 11px;
      }
      /* 文件管理：手机端整体上移一些 */
      .Upload_border {
        top: 5px;
      }

      /* 移动端文件项优化 */
      .download-item {
        min-height: 85px;
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
      }

      /* 移动端文件名区域 */
      .download-item-name {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        white-space: normal;
        word-break: break-word;
        padding-right: 70px;
        margin-bottom: 6px;
        max-height: 2.8em;
        overflow: hidden;
      }

      /* 移动端文件大小 */
      .download-item-size {
        position: absolute;
        right: auto;
        bottom: 10px;
        left: 12px;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.6);
        background: rgba(0, 0, 0, 0.3);
        padding: 2px 6px;
        border-radius: 4px;
      }

      /* 移动端文件类型标签 */
      .download-item-type {
        position: absolute !important;
        right: 8px !important;
        top: 14px !important;
        width: auto !important;
        height: auto !important;
        font-size: 9px !important;
        padding: 3px 6px !important;
        border-radius: 6px !important;
        transform: none !important;
        box-shadow: none !important;
      }
      
      .download-item-type:hover {
        transform: none !important;
        box-shadow: none !important;
      }

      /* 移动端选中状态优化 */
      .download-item.selected {
        transform: translateX(3px) translateY(-1px);
        border-left-width: 3px;
      }

      /* 移动端缩略图优化 */
      .thumbnail-container {
        position: absolute !important;
        right: 70px !important;
        top: 10px !important;
        transform: none !important;
        width: 45px !important;
        height: 45px !important;
        border-radius: 8px !important;
        z-index: 5 !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        padding: 2px !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
      }

      /* 移动端缩略图悬停效果禁用 */
      .thumbnail-container:hover {
        transform: none !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
      }

      /* 移动端缩略图图片 */
      .thumbnail-container img {
        border-radius: 6px !important;
      }

      /* 移动端缩略图图片悬停效果禁用 */
      .thumbnail-container:hover img {
        transform: none !important;
      }

      /* 移动端大文件加载按钮 */
      .thumbnail-container[style*="background-color: #ff6b6b"] {
        font-size: 7px !important;
        padding: 1px !important;
        line-height: 1.1 !important;
      }
      
      /* 移动端网格视图优化 - 列表样式图标 */
      .download-list.grid-view {
        grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)) !important;
        gap: 3px !important;
        padding: 8px !important;
      }
      
      .download-list.grid-view .download-item {
        min-height: 105px !important;
        padding: 8px 4px 6px 4px !important;
      }
      
      .download-list.grid-view .download-item-icon-wrapper {
        width: 56px !important;
        height: 56px !important;
        margin-bottom: 4px !important;
      }
      
      /* 移动端类型图标 - 方形背景 */
      .download-list.grid-view .download-item-type {
        width: 56px !important;
        height: 56px !important;
        font-size: 9px !important;
        border-radius: 8px !important;
      }
      
      /* 移动端缩略图/视频按钮 */
      .download-list.grid-view .thumbnail-container,
      .download-list.grid-view .video-play-button-container,
      .download-list.grid-view .audio-play-button-container,
      .download-list.grid-view .document-preview-button-container {
        width: 56px !important;
        height: 56px !important;
        border-radius: 8px !important;
      }
      
      /* 移动端文件名 */
      .download-list.grid-view .download-item-name {
        font-size: 10px !important;
        line-height: 1.25 !important;
        padding: 0 2px !important;
      }
      
      /* 移动端文件大小 */
      .download-list.grid-view .download-item-size {
        font-size: 8px !important;
        padding: 1px 4px !important;
      }
      
      /* 移动端文件夹"打开"按钮 */
      .download-list.grid-view .folder-open-button {
        width: 56px !important;
        height: 56px !important;
        font-size: 10px !important;
        border-radius: 8px !important;
      }
      
      /* 移动端文件设置按钮 */
      .file-settings-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
        left: calc(5px + 70px + 5px + 70px + 5px + 70px + 5px) !important;
        bottom: calc(12px + env(safe-area-inset-bottom)) !important;
      }
      
      /* 移动端文件设置菜单 */
      .file-settings-menu {
        width: 100px !important;
        left: calc(5px + 70px + 5px + 70px + 5px + 70px - 20px) !important;
        bottom: 60px !important;
      }
      
      .file-settings-menu-item {
        height: 40px !important;
        font-size: 13px !important;
      }
      
      /* 移动端右键菜单（长按触发） */
      .context-menu {
        min-width: 130px !important;
        max-width: 160px !important;
        background: rgba(255, 255, 255, 0.55) !important;
        border: 1.5px solid rgba(100, 217, 254, 0.4) !important;
        box-shadow: 
          0 4px 20px rgba(100, 217, 254, 0.2),
          0 8px 40px rgba(255, 255, 255, 0.15),
          inset 0 0 15px rgba(255, 255, 255, 0.2) !important;
      }
      
      .context-menu-item {
        height: 45px !important;
        font-size: 13px !important;
        color: black !important;
        background: rgba(255, 255, 255, 0.3) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
      }
      
      .context-menu-item:active {
        transform: scale(0.95) !important;
        background: rgba(255, 255, 255, 0.6) !important;
      }
      
      .download-box {
        top: calc(10px + 15vh + 10px);
        height: 65vh;
      }
      .AI_Notes_menu_son {
        /* AI笔记菜单子项目 */
        width: 10vw;
        min-width: 40px;
        height: 10vw;
        min-height: 40px;
        margin: 0;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        
        /* 液态玻璃特效样式 */
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        box-shadow: 
          0 6px 24px rgba(31, 38, 135, 0.15),
          inset 0 0 8px rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 8px;
        transition: all 0.3s ease;
      }
      
      .AI_Notes_menu_son_Function {
        /* AI笔记菜单功能子项目 */
        width: 10vw;
        min-width: 40px;
        height: 10vw;
        min-height: 40px;
        margin: 0;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        
        /* 液态玻璃特效样式 */
        background: rgba(255, 100, 100, 0.06);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        box-shadow: 
          0 6px 24px rgba(31, 38, 135, 0.15),
          inset 0 0 8px rgba(255, 100, 100, 0.1);
        border: 1px solid rgba(255,100,100,0.2);
        border-radius: 8px;
        transition: all 0.3s ease;
      }
      .AI_Notes_border_receive {
        /* AI笔记内容框 */
        left: 95px;
        right: 0px;
        position: absolute;
        top: 0px;
        overscroll-behavior: contain;
        /* 手机端不会整个body滑动的关键 */
        overscroll-behavior: none;
        padding-bottom: 50vh; /* 给底部留出空间，避免被输入框遮挡 */
        box-sizing: border-box;
      }
      .AI_Notes_AI_border {
        /* AI笔记中AI的内容框 */
        /* 基本样式 */
        left: 95px;
        right: 0px;
        position: absolute;
        top: 0px;
        overscroll-behavior: contain;
        /* 手机端不会整个body滑动的关键 */
        padding-bottom: 50vh; /* 给底部留出空间，避免被输入框遮挡 */
        box-sizing: border-box;
        overscroll-behavior: none;
      }
      .Notes_button {
        /* AI笔记选择按钮 */
        width: 35px;
        height: 35px;
        border-radius: 50%;
        user-select: none;
      }
      #Notes_file {
        /* 电脑文件选择 */
        display: none;
      }
      #file {
        /* 电脑文件选择按钮 */
        pointer-events: auto;
      }
      /* 显示文件名字和上传进度的框样式，设置宽度为330px */
      .file-upload-info {
        width: 265px;
        height: 50px;
      }
      /* 下载文件按钮样式 */
      .download-btn {
        width: 70px;
        left: calc(20px + 5px);
      }
      /* 删除文件按钮样式 */
      .delete-file-btn {
        width: 70px;
        left: calc(20px + 70px + 20px);
      }
      /* 删除文件按钮样式 */
      .rename-file-btn {
        width: 70px;
        left: calc(5px);
      }
      .rename-file-input {
        width: 200px;
        left: calc(5px + 70px + 5px + 70px + 5px);
      }
      .get_direct_link_name {
        width: 70px;
        left: calc(5px + 70px + 5px);
        user-select: none;
      }
      /* 新建文件夹按钮移动端样式 */
      .create-folder-btn {
        width: 70px;
        height: 38px;
        font-size: 12px;
        left: calc(5px + 70px + 5px + 70px + 5px);
        bottom: calc(12px + env(safe-area-inset-bottom));
      }
      /* 显示文件名的框样式 */
      .file-name-display {
        width: 700px;
        left: calc(20px + 70px + 20px + 70px + 20px);
      }
      .download-list {
        width: 85%;
        height: 77.5%;
        padding-bottom: max(88px, env(safe-area-inset-bottom));
        scroll-padding-bottom: max(88px, env(safe-area-inset-bottom));
      }
      .search-container {
        /* 基本样式 */
        width: 150px;
        left: calc(120px - 30px);
      }
      .search-bar {
        width: 60px;
      }
      .search-btn {
        width: 40px;
      }
      @media screen and (max-height: 600px) {
        /* 手机触发键盘时*/
        .login {
          /* 登录框 */
          top: 85vh;
          left: 5vw;
          height: 25vh;
        }
        .AI_border_receive {
          max-height: 99.9vh;
          padding-bottom: 50vh; /* 键盘弹起时给底部留出更多空间 */
        }
        .AI_button {
          /* AI功能按钮 */
          /* 基本样式 */
          bottom: 2vh;
          width: 75px;
          height: 35px;
        }
        .AI_button1 {
          /* AI功能按钮 */
          /* 基本样式 */
          bottom: 2.5vh;
          right: 1.5vh;
          width: 35px;
          height: 35px;
        }
        .AI_input {
          /* AI输入样式框 */
          top: 6vh;
        }
        .AI_Notes_border_receive {
          /* AI笔记内容框 */
          max-height: 100dvh;
          padding-bottom: 50vh; /* 给底部留出空间，避免被输入框遮挡 */
        }
        .AI_Notes_menu {
          /* AI笔记菜单 */
          height: 70vh;
        }
        .AI_Notes_AI_border {
          /* AI笔记中AI的内容框 */
          max-height: 100dvh;
          padding-bottom: 50vh; /* 给底部留出空间，避免被输入框遮挡 */
        }
        #Notes_file {
          /* 电脑文件选择 */
          display: none;
        }
        .download-box {
          height: 65vh;
          top: calc(20px + 20vh + 20px + 10px);
        }
        .Upload_border {
          height: 20vh;
        }
      } /* 手机键盘模式结尾*/
    } /* 手机模式结尾*/
  } /* 电脑模式结尾*/
  /* ===== 对话飞入动画样式 ===== */
  .fly-ghost { position: fixed; z-index: 9999; pointer-events: none; will-change: transform, opacity; transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.22s ease; }
  .fly-ghost-text { max-width: 60vw; padding: 8px 12px; background: rgba(0,0,0,0.6); color: #fff; border-radius: 12px; font-size: 14px; line-height: 1.35; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
  .fly-ghost-ball { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, rgba(100,217,254,.9), rgba(94,96,230,.9)); box-shadow: 0 8px 24px rgba(100,217,254,.35); }
  
  /* ===== 文件预览组件样式 ===== */
  .file-preview-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.75); z-index: 10000; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .file-preview-container { position: relative; max-width: 90vw; max-height: 90vh; background: rgba(30, 30, 40, 0.95); border-radius: 16px; padding: 20px; box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5); transform-origin: center center; transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.4s ease; }
  .file-preview-container.show { transform: scale(1); opacity: 1; }
  .file-preview-container.hide { transform: scale(0.3); opacity: 0; }
  .file-preview-close { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border: none; background: rgba(255, 255, 255, 0.15); color: #fff; font-size: 20px; border-radius: 50%; cursor: pointer; transition: all 0.2s; z-index: 1; }
  .file-preview-close:hover { background: rgba(255, 100, 100, 0.3); transform: rotate(90deg); }
  .file-preview-content { max-width: 100%; max-height: 80vh; display: flex; align-items: center; justify-content: center; }
  .file-preview-content img { max-width: 100%; max-height: 80vh; border-radius: 8px; object-fit: contain; }
  .file-preview-content video { max-width: 100%; max-height: 80vh; border-radius: 8px; }
  
  /* ===== 邮箱功能样式 ===== */
  
  /* 忘记密码链接 */
  .login_forgot_password {
    margin-top: 10px;
    text-align: center;
    color: rgba(100, 217, 254, 0.8);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
  }
  .login_forgot_password:hover {
    color: rgba(100, 217, 254, 1);
    transform: scale(1.05);
  }
  .login_forgot_password:active {
    transform: scale(0.95);
  }
  
  /* 登录按钮 - 右下角 */
  .login_submit_button {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 80px;
    height: 36px;
    padding: 0;
    background: linear-gradient(135deg, rgba(100, 217, 254, 0.9), rgba(94, 96, 230, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 217, 254, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(100, 217, 254, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 10;
  }
  
  .login_submit_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 217, 254, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(100, 217, 254, 1), rgba(94, 96, 230, 1));
  }
  
  .login_submit_button:active {
    transform: translateY(0) scale(0.95);
  }
  
  .login_submit_button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
  }
  
  /* 邮箱弹窗遮罩层 */
  .email_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: emailModalFadeIn 0.3s ease;
  }
  
  @keyframes emailModalFadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* 邮箱弹窗内容 */
  .email_modal_content {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.95), rgba(20, 20, 40, 0.95));
    border-radius: 20px;
    padding: 0;
    max-width: 450px;
    width: 90vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(100, 217, 254, 0.2);
    animation: emailModalSlideIn 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  @keyframes emailModalSlideIn {
    from {
      transform: translateY(-50px) scale(0.9);
      opacity: 0;
    }
    to {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
  }
  
  /* 邮箱弹窗头部 */
  .email_modal_header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(100, 217, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .email_modal_title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
  
  .email_modal_close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
  }
  
  .email_modal_close:hover {
    background: rgba(255, 100, 100, 0.3);
    transform: rotate(90deg);
  }
  
  /* 邮箱弹窗主体 */
  .email_modal_body {
    padding: 25px;
  }
  
  /* 当前邮箱信息 */
  .email_current_info {
    margin-bottom: 20px;
    padding: 12px 15px;
    background: rgba(100, 217, 254, 0.1);
    border-left: 3px solid rgba(100, 217, 254, 0.5);
    border-radius: 8px;
    color: #999;
    font-size: 14px;
  }
  
  /* 输入框组 */
  .email_input_group {
    margin-bottom: 15px;
  }
  
  .email_input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 217, 254, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  
  .email_input:focus {
    border-color: rgba(100, 217, 254, 0.8);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(100, 217, 254, 0.1);
  }
  
  .email_input::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }
  
  /* 验证码输入组 */
  .email_code_group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .email_code_input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 217, 254, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  
  .email_code_input:focus {
    border-color: rgba(100, 217, 254, 0.8);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(100, 217, 254, 0.1);
  }
  
  .email_code_input::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }
  
  /* 验证码按钮 */
  .email_code_btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(100, 217, 254, 0.8), rgba(94, 96, 230, 0.8));
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(100, 217, 254, 0.3);
  }
  
  .email_code_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(100, 217, 254, 0.4);
  }
  
  .email_code_btn:active {
    transform: translateY(0);
  }
  
  .email_code_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
  }
  
  /* 提交按钮 */
  .email_submit_btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, rgba(100, 217, 254, 0.9), rgba(94, 96, 230, 0.9));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(100, 217, 254, 0.4);
  }
  
  .email_submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 217, 254, 0.5);
  }
  
  .email_submit_btn:active {
    transform: translateY(0);
  }
  
  /* 提示文字 */
  .email_tips {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
  }
  
  /* 找回密码步骤标题 */
  .email_step_title {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
  }
  
  /* 账号选择列表 */
  .reset_user_list {
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
  }
  
  /* 账号选项 */
  .reset_user_item {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(100, 217, 254, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .reset_user_item:hover {
    background: rgba(100, 217, 254, 0.15);
    border-color: rgba(100, 217, 254, 0.6);
    transform: translateX(5px);
  }
  
  .reset_user_item:active {
    transform: scale(0.98);
  }
  
  /* 手机端适配 */
  @media screen and (max-width: 768px) {
    .email_modal_content {
      max-width: 95vw;
    }
    
    .email_modal_header {
      padding: 18px 20px;
    }
    
    .email_modal_title {
      font-size: 16px;
    }
    
    .email_modal_body {
      padding: 20px;
    }
    
    .email_code_group {
      flex-direction: column;
    }
    
    .email_code_btn {
      width: 100%;
    }
    
    .login_forgot_password {
      font-size: 12px;
    }
    
    .login_submit_button {
      right: 15px;
      bottom: 15px;
      width: 70px;
      height: 34px;
      font-size: 13px;
    }
  }