<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="renderer" content="webkit">
  <title>科科好品牌官网 - 熬夜备考脸垮了？珊珊同学宿舍急救3分钟美颜法，快速恢复好状态！ - 珊珊同学® 爱美</title>
  <meta name="Keywords" content="科科好,">
  <meta name="description" content="珊珊同学贴心分享熬夜备考后的急救美颜法！3分钟快速消肿、唤醒肌肤、光彩急救，让你迅速恢复好状态。文章还揭秘让整体气质瞬间挺拔的“秘密武器”——欧易金内增高鞋，科学增高不累脚，头层牛皮材质亲肤舒适，是学生党保持全天精致的学习伴侣。立即查看详情，开启你的高效美颜日程！" />
  
  <style>
    /* ====================================================================
       第一部分：颜色风格设置系统
       功能：定义网站整体色彩系统，便于统一管理和维护
       ==================================================================== */
    :root {
      /* 主色调系统 - 青绿色系 */
      --primary-color: #81d8d0;      /* 主色调-青绿色 */
      --primary-dark: #65c4bc;       /* 主色调加深 */
      --primary-light: #e6f8f7;      /* 主色调减淡 */
      --primary-bg: #f0fcfb;         /* 主背景色 */
      
      /* 文字颜色系统 */
      --text-main: #4a4a4a;          /* 主要文字颜色 */
      --text-secondary: #666666;     /* 次要文字颜色 */
      --text-tertiary: #888888;      /* 三级文字颜色 */
      --text-black: #000000;         /* 黑色文字 */
      --text-white: #ffffff;         /* 白色文字 */
      
      /* 功能颜色系统 */
      --white: #ffffff;              /* 纯白色 */
      --gray-light: #fafafa;         /* 浅灰色背景 */
      --footer-bg: #f0fcfb;          /* 底部背景色 */
      --footer-text: #333333;        /* 底部文字颜色 */
      --footer-hover: #65c4bc;       /* 底部链接悬停色 */
      --friend-link-bg: #e6f8f7;     /* 友链背景色 */
      --logo-accent: #ff6b8b;        /* LOGO强调色（粉色） */
      --logo-shadow: rgba(255, 107, 139, 0.2); /* LOGO阴影色 */
      --title-line-color: #f2c41e;   /* 标题下划线颜色（黄色强调色） */
      --sidebar-border-color: #81d8d0; /* 侧边栏边框色 */
      --logo-text-color: #f8f9fa;    /* LOGO文字颜色 */
      
      /* 胶囊按钮配色系统 */
      --capsule-default-bg: #81d8d0;    /* 默认填充色 */
      --capsule-default-border: #81d8d0;/* 默认边框色 */
      --capsule-default-text: #ffffff;  /* 默认文字颜色 */
      --capsule-hover-bg: #f2c41e;      /* 悬停填充色 */
      --capsule-hover-border: #f2c41e;  /* 悬停边框色 */
      --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;
    }

    /* 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(129, 216, 208, 0.15);
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .link-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 12px rgba(129, 216, 208, 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);
    }

    .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;
    }

    .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-beauty {
      font-size: 1.2rem;
      background: var(--logo-accent);
      padding: 5px 10px;
      border-radius: 15px;
      box-shadow: 0 2px 6px var(--logo-shadow);
    }

    /* 3.4 导航菜单模块 */
    .nav { 
      display: flex; 
      list-style: none; 
      gap: 0;
      position: relative;
      flex: 1;
      justify-content: center;
      margin: 0 15px;
    }

    .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: 200px;
      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;
    }

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

    /* 3.5 导航右侧功能区 */
    .header-right {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-shrink: 0;
    }

    /* 搜索框模块 */
    .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.6 全屏轮播图模块 */
    .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(129, 216, 208, 0.4) 0%, 
        rgba(101, 196, 188, 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.7 专题卡片模块 */
    .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.8 胶囊链接模块 */
    .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(242, 196, 30, 0.35);
    }

    /* 3.9 侧边栏小部件模块 */
    .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.10 文章列表模块 */
    .article-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 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(129, 216, 208, 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.11 文章详情模块 */
    .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;
    }

    .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-meta {
      text-align: center;
      font-size: 0.875rem;
      color: var(--text-tertiary);
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--primary-light);
    }

    .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.12 底部模块 */
    .footer {
      background: var(--footer-bg);
      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(--primary-dark);
      margin-bottom: 8px;
      padding-bottom: 5px;
      border-bottom: 1px solid var(--primary-light);
    }

    .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(--primary-dark);
      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-tertiary);
      font-size: 0.8rem;
    }

    /* ====================================================================
       第四部分：响应式适配
       功能：兼容所有设备屏幕，包括平板和手机
       ==================================================================== */
    
    /* 4.1 平板设备 (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;
        order: 1;
        display: flex;
        flex-direction: column;
      }

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

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

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

      .sidebar {
        width: 100% !important;
        order: 3;
        margin-top: 10px !important;
        margin-bottom: 5px !important;
        flex-direction: row;
        flex-wrap: wrap;
      }

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

      .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; }

      .article-list {
        grid-template-columns: 1fr;
        order: 1;
      }

      /* 底部模块在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;
      }

      .nav {
        width: 100%;
        flex-wrap: wrap;
        margin-top: 10px;
        order: 3;
        justify-content: center;
      }

      .nav-item {
        flex: 1;
        text-align: center;
        padding: 8px 5px;
      }

      .dropdown-menu {
        min-width: 100%;
        left: 0;
      }

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

      /* 移动端头部布局调整 */
      .header .container {
        justify-content: space-between;
      }
      
      .header-right {
        gap: 10px;
      }
    }

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

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

      .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;
      }

      /* 文章列表在小屏幕时改为1列 */
      .article-list {
        grid-template-columns: 1fr;
      }

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

      .nav-item {
        flex: 100%;
        text-align: left;
      }

      /* 小屏胶囊链接适配 */
      .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.3 手机设备 (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;
      }
    }

    /* 4.4 超小屏幕设备 (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-beauty {
        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: 0.9rem;
        padding: 6px 10px;
      }

      .dropdown-item a {
        font-size: 0.9rem;
        padding: 6px 15px;
      }
    }

    /* 4.5 最小屏幕设备 (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-beauty {
        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 {
        flex-direction: column;
        gap: 5px;
      }

      .nav-item {
        padding: 5px;
      }

      .nav-item > a {
        font-size: 0.85rem;
        justify-content: center;
      }

      .dropdown-menu {
        min-width: 150px;
      }

      /* 友链调整 */
      .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.6 高清屏优化 (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.7 打印样式优化 */
    @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;
      }
    }
  </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-beauty">爱美</span>
      </div>
      
      <nav>
        <ul class="nav">
          <li class="nav-item home">
            <a href="/?c=sstxaimei" >首页</a>
          </li>
          <li class="nav-item">
            <a href="#">心情美</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>
            </ul>
          </li>
          <li class="nav-item">
            <a href="#">自然美</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>
            </ul>
          </li>
          <li class="nav-item">
            <a href="#">外在美</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>
            </ul>
          </li>
          <li class="nav-item">
            <a href="#">外在美</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>
            </ul>
          </li>
        </ul>
      </nav>
      
      <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://picsum.photos/1920/1080?fashion=1')">
        <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://picsum.photos/1920/1080?fashion=2')">
        <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://picsum.photos/1920/1080?fashion=3')">
        <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="http://www.kekehao.com/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">熬夜备考脸垮了？珊珊同学宿舍急救3分钟美颜法，快速恢复好状态！</h1>
            <div class="article-meta">
              <span>作者：<a href="#" style="color:var(--primary-dark);">珊珊同学</a></span>
              <span>发布时间：2026-01-04</span>
              <span>来源：<a href="#" style="color:var(--primary-dark);">科科好</a></span>
            </div>
            <div class="article-content">
                  
    <p>嗨，我是珊珊同学！期末考试周又要来了，是不是很多同学都和我一样，为了复习熬夜到凌晨？第二天早上照镜子，黑眼圈、浮肿脸、暗沉肌肤...简直不忍直视！别担心，今天我就分享我的宿舍急救3分钟美颜法，让你快速恢复好状态，自信迎接每一天！</p>
    
    <h2>第一部分：3分钟急救美颜步骤</h2>
    
    <h3>第一步：1分钟快速消肿（醒来立即做）</h3>
    <p>熬夜后最容易水肿，特别是眼睛。我的方法是：</p>
    <ul>
        <li>将两个不锈钢勺子放冰箱冷冻层（前一晚准备）</li>
        <li>早上醒来，取出冰勺子敷在眼睛上1分钟</li>
        <li>同时用食指关节从鼻翼向太阳穴轻轻按摩脸部轮廓线</li>
    </ul>
    
    <h3>第二步：1分钟唤醒肌肤</h3>
    <p>水肿消除后，快速唤醒肌肤：</p>
    <ul>
        <li>使用含有咖啡因或绿茶成分的爽肤水浸湿化妆棉</li>
        <li>轻轻擦拭全脸，重点照顾T区和下巴</li>
        <li>拍打至吸收，促进血液循环</li>
    </ul>
    
    <h3>第三步：1分钟光彩急救</h3>
    <p>最后一步，让肌肤焕发光彩：</p>
    <ul>
        <li>使用带微闪的保湿妆前乳或CC霜</li>
        <li>点涂在额头、脸颊、鼻梁和下巴</li>
        <li>用美妆蛋快速拍开，重点提亮眼下三角区</li>
    </ul>
    
    <div class="tips">
        <strong>珊珊小贴士：</strong>急救美颜的关键是"快"和"准"！准备一个宿舍美颜急救包，把所有需要的产品放在一起，这样早上就不会手忙脚乱啦！
    </div>
    
    <h2>第二部分：从内到外的状态提升</h2>
    
    <p>除了面部急救，<span class="highlight">整体的挺拔感和精气神</span>同样重要！这就是为什么我特别注重穿搭中的"增高魔法"——一双好的鞋子能让整个人看起来精神百倍！</p>
    
    <p>最近让我爱不释手的就是这双欧易金内增高真皮女鞋。熬夜复习后脚步沉重，但穿上它却能让我<span class="highlight">瞬间挺拔起来</span>，走起路来都带风！</p>
    
    <img src="http://www.kekehao.com/static/goods/oej/001/003.png" alt="欧易金内增高真皮女鞋" class="product-img">
    
    <h3>为什么这双鞋是我的"急救法宝"？</h3>
    <ul>
        <li><strong>科学增高不累脚：</strong>7cm跟高+2.5cm内增高，实际增高9.5cm，但5.5cm防水台设计让行走坡度只有4cm，走再多路也不累！</li>
        <li><strong>头层牛皮超舒适：</strong>熬夜后皮肤敏感，但头层牛皮材质柔软亲肤，完全不会磨脚</li>
        <li><strong>聚氨酯橡胶复合鞋底：</strong>轻盈有弹性，即使从宿舍赶到教学楼，脚步依然轻快</li>
        <li><strong>双色选择超百搭：</strong>黑色款搭配深色系衣服，棕色款搭配浅色系，急救早起随便抓件衣服都能搭！</li>
    </ul>
    
    <img src="http://www.kekehao.com/static/goods/oej/001/001.png" alt="欧易金内增高真皮女鞋" class="product-img">
    
    <div class="tips">
        <strong>选码指南：</strong>记得按照官方尺码表准确测量脚长哦！标准脚型选标准码，大脚趾外翻选大一码。我平时穿36码，这双鞋的36码刚刚好，包裹性超棒！
    </div>
    
    <h2>第三部分：珊珊的熬夜备考生存指南</h2>
    
    <p>作为资深"夜猫子备考族"，我还总结了几条生存法则：</p>
    
    <h3>1. 分段式熬夜法</h3>
    <p>不要连续熬夜，采用"学2小时-睡30分钟"的循环，效率更高！</p>
    
    <h3>2. 健康夜宵选择</h3>
    <p>准备一些坚果、酸奶、水果，避免油腻和过甜的食物</p>
    
    <h3>3. 第二天补救策略</h3>
    <p>除了面部急救，穿上有增高效果的鞋子能让整个人的仪态更好，看起来更精神！这就是我的小秘密～</p>
    
    <div class="cta-box">
        <h3>想要和珊珊同学一样，熬夜也能美美哒？</h3>
        <p>一双舒适的增高鞋，能让你在疲惫的备考期依然保持挺拔自信！</p>
        <a href="https://detail.tmall.com/item.htm?id=847903606864" class="cta-button" target="_blank">立即查看欧易金内增高鞋详情</a>
        <p>或扫码直接购买：</p>
        <img src="http://www.kekehao.com/static/goods/oej/001/847903606864.png" alt="欧易金内增高鞋购买二维码" class="qrcode">
    </div>
    
    <div class="signature">
        <p>—— 珊珊同学爱美专栏 · 你的校园变美指南 ——</p>
        <p>下期预告：校服如何穿出精致感？珊珊同学早自习前3个小心机！</p>
    </div>
            </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>
        </div>

        <div class="footer-column">
          <h4>内容导航</h4>
          <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>
        </div>

        <div class="footer-column">
          <h4>关注我们</h4>
          <a href="#">小红书</a>
          <a href="#">抖音</a>
          <a href="#">微博</a>
          <a href="#">B站</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> <a href="https://beian.miit.gov.cn/" target="_blank">粤ICP备2024304792号</a></p>
      </div>
    </div>
  </footer>

  <!-- 轮播图交互脚本 -->
  <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)`;
      });
    });
  </script>
</body>
</html>