﻿<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>广东科科好文化科技有限公司 - 科科好品牌官网 - kekehao专注于学生用品，为你成绩科科好保驾护航</title>
  <meta name="Keywords" content="科科好,kekehao,科科好跳绳,台灯,学生书包,轮滑鞋,科科好礼品笔,太阳帽,保温杯,科科好水笔，科科好毛笔,科科好檀木笔,体育用品,学生用品,户外用品,学习用品,益智玩具,科科好啤酒,科科好滑板车,广东科科好,广东科科好文化科技有限公司">
  <meta name="description" content="科科好品牌致力于为你提供优质的学生用品。kekehao品牌系列产品包括学生台灯、学生书包、轮滑鞋、跳绳、太阳帽、保温杯等学习用品、体育用品、户外用品、益智玩具、生活用品。全面为学生朋友成绩科科好驾护航！" />
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #1a73e8;
            --secondary-color: #4285f4;
            --accent-color: #f9ab00;
            --eco-color: #34a853;
            --light-blue: #e8f0fe;
            --text-dark: #202124;
            --text-medium: #5f6368;
            --text-light: #80868b;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --card-shadow: 0 4px 8px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
            --border-radius: 16px;
            --announcement-bg: #fff3e0;
        }
        
        body {
            font-family: 'Noto Sans SC', 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--bg-light);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }
        
        /* 头部样式 */
        header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .logo-container {
            display: flex;
            flex-direction: column;
            min-width: 180px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .logo i {
            margin-right: 12px;
            font-size: 2.2rem;
            color: var(--accent-color);
        }
        
        .slogan {
            font-size: 0.9rem;
            margin-top: 5px;
            color: #FFD700;
            font-weight: bold;
            font-style: italic;
            white-space: nowrap;
            text-shadow: 0 0 2px rgba(0,0,0,0.3);
        }
        
        @keyframes floatBanner {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        
        /* 导航栏样式 */
        .desktop-nav ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .desktop-nav ul li {
            position: relative;
            margin: 0 8px;
        }
        
        .desktop-nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            padding: 12px 15px;
            transition: var(--transition);
            display: block;
            white-space: nowrap;
            border-radius: 30px;
            display: flex;
            align-items: center;
        }
        
        .desktop-nav ul li a:hover {
            background: rgba(255,255,255,0.15);
        }
        
        .desktop-nav ul li a i {
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        /* 共创菜单图标颜色 */
        .desktop-nav ul li:nth-child(5) a i {
            color: var(--eco-color);
        }
        
        /* 我的菜单图标颜色 */
        .desktop-nav ul li:nth-child(7) a i {
            color: #fbbc05;
        }
        
        /* 下拉菜单样式 */
        .dropdown-content {
            display: none;
            position: absolute;
            background: var(--white);
            min-width: 220px;
            box-shadow: var(--card-shadow);
            border-radius: 12px;
            top: 100%;
            left: 0;
            z-index: 10;
            overflow: hidden;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dropdown-content a {
            color: var(--text-dark) !important;
            padding: 12px 20px;
            display: block;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition);
            font-size: 0.95rem;
        }
        
        .dropdown-content a:hover {
            background-color: var(--light-blue);
            color: var(--primary-color) !important;
            padding-left: 25px;
        }
        
        .desktop-nav ul li:hover .dropdown-content {
            display: block;
        }
        
        /* 移动端导航按钮 */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .mobile-menu-btn:hover {
            background: rgba(255,255,255,0.15);
        }
        
        /* 轮播图样式 - 全屏优化 */
        .carousel {
            width: 100%;
            height: 75vh;
            min-height: 500px;
            max-height: 700px;
            position: relative;
            overflow: hidden;
            border-radius: 0;
            margin: 0 auto;
            max-width: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .carousel-slides {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .carousel-slide {
            width: 25%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .slide-content {
            max-width: 800px;
            padding: 30px;
            color: var(--white);
            text-align: center;
            z-index: 2;
        }
        
        .slide-content h3 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .slide-content p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        
        .slide-btn {
            display: inline-block;
            background: var(--accent-color);
            color: var(--text-dark);
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .slide-btn:hover {
            background: transparent;
            border-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }
        
        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 5;
        }
        
        .carousel-indicator {
            width: 14px;
            height: 14px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            margin: 0 7px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .carousel-indicator.active {
            background: var(--white);
            transform: scale(1.3);
        }
        
        /* 优化通知栏样式 */
        .announcement-bar {
            background-color: var(--announcement-bg);
            padding: 12px 5% 12px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #ffd8a6;
            transition: height 0.3s ease;
        }
        
        .announcement-container {
            position: relative;
            height: 40px;
            overflow: hidden;
        }
        
        .announcement-list {
            position: absolute;
            width: 100%;
            transition: transform 0.5s ease;
        }
        
        .announcement-item {
            padding: 8px 0;
            display: flex;
            align-items: center;
            height: 40px;
            font-size: 1rem;
            color: #e65100;
            font-weight: 500;
        }
        
        .announcement-item i {
            margin-right: 10px;
            color: #ff9800;
            font-size: 1.2rem;
        }
        
        .close-announcement {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #e65100;
            cursor: pointer;
            font-size: 1.2rem;
            z-index: 10;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .close-announcement:hover {
            opacity: 1;
        }
        
        /* 公司简介样式 */
        .about-section {
            background: var(--white);
            padding: 50px 5%;
            margin: 20px auto;
            border-radius: var(--border-radius);
            max-width: 100%;
            width: 100%;
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
        }
        
        .about-container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: flex-start; /* 修改为顶部对齐 */
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .section-subtitle {
            display: inline-block;
            background: var(--light-blue);
            color: var(--primary-color);
            padding: 6px 20px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .about-text h2 {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            color: var(--text-dark);
            margin-bottom: 25px;
            position: relative;
            line-height: 1.3;
        }
        
        .about-text p {
            color: var(--text-medium);
            font-size: clamp(1rem, 1.7vw, 1.1rem);
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        /* 新增：右侧区域容器 */
        .about-right-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        /* 修改：将image-stats移到右侧 */
        .image-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 0; /* 移除原来的底部边距 */
            justify-content: center;
            width: 100%;
        }

        .image-stat-item {
            text-align: center;
            padding: 15px;
            background: var(--light-blue); /* 浅蓝色背景 */
            border-radius: 12px;
            min-width: 120px;
            transition: var(--transition);
            flex: 1;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }

        .image-stat-item:hover {
            background: rgba(232, 240, 254, 0.8);
            transform: translateY(-5px);
        }

        .image-stat-item h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 5px;
            font-weight: 700;
        }

        .image-stat-item p {
            color: var(--text-medium);
            font-size: 1rem;
            margin: 0;
        }
        
        .about-image {
            height: 450px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            position: relative;
        }
        
        .about-image-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-color), #34a853);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .about-image-content i {
            font-size: 4.5rem;
            margin-bottom: 20px;
            color: rgba(255,255,255,0.9);
        }
        
        .about-image-content h3 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .about-stats {
            display: flex;
            margin-top: 40px;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: flex-end; 
        }
        
        .stat-item {
            text-align: center;
            padding: 25px;
            border-radius: var(--border-radius);
            background: var(--light-blue);
            flex: 1;
            min-width: 180px;
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow);
        }
        
        .stat-item h3 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .stat-item p {
            color: var(--text-medium);
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* 主要内容区样式 */
        .container {
            width: 100%;
            padding: 30px 5%;
            flex: 1;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            max-width: 100%;
            margin: 0 auto 60px;
            padding: 0 5%;
        }
        
        .section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            color: var(--text-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-desc {
            color: var(--text-medium);
            font-size: clamp(1rem, 1.7vw, 1.15rem);
            line-height: 1.8;
            max-width: 100%;
            padding: 0 5%;
        }
        
        /* 新闻列表样式 */
        .news-section {
            margin: 30px auto;
            max-width: 100%;
            width: 100%;
            padding: 0 5%;
        }
        
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
            gap: 35px;
        }
        
        .news-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .news-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .news-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-color);
            color: var(--text-dark);
            padding: 6px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .news-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .news-title {
            font-size: clamp(1.2rem, 2vw, 1.4rem);
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
            line-height: 1.4;
        }
        
        .news-date {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .news-date i {
            margin-right: 8px;
            color: var(--primary-color);
        }
        
        .news-excerpt {
            color: var(--text-medium);
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            flex: 1;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .read-more {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            width: fit-content;
        }
        
        .read-more:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .read-more i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .view-more {
            display: block;
            text-align: center;
            margin-top: 60px;
            padding: 16px 40px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            max-width: 220px;
            margin-left: auto;
            margin-right: auto;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
            font-size: 1.1rem;
            border: 2px solid transparent;
        }
        
        .view-more:hover {
            background: transparent;
            color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(26, 115, 232, 0.2);
        }
        
        /* 产品展示区 */
        .products-section {
            background: linear-gradient(135deg, #f0f7ff, #e6f2ff);
            border-radius: var(--border-radius);
            padding: 30px 5%;
            margin: 20px 0;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
            max-width: 100%;
        }
        
        .products-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="90" fill="none" stroke="%231a73e8" stroke-width="2" stroke-opacity="0.1"/></svg>');
            opacity: 0.3;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
            gap: 35px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }
        
        .product-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .product-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-color);
            color: var(--text-dark);
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        }
        
        .product-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-title {
            font-size: clamp(1.2rem, 2vw, 1.3rem);
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--primary-color);
        }
        
        .product-price {
            font-size: clamp(1.3rem, 2.2vw, 1.5rem);
            color: #e53935;
            font-weight: 700;
            margin: 15px 0;
            display: flex;
            align-items: center;
        }
        
        .product-price s {
            color: var(--text-light);
            font-size: 1rem;
            margin-right: 12px;
        }
        
        .product-desc {
            color: var(--text-medium);
            font-size: clamp(0.95rem, 1.6vw, 1rem);
            line-height: 1.7;
            flex: 1;
            margin-bottom: 20px;
        }
        
        .product-btn {
            display: block;
            text-align: center;
            background: var(--primary-color);
            color: white;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            margin-top: 15px;
            transition: var(--transition);
            font-weight: 600;
            font-size: 1.05rem;
        }
        
        .product-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
        }
        
        /* 精选文章模块 - 全屏自适应 */
        .article-section {
            margin: 30px 0;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            overflow: hidden;
            width: 100%;
            max-width: 100%;
            padding: 0;
        }
        
        .article-header {
            text-align: center;
            padding: 40px 5% 30px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
        }
        
        .article-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 25px;
            line-height: 1.4;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .article-meta {
            color: rgba(255,255,255,0.9);
            font-size: clamp(1rem, 1.8vw, 1.15rem);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .article-content {
            padding: 50px 8%;
            font-size: clamp(1rem, 1.7vw, 1.1rem);
            color: var(--text-medium);
            line-height: 1.8;
            max-width: 1500px;
            margin: 0 auto;
            width: 100%;
        }
        
        .article-content p {
            margin-bottom: clamp(25px, 3vw, 35px);
            text-indent: 2em;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: clamp(30px, 4vw, 50px) auto;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .article-content h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: var(--primary-color);
            margin: clamp(35px, 5vw, 60px) 0 clamp(20px, 3vw, 30px);
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-blue);
            font-weight: 700;
        }
        
        .article-content ul {
            margin: 30px 0;
            padding-left: 40px;
        }
        
        .article-content li {
            margin-bottom: 15px;
            position: relative;
        }
        
        .article-content li::before {
            content: "•";
            color: var(--accent-color);
            font-size: 1.5rem;
            position: absolute;
            left: -25px;
            top: -5px;
        }
        
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #eee;
            gap: 25px;
        }
        
        .nav-btn {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-medium);
            padding: 18px 30px;
            border-radius: 12px;
            transition: var(--transition);
            max-width: 48%;
            background: #f9f9f9;
            flex: 1;
        }
        
        .nav-btn:hover {
            background: var(--light-blue);
            color: var(--primary-color);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .nav-btn i {
            margin: 0 15px;
            font-size: 1.4rem;
        }
        
        .prev-article i {
            margin-right: 15px;
        }
        
        .next-article i {
            margin-left: 15px;
        }
        
        .nav-btn div {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        /* 联系方式区域 */
        .contact-section {
            background: linear-gradient(135deg, #2c3e50, #1a2a3a);
            color: var(--white);
            padding: 60px 5%;
            width: 100%;
            border-radius: var(--border-radius);
            margin: 50px 0;
            max-width: 100%;
        }
        
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }
        
        .contact-title {
            color: var(--white);
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .contact-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .contact-desc {
            color: rgba(255,255,255,0.85);
            font-size: clamp(1rem, 1.7vw, 1.15rem);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .contact-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--border-radius);
            padding: 35px 25px;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            margin: 0 auto;
            width: 100%;
            max-width: 320px;
        }
        
        .contact-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }
        
        .contact-icon {
            font-size: clamp(2.5rem, 5vw, 3.2rem);
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .contact-item h3 {
            font-size: clamp(1.3rem, 2.5vw, 1.6rem);
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .qr-code {
            width: 160px;
            height: 160px;
            background: var(--white);
            border-radius: 12px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            font-size: 4rem;
        }
        
        .contact-item p {
            color: #ddd;
            font-size: clamp(0.95rem, 1.7vw, 1.05rem);
            line-height: 1.7;
        }
        
        /* 底部样式 */
        footer {
            background: linear-gradient(135deg, #111, #000);
            color: #ddd;
            padding: 60px 5% 30px;
            width: 100%;
            margin-top: auto;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
            gap: 30px;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .footer-column h3 {
            color: var(--white);
            font-size: clamp(1.1rem, 1.8vw, 1.3rem);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
            position: relative;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
			
        }
        
        .footer-links li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .footer-links i {
            margin-right: 10px;
            color: var(--accent-color);
            width: 18px;
            font-size: 0.85rem;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
            font-size: clamp(0.85rem, 1.4vw, 0.9rem);
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }
        
        /* 新增：法律链接 */
        .legal-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px 10px;
            margin-top: 20px;
            border-bottom: 1px solid #333;
        }
        
        .legal-links a {
            color: #bbb;
            text-decoration: none;
            font-size: clamp(0.85rem, 1.4vw, 0.95rem);
            transition: color 0.3s;
            position: relative;
            padding: 0 10px;
        }
        
        .legal-links a:not(:last-child):after {
            content: "|";
            position: absolute;
            right: -10px;
            color: #666;
        }
        
        .legal-links a:hover {
            color: var(--accent-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 10px;
            margin-top: 20px;
            color: #888;
            font-size: clamp(0.85rem, 1.4vw, 0.95rem);
            max-width: 100%;
            margin: 0 auto;
            line-height: 1.8;
			
            
        }
        
        .copyright a {
            color: #aaa !important;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .copyright a:hover {
            color: var(--accent-color) !important;
            text-decoration: underline;
        }
        
        /* 移动端导航 */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 85%;
            height: 100vh;
            background: var(--white);
            transition: left 0.4s ease;
            z-index: 99;
            box-shadow: 3px 0 25px rgba(0,0,0,0.15);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav-header {
            padding: 20px;
            background: var(--primary-color);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-logo {
            font-size: 1.3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .mobile-logo i {
            margin-right: 8px;
            color: var(--accent-color);
        }
        
        .close-menu-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-nav ul {
            flex-direction: column;
            list-style: none;
            padding: 15px;
        }
        
        .mobile-nav ul li {
            margin: 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .mobile-nav ul li a {
            color: var(--text-dark);
            padding: 15px;
            display: block;
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.95rem;
        }
        
        .mobile-nav ul li a i:first-child {
            margin-right: 10px;
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        
        .mobile-nav ul li a i:last-child {
            transition: transform 0.3s;
            font-size: 0.9rem;
        }
        
        .dropdown-content-mobile {
            display: none;
            background: #f9f9f9;
            padding: 8px 0;
        }
        
        .dropdown-content-mobile a {
            padding: 12px 15px 12px 40px;
            display: block;
            color: var(--text-medium) !important;
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        
        .dropdown-content-mobile a:hover {
            background: #f1f1f1;
            color: var(--primary-color) !important;
            padding-left: 45px;
        }
        
        .mobile-nav ul li.active .dropdown-content-mobile {
            display: block;
        }
        
        .mobile-nav ul li.active a i:last-child {
            transform: rotate(180deg);
        }
        
        /* 合作伙伴模块样式 */
        .partners-section {
            background-color: var(--white);
            padding: 30px 5%;
            text-align: center;
            border-radius: var(--border-radius);
            margin: 20px auto 20px;
            max-width: 100%;
            box-shadow: var(--card-shadow);
        }
        
        .partners-title {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            color: var(--text-dark);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .partners-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .partner-item {
            width: 140px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 8px;
            padding: 10px;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .partner-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .partner-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        /* 友情链接模块样式 */
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 20px auto 0;
            padding: 0 15px;
            max-width: 100%;
        }
        
        .friend-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
            padding: 0 10px;
        }
        
        .friend-links a:not(:last-child)::after {
            content: "|";
            position: absolute;
            right: -10px;
            color: #666;
        }
        
        .friend-links a:hover {
            color: var(--accent-color);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .about-container {
                max-width: 100%;
            }
            
            .article-content {
                padding: 50px 5%;
            }
        }
        
        @media (max-width: 992px) {
            .news-list {
                grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr));
            }
            
            .about-container {
                flex-direction: column;
            }
            
            /* 平板设备：高度增加50px */
            .about-image {
                width: 100%;
                height: 550px; /* 原始500px + 50px */
            }
            
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-btn {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .logo-container {
                max-width: 70%;
            }
            
            .slogan {
                font-size: 0.8rem;
            }
            
            .carousel {
                height: 65vh;
                min-height: 400px;
            }
            
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .products-section {
                padding: 50px 20px;
            }
            
            .about-stats {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stat-item {
                min-width: calc(50% - 20px);
            }
            
            .article-header {
                padding: 40px 5% 30px;
            }
            
            .article-content {
                padding: 40px 5%;
            }
             .partners-grid {
                gap: 20px;
            }
            
            .partner-item {
                width: 120px;
                height: 70px;
            }
            
            .friend-links {
                gap: 10px;
            }
            
            .friend-links a {
                font-size: 0.85rem;
                padding: 0 8px;
            }
        }
        
        @media (max-width: 576px) {
            .image-stats {
                flex-direction: row; /* 始终横向排列 */
                gap: 10px;
            }
            
            .image-stat-item {
                width: auto;
                flex: 1;
            }       
            .carousel {
                height: 60vh;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .news-list {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            /* 手机设备：高度增加50px */
            .about-image {
                height: 470px; /* 原始420px + 50px */
            }
            
            .stat-item {
                min-width: 100%;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 15px;
            }
            .partners-grid {
                gap: 15px;
            }
            
            .partner-item {
                width: 100px;
                height: 60px;
            }
            
            .friend-links {
                gap: 8px;
                justify-content: flex-start;
            }
            
            .friend-links a {
                padding: 0 6px;
            }
            
            .legal-links {
                gap: 10px;
                padding: 15px 0;
            }
            
            .legal-links a {
                font-size: 0.8rem;
                padding: 0 5px;
            }
        }
        
        /* 新增：超宽屏幕适配 */
        @media (min-width: 1920px) {
            .header-container,
            .container,
            .footer-content,
            .about-container,
            .contact-container {
                max-width: 1800px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .carousel {
                max-height: 800px;
            }
            
            .about-section {
                max-width: 1800px;
            }
        }
        
        /* 新增：超小屏幕适配 */
        @media (max-width: 400px) {
            .header-container {
                padding: 15px 3%;
            }
            
            .logo-container {
                min-width: 150px;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .logo i {
                font-size: 1.8rem;
            }
            
            .slogan {
                font-size: 0.7rem;
            }
            
            .carousel {
                height: 55vh;
                min-height: 350px;
            }
            
            /* 超小屏幕设备：高度增加50px */
            .about-image {
                height: 400px; /* 原始350px + 50px */
            }
            
            .announcement-item {
                font-size: 0.9rem;
            }
        }
    </style>
</head>
<body>
    <!-- 头部导航 -->
    <header>
        <div class="header-container">
            
			<div class="logo-container">
				<img src="http://www.kekehao.com/static/logo/180X60B.png" width="180" height="60" alt="科科好logo" class="logo-img">
	
                    
                
		   </div>
		   
		   
            
            <!-- 桌面导航 -->
            <nav class="desktop-nav">
                <ul>
                    <li><a href="/"><i class="fas fa-home"></i> 首页</a></li>
                    <li>
                        <a href="//www.kekehao.com/html/gdkkh.html"><i class="fas fa-building"></i> 公司 <i class="fas fa-chevron-down"></i></a>
                        <div class="dropdown-content">
                            <a href="//www.kekehao.com/html/gdkkhgk.html">公司概况</a>
							<a href="//www.kekehao.com/html/gdkkhlc.html">发展历程</a>
							<a href="//www.kekehao.com/html/gdkkhjg.html">组织架构</a>
							<a href="//www.kekehao.com/html/gdkkhqywh.html">企业文化</a>
                        </div>
                    </li>
                    <li>
                        <a href="//www.kekehao.com/html/brand.html"><i class="fas fa-cubes"></i> 品牌 <i class="fas fa-chevron-down"></i></a>
                        <div class="dropdown-content">
                            <a href="//www.kekehao.com/html/brand.html#2">科科好品牌介绍</a>
							<a href="//www.kekehao.com/html/brandsstx.html">珊珊同学品牌介绍</a>
                            <a href="//www.kekehao.com/html/brand.html#3">使命与价值观</a>
                            <a href="//www.kekehao.com/html/brand.html#7">理念与文化</a>
                            <a href="//www.kekehao.com/html/brand.html#5">发展历程</a>
                            
                        </div>
                    </li>
                    <li>
                        <a href="#"><i class="fas fa-cubes"></i> 产品 <i class="fas fa-chevron-down"></i></a>
                        <div class="dropdown-content">
							<a href="//www.kekehao.com/html/ssrobot.html">智能机器人</a>
                            <a href="#">学习文具</a>
                            <a href="#">运动户外</a>
                            <a href="#">学生礼品</a>
                            <a href="#">益智玩具</a>
                            <a href="#">生活百科</a>
                            <a href="#">培训课程</a>
                        </div>
                    </li>
                    <li>
                        <a href="#"><i class="fas fa-bullhorn"></i> 新闻 <i class="fas fa-chevron-down"></i></a>
                        <div class="dropdown-content">
                            <a href="/news/">新闻公告</a>
                            <a href="#">活动资讯</a>
                            <a href="#">媒体报道</a>
                            <a href="#">行业动态</a>
                        </div>
                    </li>
                    <!-- 新增共创菜单 -->
                    <li>
                        <a href="#"><i class="fas fa-handshake"></i> 共创 <i class="fas fa-chevron-down"></i></a>
                        <div class="dropdown-content">
                            <a href="//www.kekehao.com/html/openst.html"><i class="fas fa-link"></i> 生态合作</a>
							<a href="//www.kekehao.com/html/openinfo.html"><i class="fas fa-laptop-code"></i> 开放平台</a>
							<a href="//www.kekehao.com/html/openfn.html"><i class="fas fa-rocket"></i> 赋能计划</a>
							<a href="//www.kekehao.com/html/openlink.html"><i class="fas fa-network-wired"></i> 生态链接</a>
							<a href="//www.kekehao.com/html/openlp.html"><i class="fas fa-compass"></i> 开放罗盘</a>
							<a href="//www.kekehao.com/html/openwin.html"><i class="fas fa-users"></i> 合作共赢</a>
                        </div>
                    </li>
                    <li>
                        <a href="#"><i class="fas fa-handshake"></i> 投资者 <i class="fas fa-chevron-down"></i></a>
                        <div class="dropdown-content">
                            <a href="//www.kekehao.com/html/kkhproject.html">项目介绍</a>
							<a href="//www.kekehao.com/html/kkhprojectjh.html">资金使用计划</a>
							<a href="//www.kekehao.com/html/kkhprojectyq.html">投资回报预期</a>
							<a href="//www.kekehao.com/html/kkhprojectlc.html">融资合作流程</a>
                            <a href="//www.kekehao.com/html/kkhprojectqa.html">投资者问答</a>
                        </div>
                    </li>
                    <!-- 修改：我的账户改为我的 -->
                    <li>
                        <a href="#"><i class="fas fa-user-circle"></i> 我的 <i class="fas fa-chevron-down"></i></a>
                        <div class="dropdown-content">
							<a href="/login.html"><i class="fas fa-user"></i>登录</a>
                            <a href="#"><i class="fas fa-user"></i> 个人中心</a>
                            <a href="#"><i class="fas fa-cog"></i> 账户设置</a>
                            <a href="#"><i class="fas fa-history"></i> 订单记录</a>
                            <a href="#"><i class="fas fa-heart"></i> 我的收藏</a>
                            <a href="/logout.php"><i class="fas fa-sign-out-alt"></i> 退出登录</a>
                        </div>
                    </li>
                </ul>
            </nav>
            
            <button class="mobile-menu-btn" id="mobileMenuBtn">
                <i class="fas fa-bars"></i>
            </button>
        </div>
    </header>

    <!-- 轮播图 -->
    <div class="carousel">
        <div class="carousel-slides">
            <div class="carousel-slide" style="background-image: url('http://www.kekehao.com/static/images/home/4.jpg');">
                <div class="slide-content">
                    <h3> </h3>
                    <p> </p>
                    
                </div>
            </div>
            <div class="carousel-slide" style="background-image: url('http://www.kekehao.com/static/images/home/3.jpg');">
                <div class="slide-content">
                    <h3> </h3>
                    <p> </p>
                    <a href="#" class="slide-btn">了解更多</a>
                </div>
            </div>
            <div class="carousel-slide" style="background-image: url('http://www.kekehao.com/static/images/home/1.jpg');">
                <div class="slide-content">
                    <h3> </h3>
                    <p> </p>
                    <a href="#" class="slide-btn">了解更多</a>
                </div>
            </div>
            <div class="carousel-slide" style="background-image: url('http://www.kekehao.com/static/images/home/2.jpg');">
                <div class="slide-content">
                    <h3> </h3>
                    <p> </p>
                    <a href="#" class="slide-btn">了解更多</a>
                </div>
            </div>
        </div>
        <div class="carousel-controls">
            <div class="carousel-indicator active"></div>
            <div class="carousel-indicator"></div>
            <div class="carousel-indicator"></div>
            <div class="carousel-indicator"></div>
        </div>
    </div>
    
    <!-- 优化后的通知栏 - 每行停留6秒 -->
    <div class="announcement-bar" id="announcementBar">
        <div class="announcement-container">
            <div class="announcement-list">
                <div class="announcement-item">
                    <i class="fas fa-bullhorn"></i>
                    <span>重要通知：系统将于每周六凌晨进行维护，届时服务可能受影响。</span>
                </div>
                <div class="announcement-item">
                    <i class="fas fa-gift"></i>
                    <span>科科好直播课程福利来袭,名师带你刷课！年卡超值享！</span>
                </div>
                <div class="announcement-item">
                    <i class="fas fa-book"></i>
                    <span>毕业季，科科好文创礼品精美钥匙扣毕业季送学生送考试祝福</span>
                </div>
            </div>
        </div>
        <button class="close-announcement" id="closeAnnouncement">
            <i class="fas fa-times"></i>
        </button>
    </div>
    
    <!-- 公司简介 -->
    <section class="about-section">
        <div class="about-container">
            <div class="about-text">
                <span class="section-subtitle">关于我们</span>
                <h2>科技创新引领学子成就未来</h2>
     <p>&nbsp;&nbsp;&nbsp;&nbsp;广东科科好文化科技有限公司是"珊珊同学"和"科科好"品牌的独家运营企业。公司秉承"让天下学子成绩科科好，生活百科科科好"的使命，倡导"产品即祝福"的核心理念。公司以优质产品为载体，传递对学生的美好祝福，并时刻通过产品激励他们努力学习、追求卓越成绩。依托科技创新与人文关怀，科科好致力于构建"文化+科技+教育"深度融合的生态，为学生成长提供全方位支持。</p>
     <p>&nbsp;&nbsp;&nbsp;&nbsp;公司以学生需求为导向，通过动态调研和大数据分析捕捉不同学段和场景的差异化需求，产品不断推陈出新。公司针对学习、运动、生活、娱乐、饮食和出行等各类场景，提供覆盖学生全生命周期的解决方案。通过校园、电商和礼品等渠道合作，打造"产品+服务+社区"的成长生态体系，使学生在各个成长阶段都能获得贴心支持。以创新与关怀陪伴学生成长。未来，"科科好"立志成为全球学生群体的首选成长陪伴品牌。</p>
                
                
            </div>
            <!-- 新增：右侧区域容器 -->
            <div class="about-right-section">
                <!-- 将image-stats移到右侧 -->
                <div class="image-stats">
                    <div class="image-stat-item">
                        <h3>13年+</h3>
                        <p>品牌历史</p>
                    </div>
                    <div class="image-stat-item">
                        <h3>3万笔+</h3>
                        <p>慈善捐款</p>
                    </div>
                </div>
                
                <div class="about-image">
                    <div class="about-image-content">
                        <i class="fas fa-lightbulb"></i>
                        <h3>科科好点亮你的未来~</h3>
                        <h2>愿天下学子成绩科科好！</h2>
                        <p>科技赋能，创新引领未来</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- 主要内容区 -->
    <div class="container">
        <!-- 新闻列表（只保留3个） -->
        <section class="news-section">
            <div class="section-header">
                <h2 class="section-title">最新动态</h2>
                <p class="section-desc">了解科科好的最新资讯、活动信息和行业动态，掌握教育领域的前沿趋势</p>
            </div>
            <div class="news-list">
                <!-- 新闻卡片 1 -->
                <div class="news-card">
                     <div class="news-img" style="background-image: url('//www.kekehao.com/appdata/images/640 (6).png');">
                        <div class="news-category">文化传承</div>
                    </div>
                    <div class="news-content">
                        <h3 class="news-title"><h3 class="news-title">"科科好"携手陈皮村：传承侨乡文化，共筑"交子牛集"美食盛宴</h3>
                        <div class="news-date"><i class="far fa-calendar-alt"></i> 2025-05-6</div>
                        <p class="news-excerpt">推动侨乡文化传承，通过"趣游陈皮村"活动将品牌的积极价值观与侨乡文化深度融合，在青少年心中播下了文化传承的种子，引导学子饮水思源、奋发向上...</p>
                        <a href="/html/a20250501.html" target="_blank" class="read-more">阅读更多 <i class="fas fa-arrow-right"></i></a>
                    </div>
                </div>
                
                <!-- 新闻卡片 2 -->
                <div class="news-card">
                    <div class="news-img" style="background-image: url('//www.kekehao.com/appdata/images/640 (3).png');">
                        <div class="news-category">文化传承</div>
                    </div>
                    <div class="news-content">
                        <h3 class="news-title"><h3 class="news-title">智跑定向运动走进江门，小贝塔携手科科好推动侨乡文化焕新</h3>
                        <div class="news-date"><i class="far fa-calendar-alt"></i> 2025-05-6</div>
                        <p class="news-excerpt">作为一家深耕文化与科技领域的企业，科科好一直致力于通过多元化的活动形式推动中华文化的传承与创新。本次定向运动的成功举办，让侨乡文化与现代体育精神深度融合，焕发新的活力...</p>
                        <a href="/html/a20250101.html" target="_blank"  class="read-more">阅读更多 <i class="fas fa-arrow-right"></i></a>
                    </div>
                </div>
                
                <!-- 新闻卡片 3 -->
                <div class="news-card">
                    <div class="news-img" style="background-image: url('//www.kekehao.com/appdata/images/001.jpg');">
                        <div class="news-category">战略合作</div>
                    </div>
                    <div class="news-content">
                        <h3 class="news-title">科科好品牌携手逢年过节签约达成战略合作,将进一步扩大市场影响力</h3>
                        <div class="news-date"><i class="far fa-calendar-alt"></i> 2024-05-28</div>
                        <p class="news-excerpt">科科好品牌携手逢年过节签约，达成战略合作。科科好将借助逢年过节在礼品市场的优势资源和渠道，进一步扩大品牌的市场影响力...</p>
                        <a href="/html/a20240501.html" target="_blank"  class="read-more">阅读更多 <i class="fas fa-arrow-right"></i></a>
                    </div>
                </div>
            </div>
            
            <!-- 更多链接 -->
            <a href="#" class="view-more">
                <i class="fas fa-plus-circle"></i> 查看更多动态
            </a>
        </section>
        
        <!-- 产品展示区 -->
        <section class="products-section">
            <div class="section-header">
                <h2 class="section-title">精选产品</h2>
                <p class="section-desc">探索科科好教育的优质产品体系，涵盖教材教辅、智能硬件、在线课程等全系列教育解决方案</p>
            </div>
            <div class="products-grid">
                <div class="product-card">
                    <div class="product-img" style="background-image: url('http://www.kekehao.com/appdata/images/card1.jpg');">
                        <div class="product-badge">推荐产品</div>
                    </div>
                    <div class="product-content">
                        <h3 class="product-title">科科好直播课程福利来袭,名师带你刷课！年卡超值享</h3>
                        <div class="product-desc">突破自我的利器！顶尖名师全年在线直播.抓住成长机遇！名师直播年卡限时特惠，全年课程无限次观看，超值。祝您学习成绩科科好，生活百科科科好！</div>
                        <a href="#" class="product-btn">查看详情</a>
                    </div>
                </div>
            
                <div class="product-card">
                    <div class="product-img" style="background-image: url('//www.kekehao.com/static/images/home/lamp.jpg');">
                        <div class="product-badge">热销产品</div>
                    </div>
                    <div class="product-content">
                        <h3 class="product-title">科科好护眼台灯学生宿舍书房专用学习台灯柔光不累眼</h3>
                        <div class="product-desc">科科好台灯照亮学习之路！高显色还原真实色彩，全光谱柔光铺满桌面，无蓝光无频闪，连续刷题 2 小时眼睛不干涩，深夜备考也能守护 "心灵之窗"！</div>
                        <a href="#" class="product-btn">查看详情</a>
                    </div>
                </div>
                
                <div class="product-card">
                    <div class="product-img" style="background-image: url('//www.kekehao.com/static/images/home/pen.jpg');">
                        <div class="product-badge">热销产品</div>
                    </div>
                    <div class="product-content">
                        <h3 class="product-title">科科好考试笔刷题笔文具礼品笔毕业季送同学送祝福</h3>
                        <div class="product-desc">毕业季科科好考试笔，学霸同款刷题笔！大容量笔芯，刷题百页不换笔，考试季、考研、老板签字高档笔！礼品级包装！送同学、老师。传递心意，送礼就送科科好！</div>
                        <a href="#" class="product-btn">查看详情</a>
                    </div>
                </div>
                
                <div class="product-card">
                    <div class="product-img" style="background-image: url('//www.kekehao.com/static/images/home/bag.jpg');">
                        <div class="product-badge">限时特惠</div>
                    </div>
                    <div class="product-content">
                        <h3 class="product-title">开学季科科好书包科科好水杯雨伞雨衣套装三件套礼包</h3>
                        <div class="product-desc">开学季，科科好开学套装，学生党刚需！书包+水杯 +雨具三件套开学必备，从书本收纳到雨天防护全搞定，家长省心，孩子专心学习成绩科科好！</div>
                        <a href="#" class="product-btn">查看详情</a>
                    </div>
                </div>
                
                <div class="product-card">
                    <div class="product-img" style="background-image: url('//www.kekehao.com/static/images/home/lhua.jpg');">
                        <div class="product-badge">暑假特惠 </div>
                    </div>
                    <div class="product-content">
                        <h3 class="product-title">科科好溜冰鞋儿童初学者直排轮滑鞋专业平花式旱冰鞋</h3>
                        <div class="product-desc">科科好溜冰鞋儿童暴走鞋激发青少年学生无限潜能。赛事级轴承搭配PU轮，丝滑滑行超炫酷！让孩子告别游戏沉迷，在风驰电掣中释放活力，轮滑刺激大脑发育，思维更敏捷，养成自律习惯，学习效率翻倍，自然成绩科科好！</div>
                        <a href="#" class="product-btn">查看详情</a>
                    </div>
                </div>
                
                <div class="product-card">
                    <div class="product-img" style="background-image: url('//www.kekehao.com/appdata/images/002.jpg');">
                        <div class="product-badge">暑假特惠</div>
                    </div>
                    <div class="product-content">
                        <h3 class="product-title">科科好家庭荣誉墙免打孔可移除奖状墙照片墙留言板</h3>
                        <div class="product-desc">科科好家庭荣誉墙见证成长不留痕，免打孔黑科技，撕下无胶痕，轻松上墙不损伤墙面！孩子的奖状、全家旅行的照片随心贴，记录每一个高光时刻，打造专属家庭荣誉殿堂。还能当留言板和白板随写随擦。</div>
                        <a href="#" class="product-btn">查看详情</a>
                    </div>
                </div>
                <div class="product-card">
                    <div class="product-img" style="background-image: url('//www.kekehao.com/static/images/home/jimu.jpg');">
                        <div class="product-badge">限时特惠</div>
                    </div>
                    <div class="product-content">
                        <h3 class="product-title">科科好益智玩具儿童玩具早教拼图拼装积木孩子礼物</h3>
                        <div class="product-desc">科科好益智玩具，儿童最佳礼物。孩子自小培养观察力、逻辑力，智力飞速提升。通过拼搭锻炼工程思维、艺术审美，比手机游戏更有价值！每一次拼搭都是专注力的训练，思维越玩越灵活，成绩自然科科好！</div>
                        <a href="#" class="product-btn">查看详情</a>
                    </div>
                </div>
                <div class="product-card">
                    <div class="product-img" style="background-image: url('//www.kekehao.com/appdata/images/0001.jpg');">
                        <div class="product-badge">限时特惠</div>
                    </div>
                    <div class="product-content">
                        <h3 class="product-title">科科好文创礼品精美钥匙扣毕业季送学生送考试祝福</h3>
                        <div class="product-desc">毕业不散场，科科好文化创意礼品送同学送小孩作为考试祝福礼物，还能做包包挂件、文具装饰！挂在笔袋上，将 "逢考必过""科科好"的祝福变成看得见、摸得着的小物件。时刻提醒孩子认真学习争取成绩科科好！</div>
                        <a href="#" class="product-btn">查看详情</a>
                    </div>
                </div>
            </div>
            
            <!-- 更多产品按钮 -->
            <div style="text-align: center; margin-top: 50px;">
                <a href="#" class="view-more">
                    <i class="fas fa-plus-circle"></i> 更多产品
                </a>
            </div>
        </section>
    </div>
    
    <!-- 精选文章模块 - 全屏自适应 -->
    <section class="article-section">
        <div class="section-header">
            <h2 class="section-title">精选文献</h2>
        </div>
    
        <header class="article-header">
            <h1 class="article-title">数字化转型如何重塑教育未来：机遇与挑战并存</h1>
        </header>
        
        <div class="article-content">
            <p>在当今快速变化的教育环境中，数字化转型已不再是一个选择，而是教育发展的必然要求。随着人工智能、大数据、云计算等技术的迅猛发展，教育领域正面临前所未有的变革机遇。</p>
            
            <p>数字化转型不仅仅是技术的升级，更是教育模式、教学方法和学习体验的全面革新。根据教育部的最新研究报告，成功实施数字化转型的学校，其教学效率平均提升40%，学生满意度提高30%，教学资源利用率提升50%。</p>
            
            <img src="https://images.unsplash.com/photo-1543269865-cbf427effbad?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80" alt="数字化教育场景">
            
            <h2>教育数字化转型的核心驱动力</h2>
            
            <p>教育数字化转型主要受到三方面因素的推动：学生需求的变化、技术进步的加速以及教育改革的深化。现代学生期望获得个性化、互动性强的学习体验，这要求教育机构打破传统教学模式，构建以学生为中心的教育体系。</p>
            
            <p>在技术层面，云计算降低了教育信息化成本，人工智能提升了学情分析能力，物联网实现了物理教室与虚拟课堂的连接。这些技术的融合应用，为教育创造了前所未有的创新机会。</p>
            
            <h2>转型过程中的关键挑战</h2>
            
            <p>尽管教育数字化转型前景广阔，但在实践中仍面临诸多挑战：</p>
            
            <ul>
                <li><strong>教育理念转变：</strong>传统教育的"教师中心"思维模式往往成为转型的最大障碍。建立以学生为中心的教育理念至关重要。</li>
                <li><strong>教师数字素养：</strong>教师数字技能参差不齐，需要构建完善的教师培训体系，同时探索灵活的技术支持机制。</li>
                <li><strong>数字资源整合：</strong>教育资源分散在不同平台中，难以形成统一视图。构建教育资源共享平台是数字化转型的基础工程。</li>
                <li><strong>数字鸿沟问题：</strong>区域间、城乡间数字基础设施差异导致教育公平问题加剧，需要政策支持和技术创新来弥合差距。</li>
            </ul>
            
            <img src="https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80" alt="智慧教室">
            
            <h2>成功转型的战略路径</h2>
            
            <p>基于对上百所成功转型学校的案例研究，我们总结出教育数字化转型的四大关键要素：</p>
            
            <ul>
                <li><strong>清晰的愿景：</strong>数字化转型必须服务于提升教育质量的核心目标，而非单纯追求技术先进性。</li>
                <li><strong>分阶段实施：</极>从具体教学场景切入，快速验证价值，再逐步扩大规模，避免"大而全"的瀑布式实施。</li>
                <li><strong>生态协同：</strong>建立开放的教育技术生态，借助企业、高校的力量加速创新。</li>
                <li><strong>持续迭代：</strong>数字化转型不是一次性项目，而是持续演进的过程，需要建立敏捷的组织机制。</li>
            </ul>
            
            <p>展望未来，教育数字化转型将从"数字化"向"智能化"阶段演进。教育机构需要构建数据驱动的教学决策机制，实现从知识传授到能力培养的跃迁。在这个过程中，那些能够将技术创新与教育创新深度融合的机构，将引领未来教育发展。</p>
        </div>
    </section>
    
    <div class="container">
        <!-- 合作伙伴模块 -->
        <section class="partners-section">
            <h2 class="partners-title">合作伙伴</h2>
            <div class="partners-grid">
                <a href="#" class="partner-item">
                    <img src="http://www.kekehao.com/appdata/images/fxcs.jpg" alt="风行创盛">
                </a>
                <a href="https://www.daxiangcs.com" class="partner-item">
                    <img src="http://www.kekehao.com/appdata/images/dxsn.jpg" alt="大象少年财商">
                </a>
                <a href="http://www.zeroculturemedia.cn" class="partner-item">
                    <img src="http://www.kekehao.com/appdata/images/0hao.jpg" alt="零号时光文化">
                </a>
                <a href="#" class="partner-item">
                    <img src="http://www.kekehao.com/appdata/images/bcbw.jpg" alt="本草博物">
                </a>
                <a href="http://www.fngj.com.cn/" class="partner-item">
                    <img src="http://www.kekehao.com/appdata/images/lh.jpg" alt="广东礼航">
                </a>
                <a href="#" class="partner-item">
                    <img src="http://www.kekehao.com/appdata/images/jznz.jpg" alt="交子牛集">
                </a>
                <a href="#" class="partner-item">
                    <img src="http://www.kekehao.com/appdata/images/ndd.jpg" alt="牛当道">
                </a>
            </div>
        </section>
        
        <!-- 联系方式区域 -->
        <div class="contact-section">
            <div class="contact-container">
                <h2 class="contact-title">关注我们</h2>
                <p class="contact-desc">通过以下渠道获取最新教育资讯、学习资源和课程信息，与科科好教育保持联系</p>
                <div class="contact-grid">
                    <div class="contact-item">
                        <div class="contact-icon">
                            <i class="fab fa-weixin"></i>
                        </div>
                        <h3>微信公众号</h极>
                        <div class="qr-code">
                            <img src="http://www.kekehao.com/static/wxgzh.jpg" width="150" height="150"/> 
                        </div>
                        <p>扫码关注科科好公众号，获取最新教育资讯和学习资源</p>
                    </div>
                    
                    <div class="contact-item">
                        <div class="contact-icon">
                            <i class="fab fa-tiktok"></i>
                        </div>
                        <h3>抖音官方号</h3>
                        <div class="qr-code">
                            <img src="http://static.kekehao.com/static/dy.png" width="150" height="150"/> 
                        </div>
                        <p>关注科科好抖音号，观看学习技巧短视频和名师讲堂</p>
                    </div>
                    
                    <div class="contact-item">
                        <div class="contact-icon">
                            <i class="fab fa-weixin"></i>
                        </div>
                        <h3>企业微信</h3>
                        <div class="qr-code">
                            <img src="http://static.kekehao.com//static/images/wx.jpg" width="150" height="150"/> 
                        </div>
                        <p>添加科科好企业微信，获取一对一咨询服务</p>
                    </div>
                    
                    <div class="contact-item">
                        <div class="contact-icon">
                            <i class="fas fa-video"></i>
                        </div>
                        <h3>视频号</h3>
                        <div class="qr-code">
                            <img src="http://www.kekehao.com/static/sph.png" width="150" height="150"/> 
                        </div>
                        <p>关注科科好视频号，获取名师直播课程</p>
                    </div>
                </div>
            </div>
        </div>
    </div>
    
    <!-- 底部信息 -->
    <footer>
        <div class="footer-content">
            <div class="footer-column">
                <h3>关于科科好</h3>
                <ul class="footer-links">
                    <li><i class="fas fa-chevron-right"></i><a href="//www.kekehao.com/html/gdkkh.html">公司简介</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="/html/gdkkhjg.html">组织架构</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="/html/myteam.html">管理团队</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="#">企业文化</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="/html/zhaopin.html">加入我们</a></li>
                </ul>
            </div>
            
            <div class="footer-column">
                <h3>加盟投资</h3>
                <ul class="footer-links">
                    <li><i class="fas fa-chevron-right"></i><a href="//www.kekehao.com/html/brand.html">品牌介绍</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="#">加盟政策</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="#">加盟流程</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="#">加盟优势</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="#">在线申请</a></li>
                </ul>
            </div>
            
            <div class="footer-column">
                <h3>教育资讯</h3>
                <ul class="footer-links">
                    <li><i class="fas fa-chevron-right"></i><a href="/news/">教育新闻</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="#">政策解读</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="#">教学研究</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="#">学习资源</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="#">名师讲堂</a></li>
                </ul>
            </div>
            
            <div class="footer-column">
                <h3>珊珊同学</h3>
                <ul class="footer-links">
                    <li><i class="fas fa-chevron-right"></i><a href="/index.php?c=sstxaixuexi">爱学习</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="/index.php?c=sstxaiyundong">爱运动</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="/index.php?c=sstxaimei">爱美</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="/index.php?c=sstxaichi">爱吃</a></li>
                    <li><i class="fas fa-chevron-right"></i><a href="/index.php?c=sstxaiwan">爱玩</a></li>
                </ul>
            </div>
            
            <div class="footer-column">
                <h3>联系我们</h3>
                <ul class="footer-links">
                    <li><i class="fas fa-map-marker-alt"></i> 深圳市光明区马田街道禾湾社区时间谷创意大厦2B栋1801B</li>
                    <li><i class="fas fa-phone"></i> 17666135388</li>
                    <li><i class="fas fa-envelope"></i> seller@kekehao.com</li>
                    <li><i class="fas fa-clock"></i> 周一至周日 8:00-22:00</li>
                </ul>
            </div>
        </div>
        
        <!-- 新增：法律链接 -->
        <div class="legal-links">
            <a href="//www.kekehao.com/html/privacypolicy.html">隐私政策</a>
            <a href="//www.kekehao.com/html/useragreement.html">用户协议</a>
            <a href="//www.kekehao.com/html/copyrightnotice.html">版权声明</a>
            <a href="//www.kekehao.com/html/legalnotice.html">法律声明</a>
            <a href="#product_auth.html">经营资质</a>
			 <a href="/tools/product_auth.html">真伪查询</a>
            <a href="#">投诉建议</a>
        </div>
        
        <!-- 在copyright上方添加友情链接 -->
        <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="http://www.0j9.com" target="_blank">零至玖化橘红</a>
            <a href="http://www.li-pin.net" target="_blank">企业礼品定制</a>
            <a href="http://www.kekehao.com/index.php?c=sstxaimei" target="_blank">珊珊同学爱美</a>
            <a href="http://www.kekehao.com/static/html/cn.html" target="_blank">护眼无尘课堂</a>
            <a href="http://www.0j9.com.cn/" target="_blank">零至玖软件</a>
            <a href="http://www.oej.cn/" target="_blank">欧易金科技</a>
        </div>
        
        <div class="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> 版权所有&nbsp;<a href="http://www.kekehao.com/static/images/kekehao_com_01.png" target="_blank">网站软件著作权</a></p>
            <p> <a href="https://beian.miit.gov.cn/" target="_blank">粤ICP备2024304792号</a></p>
        </div>
    </footer>

    <!-- 移动端导航 -->
    <nav class="mobile-nav" id="mobileNav">
        <div class极="mobile-nav-header">
            <div class="mobile-logo">
                <i class="fas fa-graduation-cap"></i>
                <span>科科好</span>
            </div>
            <button class="close-menu-btn" id="closeMenuBtn">
                <i class="fas fa-times"></i>
            </button>
        </div>
        <ul>
            <li><a href="/"><i class="fas fa-home"></i> 首页</a></li>
            <li>
                <a href="//www.kekehao.com/html/gdkkh.html"><i class="fas fa-building"></i> 公司 <i class="fas fa-chevron-down"></i></a>
                <div class="dropdown-content-mobile">
                    <a href="//www.kekehao.com/html/gdkkhgk.html">公司概况</a>
					<a href="//www.kekehao.com/html/gdkkhlc.html">发展历程</a>
					<a href="//www.kekehao.com/html/gdkkhjg.html">组织架构</a>
					<a href="//www.kekehao.com/html/gdkkhqywh.html">企业文化</a>
                </div>
            </li>
			<li>
				<a href="//www.kekehao.com/html/brand.html"><i class="fas fa-cubes"></i> 品牌 <i class="fas fa-chevron-down"></i></a>
				<div class="dropdown-content">
					<a href="//www.kekehao.com/html/brand.html#2">科科好品牌介绍</a>
					<a href="//www.kekehao.com/html/brandsstx.html">珊珊同学品牌介绍</a>
					<a href="//www.kekehao.com/html/brand.html#3">使命与价值观</a>
					<a href="//www.kekehao.com/html/brand.html#7">理念与文化</a>
					<a href="//www.kekehao.com/html/brand.html#5">发展历程</a>
					
				</div>
			</li>
            <li>
                <a href="#"><i class="fas fa-cubes"></i> 产品 <i class="fas fa-chevron-down"></i></a>
                <div class="dropdown-content-mobile">
					<a href="//www.kekehao.com/html/ssrobot.html">智能机器人</a>
                    <a href="#">学习文具</a>
                    <a href="#">运动户外</a>
                    <a href="#">学生礼品</a>
                    <a href="#">益智玩具</a>
                    <a href="#">生活百科</a>
                    <a href="#">培训课程</a>
                </div>
            </li>
            <li>
                <a href="#"><i class="fas fa-bullhorn"></i> 新闻 <i class="fas fa-chevron-down"></i></a>
                <div class="dropdown-content-mobile">
                    <a href="/news/">新闻公告</a>
                    <a href="#">活动资讯</a>
                    <a href="#">行业动态</a>
                    <a href="#">媒体报道</a>
                </div>
            </li>
            <!-- 新增移动端共创菜单 -->
            <li>
                <a href="#"><i class="fas fa-handshake"></i> 共创 <i class="fas fa-chevron-down"></i></a>
                <div class="dropdown-content-mobile">
                    <a href="//www.kekehao.com/html/openst.html"><i class="fas fa-link"></i> 生态合作</a>
					<a href="//www.kekehao.com/html/openinfo.html"><i class="fas fa-laptop-code"></i> 开放平台</a>
					<a href="//www.kekehao.com/html/openfn.html"><i class="fas fa-rocket"></i> 赋能计划</a>
					<a href="//www.kekehao.com/html/openlink.html"><i class="fas fa-network-wired"></i> 生态链接</a>
					<a href="//www.kekehao.com/html/openlp.html"><i class="fas fa-compass"></i> 开放罗盘</a>
					<a href="//www.kekehao.com/html/openwin.html"><i class="fas fa-users"></i> 合作共赢</a>
                </div>
            </li>
            <li>
                <a href="#"><i class="fas fa-handshake"></i> 投资者 <i class="fas fa-chevron-down"></i></a>
                <div class="dropdown-content-mobile">
                    <a href="//www.kekehao.com/html/kkhproject.html">项目介绍</a>
							<a href="//www.kekehao.com/html/kkhprojectjh.html">资金使用计划</a>
							<a href="//www.kekehao.com/html/kkhprojectyq.html">投资回报预期</a>
							<a href="//www.kekehao.com/html/kkhprojectlc.html">融资合作流程</a>
                            <a href="//www.kekehao.com/html/kkhprojectqa.html">投资者问答</a>
                </div>
            </li>
            <!-- 修改：移动端我的账户改为我的 -->
            <li>
                <a href="#"><i class="fas fa-user-circle"></i> 我的 <i class="fas fa-chevron-down"></i></a>
                <div class="dropdown-content-mobile">
                    
					<a href="#"><i class="fas fa-user"></i> 个人中心</a>
                    <a href="#"><i class="fas fa-cog"></i> 账户设置</a>
                    <a href="#"><i class="fas fa-history"></i> 订单记录</a>
                    <a href="#"><i class="fas fa-heart"></i> 我的收藏</a>
                    <a href="/logout.php"><i class="fas fa-sign-out-alt"></i> 退出登录</a>
                </div>
            </li>
        </ul>
    </nav>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            // 轮播图功能
            let currentSlide = 0;
            const slides = document.querySelector('.carousel-slides');
            const indicators = document.querySelectorAll('.carousel-indicator');
            const totalSlides = indicators.length;
            
            // 自动轮播
            const autoSlide = setInterval(() => {
                nextSlide();
            }, 5000);
            
            // 下一张幻灯片
            function nextSlide() {
                currentSlide = (currentSlide + 1) % totalSlides;
                updateSlide();
            }
            
            // 更新幻灯片位置
            function updateSlide() {
                slides.style.transform = `translateX(-${currentSlide * 25}%)`;
                
                // 更新指示器
                indicators.forEach((indicator, index) => {
                    if (index === currentSlide) {
                        indicator.classList.add('active');
                    } else {
                        indicator.classList.remove('active');
                    }
                });
            }
            
            // 点击指示器切换幻灯片
            indicators.forEach((indicator, index) => {
                indicator.addEventListener('click', () => {
                    currentSlide = index;
                    updateSlide();
                    clearInterval(autoSlide);
                });
            });
            
            // 移动端菜单切换
            const mobileMenuBtn = document.getElementById('mobileMenuBtn');
            const closeMenuBtn = document.getElementById('closeMenuBtn');
            const mobileNav = document.getElementById('mobileNav');
            
            mobileMenuBtn.addEventListener('click', () => {
                mobileNav.classList.add('active');
                document.body.style.overflow = 'hidden';
            });
            
            closeMenuBtn.addEventListener('click', () => {
                mobileNav.classList.remove('active');
                document.body.style.overflow = 'auto';
            });
            
            // 移动端下拉菜单
            const mobileDropdownToggles = mobileNav.querySelectorAll('li > a');
            mobileDropdownToggles.forEach(toggle => {
                if (toggle.querySelector('.fa-chevron-down')) {
                    toggle.addEventListener('click', (e) => {
                        e.preventDefault();
                        const parentLi = toggle.parentElement;
                        parentLi.classList.toggle('active');
                    });
                } else {
                    toggle.addEventListener('click', () => {
                        mobileNav.classList.remove('active');
                        document.body.style.overflow = 'auto';
                    });
                }
            });
            
            // 点击页面其他区域关闭移动菜单
            document.addEventListener('click', (e) => {
                if (!mobileNav.contains(e.target) && !mobileMenuBtn.contains(e.target)) {
                    mobileNav.classList.remove('active');
                    document.body.style.overflow = 'auto';
                }
            });
            
            // 通知栏关闭功能
            const closeAnnouncementBtn = document.getElementById('closeAnnouncement');
            const announcementBar = document.getElementById('announcementBar');
            
            if (closeAnnouncementBtn && announcementBar) {
                closeAnnouncementBtn.addEventListener('click', () => {
                    announcementBar.style.display = 'none';
                });
            }
            
            // 通知栏滚动功能（新增部分）
            const announcementList = document.querySelector('.announcement-list');
            const announcementItems = document.querySelectorAll('.announcement-item');
            let currentAnnouncement = 0;
            const totalAnnouncements = announcementItems.length;
            const itemHeight = 40; // 每个通知项的高度
            
            // 初始化通知位置
            announcementList.style.transform = `translateY(0)`;
            
            // 每6秒切换一次通知
            setInterval(() => {
                currentAnnouncement = (currentAnnouncement + 1) % totalAnnouncements;
                announcementList.style.transform = `translateY(-${currentAnnouncement * itemHeight}px)`;
            }, 6000);
        });
    </script>
</body>
</html>