<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>李红宙 - 公司高管简介 - 科科好 - 愿天下学子成绩科科好，生活百科科科好！</title>
    <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: 1001; /* 增加z-index确保在文章内容上方 */
            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);
        }
        
        /* 主要内容区样式 */
        .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%;
        }
        
        /* 精选文章模块 - 全屏自适应 */
        .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;
            position: relative;
            z-index: 5; /* 确保在导航菜单下方 */
        }
        
        .article-header {
            text-align: center;
            padding: 40px 5% 30px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            position: relative;
            z-index: 5; /* 确保在导航菜单下方 */
        }
        
        .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-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%;
            position: relative;
            z-index: 5; /* 确保在导航菜单下方 */
        }
        
        .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;
        }
        
        /* 底部样式 */
        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;
            z-index: 1001; /* 确保在文章内容上方 */
        }
        
        .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);
        }
        
        /* 友情链接模块样式 */
        .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) {
            .article-content {
                padding: 50px 5%;
            }
        }
        
        @media (max-width: 992px) {
            .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;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .article-header {
                padding: 40px 5% 30px;
            }
            
            .article-content {
                padding: 40px 5%;
            }
            
            .friend-links {
                gap: 10px;
            }
            
            .friend-links a {
                font-size: 0.85rem;
                padding: 0 8px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel {
                height: 60vh;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .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 {
                max-width: 1800px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .carousel {
                max-height: 800px;
            }
        }
        
        /* 新增：超小屏幕适配 */
        @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;
            }
        }
        
        /* 修复后的文章标题部分 */
        .article-header {
            z-index: 5 !important; /* 确保在导航菜单下方 */
        }
    </style>
</head>
<body>
    <!-- 头部导航 -->
    <header>
        <div class="header-container">
            <div class="logo-container">
                <div class="logo">
                    <i class="fas fa-graduation-cap"></i>
                    <span>科科好</span>
                </div>
                <div class="slogan">愿天下学子成绩科科好！</div>
            </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="#"><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>
                    <a href="#" class="slide-btn">了解更多</a>
                </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>
    
    <!-- 精选文章模块 - 全屏自适应 -->
	<section class="article-section">
		<header class="article-header">
			<h1 class="article-title">
			李红宙 - 公司高管简介			</h1>
		</header>
		
		<div class="article-content">
			<div class="module">
        <!-- 头部信息 -->
 <h2>李红宙</h2>
        <div class="header">
           <img src="/static/images/new/lhzh001.jpg" alt="李红宙的照片">

            <b>科科好品牌创始人 ，先后创办了零至玖软件（深圳）有限公司、欧易金科技（深圳）有限公司、广东科科好文化科技有限公司，并担任公司法人代表、董事长</b>
         
        </div>





        <!-- 个人简介 -->
        <div class="section">
            <h2>个人简介</h2>
            <div class="content">
                <div class="item-desc">
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 李红宙， 广东省化州市人，资深连续创业者，拥有广东石油化工学院、北京邮电大学及暨南大学多段高等教育经历，深耕学生用品、文化创意、软件科技领域十余年，具备敏锐的市场洞察力与战略规划能力。创新采用"智囊团"模式整合内外部人才资源，构建"科技创新反哺公益"的生态闭环，先后创办三家核心企业，成功打造“科科好”“珊珊同学”“欧易金”三大知名品牌，始终秉持“用户为本、品质为先、创新驱动”的经营理念，推动品牌矩阵实现多元化生态布局，致力于为不同群体提供兼具功能性与情感价值的产品与服务。
<p>
创业前积累了制造业多个细分岗位阅历，包括品质管理、硬件开发、生产管控、软件开发、网络营销、电商运营等多个核心岗位，沉淀了扎实的行业功底与广阔的跨界视野。凭借敏锐的市场洞察力与系统的战略规划能力，精通企业战略布局、品牌运营、跨界资源整合、知识产权规划、市场趋势研判、团队赋能管理、产品创新研发及文化创意落地等核心技能。
</p>

                </div>
            </div>
        </div>

        <!-- 教育背景 -->
        <div class="section">
            <h2>教育背景</h2>
            <div class="content">
                <div class="item">
                    <div class="item-title">
                        <B>暨南大学</B>
                        <span>创新商业模式专业</span>
                    </div>
                    <div class="item-desc">
                         &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 系统学习创新商业模式设计、企业战略管理与资本运作等核心课程，深入研究创业企业成长路径与商业模式迭代逻辑，为集团化运营与资本化布局提供战略指导。
                    </div>
                </div>

                <div class="item">
                    <div class="item-title">
                        <B>北京邮电大学</B>
                       <span>电子商务专业</span>
                    </div>
                    
                    <div class="item-desc">
                         &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 系统学习电子商务平台架构、网络营销、电子支付与供应链管理等专业课程，参与多项电商项目开发，培养了扎实的互联网商业思维与技术应用能力，为后续科技型企业创办奠定基础。
                    </div>
                </div>

                <div class="item">
                    <div class="item-title">
                        <b>广东石油化工学院</b>
                        <span>应用电子技术专业</span>
                    </div>
                   
                    <div class="item-desc">
                         &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主修应用技术开发与实践课程，注重理论与实操结合，培养了较强的动手能力与问题解决能力，为后续专业深造与职业发展奠定了坚实的技术基础。
                    </div>
                </div>
            </div>
        </div>
<!-- 社会职位 -->
        <div class="section">
            <h2>社会职位</h2>
            <div class="content">
                <div class="skill-list">
                    <div class="position-item">中国人生科学学会单位会员（广东科科好文化科技有限公司）</div>
                    <div class="position-item">暨南大学管理学院餐饮食品行会副秘书长</div>
                    <div class="position-item">暨南大学创业学院青创校友同学会理事</div>
                   
                </div>
            </div>
        </div>


<!-- 早年经历 -->
        <div class="section">
            <h2>早年经历</h2>
            <div class="content">
                <div class="skill-list">
                  
<div class="position-item">

<p>早期步入制造业，深耕品质管理领域，熟练掌握ISO9001质量管理体系全流程规范，全程协助企业管理者代表从零搭建质量管理体系，完成体系落地、流程规范搭建并顺利通过官方认证，积累标准化企业管理、工厂品控落地实战经验。
</p><p>品控工作完成后转型硬件技术研发，历任电子技术员、硬件工程师，精通PCB电路板设计，先后深耕消费电子、光通信设备、健康运动器械多赛道硬件研发，吃透硬件产品研发、量产管控全链路，打通硬件产品标准化落地思维。
</p>
<p>后续入职上市公司（奋达科技）智能研发部云服务器后端团队，担任后端软件工程师，深耕岗位长达7年，主攻云端服务架构、后端程序开发，完成硬件研发到软件开发的技术能力全面升级，熟练PHP+MySQL开发体系、服务器运维、企业数字化系统搭建。
</p>
<p>在职期间持续学习，就读北京邮电大学电子商务专业，顺利获得本科学历和管理学学士学位，融合信息技术、电商运营、企业管理多维知识体系。
</p>
<p>从业期间研学中医药知识、药食同源、传统茶饮文化，自主编写爬虫程序抓取整理600余本中医经典电子典籍，搭建专属中医知识库，自主开发语义分析与检索引擎，实现关键词语义智能匹配检索，配套研发简易中医智能问诊功能，以数字化技术传承传统中医药理论。
</p>
</div>
                   
                </div>
            </div>
        </div>


<!-- 个人生活 -->
        <div class="section">
            <h2>个人生活</h2>
            <div class="content">
                <div class="skill-list">
                  
<div class="position-item">

<h3>1. 价值处世理念</h3>
<p>
秉持“财富是社会的，合理二次分配社会财富者才有资格拥有更多的社会财富”的核心价值观，坚持以人为本经营实业，认为科学技术是普通人创造财富的核心生产力；创业两大核心愿景，一是助力青年学子学有所成、掌握谋生技能，二是依托两广特色农产产业带动原产地农户共同增收，商业经营兼顾社会责任与公益帮扶。</p>
<h3>
2. 学习与研究方向</h3>
<p>拥有制造业品控、硬件研发、后端软件、电商管理、创业经营复合从业背景，持续保持学习习惯，2023年于暨南大学创业学院进修创新商业模式专业相关课程；深耕两大长期研究领域：</p>
<p>一是传统中医药与茶饮文化，酷爱中医典籍、药食同源与茶饮研究，独立设计数据库、自主编程采集600余本中医电子书，搭建语义分析与检索系统，独立开发中医智能问诊工具，以数字化手段传承传统中医养生文化；日常钻研《方剂学》化橘红、六堡茶、陈皮等复合养生汤料配方、茶饮配方；</p>
<p>二是软件开发、AI数字化技术，专注私有化行业智能体搭建、专属知识库RAG系统研发，探索AI赋能中医、传统茶饮、化橘红、六堡茶、陈皮种植，陈化管理，溯源，配方，实体经济落地路径。</p>
<h3>3. 日常与产业调研</h3>
<p>长期定居深圳光明，以深圳作为技术、电商运营总部，常态化赴广西梧州六堡茶基地、广东化州橘红种植园、新会陈皮种植基地实地调研，开展药食同源产品联合研发交流。；重视知识产权布局，旗下所有品牌、产品提前规划商标、软件著作权、食品配方专利，坚持合规化经营；</p>
<h3>4. 家族与品牌传承</h3>
<p>家族深耕两广乡土特色产业，重视传统制茶、陈皮、化橘红养生非遗技艺传承，将韦家制茶历史、广西地域黑茶文化、新会陈皮养生底蕴融入品牌建设，以商业品牌为载体传播传统药食同源茶饮文化。
</p>
</div>
                   
                </div>
            </div>
        </div>


<!-- 职业经历 -->
        <div class="section">
            <h2>职业经历</h2>
            <div class="content">
                <div class="skill-list">
                  
<div class="position-item">

<h3>
（一）职场从业阶段</h3>
<p>1. 品质管理阶段：在广州泰扬机电有限公司任职品控岗位，主导ISO9001体系搭建落地，建立标准化生产质检流程，助力企业取得质量体系认证；</p><p>
2. 硬件研发阶段：转型硬件研发，先后在多家企业担任电子技术员、硬件工程师，独立完成多品类电路板设计，覆盖消费电子、光通信、健康运动设备三大赛道产品开发；</p><p>
3. 软件后端研发阶段：入职上市公司（奋达科技）智能研发部云服务器组，任职后端软件工程师7年，负责云端后台系统、业务服务程序开发，沉淀成熟企业级软件开发、服务器部署经验，熟练掌握PHP+MySQL技术栈；</p><p>
工作之余自主钻研中医药数字化，独立完成600余本中医书籍数据采集、语义分析与智能匹配检索、智能问诊系统开发。</p>
<h3>（二）自主创业板块</h3>
<p>1. 数字科技企业布局</p>
<p>
自主创业，先后创办多家科技企业：2020年创立欧易金科技（深圳）有限公司，主营企业数字化系统、电商管理系统软件开发；2021年成立零至玖软件（深圳）有限公司，聚焦软件开发、AI智能体定制、知识产权申报，组建自研技术团队，为茶叶、药食同源农产品行业定制数字化解决方案，自主研发多款电商管理、品牌营销系统、中医药知识库检索系统，完成软件著作权登记；2026年成立深圳礼至心科技有限公司，深耕行业私有化AI智能体、虚拟IP人设、特色食品礼品数字化运营，落地六堡茶、化橘红、陈皮专属智能客服、品牌文案生成智能系统。</p><p>
2. 文化教育品牌运营</p>
<p>
早年确立“科科好”助学品牌理念，定立品牌宗旨：愿天下学子成绩科科好，学好本领携手聚力共创财富，让人类生活越来越美好。2024年注册成立广东科科好文化科技有限公司并担任负责人，整合文创产品、研学服务。</p>
<p>
3. 两广特色农产品产业运营</p><p>
依托两广原产地资源优势布局药食同源赛道，打造「零至玖化橘红」「韦家六堡茶」电商品牌矩阵，突出广西梧州原产地核心竞争力；深度布局陈皮赛道，达成与新会陈皮村、暨宝堂长期战略合作，整合陈皮、六堡茶、化橘红三大核心药食同源品类资源。</p>
<p>
深挖韦家传统制茶工艺、广西黑茶文化、新会陈皮百年产业底蕴，完成多组专属文字商标规划；融合《本草纲目》《医宗金鉴》传统食疗理论与现代肽化技术，研发化橘红养生汤料、陈皮养生饮品、助眠养生茶饮、陈年六堡茶礼盒等特色产品；依托自研中医语义检索、智能分析技术赋能产品科普；依托深圳电商技术资源打通两广产销链路，推动广西六堡茶、化州化橘红、新会陈皮全国线上渠道布局，打造地理标志农产品数字化运营标杆项目。
</p>
</div>
                   
                </div>
            </div>
        </div>




        <!-- 创业历程 -->
        <div class="section">
            <h2>创业历程</h2>
            <div class="content">
                <!-- 广东科科好文化科技有限公司 -->
                <div class="item">
                    <div class="item-title">
                        <b>广东科科好文化科技有限公司</b>
                        <span>创始人 / 董事长</span>
                    </div>
                    
                    <div class="item-desc">
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    作为核心创业项目，主导公司从创立初期的单一产品线发展为涵盖学生全场景需求的综合型文化科技企业。通过搭建“产品研发-生产供应链-全渠道销售”一体化体系，推动公司年营收实现连续增长。公司秉承"让天下学子成绩科科好，生活百科科科好"的使命，倡导"产品即祝福"的核心理念。公司以优质产品为载体，传递对学生的美好祝福，并时刻通过产品激励他们努力学习、追求卓越成绩。依托科技创新与人文关怀，科科好致力于构建"文化+科技+教育"深度融合的生态，为学生成长提供全方位支持。
<br>
 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 公司以学生需求为导向，通过动态调研和大数据分析捕捉不同学段和场景的差异化需求，产品不断推陈出新。公司针对学习、运动、生活、娱乐、饮食和出行等各类场景，提供覆盖学生全生命周期的解决方案。通过校园、电商和礼品等渠道合作，打造"产品+服务+社区"的成长生态体系，使学生在各个成长阶段都能获得贴心支持。以创新与关怀陪伴学生成长，打造学生用品行业标杆企业。未来，"科科好"立志成为全球学生群体的首选成长陪伴品牌。

                    </div>
                </div>

                <!-- 零至玖软件（深圳）有限公司 -->
                <div class="item">
                    <div class="item-title">
                        <b>零至玖软件（深圳）有限公司</b>
                        <span>创始人 / 总经理</span>
                    </div>
                    
                    <div class="item-desc">
                         &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 主导“科技赋能教育”战略布局，主要布局知识产权和数字化软件领域。以知识产权、软件技术支持以服务于集团下属各事业部和子公司。
                    </div>
                </div>

                <!-- 欧易金科技（深圳）有限公司 -->
                <div class="item">
                    <div class="item-title">
                        <b>欧易金科技（深圳）有限公司</b>
                        <span>创始人 / CEO</span>
                    </div>
                    
                    <div class="item-desc">
                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  聚焦科技领域，承担集团科技创新核心职能，搭建品牌数字化运营平台与创新项目孵化基地。孵化创新业务项目，公司利润反哺集团，专项用于弥补"科科好"品牌校园公益、助学计划等半公益事业开支，形成“商业反哺公益”的可持续发展模式。创新“内容+电商+服务”商业模式，打通线上线下消费场景。
                    </div>
                </div>
            </div>
        </div>

        <!-- 创立品牌 -->
        <div class="section">
            <h2>创立品牌</h2>
            <div class="content">
                <!-- 科科好品牌 -->
                <div class="item">
                    <div class="item-title">
                        <b>科科好</b>
                       
                    </div>

                    <div class="item-desc">
                         &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 定位中国本土学生用品与文化创意民族品牌，品牌聚焦学生群体，产品覆盖学习、体育、娱乐、生活、文创礼品及出行等场景，致力于打造积极向上、实用且美观的学生专属品牌。秉持 “让天下学子成绩科科好，生活百科科科好” 的使命，倡导"产品即祝福"的核心理念，以优质产品为载体，传递对学生的美好祝福，并时刻通过产品激励他们努力学习、追求卓越成绩。坚持正能量导向，推动学生身心健康与综合素质发展，逐渐成为受学生与家长信赖的民族品牌。
                    </div>
                </div>

                <!-- 珊珊同学品牌 -->
                <div class="item">
                    <div class="item-title">
                        <b>珊珊同学</b>

                    </div>

                    <div class="item-desc">
                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 品牌定位为“有温度的学生品牌”，以“青春、个性、陪伴”为核心价值，秉承“陪伴成长，美好生活”理念，产品涵盖学习用品、体育装备、生活工具及家庭荣誉墙等品类，并推出具备作业辅导、情绪互动等功能的珊珊同学AI智能机器人。在产品设计中融入汉字、诗词、节气等传统文化元素，通过“校园中华文化传承计划”推广文化实践。品牌构建“书房智能产品+校园文化共建+家庭成长方案”三维生态系统，隶属于科科好品牌体系，强调科技与人文融合的发展方向，实现品牌价值与社会价值的双重提升。


                    </div>
                </div>

                <!-- 零至玖品牌 -->
                <div class="item">
                    <div class="item-title">
                        <b>零至玖</b>

                    </div>

                    <div class="item-desc">
                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 零至玖品牌，以 “让地理标志产品走向世界” 为使命，以人为本，深耕天然茶饮、滋补健康食品赛道。品牌甄选各地核心源产地原生态风物，依托千年本草食疗文化，打造多元化药食同源滋补产品矩阵，品牌主营化州化橘红、广西六堡茶、新会陈皮，并延伸推出养生汤料包、温润养生茶饮、天然健康休闲食品等系列好物。
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 所有原料均直采自各品类专属源产地，遵循自然时序生长、古法静置陈化，完整保留食材本真养分与温润性味，摒弃速成加工、混级通货，坚守原生态纯粹品质。团队潜心研读传统中医养生典籍，融合长年实操打磨多款专属养生专利配方，调和食材性味，贴合现代人日常轻滋补的生活需求。
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 品牌不止局限现有岭南风物，持续寻访海内外优质地理标志物产，始终以本源原料、匠心工艺、古法配方为核心根基，打破地域界限，把沃土孕育的天然滋补好物传递至世界各地，让每一份珍稀地标物产，都能被大众熟知与喜爱。
                    </div>
                </div>


                <!-- 快三拍品牌 -->
                <div class="item">
                    <div class="item-title">
                        <b>快三拍</b>
                    </div>
                    <div class="item-desc">
                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 定位年轻化潮流运动装备品牌，以 “活力潮玩、自在运动” 为核心价值，聚焦青少年户外休闲运动赛道。品牌主营暴走鞋、滑板、轮滑鞋全系列潮流运动装备，配套延伸各类运动护具、运动配件、户外轻运动用品。产品兼顾安全防护、时尚外观与耐磨实用属性，适配校园休闲、户外玩乐、街头潮流等多元场景，主打高性价比潮流运动好物，面向青少年消费群体打造轻量化、趣味性运动产品，传递轻松活力的青少年运动生活方式。
                    </div>
                </div>




                <!-- 欧易金品牌 -->
                <div class="item">
                    <div class="item-title">
                        <b>欧易金</b>
 
                    </div>

                    <div class="item-desc">
                       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   欧易金（OEJ）是一个以 "品质如金，科技为纬，全景生活" 为理念的现代科技生活方式品牌。品牌名称蕴含三层内核：O 代表初心与创新、E 代表生态与工程、J 代表金质标准与科技。其产品体系包括风尚衣橱系列、办公效率系列、健康滋养系列、运动活力系列、家居舒适系列、出行体验系列、数字生活系列、环保可持续系列等，涵盖办公效率、健康滋养、运动活力、家居舒适、出行体验、数字生活及环保可持续等领域。品牌采用OEJ模式，设有创新实验室与数字中台，研发流程涉及用户场景洞察、数据品控及使用反馈。品牌涉及人工智能、软件开发、产品研发等领域

                    </div>
                </div>
            </div>
        </div>

        <!-- 企业管理 -->
        <div class="section">
            <h2>企业管理</h2>
            <div class="content">
                <div class="item">
                    <div class="item-title">
                        <b>战略规划与生态构建</b>
                    </div>
                    <div class="item-desc">
                         &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 构建“三公司三品牌”协同发展战略与“科技创新反哺公益”的生态闭环：欧易金科技承担创新孵化与利润创造功能，其收益专项支持科科好品牌的半公益事业；零至玖软件提供知识产权和技术支撑；科科好则专注学生群体服务与社会价值传递，形成相互赋能的可持续发展体系。推动企业完成规范化治理与股权结构优化。
                    </div>
                </div>

                <div class="item">
                    <div class="item-title">
                        <b>团队建设与组织管理</b>
                    </div>
                    <div class="item-desc">
                         &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 创新引入“智囊团”机制，整合企业内部核心骨干与外部权威专家、创业导师、专业顾问（涵盖教育、设计、科技、营销等领域）组建跨领域决策咨询团队，形成“内部执行+外部智囊”的双轮驱动模式，不断为企业提供战略建议，推动重大产品创新落地。

                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  建立“扁平化管理+项目制激励”的组织架构，打造专业团队，核心技术骨干和管理层稳定。推行“内部创业孵化”机制，鼓励员工创新项目，构建完善的人才培养体系。
                    </div>
                </div>

                <div class="item">
                    <div class="item-title">
                        <b>知识产权与合规管理</b>
                    </div>
                    <div class="item-desc">
                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  主导完成“科科好”“珊珊同学”“欧易金”等核心品牌商标注册。建立健全企业合规体系，推行ISO9001质量管理体系、ISO14001环境管理体系，确保企业可持续发展。
                    </div>
                </div>

                <div class="item">
                    <div class="item-title">
                        <b>资源整合与跨界合作</b>
                    </div>
                    <div class="item-desc">
                        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  推动品牌与教育机构、文化IP、地方政府开展深度合作，举办“科科好·文化节”“珊珊同学·城市青年艺术展”等品牌活动。联合地方企业打造“侨乡文化创意产品”系列，助力传统文化传播，获得社会广泛认可。
                    </div>
                </div>
            </div>
        </div>

        <!-- 核心成就 -->
        <div class="section">
            <h2>核心成就</h2>
            <div class="content">
                <div class="item">
                    <div class="item-desc">
                        1. 构建“科技创新反哺公益”的独特生态模式，通过欧易金科技的利润支撑科科好品牌半公益事业，实现商业价值与社会价值的平衡发展；<br>
                        2. 成功打造“科科好”“珊珊同学”“欧易金”三大差异化品牌矩阵，覆盖学生用品、潮流文创、品质生活三大领域，构建多品类消费生态；<br>
                        3. 创新“智囊团”人才整合模式，实现内外部智力资源高效协同，推动企业战略决策科学性与产品创新力显著提升；<br>
                        4. 主导三家企业协同发展，形成“科技+文化+实体”的产业布局，实现知识产权、品牌运营、市场拓展的良性循环。
                    </div>
                </div>
            </div>
        </div>

        <!-- 核心技能 -->
        <div class="section">
            <h2>核心技能</h2>
            <div class="content">
                <div class="skill-list">
                    <div class="skill-item">企业战略规划</div>
                    <div class="skill-item">多品牌矩阵运营</div>
                    <div class="skill-item">生态闭环构建</div>
                    <div class="skill-item">智囊团机制搭建</div>
                    <div class="skill-item">跨界合作整合</div>
                    <div class="skill-item">知识产权布局</div>
                    <div class="skill-item">市场趋势洞察</div>
                </div>
            </div>
        </div>

        <!-- 品牌理念与价值观 -->
        <div class="section">
            <h2>品牌理念与价值观</h2>
            <div class="content">
                <div class="item-desc">
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  坚守“用户为本、品质为先、创新驱动、多元包容”的核心价值观，创新实践“商业反哺公益”模式，旗下品牌分别聚焦“学生成长陪伴”“青春个性表达”“品质生活体验”三大方向，通过差异化定位满足不同群体需求，传递积极向上的生活态度与社会责任感。
                </div>
            </div>
        </div>


 <!-- 核心愿景 -->
        <div class="section">
            <h2>核心愿景</h2>
            <div class="content">
                <div class="item-desc">
                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 打造商业与公益共生的中国领先多场景消费生态品牌矩阵
                </div>
            </div>
        </div>



        <!-- 社会活动与媒体报道 -->
        <div class="section">
            <h2>社会活动与媒体报道</h2>
           <div class="item-desc">
2025-05-6日 <a href="https://mp.weixin.qq.com/s/tp4aywdZocG-2Vkw_Pwy6A" target="_blank">"科科好"携手陈皮村：传承侨乡文化，共筑"交子牛集"美食盛宴</a>
<br>
2025年1月5日 <a href="https://mp.weixin.qq.com/s/4Kg2-IFoTW6h37TU6zcy8Q" target="_blank">智跑定向运动走进江门，小贝塔携手科科好推动侨乡文化焕新</a>
<br>
2024-05-28日 <a href="https://mp.weixin.qq.com/s/dN3QklZZaX6z5azLdR4sDQ" target="_blank">科科好品牌携手逢年过节签约达成战略合作,将进一步扩大市场影响力</a>
<br>       
                    </div>
        </div>

      
</div>		</div>
	</section>
    
    <!-- 底部信息 -->
    <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="#">教育新闻</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="#">教材教辅</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-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="#">经营资质</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="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="https://www.xueersi.com/" target="_blank">学而思网校</a>
            <a href="https://www.koolearn.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 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> 版权所有</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';
                }
            });
        });
    </script>
</body>
</html>