File size: 49,232 Bytes
cdf6a77 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>南京中高考备考指南 - 全方位策略与支持</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero-gradient {
background: linear-gradient(135deg, #4f46e5 0%, #1e40af 100%);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.timeline-item:not(:last-child)::after {
content: '';
position: absolute;
left: 1.25rem;
top: 2.5rem;
height: calc(100% - 2.5rem);
width: 2px;
background-color: #e5e7eb;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body class="font-sans bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-6 py-3">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<div class="w-10 h-10 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold">宁</div>
<span class="text-xl font-semibold text-gray-800">南京备考指南</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#knowledge" class="text-gray-700 hover:text-blue-600 transition">知识体系</a>
<a href="#skills" class="text-gray-700 hover:text-blue-600 transition">应试技巧</a>
<a href="#support" class="text-gray-700 hover:text-blue-600 transition">家校支持</a>
<a href="#resources" class="text-gray-700 hover:text-blue-600 transition">备考资源</a>
<a href="#contact" class="bg-blue-600 text-white px-4 py-2 rounded-md hover:bg-blue-700 transition">联系我们</a>
</div>
<button class="md:hidden text-gray-700 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-gradient text-white py-20">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">南京中高考备考全攻略</h1>
<p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto">科学规划 · 高效学习 · 家校协同 · 成就梦想</p>
<div class="flex flex-col md:flex-row justify-center gap-4">
<a href="#knowledge" class="bg-white text-blue-600 px-8 py-3 rounded-md font-medium hover:bg-gray-100 transition">开始探索</a>
<a href="#contact" class="border-2 border-white text-white px-8 py-3 rounded-md font-medium hover:bg-white hover:text-blue-600 transition">咨询专家</a>
</div>
</div>
</header>
<!-- Stats Section -->
<section class="bg-white py-12">
<div class="container mx-auto px-6">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div>
<div class="text-4xl font-bold text-blue-600 mb-2">95%+</div>
<div class="text-gray-600">重点高中录取率</div>
</div>
<div>
<div class="text-4xl font-bold text-blue-600 mb-2">10+</div>
<div class="text-gray-600">年备考指导经验</div>
</div>
<div>
<div class="text-4xl font-bold text-blue-600 mb-2">500+</div>
<div class="text-gray-600">成功案例</div>
</div>
<div>
<div class="text-4xl font-bold text-blue-600 mb-2">360°</div>
<div class="text-gray-600">全方位支持</div>
</div>
</div>
</div>
</section>
<!-- Knowledge System Section -->
<section id="knowledge" class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">科学知识体系构建</h2>
<p class="text-gray-600 max-w-2xl mx-auto">针对南京中高考特点,系统梳理各学科知识框架,帮助学生建立完整的知识网络</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Subject Card 1 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-300 card-hover">
<div class="h-48 bg-gradient-to-r from-blue-500 to-blue-400 flex items-center justify-center">
<i class="fas fa-square-root-alt text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">数学知识体系</h3>
<p class="text-gray-600 mb-4">涵盖代数、几何、函数等核心模块,重点突破南京中考高频考点</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> 函数与图像专题</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> 几何证明技巧</li>
<li class="flex items-center"><i class="fas fa-check-circle text-blue-500 mr-2"></i> 应用题解题策略</li>
</ul>
</div>
</div>
<!-- Subject Card 2 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-300 card-hover">
<div class="h-48 bg-gradient-to-r from-green-500 to-green-400 flex items-center justify-center">
<i class="fas fa-language text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">语文知识体系</h3>
<p class="text-gray-600 mb-4">古诗文、现代文阅读、作文三位一体,提升语文核心素养</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> 南京特色文言文</li>
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> 阅读理解方法论</li>
<li class="flex items-center"><i class="fas fa-check-circle text-green-500 mr-2"></i> 高分作文模板</li>
</ul>
</div>
</div>
<!-- Subject Card 3 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden transition duration-300 card-hover">
<div class="h-48 bg-gradient-to-r from-purple-500 to-purple-400 flex items-center justify-center">
<i class="fas fa-flask text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">理综知识体系</h3>
<p class="text-gray-600 mb-4">物理、化学实验与理论结合,培养科学思维与解题能力</p>
<ul class="space-y-2 text-sm text-gray-600">
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> 物理实验专题</li>
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> 化学方程式系统</li>
<li class="flex items-center"><i class="fas fa-check-circle text-purple-500 mr-2"></i> 综合计算技巧</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Exam Skills Section -->
<section id="skills" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">高效应试技巧</h2>
<p class="text-gray-600 max-w-2xl mx-auto">掌握这些技巧,帮助你在考场上发挥最佳水平</p>
</div>
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold mb-4 text-blue-600">时间管理策略</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-clock text-blue-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">分段计时法</h4>
<p class="text-gray-600 text-sm">将考试时间按题目数量和分值合理分配,留出10-15分钟检查时间</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-flag text-blue-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">优先级策略</h4>
<p class="text-gray-600 text-sm">先易后难,确保基础分全拿,难题标记后回头处理</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-brain text-blue-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">心理调节技巧</h4>
<p class="text-gray-600 text-sm">遇到难题深呼吸,暂时跳过,保持平稳心态</p>
</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/2">
<div class="bg-gray-50 p-8 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold mb-4 text-green-600">答题规范指南</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fas fa-pencil-alt text-green-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">书写规范</h4>
<p class="text-gray-600 text-sm">字迹清晰,卷面整洁,数学符号使用标准格式</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fas fa-list-ol text-green-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">步骤完整</h4>
<p class="text-gray-600 text-sm">理科题目写出关键步骤,即使结果错误也能获得步骤分</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fas fa-search text-green-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">审题技巧</h4>
<p class="text-gray-600 text-sm">划出题目关键词,避免粗心错误,注意题目中的隐藏条件</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-12 bg-blue-50 p-8 rounded-lg">
<h3 class="text-xl font-semibold mb-6 text-center text-blue-700">南京中高考特色题型突破</h3>
<div class="grid md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-blue-600 text-2xl mb-3">
<i class="fas fa-question-circle"></i>
</div>
<h4 class="font-medium mb-2">南京特色文言文</h4>
<p class="text-gray-600 text-sm">分析近五年南京中考文言文命题规律,掌握高频考点和解题方法</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-blue-600 text-2xl mb-3">
<i class="fas fa-chart-line"></i>
</div>
<h4 class="font-medium mb-2">函数综合应用</h4>
<p class="text-gray-600 text-sm">针对南京卷函数题特点,训练数形结合与实际问题建模能力</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-blue-600 text-2xl mb-3">
<i class="fas fa-vial"></i>
</div>
<h4 class="font-medium mb-2">实验探究题</h4>
<p class="text-gray-600 text-sm">掌握实验设计、数据分析、结论推导的标准答题模板</p>
</div>
</div>
</div>
</div>
</section>
<!-- Family-School Support Section -->
<section id="support" class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">家校协同支持体系</h2>
<p class="text-gray-600 max-w-2xl mx-auto">家庭与学校共同努力,为学生创造最佳备考环境</p>
</div>
<div class="flex flex-col lg:flex-row gap-8 items-center">
<div class="lg:w-1/2">
<img src="https://images.unsplash.com/photo-1588072432836-e10032774350?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1472&q=80" alt="家校沟通" class="rounded-lg shadow-lg w-full h-auto">
</div>
<div class="lg:w-1/2">
<div class="mb-8">
<h3 class="text-xl font-semibold mb-4 text-purple-600">家长支持指南</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-full mr-4">
<i class="fas fa-home text-purple-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">营造良好家庭氛围</h4>
<p class="text-gray-600 text-sm">保持家庭环境安静,避免过度施压,关注孩子情绪变化</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-full mr-4">
<i class="fas fa-utensils text-purple-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">科学饮食与作息</h4>
<p class="text-gray-600 text-sm">提供均衡营养,保证充足睡眠,避免熬夜学习</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-full mr-4">
<i class="fas fa-comments text-purple-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">有效沟通技巧</h4>
<p class="text-gray-600 text-sm">多倾听少说教,用鼓励代替批评,与老师保持定期沟通</p>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-xl font-semibold mb-4 text-indigo-600">学校备考方案</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-indigo-100 p-2 rounded-full mr-4">
<i class="fas fa-calendar-alt text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">三轮复习规划</h4>
<p class="text-gray-600 text-sm">基础巩固→专题突破→模拟冲刺,科学安排复习进度</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-indigo-100 p-2 rounded-full mr-4">
<i class="fas fa-chalkboard-teacher text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">分层教学策略</h4>
<p class="text-gray-600 text-sm">根据学生水平分组辅导,因材施教,个性化提升</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-indigo-100 p-2 rounded-full mr-4">
<i class="fas fa-heartbeat text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">心理辅导支持</h4>
<p class="text-gray-600 text-sm">定期开展心理讲座,提供一对一咨询,缓解考试焦虑</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Preparation Timeline -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">南京中高考备考时间轴</h2>
<p class="text-gray-600 max-w-2xl mx-auto">科学规划备考节奏,把握关键时间节点</p>
</div>
<div class="relative max-w-3xl mx-auto">
<!-- Timeline Item 1 -->
<div class="relative timeline-item pl-16 pb-12">
<div class="absolute left-0 top-0 w-10 h-10 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold">9月</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<h3 class="text-lg font-semibold mb-2 text-blue-600">基础巩固阶段</h3>
<p class="text-gray-600">系统梳理各科基础知识,建立完整知识框架,重点突破薄弱环节</p>
<div class="mt-3 flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">教材精读</span>
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">概念梳理</span>
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">基础训练</span>
</div>
</div>
</div>
<!-- Timeline Item 2 -->
<div class="relative timeline-item pl-16 pb-12">
<div class="absolute left-0 top-0 w-10 h-10 bg-green-600 rounded-full flex items-center justify-center text-white font-bold">12月</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<h3 class="text-lg font-semibold mb-2 text-green-600">专题突破阶段</h3>
<p class="text-gray-600">针对高频考点和难点进行专题训练,提升综合解题能力</p>
<div class="mt-3 flex flex-wrap gap-2">
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">专题训练</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">错题整理</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">方法总结</span>
</div>
</div>
</div>
<!-- Timeline Item 3 -->
<div class="relative timeline-item pl-16 pb-12">
<div class="absolute left-0 top-0 w-10 h-10 bg-yellow-600 rounded-full flex items-center justify-center text-white font-bold">3月</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<h3 class="text-lg font-semibold mb-2 text-yellow-600">模拟冲刺阶段</h3>
<p class="text-gray-600">全真模拟考试环境,调整应试状态,查漏补缺</p>
<div class="mt-3 flex flex-wrap gap-2">
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">模拟考试</span>
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">时间管理</span>
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">心理调节</span>
</div>
</div>
</div>
<!-- Timeline Item 4 -->
<div class="relative pl-16">
<div class="absolute left-0 top-0 w-10 h-10 bg-red-600 rounded-full flex items-center justify-center text-white font-bold">5月</div>
<div class="bg-gray-50 p-6 rounded-lg shadow-sm">
<h3 class="text-lg font-semibold mb-2 text-red-600">考前调整阶段</h3>
<p class="text-gray-600">回归基础,保持适度练习,调整作息,准备考试用品</p>
<div class="mt-3 flex flex-wrap gap-2">
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">知识回顾</span>
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">作息调整</span>
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">物品准备</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Resources Section -->
<section id="resources" class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">备考资源中心</h2>
<p class="text-gray-600 max-w-2xl mx-auto">精选南京中高考备考资料,助力高效复习</p>
</div>
<div class="mb-8 flex justify-center">
<div class="inline-flex rounded-md shadow-sm">
<button onclick="switchTab('past-papers')" class="px-6 py-3 text-sm font-medium rounded-l-lg bg-blue-600 text-white tab-button active">
历年真题
</button>
<button onclick="switchTab('books')" class="px-6 py-3 text-sm font-medium bg-white text-gray-700 hover:bg-gray-50 tab-button">
推荐书目
</button>
<button onclick="switchTab('online')" class="px-6 py-3 text-sm font-medium rounded-r-lg bg-white text-gray-700 hover:bg-gray-50 tab-button">
在线资源
</button>
</div>
</div>
<div id="past-papers" class="tab-content active">
<div class="grid md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-blue-600 text-2xl mb-3">
<i class="fas fa-file-alt"></i>
</div>
<h3 class="text-lg font-semibold mb-2">南京中考真题集</h3>
<p class="text-gray-600 text-sm mb-4">2018-2023年南京中考全科真题及答案解析</p>
<a href="#" class="text-blue-600 text-sm font-medium inline-flex items-center">
下载资源 <i class="fas fa-download ml-2"></i>
</a>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-blue-600 text-2xl mb-3">
<i class="fas fa-chart-bar"></i>
</div>
<h3 class="text-lg font-semibold mb-2">考点分析报告</h3>
<p class="text-gray-600 text-sm mb-4">近五年南京中高考各科考点分布与命题趋势分析</p>
<a href="#" class="text-blue-600 text-sm font-medium inline-flex items-center">
查看详情 <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-blue-600 text-2xl mb-3">
<i class="fas fa-tasks"></i>
</div>
<h3 class="text-lg font-semibold mb-2">模拟试题汇编</h3>
<p class="text-gray-600 text-sm mb-4">南京名校模拟试题及评分标准,含详细解析</p>
<a href="#" class="text-blue-600 text-sm font-medium inline-flex items-center">
立即获取 <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<div id="books" class="tab-content">
<div class="grid md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-green-600 text-2xl mb-3">
<i class="fas fa-book"></i>
</div>
<h3 class="text-lg font-semibold mb-2">《南京中考全攻略》</h3>
<p class="text-gray-600 text-sm mb-4">南京教研室编写,针对本地考情的最新备考指南</p>
<a href="#" class="text-green-600 text-sm font-medium inline-flex items-center">
购买链接 <i class="fas fa-shopping-cart ml-2"></i>
</a>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-green-600 text-2xl mb-3">
<i class="fas fa-book-open"></i>
</div>
<h3 class="text-lg font-semibold mb-2">《五年高考三年模拟》</h3>
<p class="text-gray-600 text-sm mb-4">经典高考复习资料,南京专版含本地特色题型</p>
<a href="#" class="text-green-600 text-sm font-medium inline-flex items-center">
购买链接 <i class="fas fa-shopping-cart ml-2"></i>
</a>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-green-600 text-2xl mb-3">
<i class="fas fa-book-reader"></i>
</div>
<h3 class="text-lg font-semibold mb-2">《中考作文满分秘籍》</h3>
<p class="text-gray-600 text-sm mb-4">收录南京中考高分作文及评析,提供实用写作模板</p>
<a href="#" class="text-green-600 text-sm font-medium inline-flex items-center">
购买链接 <i class="fas fa-shopping-cart ml-2"></i>
</a>
</div>
</div>
</div>
<div id="online" class="tab-content">
<div class="grid md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-purple-600 text-2xl mb-3">
<i class="fas fa-laptop"></i>
</div>
<h3 class="text-lg font-semibold mb-2">南京教育云平台</h3>
<p class="text-gray-600 text-sm mb-4">官方优质课程资源,含名师讲解视频和在线练习</p>
<a href="#" class="text-purple-600 text-sm font-medium inline-flex items-center">
访问网站 <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-purple-600 text-2xl mb-3">
<i class="fas fa-mobile-alt"></i>
</div>
<h3 class="text-lg font-semibold mb-2">备考APP推荐</h3>
<p class="text-gray-600 text-sm mb-4">错题管理、知识点速记、模拟测试一站式学习工具</p>
<a href="#" class="text-purple-600 text-sm font-medium inline-flex items-center">
下载应用 <i class="fas fa-download ml-2"></i>
</a>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="text-purple-600 text-2xl mb-3">
<i class="fas fa-users"></i>
</div>
<h3 class="text-lg font-semibold mb-2">备考交流社区</h3>
<p class="text-gray-600 text-sm mb-4">与南京考生交流经验,分享学习资料和备考心得</p>
<a href="#" class="text-purple-600 text-sm font-medium inline-flex items-center">
加入讨论 <i class="fas fa-comments ml-2"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">成功学员案例</h2>
<p class="text-gray-600 max-w-2xl mx-auto">听听他们是如何在南京中高考中取得优异成绩的</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center text-blue-600 font-bold mr-4">王</div>
<div>
<h4 class="font-semibold">王同学</h4>
<p class="text-gray-500 text-sm">南京外国语学校</p>
</div>
</div>
<p class="text-gray-600 mb-4">"通过系统的知识梳理和专题训练,我的数学成绩从90分提升到了115分,最终考入心仪的高中。"</p>
<div class="flex items-center text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-green-100 flex items-center justify-center text-green-600 font-bold mr-4">李</div>
<div>
<h4 class="font-semibold">李同学</h4>
<p class="text-gray-500 text-sm">金陵中学</p>
</div>
</div>
<p class="text-gray-600 mb-4">"时间管理策略让我在考场上从容应对,语文作文从三类文提升到一类文,总分提高了30多分。"</p>
<div class="flex items-center text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<div class="bg-gray-50 p-8 rounded-lg">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-purple-100 flex items-center justify-center text-purple-600 font-bold mr-4">张</div>
<div>
<h4 class="font-semibold">张同学家长</h4>
<p class="text-gray-500 text-sm">南京师范大学附属中学</p>
</div>
</div>
<p class="text-gray-600 mb-4">"家校协同的方案让我们知道如何正确支持孩子,减轻了家庭矛盾,孩子备考状态明显改善。"</p>
<div class="flex items-center text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-blue-600 text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold mb-6">立即获取专属备考方案</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto">我们的教育专家将为您提供个性化备考建议</p>
<a href="#contact" class="bg-white text-blue-600 px-8 py-3 rounded-md font-medium hover:bg-gray-100 transition">免费咨询</a>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">联系我们</h2>
<p class="text-gray-600 max-w-2xl mx-auto">有任何问题或需要个性化备考建议,请随时联系我们</p>
</div>
<div class="flex flex-col lg:flex-row gap-12">
<div class="lg:w-1/2">
<form class="space-y-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">姓名</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入您的姓名">
</div>
<div>
<label for="phone" class="block text-sm font-medium text-gray-700 mb-1">联系电话</label>
<input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请输入您的手机号码">
</div>
<div>
<label for="student" class="block text-sm font-medium text-gray-700 mb-1">学生年级</label>
<select id="student" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500">
<option value="">请选择年级</option>
<option value="7">初一</option>
<option value="8">初二</option>
<option value="9">初三</option>
<option value="10">高一</option>
<option value="11">高二</option>
<option value="12">高三</option>
</select>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">咨询内容</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500" placeholder="请简要描述您的咨询需求"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 text-white py-3 px-4 rounded-md hover:bg-blue-700 transition font-medium">提交咨询</button>
</form>
</div>
<div class="lg:w-1/2">
<div class="bg-gray-50 p-8 rounded-lg h-full">
<h3 class="text-xl font-semibold mb-6">联系方式</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">南京备考指导中心</h4>
<p class="text-gray-600">南京市玄武区珠江路88号新世界中心A座15楼</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">咨询热线</h4>
<p class="text-gray-600">025-12345678</p>
<p class="text-gray-600">18012345678(24小时)</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">电子邮箱</h4>
<p class="text-gray-600">contact@nj-edu.com</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-clock text-blue-600"></i>
</div>
<div>
<h4 class="font-medium mb-1">工作时间</h4>
<p class="text-gray-600">周一至周六 9:00-18:00</p>
<p class="text-gray-600">周日 预约咨询</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-medium mb-4">关注我们</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition">
<i class="fab fa-weixin"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition">
<i class="fab fa-weibo"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition">
<i class="fab fa-tiktok"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition">
<i class="fab fa-bilibili"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<div class="w-10 h-10 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold mr-3">宁</div>
<span class="text-xl font-semibold">南京备考指南</span>
</div>
<p class="text-gray-400 text-sm">专注南京中高考备考指导10年,助力学子圆梦理想学校。</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">快速链接</h3>
<ul class="space-y-2 text-gray-400">
<li><a href="#knowledge" class="hover:text-white transition">知识体系</a></li>
<li><a href="#skills" class="hover:text-white transition">应试技巧</a></li>
<li><a href="#support" class="hover:text-white transition">家校支持</a></li>
<li><a href="#resources" class="hover:text-white transition">备考资源</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">政策资讯</h3>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition">南京中考政策</a></li>
<li><a href="#" class="hover:text-white transition">高考改革动态</a></li>
<li><a href="#" class="hover:text-white transition">名校招生简章</a></li>
<li><a href="#" class="hover:text-white transition">备考日历</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">订阅资讯</h3>
<p class="text-gray-400 text-sm mb-4">订阅获取最新备考资料和考试动态</p>
<form class="flex">
<input type="email" placeholder="您的邮箱" class="px-4 py-2 w-full rounded-l-md focus:outline-none text-gray-800">
<button type="submit" class="bg-blue-600 text-white px-4 py-2 rounded-r-md hover:bg-blue-700 transition">订阅</button>
</form>
</div>
</div>
<div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400 text-sm">
<p>© 2023 南京备考指南. 保留所有权利. 苏ICP备XXXXXXXX号</p>
</div>
</div>
</footer>
<script>
// Tab switching functionality
function switchTab(tabId) {
// Hide all tab contents
document.querySelectorAll('.tab-content').forEach(tab => {
tab.classList.remove('active');
});
// Remove active class from all buttons
document.querySelectorAll('.tab-button').forEach(button => {
button.classList.remove('active', 'bg-blue-600', 'text-white');
button.classList.add('bg-white', 'text-gray-700');
});
// Show selected tab content
document.getElementById(tabId).classList.add('active');
// Add active class to clicked button
event.target.classList.add('active', 'bg-blue-600', 'text-white');
event.target.classList.remove('bg-white', 'text-gray-700');
}
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
}
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=aigclab/gnaix" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |