<!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">
			<p>
五月的侨乡新会，陈皮飘香，一场集文化体验与美食狂欢于一体的盛宴火热上演。5月1日至5日，由江门市新会陈皮村市场股份有限公司、江门市蓬江区香湘食品有限公司、广东科科好文化科技有限公司、江门市新会区三好陈皮有限公司联合承办的“趣游陈皮村”活动，吸引了全国各地的游客与文化爱好者纷至沓来，共同领略新会陈皮文化与侨乡风情的独特魅力。
</p><img src="/static/news/2025/0501/1.png">
<p>
新会陈皮村作为中国首个大型特色农产品商业文化综合体，自2013年由董事长吴国荣斥资5亿元匠心打造，已成为新会陈皮产业的核心枢纽。这里不仅构建起从种植、收储到鉴定、研发的全产业链体系，更通过文旅融合、特色餐饮等多元业态，让千年陈皮文化“活”了起来。其中，陈皮村旗下高端疗愈品牌“宋雅辰香”，联合科研机构深度挖掘新会陈皮与茶枝柑的养生价值，推出系列精油及养护产品，将传统陈皮文化与现代健康生活方式完美融合，尽显产业创新活力。
</p><img src="/static/news/2025/0501/2.png">
<p>
此次活动中，广东科科好文化科技有限公司旗下的“科科好”和“珊珊同学”品牌与陈皮村展开了紧密合作。“科科好”品牌自2012年创立以来，以 “让天下学子成绩科科好，生活百科科科好” 为使命，始终以学生需求为关注焦点，致力于提供涵盖学习、体育、娱乐、生活和出行等各方面的优质产品和服务，凭借精准的市场定位、卓越的产品质量和积极向上的品牌形象，成为广大学生和家长信赖的民族品牌。而“珊珊同学”作为服务学生群体的青春活力品牌，同样在本次活动中展现出独特魅力。
</p><img src="/static/news/2025/0501/3.png">
<p>
作为活动的重要合作方，江门市蓬江区香湘食品有限公司同样发挥着关键作用。该公司深耕食品领域多年，始终秉持创新与品质并重的理念，致力于挖掘地方特色美食文化。其旗下“交子牛集”品牌，基于轻资产与跨界资源整合创新模式，以优化供应链管理、降低运营门槛为核心，吸引众多创业者加入，打造出独具特色的美食矩阵。公司精心研发的牛杂小吃，严选新鲜牛杂，经多道工序清洗去腥，佐以独家秘制酱料炖煮，肉质鲜嫩、酱香浓郁，成为现场人气爆款；还有那饱满多汁的饺子，从面皮的精心揉制到馅料的巧妙调配，每一步都饱含匠心，无论是经典的玉米猪肉饺，还是创新的陈皮牛肉饺，都令人回味无穷。而其推出的陈皮鸡蛋面，以新会陈皮入料，将陈皮的醇厚香气融入劲道面条与鲜香蛋汤之中，口感层次丰富，为传统面食赋予全新风味。此外，各类陈皮小吃同样别具一格，陈皮糖酸甜可口，陈皮糕软糯细腻，每一口都散发着陈皮独有的魅力，这些美食不仅为消费者带来味蕾享受，更为地方美食文化的传播搭建了桥梁。 
</p><img src="/static/news/2025/0501/4.png">
<p>
而江门市新会区三好陈皮有限公司同样表现卓越。该公司扎根新会核心产区，坐拥千亩生态柑园，坚持“好原料、好工艺、好口碑”理念，将传统“三时采摘、天然生晒”技艺与现代科技结合，产品涵盖年份陈皮、陈皮茶饮、文创礼盒等多元品类。其凭借严苛的品质把控，荣获“广东省重点农业龙头企业”等称号，还积极投身乡村振兴，通过“公司+农户”模式带动产业发展，设立文化研学基地推广非遗技艺，成为新会陈皮产业的标杆企业。此次活动中，三好陈皮不仅提供特色龟苓膏作为赞助礼品，更通过现场展示与互动，让大众深度感受陈皮产品的匠心魅力。
</p><img src="/static/news/2025/0501/5.png">
<p>
为期五天的活动，亮点纷呈、精彩不断。从早到晚，新会陈皮村沉浸在欢乐的海洋中。游园美食区里，陈皮鸭、陈皮糕、陈皮普洱茶等特色佳肴香气四溢，游客们大快朵颐，感受陈皮入馔的奇妙滋味；陈皮知识答题闯关、打卡趣味寻宝等互动环节，吸引男女老少踊跃参与，大家在欢声笑语中学习陈皮历史、辨别陈皮品质；非遗工坊内，手工编织葵扇、新会鱼灯制作、DIY柑灯与柑普茶体验区人气爆棚，游客们在匠人的指导下亲手创作，将侨乡传统技艺带回家；小丑巡游、文艺演出、五四青年朗诵、乐队表演等节目轮番上阵，现场掌声、欢呼声此起彼伏，为活动增添了浓郁的艺术氛围。
</p><img src="/static/news/2025/0501/6.png">
<p>
活动令人期待的“陈皮小博士”颁奖，在知识竞答中脱颖而出的打卡参赛者，获得“科科好”与“交子牛集”联名的“逢考必过，我要科科好”钥匙扣、“珊珊同学”与“交子牛集”联名考试笔、江门市蓬江区香湘食品有限公司赞助的陈皮鸡蛋面，以及三好陈皮有限公司赞助的陈皮龟苓膏。不少家长感慨：“这场活动不仅让孩子玩得开心，更让他们深入了解了家乡文化，意义非凡！”
</p><img src="/static/news/2025/0501/7.png">
<p>
作为暨南大学管理学院餐饮食品行会副秘书长、暨南大学青创校友同学会理事，“科科好”品牌创始人李红宙始终牢记总书记“把中华优秀传统文化传播到五湖四海”的嘱托。此次携手陈皮村与“交子牛集”，正是他践行社会责任、推动文化传承的生动实践。通过将品牌的积极价值观与侨乡文化深度融合，活动不仅为游客带来一场沉浸式文化与美食体验，更在青少年心中播下了文化传承的种子，引导学子饮水思源、奋发向上。
</p>
<img src="/static/news/2025/0501/8.png">
<p>
未来，“科科好”、新会陈皮村、“交子牛集”与三好陈皮有限公司将继续深化合作，以创新为驱动，探索“文化+产业+教育”的融合发展新模式，让新会陈皮文化与侨乡风情走向全国、迈向世界，为弘扬中华优秀传统文化、助力地方经济高质量发展贡献更大力量。
</p>


		</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>