<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <!-- 优化viewport设置，允许用户缩放，最小缩放宽度200px -->
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, minimum-scale=0.5, user-scalable=yes, viewport-fit=cover">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="renderer" content="webkit">
  <title>学习效率提升：时间管理与专注力的完美结合 - 珊珊同学® | 智慧学习与健康成长</title>
  <meta name="Keywords" content="学习效率,珊珊同学,科科好,快三拍,专注力,时间管理,高效学习,注意力管理">
  <meta name="description" content="学习效率是时间管理与专注力的乘积，本文教珊珊同学如何将时间管理技巧与专注力训练结合，最大化学习效率，实现科科好目标，保持快三拍的进步节奏。" />
    
  <style>
    /* ====================================================================
       第一部分：颜色风格设置系统
       功能：定义网站整体色彩系统，便于统一管理和维护
       ==================================================================== */
    :root {
      /* 主色调系统 - 米褐色系 (#b7a584) */
      --primary-color: #b7a584;      /* 主色调-米褐色 */
      --primary-dark: #9c8c6f;       /* 主色调加深 */
      --primary-light: #d4c9b2;      /* 主色调减淡 */
      --primary-bg: #f8f6f1;         /* 主背景色 */
      
      /* 辅助色系统 - 智慧蓝色系 */
      --secondary-color: #4a6fa5;    /* 辅助色-智慧蓝 */
      --secondary-light: #e8ecf5;    /* 辅助色减淡 */
      
      /* 文字颜色系统 */
      --text-main: #4a4a4a;          /* 主要文字颜色 */
      --text-secondary: #666666;     /* 次要文字颜色 */
      --text-tertiary: #888888;      /* 三级文字颜色 */
      --text-black: #000000;         /* 黑色文字 */
      --text-white: #ffffff;         /* 白色文字 */
      
      /* 功能颜色系统 */
      --white: #ffffff;              /* 纯白色 */
      --gray-light: #fafafa;         /* 浅灰色背景 */
      --footer-bg: #f5f3ef;          /* 原底部背景色 */
      --footer-text: #4a4a4a;        /* 底部文字颜色 */
      --footer-hover: #9c8c6f;       /* 底部链接悬停色 */
      --friend-link-bg: rgba(183, 165, 132, 0.1);     /* 友链背景色 */
      --logo-accent: #4a6fa5;        /* LOGO强调色（智慧蓝） */
      --logo-shadow: rgba(74, 111, 165, 0.2); /* LOGO阴影色 */
      --title-line-color: #b7a584;   /* 标题下划线颜色（主色调） */
      --sidebar-border-color: #b7a584; /* 侧边栏边框色 */
      --logo-text-color: #4a4a4a;    /* LOGO文字颜色 */
      
      /* 胶囊按钮配色系统 */
      --capsule-default-bg: #b7a584;    /* 默认填充色 */
      --capsule-default-border: #b7a584;/* 默认边框色 */
      --capsule-default-text: #ffffff;  /* 默认文字颜色 */
      --capsule-hover-bg: #4a6fa5;      /* 悬停填充色（智慧蓝） */
      --capsule-hover-border: #4a6fa5;  /* 悬停边框色 */
      --capsule-hover-text: #ffffff;    /* 悬停文字颜色 */
      
      /* 布局尺寸变量 - 响应式适配基础 */
      --sidebar-width: 20%;
      --content-width: 80%;
      --layout-gap: 15px;
      --footer-margin-top: 10px;
    }

    /* ====================================================================
       第二部分：全局常用样式
       功能：基础重置、全局布局、通用组件样式
       ==================================================================== */
    
    /* 2.1 基础重置样式 */
    * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
      -webkit-tap-highlight-color: transparent; /* 移除移动端点击高亮 */
    }

    html, body {
      height: 100%;
      width: 100%;
      overflow-x: hidden;
      font-family: "Microsoft Yahei", "PingFang SC", "Helvetica Neue", Arial, sans-serif; 
      line-height: 1.6; 
      color: var(--text-main); 
      background: var(--gray-light); 
      -webkit-font-smoothing: antialiased; /* 字体抗锯齿 */
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      min-width: 300px; /* 最小宽度调整为300px */
    }

    /* 2.2 全局布局容器 */
    .container { 
      width: 100%;
      max-width: 100%;
      padding: 0 10px;
      margin: 0 auto;
    }

    .main-wrap {
      flex: 1 0 auto;
      width: 100%;
      padding: 20px 0;
    }

    /* 2.3 通用链接样式 */
    a {
      text-decoration: none !important;
      color: inherit;
      transition: color 0.2s ease;
    }

    /* 2.4 通用按钮样式 */
    .link-btn {
      display: inline-block;
      padding: 8px 18px;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
      color: var(--text-white) !important;
      border-radius: 20px;
      box-shadow: 0 3px 8px rgba(183, 165, 132, 0.15);
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .link-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 12px rgba(183, 165, 132, 0.25);
    }

    /* 2.5 通用标题样式 */
    .content-title {
      font-size: 1.8rem;
      margin: 10px 0 20px 0;
      color: var(--text-main);
      border-bottom: 2px solid var(--primary-light) !important;
      padding-bottom: 12px;
      text-align: center !important;
      position: relative;
    }

    .content-title::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px !important;
      background: var(--title-line-color) !important;
      border-radius: 2px;
    }

    /* 2.6 核心布局结构 */
    .daily-container {
      display: flex !important;
      flex-direction: row !important;
      gap: var(--layout-gap);
      width: 100%;
      margin: 20px 0;
    }

    .sidebar {
      width: var(--sidebar-width);
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .content {
      width: var(--content-width);
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    /* ====================================================================
       第三部分：小模块样式
       功能：特定功能模块的样式定义
       ==================================================================== */
    
    /* 3.1 视频播放器模块 */
    .video-container {
      width: 100%;
      margin: 0 0 20px 0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 3px 15px rgba(0,0,0,0.05);
      position: relative;
      padding-top: 56.25%; /* 16:9 比例核心设置 */
    }

    .video-player {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
      outline: none;
    }

    /* 3.2 头部模块 */
    .header { 
      width: 100%;
      padding: 15px 0;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
      color: var(--text-white);
      position: relative;
      z-index: 1000;
    }

    .header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    /* 3.3 LOGO模块 */
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
      max-height: 60px;
      flex-shrink: 0;
      z-index: 1001;
    }

    .logo-img {
      max-width: 33%;
      max-height: 50px;
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      animation: breathe 2s infinite ease-in-out;
      transform-origin: center center;
      image-rendering: -webkit-optimize-contrast; /* 高清屏优化 */
      image-rendering: crisp-edges;
    }

    @keyframes breathe {
      0% { transform: scale(1); }
      50% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }

    .logo-text {
      color: var(--logo-text-color) !important;
      text-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .logo .love-study {
      font-size: 1.2rem;
      background: var(--logo-accent);
      padding: 5px 10px;
      border-radius: 15px;
      box-shadow: 0 2px 6px var(--logo-shadow);
      color: white;
    }

    /* 3.4 汉堡菜单按钮 - 移到右上角 */
    .hamburger-btn {
      display: none;
      width: 40px;
      height: 40px;
      background: transparent;
      border: none;
      cursor: pointer;
      flex-direction: column;
      justify-content: space-around;
      padding: 0;
      z-index: 1002;
      margin-left: auto;
      position: relative;
      order: 2;
    }

    .hamburger-btn span {
      display: block;
      width: 100%;
      height: 4px;
      background: var(--text-white);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .hamburger-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger-btn.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px);
    }

    /* 3.5 导航菜单模块 - 重新设计 */
    .nav-container {
      flex: 1;
      display: flex;
      justify-content: center;
      position: relative;
      margin: 0 15px;
    }

    .nav { 
      display: flex; 
      list-style: none; 
      gap: 0;
      position: relative;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-item {
      position: relative;
      padding: 8px 15px;
    }

    .nav-item > a { 
      color: var(--text-white); 
      font-weight: 500;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .nav-item > a::after {
      content: "▼";
      font-size: 0.7rem;
      opacity: 0.8;
      transition: transform 0.3s ease;
    }

    .nav-item:hover > a::after {
      transform: rotate(180deg);
    }

    .nav-item a.active {
      color: var(--primary-light);
      font-weight: 600;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 220px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      list-style: none;
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 999;
    }

    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-item {
      padding: 0;
    }

    .dropdown-item a {
      color: var(--text-main);
      padding: 8px 20px;
      display: block;
      transition: all 0.2s ease;
      font-size: 0.95rem;
    }

    .dropdown-item a:hover {
      background: var(--primary-light);
      color: var(--primary-dark);
      padding-left: 25px;
    }

    /* 3.6 导航右侧功能区 */
    .header-right {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-shrink: 0;
      z-index: 1001;
      order: 3;
    }

    /* 搜索框模块 */
    .search-box {
      width: 200px;
      position: relative;
    }

    .search-box input {
      width: 100%;
      padding: 8px 15px 8px 12px;
      padding-right: 35px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.12);
      color: var(--text-white);
      font-size: 0.9rem;
      height: 36px;
      box-sizing: border-box;
    }

    .search-btn {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: var(--text-white);
      cursor: pointer;
      font-size: 1rem;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* 导航登录按钮 */
    .header-login-btn {
      font-size: 0.9rem !important;
      padding: 6px 15px !important;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
    }

    .mobile-search-box {
      display: none;
      margin: 15px 0;
      width: 100%;
      position: relative;
    }

    .mobile-search-box input {
      width: 100%;
      padding: 10px 15px 10px 12px;
      padding-right: 40px;
      border-radius: 20px;
      border: 1px solid var(--primary-light);
      background: var(--white);
      color: var(--text-main);
      font-size: 0.95rem;
      height: 40px;
      box-sizing: border-box;
    }

    /* 3.7 全屏轮播图模块 */
    .fullscreen-carousel {
      width: 100vw;
      height: calc(100vh - 120px);
      min-height: 400px;
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      left: 50%;
      transform: translateX(-50%);
    }

    .fullscreen-carousel-slides {
      display: flex;
      width: 300%;
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .fullscreen-carousel-slide {
      width: 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .fullscreen-carousel-slide::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        135deg, 
        rgba(183, 165, 132, 0.4) 0%, 
        rgba(156, 140, 111, 0.6) 100%
      );
      z-index: 1;
    }

    .carousel-slide-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--text-white);
      padding: 0 20px;
      max-width: 800px;
    }

    .carousel-slide-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.2);
      animation: fadeInUp 1s ease;
    }

    .carousel-slide-desc {
      font-size: 1.2rem;
      margin-bottom: 30px;
      line-height: 1.8;
      text-shadow: 0 1px 5px rgba(0,0,0,0.2);
      animation: fadeInUp 1.2s ease 0.2s both;
    }

    .carousel-slide-btn {
      display: inline-block;
      padding: 12px 30px;
      background: var(--white);
      color: var(--primary-dark);
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
      animation: fadeInUp 1.4s ease 0.4s both;
    }

    .carousel-slide-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      background: var(--capsule-hover-bg);
      color: var(--text-white);
    }

    .fullscreen-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(255,255,255,0.8);
      border: none;
      color: var(--primary-dark);
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .fullscreen-carousel-btn:hover {
      background: var(--white);
      transform: translateY(-50%) scale(1.1);
    }

    .fullscreen-carousel-prev { left: 30px; }
    .fullscreen-carousel-next { right: 30px; }

    .fullscreen-carousel-indicators {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 10;
    }

    .fullscreen-carousel-indicator {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .fullscreen-carousel-indicator.active {
      background: var(--white);
      width: 40px;
      border-radius: 10px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* 3.8 专题卡片模块 */
    .topic-card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.03);
      border: 3px solid var(--sidebar-border-color) !important;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .topic-card-header {
      background: var(--primary-color);
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .topic-card-logo {
      width: 50px;
      height: 50px;
      border-radius: 0;
      background: none;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: none;
      overflow: visible;
    }

    @keyframes swing {
      0% { transform: rotate(0deg); }
      25% { transform: rotate(-8deg); }
      75% { transform: rotate(8deg); }
      100% { transform: rotate(0deg); }
    }

    .topic-card-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: swing 1s infinite ease-in-out;
      transform-origin: center;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }

    .topic-card-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
      margin: 0;
      text-shadow: 0 1px 3px rgba(0,0,0,0.15);
    }

    .topic-card-body {
      padding: 20px;
      flex: 1;
    }

    /* 3.9 胶囊链接模块 */
    .topic-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 0;
    }

    .topic-list li a {
      display: inline-block;
      width: 100%;
      padding: 14px 22px;
      border-radius: 30px;
      background: var(--capsule-default-bg);
      color: var(--capsule-default-text) !important;
      font-size: 1.1rem;
      font-weight: 500;
      text-align: center;
      border: 2px solid var(--capsule-default-border);
      transition: all 0.3s ease;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .topic-list li a:hover {
      background: var(--capsule-hover-bg);
      color: var(--capsule-hover-text) !important;
      border-color: var(--capsule-hover-border);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(74, 111, 165, 0.35);
    }

    /* 3.10 侧边栏小部件模块 */
    .sidebar-widget-bordered {
      background: var(--white);
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.03);
      border: 3px solid var(--sidebar-border-color) !important;
    }

    .sidebar-widget-no-topline {
      background: var(--white);
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.03);
      border-top: none !important;
      border-right: 2px solid var(--primary-light) !important;
    }

    .sidebar-widget-title {
      font-size: 1.1rem;
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--primary-light);
      color: var(--primary-dark);
      text-align: center;
    }

    .hot-article-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 0;
    }

    .hot-article-list li a {
      color: var(--text-secondary);
      padding: 4px 8px;
      border-radius: 6px;
      transition: background-color 0.2s ease;
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .hot-article-list li a:hover {
      background-color: var(--primary-light);
      color: var(--primary-dark);
    }

    .qrcode-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      width: 100%;
    }

    .qrcode-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .qrcode-img {
      width: 240px;
      height: 240px;
      border: 2px solid var(--primary-light);
      border-radius: 8px;
      object-fit: cover;
      margin-bottom: 8px;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }

    .qrcode-desc {
      font-size: 0.875rem;
      color: var(--text-secondary);
      text-align: center;
      line-height: 1.4;
    }

    /* 3.11 文章列表模块 - 保持原有顺序 */
    .article-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin: 20px 0;
      width: 100%;
    }

    .article-card {
      background: var(--white);
      border-radius: 12px;
      padding: 0 !important;
      box-shadow: 0 3px 12px rgba(0,0,0,0.03);
      border-top: none !important;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .article-card-img-container {
      width: 100%;
      padding-top: 75%;
      position: relative;
      overflow: hidden;
    }

    .article-card-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-top-left-radius: 12px !important;
      border-top-right-radius: 12px !important;
      border-bottom-left-radius: 0 !important;
      border-bottom-right-radius: 0 !important;
      margin: 0 !important;
      border: none !important;
      padding: 0 !important;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }

    .article-card-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .article-card-btn-wrap {
      display: flex;
      justify-content: flex-end;
      margin-top: 15px;
    }

    .article-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 20px rgba(183, 165, 132, 0.08);
    }

    .article-card-tag, .article-card-meta {
      display: none;
    }

    .article-card-excerpt {
      margin: 10px 0;
      color: var(--text-secondary);
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 6;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.7;
    }

    /* 3.12 文章详情模块 - 确保顺序不变 */
    .article {
      background: var(--white);
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 15px rgba(0,0,0,0.02);
      border-top: none !important;
      margin: 20px 0;
      width: 100%;
    }

    .article-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin: 20px 0 25px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--primary-light);
      position: relative;
    }

    .article-title::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--title-line-color) !important;
    }

    .article-content {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text-secondary);
    }

    .article-content p {
      margin: 1.5em 0;
      text-indent: 2em;
    }

    /* 3.13 底部模块 - 背景颜色改为与导航栏相同 */
    .footer {
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
      margin-top: var(--footer-margin-top) !important;
      padding: 15px 0;
      font-size: 0.875rem;
      color: var(--footer-text);
      width: 100%;
    }

    .footer-main {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 15px;
      justify-content: space-between;
    }

    .footer-column, .footer-special-column {
      flex: 1 1 180px;
      min-width: 180px;
      box-sizing: border-box;
    }

    .footer-column h4, .footer-special-column h4 {
      font-size: 1rem;
      color: var(--text-main);
      margin-bottom: 8px;
      padding-bottom: 5px;
      border-bottom: 1px solid rgba(183, 165, 132, 0.3);
    }

    .footer-column a, .footer-special-column a {
      color: var(--footer-text);
      display: block;
      margin-bottom: 5px;
    }

    .footer-column a:hover, .footer-special-column a:hover {
      color: var(--footer-hover);
    }

    .friend-links-section {
      padding: 8px 18px;
      margin-bottom: 8px;
      background: var(--friend-link-bg);
      border-radius: 8px;
      width: 100%;
    }

    .friend-links-title {
      font-size: 1rem;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .friend-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }

    .friend-links a {
      color: var(--footer-text);
      padding: 0 8px;
      position: relative;
    }

    .friend-links a:first-child {
      padding-left: 0;
    }

    .friend-links a:not(:last-child)::after {
      content: " ｜";
      position: absolute;
      right: -2px;
      color: var(--text-tertiary);
    }

    .footer-copyright {
      text-align: center;
      padding-top: 8px;
      color: var(--text-main);
      font-size: 0.8rem;
    }
    
    .footer-copyright a {
      color: var(--text-main);
      text-decoration: underline !important;
    }

    /* ====================================================================
       第四部分：响应式适配
       功能：兼容所有设备屏幕，包括平板和手机
       ==================================================================== */
    
    /* 4.1 平板设备 (max-width: 1024px) */
    @media screen and (max-width: 1024px) {
      .daily-container {
        gap: 15px !important;
      }
      
      .article-list {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .carousel-slide-title {
        font-size: 2.8rem;
      }
      
      .carousel-slide-desc {
        font-size: 1.1rem;
      }
    }

    /* 4.2 平板设备 (max-width: 768px) */
    @media screen and (max-width: 768px) {
      .main-wrap {
        display: flex;
        flex-direction: column;
      }

      .daily-container {
        flex-direction: column !important;
        gap: 0 !important;
      }

      .content {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        order: 0; /* 修改：内容区在上方 */
      }

      .sidebar {
        width: 100% !important;
        margin-top: 10px !important;
        margin-bottom: 5px !important;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        order: 1; /* 修改：侧边栏在下方 */
      }

      .mobile-search-box {
        display: block;
      }

      .header .search-box {
        display: none;
      }

      .header .header-login-btn {
        display: none;
      }

      /* 汉堡菜单显示并移到右上角 */
      .hamburger-btn {
        display: flex;
        order: 2;
        margin-left: auto;
      }
      
      /* 修复导航栏高度限制问题 */
      .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 80px 20px 20px;
        overflow-y: auto;
        /* 移除固定高度限制 */
        min-height: 100vh;
        max-height: none;
      }
      
      .nav-container.active {
        opacity: 1;
        visibility: visible;
      }
      
      .nav {
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        /* 移除固定高度，让内容自然展开 */
        max-height: none;
        overflow-y: visible;
      }
      
      .nav-item {
        width: 100%;
        padding: 12px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      .nav-item > a {
        font-size: 1.2rem;
        justify-content: center;
      }
      
      .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
      }
      
      .nav-item.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
      }
      
      .dropdown-item a {
        color: var(--text-white);
        font-size: 1rem;
        padding: 10px 20px;
      }
      
      .dropdown-item a:hover {
        background: rgba(255, 255, 255, 0.1);
      }

      /* 修复侧边栏模块自适应宽度 */
      .sidebar-widget-bordered, 
      .sidebar-widget-no-topline, 
      .topic-card {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
        max-width: 100%;
        margin: 0 0 10px 0;
      }

      .qrcode-img {
        width: 180px;
        height: 180px;
      }

      /* 轮播响应式 */
      .fullscreen-carousel {
        height: 50vh;
        min-height: 300px;
      }

      .carousel-slide-title {
        font-size: 2rem;
      }

      .carousel-slide-desc {
        font-size: 1rem;
      }

      .fullscreen-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      .fullscreen-carousel-prev { left: 15px; }
      .fullscreen-carousel-next { right: 15px; }

      /* 文章卡片在平板端改为2列，但仍保持原有顺序 */
      .article-list {
        grid-template-columns: repeat(2, 1fr);
      }

      /* 底部模块在768px以下时改为2列布局 */
      .footer-main {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
      }

      .footer-column, .footer-special-column {
        flex: 0 0 calc(50% - 15px);
        min-width: 0;
        margin-bottom: 15px;
      }

      /* 小屏胶囊链接适配 */
      .topic-list li a {
        font-size: 1rem;
        padding: 12px 20px;
      }

      .logo-img {
        max-width: 40%;
        max-height: 40px;
      }

      /* 小屏专题卡片适配 */
      .topic-card-title {
        font-size: 1.2rem;
      }
      
      .topic-card-logo {
        width: 45px;
        height: 45px;
      }

      /* 移动端头部布局调整 - 汉堡菜单在右上角 */
      .header .container {
        justify-content: space-between;
        position: relative;
      }
      
      .header-right {
        gap: 10px;
        order: 3;
      }
      
      .nav-container {
        order: 2;
        flex: 0 1 auto;
      }
    }

    /* 4.3 较小屏幕设备 (max-width: 600px) */
    @media screen and (max-width: 600px) {
      .sidebar {
        flex-direction: column;
      }

      .sidebar-widget-bordered, 
      .sidebar-widget-no-topline, 
      .topic-card {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
        margin: 0 0 10px 0;
      }

      .qrcode-img {
        width: 150px;
        height: 150px;
      }

      /* 底部模块在600px以下保持2列布局 */
      .footer-main {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
      }

      .footer-column, .footer-special-column {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
        margin-bottom: 15px;
      }

      /* 文章卡片在600px以下改为单列 - 保持原有顺序 */
      .article-list {
        grid-template-columns: 1fr;
      }

      .logo-img {
        max-width: 50%;
        max-height: 35px;
      }

      /* 小屏胶囊链接适配 */
      .topic-list li a {
        font-size: 0.95rem;
        padding: 10px 18px;
      }

      /* 小屏专题卡片适配 */
      .topic-card-title {
        font-size: 1.1rem;
      }
      
      .topic-card-logo {
        width: 40px;
        height: 40px;
      }
    }

    /* 4.4 手机设备 (max-width: 480px) */
    @media screen and (max-width: 480px) {
      .qrcode-img {
        width: 140px;
        height: 140px;
      }

      /* 超小屏轮播适配 */
      .fullscreen-carousel {
        height: 40vh;
        min-height: 250px;
      }

      .carousel-slide-title {
        font-size: 1.5rem;
      }

      .carousel-slide-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
      }

      .carousel-slide-btn {
        padding: 10px 20px;
        font-size: 1rem;
      }

      .logo-img {
        max-width: 60%;
        max-height: 30px;
      }

      /* 超小屏胶囊链接适配 */
      .topic-list li a {
        font-size: 0.9rem;
        padding: 8px 16px;
      }

      /* 超小屏专题卡片适配 */
      .topic-card-title {
        font-size: 1rem;
      }
      
      .topic-card-logo {
        width: 35px;
        height: 35px;
      }

      /* 超小屏时调整布局间距 */
      .daily-container {
        margin: 10px 0;
      }

      .main-wrap {
        padding: 10px 0;
      }

      .article-list {
        gap: 10px;
      }
      
      /* 导航项在小屏时字体调小 */
      .nav-item > a {
        font-size: 1.1rem;
      }
      
      .dropdown-item a {
        font-size: 0.95rem;
      }
    }

    /* 4.5 超小屏幕设备 (max-width: 360px) */
    @media screen and (max-width: 360px) {
      .container {
        padding: 0 8px;
      }

      .logo-img {
        max-width: 70%;
        max-height: 28px;
      }

      .logo {
        font-size: 1.5rem;
      }

      .logo .love-study {
        font-size: 1rem;
        padding: 4px 8px;
      }

      /* 超小屏轮播适配 */
      .fullscreen-carousel {
        height: 35vh;
        min-height: 220px;
      }

      .carousel-slide-title {
        font-size: 1.3rem;
      }

      .carousel-slide-desc {
        font-size: 0.85rem;
        margin-bottom: 15px;
      }

      .carousel-slide-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
      }

      .fullscreen-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
      }

      .fullscreen-carousel-prev { left: 10px; }
      .fullscreen-carousel-next { right: 10px; }

      .fullscreen-carousel-indicators {
        bottom: 20px;
        gap: 10px;
      }

      .fullscreen-carousel-indicator {
        width: 12px;
        height: 12px;
      }

      .fullscreen-carousel-indicator.active {
        width: 30px;
      }

      /* 底部模块在360px以下保持2列布局 */
      .footer-main {
        gap: 10px;
      }

      .footer-column, .footer-special-column {
        flex: 0 0 calc(50% - 10px);
        min-width: 0;
      }

      .footer-column h4, .footer-special-column h4 {
        font-size: 0.95rem;
      }

      .footer-column a, .footer-special-column a {
        font-size: 0.85rem;
      }

      .friend-links a {
        font-size: 0.8rem;
        padding: 0 6px;
      }

      .footer-copyright {
        font-size: 0.75rem;
      }

      /* 超小屏文章卡片调整 */
      .article-card-content {
        padding: 15px;
      }

      .article-card-excerpt {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
      }

      .article-card-btn-wrap .link-btn {
        padding: 6px 14px;
        font-size: 0.9rem;
      }

      .content-title {
        font-size: 1.5rem;
        margin: 8px 0 15px 0;
      }

      .article-title {
        font-size: 1.6rem;
        margin: 15px 0 20px;
      }

      .article-content {
        font-size: 0.95rem;
      }

      /* 超小屏侧边栏调整 */
      .qrcode-img {
        width: 120px;
        height: 120px;
      }

      .qrcode-desc {
        font-size: 0.8rem;
      }

      .sidebar-widget-title {
        font-size: 1rem;
      }

      .hot-article-list li a {
        font-size: 0.9rem;
      }

      /* 超小屏导航调整 */
      .nav-item > a {
        font-size: 1rem;
      }
      
      .dropdown-item a {
        font-size: 0.9rem;
      }
    }

    /* 4.6 最小屏幕设备 (max-width: 280px) - 大约200px左右 */
    @media screen and (max-width: 280px) {
      .container {
        padding: 0 5px;
      }

      .logo-img {
        max-width: 80%;
        max-height: 25px;
      }

      .logo {
        font-size: 1.2rem;
        gap: 5px;
      }

      .logo .love-study {
        font-size: 0.9rem;
        padding: 3px 6px;
      }

      .logo-text {
        font-size: 1.2rem;
      }

      /* 底部模块在280px以下改为1列布局 */
      .footer-main {
        flex-direction: column;
        gap: 12px;
      }

      .footer-column, .footer-special-column {
        flex: 0 0 100%;
        min-width: 100%;
      }

      .footer-column h4, .footer-special-column h4 {
        font-size: 0.9rem;
      }

      .footer-column a, .footer-special-column a {
        font-size: 0.8rem;
      }

      /* 超小屏轮播适配 */
      .fullscreen-carousel {
        height: 30vh;
        min-height: 200px;
      }

      .carousel-slide-title {
        font-size: 1.1rem;
      }

      .carousel-slide-desc {
        font-size: 0.75rem;
        margin-bottom: 12px;
      }

      .carousel-slide-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
      }

      .fullscreen-carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
      }

      .fullscreen-carousel-prev { left: 5px; }
      .fullscreen-carousel-next { right: 5px; }

      .fullscreen-carousel-indicators {
        bottom: 15px;
        gap: 8px;
      }

      .fullscreen-carousel-indicator {
        width: 10px;
        height: 10px;
      }

      .fullscreen-carousel-indicator.active {
        width: 25px;
      }

      /* 超小屏文章调整 */
      .content-title {
        font-size: 1.3rem;
        margin: 5px 0 10px 0;
      }

      .article-title {
        font-size: 1.4rem;
        margin: 10px 0 15px;
      }

      .article-content {
        font-size: 0.9rem;
      }

      .article-card-content {
        padding: 10px;
      }

      .article-card-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
      }

      .article-card-btn-wrap .link-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
      }

      /* 超小屏侧边栏调整 */
      .qrcode-img {
        width: 100px;
        height: 100px;
      }

      .qrcode-desc {
        font-size: 0.75rem;
      }

      .sidebar-widget-title {
        font-size: 0.95rem;
      }

      .hot-article-list li a {
        font-size: 0.85rem;
      }

      .topic-list li a {
        font-size: 0.85rem;
        padding: 6px 12px;
      }

      .topic-card-title {
        font-size: 0.9rem;
      }

      .topic-card-logo {
        width: 30px;
        height: 30px;
      }

      /* 超小屏导航调整 */
      .nav-item > a {
        font-size: 0.95rem;
      }
      
      .dropdown-item a {
        font-size: 0.85rem;
      }

      /* 友链调整 */
      .friend-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
      }

      .friend-links a {
        padding: 0;
      }

      .friend-links a:not(:last-child)::after {
        content: "";
      }

      .friend-links-title {
        font-size: 0.9rem;
      }

      .footer-copyright {
        font-size: 0.7rem;
      }
    }

    /* 4.7 高清屏优化 (2x及以上分辨率) */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .logo-img,
      .topic-card-logo img,
      .article-card-img,
      .qrcode-img,
      .video-player {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
      }
    }

    /* 4.8 打印样式优化 */
    @media print {
      .header, .footer, .sidebar, .fullscreen-carousel, .video-container, .mobile-search-box {
        display: none !important;
      }
      
      body {
        background: white !important;
        color: black !important;
      }
      
      .article {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
      }
    }
    
    /* 图片自适应全局设置 */
    img, .logo-img, .topic-card-logo img, .article-card-img, .qrcode-img, 
    .video-player, .fullscreen-carousel-slide {
      max-width: 100%;
      height: auto;
      object-fit: cover; /* 保持图片比例 */
      display: block;
    }
    
    /* 防止图片溢出容器 */
    .article-card-img-container, .video-container, .fullscreen-carousel {
      overflow: hidden;
    }
  </style>
