course_module_template.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>{{DAY_N_TITLE}}</title>
  7. <style>
  8. * { margin: 0; padding: 0; box-sizing: border-box; }
  9. body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.8; color: #333; background: #f8f9fa; padding: 20px; }
  10. .container { max-width: 800px; margin: 0 auto; background: white; padding: 40px; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
  11. h1 { color: #2c3e50; border-bottom: 3px solid #e74c3c; padding-bottom: 10px; margin-bottom: 30px; }
  12. h2 { color: #34495e; margin-top: 40px; margin-bottom: 20px; }
  13. h3 { color: #2c3e50; margin-top: 30px; margin-bottom: 15px; }
  14. .section { background: #fff; margin-bottom: 20px; border-left: 4px solid #e74c3c; padding: 20px; border-radius: 0 8px 8px 0; }
  15. .module { background: #e8f4f8; padding: 15px 20px; margin-bottom: 15px; border-radius: 8px; font-weight: bold; color: #2980b9; }
  16. .math { font-family: "Times New Roman", serif; font-style: italic; }
  17. .equation { background: #f0f3f5; padding: 20px; margin: 20px 0; border-radius: 8px; text-align: center; font-size: 1.2em; }
  18. code { background: #f1f1f1; padding: 2px 6px; border-radius: 4px; font-family: "Fira Code", monospace; }
  19. strong { color: #e74c3c; }
  20. .youtube { color: #e74c3c; font-weight: bold; }
  21. ul { margin-left: 20px; margin-bottom: 15px; }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="container">
  26. <h1>Day {{DAY_N}}: {{TOPIC_NAME}}</h1>
  27. <div class="section">
  28. <div class="module">【技术债与演进动机】</div>
  29. <p>{{TECHNICAL_DEBT}}</p>
  30. </div>
  31. <div class="section">
  32. <div class="module">【直觉建立】</div>
  33. <p>{{INTUITION}}</p>
  34. <p>🔍 <strong>视频查找关键词:</strong> <span class="youtube">{{VIDEO_KEYWORD}}</span></p>
  35. </div>
  36. <div class="section">
  37. <div class="module">【符号解码字典】</div>
  38. <p>{{SYMBOL_DECODER}}</p>
  39. </div>
  40. <div class="section">
  41. <div class="module">【核心推导】</div>
  42. <p>{{CORE_DERIVATION}}</p>
  43. <div class="equation">{{LATEX_FORMULA}}</div>
  44. </div>
  45. <div class="section">
  46. <div class="module">【工程优化点】</div>
  47. <p>{{OPTIMIZATION_POINTS}}</p>
  48. </div>
  49. <div class="section">
  50. <div class="module">【今日靶机】</div>
  51. <p>{{CODING_TASK}}</p>
  52. </div>
  53. </div>
  54. </body>
  55. </html>