</head>
<body>
  <!-- 头部区域 -->
  <header class="header">
    <div class="container">
      <div class="logo">
        <!-- 顶部LOGO - 呼吸动画 -->
        <img src="/static/images/sstx/logo1.png" alt="珊珊同学LOGO" class="logo-img">
        <a href="/" ><span class="logo-text">珊珊同学</span></a><span style="font-size:0.8rem;vertical-align:super;color:var(--logo-text-color);">®</span>
        <span class="love-study">爱学习</span>
      </div>
      
      <!-- 汉堡菜单按钮 - 已移到右上角 -->
      <button class="hamburger-btn" id="hamburgerBtn">
        <span></span>
        <span></span>
        <span></span>
      </button>
      
      <!-- 导航菜单容器 -->
      <div class="nav-container" id="navContainer">
        <nav>
          <ul class="nav">
            <!-- 首页 - 原珊珊系列 -->
            <li class="nav-item">
              <a href="/" class="nav-link">首页</a>
              <ul class="dropdown-menu">
                <li class="dropdown-item"><a href="/?c=sstxaiyundong">珊珊同学.爱运动</a></li>
				<li class="dropdown-item"><a href="/?c=sstxaimei">珊珊同学.爱美</a></li>
				<li class="dropdown-item"><a href="/?c=sstxaishenghuo">珊珊同学.爱生活</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaijiankang">珊珊同学.爱健康</a></li>
              </ul>
            </li>
            
            <!-- 学习方法 - 学习技巧相关内容 -->
            <li class="nav-item">
              <a href="#" class="nav-link">学习方法</a>
              <ul class="dropdown-menu">
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=xiaoli">高效学习法</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=jiyi">记忆技巧</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=shijian">时间管理</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=swdt">思维导图应用</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=yuedu">阅读技巧</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=biji">笔记方法</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=kscl">考试策略</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=zzl">专注力训练</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=xxjh">学习计划制定</a></li>
                <li class="dropdown-item"><a href="/?c=sstxaixuexi&cat=xxl">学习动力提升</a></li>
              </ul>
            </li>
            
            <!-- 学科辅导 - 各学科学习指导 -->
            <li class="nav-item">
              <a href="#" class="nav-link">学科辅导</a>
              <ul class="dropdown-menu">
                <li class="dropdown-item"><a href="#">语文学习</a></li>
                <li class="dropdown-item"><a href="#">数学思维</a></li>
                <li class="dropdown-item"><a href="#">英语提升</a></li>
                <li class="dropdown-item"><a href="#">科学探索</a></li>
                <li class="dropdown-item"><a href="#">历史人文</a></li>
                <li class="dropdown-item"><a href="#">艺术素养</a></li>
                <li class="dropdown-item"><a href="#">编程启蒙</a></li>
                <li class="dropdown-item"><a href="#">逻辑思维训练</a></li>
                <li class="dropdown-item"><a href="#">STEM教育</a></li>
                <li class="dropdown-item"><a href="#">阅读写作指导</a></li>
              </ul>
            </li>
            
            <!-- 书房好物 - 主打学习用品和书房装备 -->
            <li class="nav-item">
              <a href="#" class="nav-link">书房好物</a>
              <ul class="dropdown-menu">
                <li class="dropdown-item"><a href="#">学习机器人</a></li>
                <li class="dropdown-item"><a href="#">护眼台灯</a></li>
                <li class="dropdown-item"><a href="#">智能文具</a></li>
                <li class="dropdown-item"><a href="#">人体工学椅</a></li>
                <li class="dropdown-item"><a href="#">学习桌椅套装</a></li>
                <li class="dropdown-item"><a href="#">图书收纳</a></li>
                <li class="dropdown-item"><a href="#">护脊书包</a></li>
                <li class="dropdown-item"><a href="#">学习计时器</a></li>
                <li class="dropdown-item"><a href="#">阅读书架</a></li>
                <li class="dropdown-item"><a href="#">学习用品套装</a></li>
              </ul>
            </li>
            
            <!-- 成长规划 - 学习与人生发展 -->
            <li class="nav-item">
              <a href="#" class="nav-link">成长规划</a>
              <ul class="dropdown-menu">
                <li class="dropdown-item"><a href="#">学习习惯养成</a></li>
                <li class="dropdown-item"><a href="#">兴趣培养</a></li>
                <li class="dropdown-item"><a href="#">能力提升</a></li>
                <li class="dropdown-item"><a href="#">升学指导</a></li>
                <li class="dropdown-item"><a href="#">职业探索</a></li>
                <li class="dropdown-item"><a href="#">心理成长</a></li>
                <li class="dropdown-item"><a href="#">品格培养</a></li>
                <li class="dropdown-item"><a href="#">社交能力</a></li>

              </ul>
            </li>
          </ul>
        </nav>
      </div>
      
      <div class="header-right">
        <div class="search-box">
          <input type="text" placeholder="搜索学习资料...">
          <button class="search-btn">🔍</button>
        </div>
        <a href="#" class="link-btn header-login-btn">登录</a>
      </div>
    </div>
  </header>

  <!-- 全屏自适应轮播图 -->
  <div id="fullscreenCarousel" class="fullscreen-carousel">
    <div id="fullscreenCarouselSlides" class="fullscreen-carousel-slides">
      <div class="fullscreen-carousel-slide" style="background-image: url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80')">
        <div class="carousel-slide-content">
          <h2 class="carousel-slide-title">珊珊同学的知识书房</h2>
          <p class="carousel-slide-desc">中国人生科学学会健康专委会会员单位，为学生提供科学学习方法与成长规划，让学习充满智慧与乐趣</p>
          <a href="#" class="carousel-slide-btn">查看今日学习计划</a>
        </div>
      </div>
      <div class="fullscreen-carousel-slide" style="background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80')">
        <div class="carousel-slide-content">
          <h2 class="carousel-slide-title">智慧学习，快乐成长</h2>
          <p class="carousel-slide-desc">珊珊同学分享科学学习方法与成长理念，从学科辅导到习惯养成，助您打造全方位学习成长环境</p>
          <a href="#" class="carousel-slide-btn">探索学习方法</a>
        </div>
      </div>
      <div class="fullscreen-carousel-slide" style="background-image: url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80')">
        <div class="carousel-slide-content">
          <h2 class="carousel-slide-title">书房好物推荐指南</h2>
          <p class="carousel-slide-desc">珊珊同学带你挑选最适合的学习装备，从护眼台灯到学习机器人，为高效学习打造理想书房环境</p>
          <a href="#" class="carousel-slide-btn">查看书房好物</a>
        </div>
      </div>
    </div>
    <button id="fullscreenPrevBtn" class="fullscreen-carousel-btn fullscreen-carousel-prev">◀</button>
    <button id="fullscreenNextBtn" class="fullscreen-carousel-btn fullscreen-carousel-next">▶</button>
    <div class="fullscreen-carousel-indicators">
      <button class="fullscreen-carousel-indicator active" data-index="0"></button>
      <button class="fullscreen-carousel-indicator" data-index="1"></button>
      <button class="fullscreen-carousel-indicator" data-index="2"></button>
    </div>
  </div>

  <!-- 主内容区 -->
  <div class="main-wrap">
    <div class="container">
      <div class="daily-container">
        <!-- 左侧侧边栏 -->
        <aside class="sidebar">
          <!-- 热门推荐 -->
          <div class="sidebar-widget-bordered">
            <h3 class="sidebar-widget-title">热门推荐</h3>
            <ul class="hot-article-list">
                         </ul>
          </div>

          <!-- 内容分类 -->
          <div class="sidebar-widget-bordered">
            <h3 class="sidebar-widget-title">内容分类</h3>
            <ul style="list-style:none;">
              <li style="margin:8px 0;"><a href="#" style="color:var(--text-secondary);">学习方法 (28)</a></li>
              <li style="margin:8px 0;"><a href="#" style="color:var(--text-secondary);">学科辅导 (15)</a></li>
              <li style="margin:8px 0;"><a href="#" style="color:var(--text-secondary);">书房好物 (32)</a></li>
              <li style="margin:8px 0;"><a href="#" style="color:var(--text-secondary);">成长规划 (18)</a></li>
            </ul>
          </div>

          <!-- 专题卡片 -->
          <div class="topic-card">
            <div class="topic-card-header">
              <div class="topic-card-logo">
                <img src="/static/images/sstx/logo1.png" alt="珊珊同学LOGO">
              </div>
              <h3 class="topic-card-title">珊珊同学系列主题</h3>
            </div>
            <div class="topic-card-body">
              <ul class="topic-list">
                <li><a href="#">珊珊同学爱学习</a></li>
                <li><a href="#">珊珊同学爱健康</a></li>
                <li><a href="#">珊珊同学爱运动</a></li>
                <li><a href="#">珊珊同学爱吃</a></li>
                <li><a href="#">珊珊同学爱玩</a></li>
                <li><a href="#">珊珊同学说人生</a></li>
                <li><a href="#">珊珊同学说学习</a></li>
              </ul>
            </div>
          </div>

          <!-- 关注我们 -->
          <div class="sidebar-widget-no-topline">
            <h3 class="sidebar-widget-title">关注我们</h3>
            <div class="qrcode-container">
              <div class="qrcode-item">
                <img src="http://www.kekehao.com/static/wxgzh.jpg" alt="公众号二维码" class="qrcode-img">
                <p class="qrcode-desc">珊珊同学公众号</p>
              </div>
              <div class="qrcode-item">
                <img src="http://static.kekehao.com//static/images/wx.jpg" alt="企业微信二维码" class="qrcode-img">
                <p class="qrcode-desc">珊珊同学企业微信</p>
              </div>
            </div>
          </div>
        </aside>

        <!-- 右侧内容区 -->
        <div class="content">
          
          <!-- 文章内容 - 学习主题 -->
		 
          <div class="article">
            <h1 class="article-title"></h1>
            
            <div class="article-content">
              <h1>学习效率提升：时间管理与专注力的完美结合</h1>
  
  <p><strong>概述：</strong>学习效率 = 时间管理 × 专注力。优秀的时间管理提供了学习框架，强大的专注力确保了框架内的学习质量。对于追求科科好的珊珊同学来说，只有将两者完美结合，才能实现真正的高效学习。本文将深入探讨时间管理与专注力的相互作用，提供将两者结合的具体策略和方法，帮助珊珊同学最大化学习效率，在有限时间内取得最佳学习效果，实现各科优秀的目标，同时保持可持续的快三拍成长节奏。</p>
  
  <h2>学习效率的核心公式</h2>
  
  <h2>效率 = 效果 / 时间</h2>
  <p>学习效率不是学习时间长短，而是在单位时间内取得的学习效果。珊珊同学可能学习很长时间但效果不佳，或者学习时间不长但效果显著，区别就在于效率。</p>
  
  <h2>效率 = 时间管理 × 专注力</h2>
  <p>更精确地说，学习效率是时间管理与专注力的乘积：</p>
  <p>• 时间管理：决定学习什么、何时学习、学多久</p>
  <p>• 专注力：决定学习时的投入程度和质量</p>
  
  <p>如果时间管理得分为8（满分10），专注力得分为9，那么效率为72。如果时间管理得分为10但专注力只有5，效率只有50。珊珊同学需要同时提升两者。</p>
  
  <h2>时间管理与专注力的相互作用</h2>
  
  <h2>时间管理为专注力创造条件</h2>
  <p>良好的时间管理：</p>
  <p>• 减少决策负担：明确的学习计划让珊珊同学不需要时刻决定学什么，节省心理能量用于专注</p>
  <p>• 创造无干扰环境：规划的学习时间可以预先排除干扰，如告知家人、关闭通知等</p>
  <p>• 匹配生物钟：将重要学习安排在个人高效时段，此时自然专注力更高</p>
  <p>• 提供休息保障：合理的休息安排防止疲劳累积，保持专注力可持续</p>
  
  <h2>专注力提高时间管理效果</h2>
  <p>强大的专注力：</p>
  <p>• 减少实际学习时间：高度专注时学习速度快，可能只需低专注时一半的时间</p>
  <p>• 提高计划执行率：专注时更容易按计划完成学习任务，减少拖延和分心</p>
  <p>• 增强学习深度：专注带来深度理解，减少后续复习时间</p>
  <p>• 减少错误和返工：专注时错误率低，减少改正时间</p>
  
  <h2>时间管理与专注力的整合框架</h2>
  
  <h2>层级一：宏观时间管理</h2>
  <p>时间范围：学期、月度</p>
  <p>专注力连接：</p>
  <p>• 根据各科难度和专注需求分配时间</p>
  <p>• 在高专注力预期的时段安排重要学习</p>
  <p>• 规划专注力训练和恢复时间</p>
  
  <h2>层级二：中观时间管理</h2>
  <p>时间范围：周、日</p>
  <p>专注力连接：</p>
  <p>• 设计学习-休息节奏匹配专注力周期</p>
  <p>• 安排不同类型任务，利用专注力变化</p>
  <p>• 为深度专注预留不受干扰的时间块</p>
  
  <h2>层级三：微观时间管理</h2>
  <p>时间范围：小时、分钟</p>
  <p>专注力连接：</p>
  <p>• 使用番茄工作法等工具结构学习时间</p>
  <p>• 学习开始和结束的专注力启动与切换</p>
  <p>• 处理学习中的分心和中断</p>
  
  <h2>专注力提升的核心策略</h2>
  
  <h2>专注力训练</h2>
  <p>专注力像肌肉，可以通过训练增强。珊珊同学可以：</p>
  <p>• 正念冥想：每天5-10分钟专注呼吸训练</p>
  <p>• 专注阅读：设定时间目标，逐渐延长持续阅读时间</p>
  <p>• 单任务练习：一次只做一件事，避免多任务切换</p>
  <p>• 注意力游戏：如舒尔特方格、找不同等注意力训练游戏</p>
  
  <h2>专注力保护</h2>
  <p>防止专注力被消耗和分散：</p>
  <p>• 环境控制：创造无干扰学习环境</p>
  <p>• 数字戒断：学习时关闭不必要的电子设备</p>
  <p>• 任务简化：减少同时处理的任务数量</p>
  <p>• 情绪管理：减少焦虑、压力等情绪对专注力的消耗</p>
  
  <h2>专注力恢复</h2>
  <p>专注力资源有限，需要定期恢复：</p>
  <p>• 短休息：学习间隙短暂休息，恢复注意力</p>
  <p>• 注意力切换：不同认知类型任务交替，减少特定注意力疲劳</p>
  <p>• 深度休息：睡眠、运动等深度恢复活动</p>
  <p>• 注意力转移：从高度集中转向放松状态，允许注意力漫游</p>
  
  <h2>时间管理支持专注力的具体方法</h2>
  
  <h2>时间阻塞法 + 深度专注</h2>
  <p>方法：</p>
  <p>1. 在日历中预留2-3小时的深度工作块</p>
  <p>2. 在这段时间内只进行一项重要学习任务</p>
  <p>3. 消除所有可能的干扰（关闭手机、通知等）</p>
  <p>4. 设置明确的开始和结束时间</p>
  
  <p>效果：为深度专注创造时间容器，保护专注力不被碎片化。</p>
  
  <h2>番茄工作法 + 专注力循环</h2>
  <p>方法：</p>
  <p>1. 学习25分钟，完全专注</p>
  <p>2. 休息5分钟，完全放松</p>
  <p>3. 每4个番茄后长休息15-30分钟</p>
  <p>4. 记录专注番茄数，可视化专注成果</p>
  
  <p>效果：将学习分解为专注力可维持的单位，通过定期休息防止专注力下降。</p>
  
  <h2>主题日安排 + 专注力聚焦</h2>
  <p>方法：</p>
  <p>1. 每周安排主题日，如周一数学日、周二英语日等</p>
  <p>2. 主题日内专注于该科目或相关任务</p>
  <p>3. 减少科目切换带来的专注力切换成本</p>
  <p>4. 深化对该科目的理解和掌握</p>
  
  <p>效果：减少任务切换，允许专注力在相似任务上持续积累。</p>
  
  <h2>能量匹配 + 专注力优化</h2>
  <p>方法：</p>
  <p>1. 识别个人能量高峰时段</p>
  <p>2. 在高能量时段安排需要高专注力的任务</p>
  <p>3. 在低能量时段安排低专注需求任务或休息</p>
  <p>4. 根据每日能量状态微调任务安排</p>
  
  <p>效果：将专注力需求与自然能量状态匹配，最大化专注效果。</p>
  
  <h2>专注力支持时间管理的具体方法</h2>
  
  <h2>专注启动仪式</h2>
  <p>方法：</p>
  <p>1. 学习开始前进行简短仪式（如整理桌面、深呼吸、设定意图）</p>
  <p>2. 仪式向大脑发出"现在要专注学习"的信号</p>
  <p>3. 逐渐形成条件反射，加速专注启动</p>
  
  <p>效果：减少开始学习时的拖延和分心，更快进入专注状态。</p>
  
  <h2>专注力监控</h2>
  <p>方法：</p>
  <p>1. 学习时注意注意力状态</p>
  <p>2. 当发现分心时，温和地将注意力带回学习任务</p>
  <p>3. 记录分心频率和原因，识别模式</p>
  <p>4. 基于观察调整学习安排和环境</p>
  
  <p>效果：提高对专注状态的自我意识，主动管理而非被动反应。</p>
  
  <h2>专注力奖励</h2>
  <p>方法：</p>
  <p>1. 为持续的专注设置奖励（如完成专注时段后的小休息、喜欢的小零食）</p>
  <p>2. 记录和庆祝专注力成就</p>
  <p>3. 将专注与积极体验关联，增强内在动机</p>
  
  <p>效果：正向强化专注行为，使专注更容易启动和维持。</p>
  
  <h2>专注力切换技巧</h2>
  <p>方法：</p>
  <p>1. 任务切换时进行简短过渡（如1-2分钟整理思绪）</p>
  <p>2. 明确结束一个任务后再开始下一个</p>
  <p>3. 为不同类型任务设计不同的启动仪式</p>
  
  <p>效果：减少任务切换时的专注力损失，提高整体时间利用率。</p>
  
  <h2>在各科学习中的效率提升应用</h2>
  
  <h2>数学学习效率提升</h2>
  <p>数学需要高度逻辑专注：</p>
  <p>• 时间管理：安排在个人高效时段，保证连续思考时间</p>
  <p>• 专注力：解题时深度沉浸，避免频繁中断</p>
  <p>• 结合策略：使用番茄工作法解决数学问题，每个番茄专注于一个题型或概念</p>
  
  <h2>语文学习效率提升</h2>
  <p>语文需要理解和创造专注：</p>
  <p>• 时间管理：为阅读和写作安排较长时间块</p>
  <p>• 专注力：阅读时主动思考，写作时流畅表达</p>
  <p>• 结合策略：使用主题日安排语文学习，减少与其他科目切换</p>
  
  <h2>英语学习效率提升</h2>
  <p>英语需要持续和多样专注：</p>
  <p>• 时间管理：每日固定时间练习，分散学习优于集中突击</p>
  <p>• 专注力：听力时全神贯注，口语时大胆表达</p>
  <p>• 结合策略：使用时间阻塞法进行英语沉浸学习，如1小时全英语环境</p>
  
  <h2>科学学习效率提升</h2>
  <p>科学需要探究和实证专注：</p>
  <p>• 时间管理：为实验和理论学习分别安排时间</p>
  <p>• 专注力：实验时细心观察，理论学习时深入理解</p>
  <p>• 结合策略：根据能量状态安排不同类型科学学习，高能量时理论思考，中能量时实验操作</p>
  
  <h2>学习效率评估指标</h2>
  
  <h2>时间管理指标</h2>
  <p>• 计划执行率：实际学习时间与计划时间的比例</p>
  <p>• 任务完成率：完成计划任务的比例</p>
  <p>• 时间分配合理性：各科时间分配与目标重要性匹配度</p>
  <p>• 时间浪费比例：非学习时间占可用时间的比例</p>
  
  <h2>专注力指标</h2>
  <p>• 专注持续时间：一次专注学习的时间长度</p>
  <p>• 分心频率：学习时分心的次数</p>
  <p>• 分心恢复时间：从分心回到学习所需时间</p>
  <p>• 学习深度：对学习内容的理解和掌握程度</p>
  
  <h2>综合效率指标</h2>
  <p>• 单位时间产出：如每小时解决的题目数、阅读页数等</p>
  <p>• 学习效果：测试成绩、作业质量等</p>
  <p>• 疲劳程度：学习后的疲劳感，反映效率可持续性</p>
  <p>• 满意度：对学习过程和结果的满意程度</p>
  
  <h2>效率提升与科科好目标的协调</h2>
  
  <h2>各科效率平衡</h2>
  <p>实现科科好需要各科效率平衡提升：</p>
  <p>• 识别各科当前效率水平</p>
  <p>• 优先提升薄弱科目效率</p>
  <p>• 保持优势科目效率不下降</p>
  <p>• 平衡短期效率与长期能力发展</p>
  
  <h2>考试期间效率优化</h2>
  <p>考试期间需要特别效率管理：</p>
  <p>• 复习计划与专注力周期匹配</p>
  <p>• 模拟考试训练时间管理与专注力结合</p>
  <p>• 考试期间状态调整，确保考试时最佳效率</p>
  <p>• 考后效率恢复，避免过度疲劳</p>
  
  <h2>长期效率可持续性</h2>
  <p>科科好是长期目标，需要可持续的效率：</p>
  <p>• 避免短期效率冲刺导致长期疲劳</p>
  <p>• 建立效率维护和恢复机制</p>
  <p>• 定期评估和调整效率策略</p>
  <p>• 平衡效率追求与学习乐趣</p>
  
  <h2>效率提升与快三拍节奏的同步</h2>
  
  <h2>高效驱动的快节奏</h2>
  <p>快三拍应该是高效率的自然结果：</p>
  <p>• 通过提升效率实现在更短时间内完成更多学习</p>
  <p>• 效率提升带来学习信心和动力，进一步加快节奏</p>
  <p>• 高效率减少时间压力，使快节奏更从容</p>
  
  <h2>可持续的快节奏</h2>
  <p>只有高效率的快节奏才是可持续的：</p>
  <p>• 低效率的快节奏会导致过度消耗和倦怠</p>
  <p>• 高效率确保在快节奏中保持学习质量</p>
  <p>• 效率与节奏相互促进，形成良性循环</p>
  
  <h2>珊珊同学的效率提升实践计划</h2>
  
  <h2>第一周：基础评估</h2>
  <p>1. 记录当前时间使用情况和专注力状态</p>
  <p>2. 评估各科学习效率水平</p>
  <p>3. 识别主要效率障碍和改进机会</p>
  
  <h2>第二周：时间管理优化</h2>
  <p>1. 实施一个时间管理技巧（如番茄工作法）</p>
  <p>2. 优化学习环境，减少干扰</p>
  <p>3. 评估时间管理改进效果</p>
  
  <h2>第三周：专注力训练</h2>
  <p>1. 开始专注力训练（如正念冥想）</p>
  <p>2. 实践专注启动和维持技巧</p>
  <p>3. 评估专注力提升效果</p>
  
  <h2>第四周：整合优化</h2>
  <p>1. 将时间管理与专注力策略结合</p>
  <p>2. 评估综合效率提升效果</p>
  <p>3. 制定长期效率维护计划</p>
  
  <h2>效率提升的常见误区</h2>
  
  <h2>误区一：过度追求效率导致压力</h2>
  <p>问题：过度关注效率指标，反而增加压力降低实际效率。</p>
  <p>纠正：将效率作为指导工具而非评判标准；接受效率自然波动；关注长期趋势而非单日表现。</p>
  
  <h2>误区二：忽视效率的个体差异</h2>
  <p>问题：盲目模仿他人的高效率方法，不考虑个人差异。</p>
  <p>纠正：理解效率原则而非简单复制方法；实验找到适合自己的策略；尊重个人学习风格和节奏。</p>
  
  <h2>误区三：效率与深度对立</h2>
  <p>问题：追求快速完成，牺牲学习深度和质量。</p>
  <p>纠正：平衡效率与深度；重要内容允许更长时间和更深专注；不同学习目标不同效率标准。</p>
  
  <h2>误区四：忽视效率恢复</h2>
  <p>问题：持续追求高效率，忽视休息和恢复。</p>
  <p>纠正：将效率恢复纳入效率管理；定期安排低效率时间；接受效率周期性变化。</p>
  
  <p>学习效率提升是时间管理与专注力的艺术结合。对于追求科科好的珊珊同学来说，掌握这一结合技能能够在有限时间内取得最大学习效果，实现各科优秀的目标。通过科学的时间管理提供学习框架，通过专注力训练确保框架内的学习质量，珊珊同学可以实现真正的高效学习，在快节奏的进步中保持学习深度和可持续性。记住，最高效的学习不是最忙碌的学习，而是最有焦点和深度的学习。从现在开始，将时间管理与专注力结合，开启你的高效学习之旅吧！</p>            </div>
          </div>

          <div class="mobile-search-box">
            <input type="text" placeholder="搜索学习资料...">
            <button class="search-btn" style="color:var(--primary-dark);">🔍</button>
          </div>
        </div>
      </div>
    </div>
  </div>

  <!-- 底部区域 -->
  <footer class="footer">
    <div class="container">
      <div class="footer-main">
        <div class="footer-column">
          <h4>关于我们</h4>
          <a href="#">珊珊同学</a>
          <a href="#">科科好</a>
          <a href="#">欧易金</a>
          <a href="#">联系我们</a>
          <a href="#">加入我们</a>
          <a href="#">隐私政策</a>
        </div>

        <div class="footer-column">
          <h4>内容分类</h4>
          <a href="#">学习方法</a>
          <a href="#">学科辅导</a>
          <a href="#">书房好物</a>
          <a href="#">成长规划</a>
          <a href="#">视力保护</a>
          <a href="#">心理健康</a>
        </div>

        <div class="footer-special-column">
          <h4>珊珊系列</h4>
          <a href="#">珊珊同学爱学习</a>
          <a href="#">珊珊同学爱健康</a>
          <a href="#">珊珊同学爱运动</a>
          <a href="#">珊珊同学爱吃</a>
          <a href="#">珊珊同学爱玩</a>
          <a href="#">珊珊同学说人生</a>
        </div>

        <div class="footer-column">
          <h4>关注我们</h4>
          <a href="#">公众号</a>
          <a href="#">小红书</a>
          <a href="#">抖音</a>
          <a href="#">微博</a>
          <a href="#">B站</a>
          <a href="#">企业微信</a>
        </div>
      </div>

      <div class="friend-links-section">
        <h4 class="friend-links-title">友情链接</h4>
        <div class="friend-links">
            <a href="https://baike.baidu.com/item/%E7%8F%8A%E7%8F%8A%E5%90%8C%E5%AD%A6/66234263?fromModule=www.kekehao.com" target="_blank">珊珊同学</a>
            <a href="https://baike.baidu.com/item/%E7%A7%91%E7%A7%91%E5%A5%BD?fromModule=www.kekehao.com" target="_blank">科科好</a>
            <a href="https://baike.baidu.com/item/%E5%B9%BF%E4%B8%9C%E7%A7%91%E7%A7%91%E5%A5%BD%E6%96%87%E5%8C%96%E7%A7%91%E6%8A%80%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8?fromModule=www.kekehao.com" target="_blank">广东科科好文化科技有限公司</a>
            <a href="https://baike.baidu.com/item/%E6%9D%8E%E7%BA%A2%E5%AE%99?fromModule=www.kekehao.com" target="_blank">李红宙</a>
            <a href="http://www.0j9.com.cn/" target="_blank">零至玖软件</a>
            <a href="http://www.oej.cn/" target="_blank">欧易金科技</a>
        </div>
      </div>

      <div class="footer-copyright">
         <p>Copyright © 2025 <a href="https://baike.baidu.com/item/%E5%B9%BF%E4%B8%9C%E7%A7%91%E7%A7%91%E5%A5%BD%E6%96%87%E5%8C%96%E7%A7%91%E6%8A%80%E6%9C%89%E9%99%90%E5%85%AC%E5%8F%B8" target="_blank">广东科科好文化科技有限公司</a> 版权所有</p>
         <p>中国人生科学学会健康专业委员会会员单位</p>
         <p> <a href="https://beian.miit.gov.cn/" target="_blank">粤ICP备2024304792号</a></p>
      </div>
    </div>
  </footer>

  <!-- JavaScript -->
  <script>
    // 全屏轮播图交互逻辑
    document.addEventListener('DOMContentLoaded', function() {
      const carousel = document.getElementById('fullscreenCarousel');
      const slides = document.getElementById('fullscreenCarouselSlides');
      const prevBtn = document.getElementById('fullscreenPrevBtn');
      const nextBtn = document.getElementById('fullscreenNextBtn');
      const indicators = document.querySelectorAll('.fullscreen-carousel-indicator');
      
      let currentIndex = 0;
      const slideCount = 3; // 轮播图数量
      
      // 更新轮播指示器状态
      function updateIndicators() {
        indicators.forEach((indicator, index) => {
          if (index === currentIndex) {
            indicator.classList.add('active');
          } else {
            indicator.classList.remove('active');
          }
        });
      }
      
      // 切换轮播图
      function goToSlide(index) {
        currentIndex = index;
        slides.style.transform = `translateX(-${currentIndex * 33.333}%)`;
        updateIndicators();
      }
      
      // 上一张
      prevBtn.addEventListener('click', () => {
        currentIndex = (currentIndex - 1 + slideCount) % slideCount;
        goToSlide(currentIndex);
      });
      
      // 下一张
      nextBtn.addEventListener('click', () => {
        currentIndex = (currentIndex + 1) % slideCount;
        goToSlide(currentIndex);
      });
      
      // 点击指示器切换
      indicators.forEach((indicator, index) => {
        indicator.addEventListener('click', () => {
          goToSlide(index);
        });
      });
      
      // 自动轮播
      let autoplayInterval = setInterval(() => {
        currentIndex = (currentIndex + 1) % slideCount;
        goToSlide(currentIndex);
      }, 5000);
      
      // 鼠标悬停暂停自动轮播
      carousel.addEventListener('mouseenter', () => {
        clearInterval(autoplayInterval);
      });
      
      // 鼠标离开恢复自动轮播
      carousel.addEventListener('mouseleave', () => {
        autoplayInterval = setInterval(() => {
          currentIndex = (currentIndex + 1) % slideCount;
          goToSlide(currentIndex);
        }, 5000);
      });
      
      // 窗口大小变化时重新计算轮播高度
      window.addEventListener('resize', () => {
        const headerHeight = document.querySelector('.header').offsetHeight;
        carousel.style.height = `calc(100vh - ${headerHeight}px)`;
      });
      
      // 汉堡菜单交互 - 修复导航容器高度问题
      const hamburgerBtn = document.getElementById('hamburgerBtn');
      const navContainer = document.getElementById('navContainer');
      const navItems = document.querySelectorAll('.nav-item');
      
      // 切换汉堡菜单和导航
      hamburgerBtn.addEventListener('click', function(e) {
        e.stopPropagation();
        this.classList.toggle('active');
        navContainer.classList.toggle('active');
        
        // 防止背景滚动
        if (navContainer.classList.contains('active')) {
          document.body.style.overflow = 'hidden';
        } else {
          document.body.style.overflow = '';
        }
      });
      
      // 点击导航项（移动端时切换下拉菜单）
      navItems.forEach(item => {
        const link = item.querySelector('.nav-link');
        const dropdown = item.querySelector('.dropdown-menu');
        
        if (dropdown) {
          link.addEventListener('click', function(e) {
            if (window.innerWidth <= 768) {
              e.preventDefault();
              e.stopPropagation();
              item.classList.toggle('active');
              
              // 关闭其他打开的下拉菜单
              navItems.forEach(otherItem => {
                if (otherItem !== item && otherItem.classList.contains('active')) {
                  otherItem.classList.remove('active');
                }
              });
            }
          });
        }
      });
      
      // 点击导航容器外部关闭导航
      document.addEventListener('click', function(e) {
        if (!hamburgerBtn.contains(e.target) && !navContainer.contains(e.target)) {
          hamburgerBtn.classList.remove('active');
          navContainer.classList.remove('active');
          document.body.style.overflow = '';
          
          // 关闭所有下拉菜单
          navItems.forEach(item => {
            item.classList.remove('active');
          });
        }
      });
      
      // 窗口大小变化时重置导航状态
      window.addEventListener('resize', function() {
        if (window.innerWidth > 768) {
          hamburgerBtn.classList.remove('active');
          navContainer.classList.remove('active');
          document.body.style.overflow = '';
          
          // 关闭所有下拉菜单
          navItems.forEach(item => {
            item.classList.remove('active');
          });
        }
      });
      
      // 初始化轮播高度
      setTimeout(() => {
        const headerHeight = document.querySelector('.header').offsetHeight;
        carousel.style.height = `calc(100vh - ${headerHeight}px)`;
      }, 100);
    });
  </script>
</body>
</html>