officialweb.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969
  1. <template>
  2. <div id="app">
  3. <!-- 导航栏 - 使用Element Navbar组件 -->
  4. <nav class="custom-nav">
  5. <div class="nav-logo" @click="scrollToTop">
  6. <i class="fas fa-brain"></i> GPS-REN
  7. </div>
  8. <el-menu class="nav-menu" mode="horizontal" :default-active="activeNav">
  9. <el-menu-item index="1" @click="scrollToSection('home')">首页</el-menu-item>
  10. <el-menu-item index="2" @click="scrollToSection('model')">GPS-REN教学法</el-menu-item>
  11. <el-menu-item index="3" @click="scrollToSection('features')">平台功能</el-menu-item>
  12. <el-menu-item index="4" @click="scrollToSection('cases')">使用案例</el-menu-item>
  13. <el-menu-item index="5" @click="scrollToSection('about')">关于我们</el-menu-item>
  14. </el-menu>
  15. <div class="nav-buttons">
  16. <el-button class="nav-btn-outline" @click="showLoginDialog">学生端</el-button>
  17. <el-button class="nav-btn-primary" type="primary" @click="showRegisterDialog">教师端</el-button>
  18. </div>
  19. </nav>
  20. <!-- 主体内容 -->
  21. <div>
  22. <!-- 英雄区域 -->
  23. <section class="hero" id="home">
  24. <div class="hero-content">
  25. <h1>培养能驾驭AI的高阶人才</h1>
  26. <p>面向AI时代的GPS-REN教学模式,重塑高等教育,让学生真正掌握驾驭人工智能的能力</p>
  27. <div class="hero-buttons">
  28. <!-- <a href="#" class="hero-btn hero-btn-primary">教师体验平台</a>
  29. <a href="#" class="hero-btn hero-btn-outline">学生端演示</a> -->
  30. <img :src="img" style="width:100%;height:300px"/>
  31. </div>
  32. </div>
  33. </section>
  34. <!-- GPS-REN模型展示 -->
  35. <section class="model-section" id="model">
  36. <div class="section-header">
  37. <h2>GPS-REN 教学模式</h2>
  38. <p>系统化培养AI时代所需的高阶思维与问题解决能力</p>
  39. </div>
  40. <div class="model-steps">
  41. <img :src="img0" style="width: 737px;height: 557px;"/>
  42. </div>
  43. <!-- <div class="model-steps">
  44. <el-card class="step-card" shadow="hover">
  45. <div class="step-icon">
  46. G
  47. </div>
  48. <h3>目标导向</h3>
  49. <p>明确学习目标,聚焦核心问题</p>
  50. </el-card>
  51. <el-card class="step-card" shadow="hover">
  52. <div class="step-icon">
  53. P
  54. </div>
  55. <h3>问题定义</h3>
  56. <p>精准描述问题,确立解决方向</p>
  57. </el-card>
  58. <el-card class="step-card" shadow="hover">
  59. <div class="step-icon">
  60. S
  61. </div>
  62. <h3>系统拆解</h3>
  63. <p>分解复杂问题,建立解决框架</p>
  64. </el-card>
  65. <el-card class="step-card" shadow="hover">
  66. <div class="step-icon">
  67. R
  68. </div>
  69. <h3>结果整合</h3>
  70. <p>整合解决方案,形成完整成果</p>
  71. </el-card>
  72. <el-card class="step-card" shadow="hover">
  73. <div class="step-icon">
  74. E
  75. </div>
  76. <h3>结果评估</h3>
  77. <p>系统评估方案,验证达成效果</p>
  78. </el-card>
  79. <el-card class="step-card" shadow="hover">
  80. <div class="step-icon">
  81. N
  82. </div>
  83. <h3>总结新知识</h3>
  84. <p>提炼核心知识,实现认知升级</p>
  85. </el-card>
  86. </div> -->
  87. </section>
  88. <!-- 平台功能 -->
  89. <section class="features-section" id="features">
  90. <div class="features">
  91. <div class="feature-text">
  92. <h2>智能教学平台</h2>
  93. <p>GPS-REN教学平台为教师和学生提供完整的AI时代教学解决方案,实现教与学的智能闭环。</p>
  94. <div class="feature-points">
  95. <el-row :gutter="20" style="margin-bottom: 20px;">
  96. <el-col :span="2">
  97. <i class="el-icon-success" style="color: var(--primary); font-size: 1.5rem;"></i>
  98. </el-col>
  99. <el-col :span="22">
  100. <h3>教师端</h3>
  101. <p>轻松创建课程目标,AI智能生成评价标准,跟踪学生学习进度</p>
  102. </el-col>
  103. </el-row>
  104. <el-row :gutter="20" style="margin-bottom: 20px;">
  105. <el-col :span="2">
  106. <i class="el-icon-success" style="color: var(--primary); font-size: 1.5rem;"></i>
  107. </el-col>
  108. <el-col :span="22">
  109. <h3>学生端</h3>
  110. <p>引导式学习流程,AI即时反馈,GPS-REN完整训练闭环</p>
  111. </el-col>
  112. </el-row>
  113. <el-row :gutter="20" style="margin-bottom: 20px;">
  114. <el-col :span="2">
  115. <i class="el-icon-success" style="color: var(--primary); font-size: 1.5rem;"></i>
  116. </el-col>
  117. <el-col :span="22">
  118. <h3>评价系统</h3>
  119. <p>基于GPS-REN的多维度评价体系,AI辅助精准评分与反馈</p>
  120. </el-col>
  121. </el-row>
  122. </div>
  123. <!-- <el-button type="primary" size="large" style="margin-top: 1.5rem; padding: 12px 30px;">查看平台功能</el-button> -->
  124. </div>
  125. <el-card class="feature-image-card">
  126. <i class="el-icon-monitor"></i>
  127. </el-card>
  128. </div>
  129. </section>
  130. <!-- 评价标准展示 -->
  131. <section class="evaluation-section">
  132. <div class="section-header">
  133. <h2>科学的评价标准</h2>
  134. <p>基于GPS-REN的多维度评价体系,确保学习质量</p>
  135. </div>
  136. <div class="evaluation-table">
  137. <table>
  138. <thead>
  139. <tr>
  140. <th>步骤</th>
  141. <th>评价指标</th>
  142. <th>权重</th>
  143. </tr>
  144. </thead>
  145. <tbody>
  146. <tr>
  147. <td>问题定义 (P)</td>
  148. <td>功能描述准确、术语表达规范、接口定义清晰</td>
  149. <td>20%</td>
  150. </tr>
  151. <tr>
  152. <td>系统拆解 (S)</td>
  153. <td>拆解维度合理、逻辑结构完整、颗粒度适中</td>
  154. <td>20%</td>
  155. </tr>
  156. <tr>
  157. <td>结果获取 (R)</td>
  158. <td>解决方案有效性</td>
  159. <td>10%</td>
  160. </tr>
  161. <tr>
  162. <td>结果评估 (E)</td>
  163. <td>评估方案合理、评估过程真实、评估结果达成度</td>
  164. <td>20%</td>
  165. </tr>
  166. <tr>
  167. <td>总结新知识 (N)</td>
  168. <td>关联性、新增性、联结性、准确性</td>
  169. <td>30%</td>
  170. </tr>
  171. </tbody>
  172. </table>
  173. </div>
  174. </section>
  175. <!-- 使用案例 -->
  176. <section class="case-study" id="cases">
  177. <div class="section-header">
  178. <h2>成功应用案例</h2>
  179. <p>数据结构与算法课程中的实践成果</p>
  180. </div>
  181. <div class="case-grid">
  182. <div class="case-image">
  183. <img :src="img1" style="width:578px;height: 262px;">
  184. </div>
  185. <div class="case-content">
  186. <h3>实现"两性一度"课程目标</h3>
  187. <p>在数据结构与算法课程中应用GPS-REN教学模式,成功实现了高阶性、创新性和挑战度的教学目标。</p>
  188. <ul style="margin-top: 1.5rem; margin-left: 1.5rem;">
  189. <li>
  190. <i class="el-icon-check" style="color: var(--accent); margin-right: 0.5rem;"></i>
  191. 课程内容建立元知识体系模块
  192. </li>
  193. <li>
  194. <i class="el-icon-check" style="color: var(--accent); margin-right: 0.5rem;"></i>
  195. 将原有课程内容设计为多个具体问题
  196. </li>
  197. <li>
  198. <i class="el-icon-check" style="color: var(--accent); margin-right: 0.5rem;"></i>
  199. 基础验证性考核与GPS-REN评价相结合
  200. </li>
  201. <li>
  202. <i class="el-icon-check" style="color: var(--accent); margin-right: 0.5rem;"></i>
  203. 学生运用AI工具能力提升3.2倍
  204. </li>
  205. </ul>
  206. <!-- <el-button style="margin-top: 2rem;" size="medium" plain>查看完整案例</el-button> -->
  207. </div>
  208. </div>
  209. </section>
  210. <!-- CTA区域 -->
  211. <!-- <section class="cta-section">-->
  212. <!-- <div class="cta-content">-->
  213. <!-- <h2>开启AI时代教学新范式</h2>-->
  214. <!-- <p>加入1000+教育机构的选择,共同培养能驾驭AI的高阶人才</p>-->
  215. <!-- <div class="cta-buttons">-->
  216. <!-- <el-button class="cta-btn cta-btn-light" size="large">教师免费试用</el-button>-->
  217. <!-- <el-button class="cta-btn cta-btn-outline" size="large">学校合作咨询</el-button>-->
  218. <!-- </div>-->
  219. <!-- </div>-->
  220. <!-- </section>-->
  221. <!-- 底部 -->
  222. <!-- <footer id="about">-->
  223. <!-- <div class="footer-grid">-->
  224. <!-- <div class="footer-about">-->
  225. <!-- <div class="footer-logo" @click="scrollToTop">-->
  226. <!-- <i class="fas fa-brain"></i> GPS-REN-->
  227. <!-- </div>-->
  228. <!-- <p>我们致力于推动AI时代的高等教育改革,通过GPS-REN教学模式培养能够驾驭人工智能的高阶人才。</p>-->
  229. <!-- <div class="social-links">-->
  230. <!-- <a href="#" class="social-icon"><i class="el-icon-chat-dot-round"></i></a>-->
  231. <!-- <a href="#" class="social-icon"><i class="el-icon-chat-line-round"></i></a>-->
  232. <!-- <a href="#" class="social-icon"><i class="el-icon-share"></i></a>-->
  233. <!-- <a href="#" class="social-icon"><i class="el-icon-connection"></i></a>-->
  234. <!-- </div>-->
  235. <!-- </div>-->
  236. <!-- <div class="footer-links">-->
  237. <!-- <h4>平台功能</h4>-->
  238. <!-- <ul>-->
  239. <!-- <li><a href="#">教师工作台</a></li>-->
  240. <!-- <li><a href="#">学生学习端</a></li>-->
  241. <!-- <li><a href="#">AI评价系统</a></li>-->
  242. <!-- <li><a href="#">课程管理系统</a></li>-->
  243. <!-- </ul>-->
  244. <!-- </div>-->
  245. <!-- <div class="footer-links">-->
  246. <!-- <h4>教学资源</h4>-->
  247. <!-- <ul>-->
  248. <!-- <li><a href="#">GPS-REN教学法</a></li>-->
  249. <!-- <li><a href="#">课程案例库</a></li>-->
  250. <!-- <li><a href="#">教师培训</a></li>-->
  251. <!-- <li><a href="#">API文档</a></li>-->
  252. <!-- </ul>-->
  253. <!-- </div>-->
  254. <!-- <div class="footer-links">-->
  255. <!-- <h4>关于我们</h4>-->
  256. <!-- <ul>-->
  257. <!-- <li><a href="#">公司介绍</a></li>-->
  258. <!-- <li><a href="#">教研团队</a></li>-->
  259. <!-- <li><a href="#">加入我们</a></li>-->
  260. <!-- <li><a href="#">联系客服</a></li>-->
  261. <!-- </ul>-->
  262. <!-- </div>-->
  263. <!-- </div>-->
  264. <!-- <div class="copyright">-->
  265. <!-- &copy; 2025 GPS-REN教学平台 - 培养AI时代的高阶人才-->
  266. <!-- </div>-->
  267. <!-- </footer>-->
  268. </div>
  269. </div>
  270. </template>
  271. <script>
  272. import Img1 from '@/assets/img/441.png'
  273. import Img2 from '@/assets/img/442.png'
  274. import Img3 from '@/assets/img/443.png'
  275. export default {
  276. name:'officialweb.vue',
  277. data() {
  278. return {
  279. img:Img1,
  280. img0:Img2,
  281. img1:Img3,
  282. activeNav: '1',
  283. evaluationData: [
  284. { step: '问题定义 (P)', indicator: '功能描述准确、术语表达规范、接口定义清晰', weight: '20%' },
  285. { step: '系统拆解 (S)', indicator: '拆解维度合理、逻辑结构完整、颗粒度适中', weight: '20%' },
  286. { step: '结果获取 (R)', indicator: '解决方案有效性', weight: '10%' },
  287. { step: '结果评估 (E)', indicator: '评估方案合理、评估过程真实、评估结果达成度', weight: '20%' },
  288. { step: '总结新知识 (N)', indicator: '关联性、新增性、联结性、准确性', weight: '30%' }
  289. ]
  290. };
  291. },
  292. methods: {
  293. scrollToSection(sectionId) {
  294. // 平滑滚动到指定区域
  295. const element = document.getElementById(sectionId);
  296. if (element) {
  297. element.scrollIntoView({ behavior: 'smooth' });
  298. }
  299. // 更新导航激活状态
  300. const navMap = {
  301. 'home': '1',
  302. 'model': '2',
  303. 'features': '3',
  304. 'cases': '4',
  305. 'about': '5'
  306. };
  307. this.activeNav = navMap[sectionId] || '1';
  308. },
  309. scrollToTop() {
  310. window.scrollTo({ top: 0, behavior: 'smooth' });
  311. this.activeNav = '1';
  312. },
  313. showLoginDialog() {
  314. // 这里可以显示登录对话框
  315. // this.$message({
  316. // message: '登录功能',
  317. // type: 'info'
  318. // });
  319. //以外链的形式跳转到登录页面
  320. window.open('/#/login', );
  321. // this.$router.push({name: 'login'});
  322. },
  323. showRegisterDialog() {
  324. // 这里可以显示注册对话框
  325. window.open('http://console.edu.oh-os.com/#/login', );
  326. }
  327. },
  328. mounted() {
  329. // 监听滚动,更新导航激活状态
  330. window.addEventListener('scroll', () => {
  331. const sections = [
  332. { id: 'home', offset: 100 },
  333. { id: 'model', offset: 100 },
  334. { id: 'features', offset: 100 },
  335. { id: 'cases', offset: 100 },
  336. { id: 'about', offset: 100 }
  337. ];
  338. const scrollPosition = window.scrollY || window.pageYOffset;
  339. for (const section of sections) {
  340. const element = document.getElementById(section.id);
  341. if (element) {
  342. const position = element.offsetTop - section.offset;
  343. if (scrollPosition >= position) {
  344. const navMap = {
  345. 'home': '1',
  346. 'model': '2',
  347. 'features': '3',
  348. 'cases': '4',
  349. 'about': '5'
  350. };
  351. this.activeNav = navMap[section.id];
  352. }
  353. }
  354. }
  355. });
  356. }
  357. }
  358. </script>
  359. <style>
  360. :root {
  361. --primary: #2563eb;
  362. --primary-dark: #1d4ed8;
  363. --secondary: #0f172a;
  364. --accent: #f59e0b;
  365. --light: #f8fafc;
  366. --gray: #64748b;
  367. --light-gray: #e2e8f0;
  368. }
  369. * {
  370. margin: 0;
  371. padding: 0;
  372. box-sizing: border-box;
  373. font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  374. }
  375. body {
  376. background-color: #fff;
  377. color: var(--secondary);
  378. line-height: 1.6;
  379. }
  380. /* 导航栏样式 - 使用Element Navbar风格 */
  381. .custom-nav {
  382. position: fixed;
  383. top: 0;
  384. left: 0;
  385. right: 0;
  386. z-index: 1000;
  387. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  388. background-color: rgba(255, 255, 255, 0.95);
  389. display: flex;
  390. justify-content: space-between;
  391. align-items: center;
  392. padding: 15px 5%;
  393. }
  394. .nav-logo {
  395. display: flex;
  396. align-items: center;
  397. font-size: 2rem;
  398. font-weight: 700;
  399. color: var(--primary);
  400. cursor: pointer;
  401. }
  402. .nav-logo i {
  403. margin-right: 0.5rem;
  404. font-size: 1.8rem;
  405. }
  406. .el-menu.nav-menu {
  407. background: transparent !important;
  408. border: none !important;
  409. }
  410. .el-menu.nav-menu .el-menu-item {
  411. height: 60px;
  412. line-height: 60px;
  413. padding: 0 20px;
  414. font-size: 1.05rem;
  415. font-weight: 500;
  416. color: var(--secondary);
  417. transition: color 0.3s;
  418. }
  419. .el-menu.nav-menu .el-menu-item:hover {
  420. color: var(--primary);
  421. background: transparent !important;
  422. }
  423. .nav-buttons {
  424. display: flex;
  425. gap: 15px;
  426. }
  427. .el-button.nav-btn-outline {
  428. padding: 10px 20px;
  429. border-radius: 30px;
  430. border-color: var(--primary);
  431. color: var(--primary);
  432. font-weight: 600;
  433. transition: all 0.3s;
  434. }
  435. .el-button.nav-btn-outline:hover {
  436. background-color: var(--primary);
  437. color: white;
  438. }
  439. .el-button.nav-btn-primary {
  440. padding: 10px 20px;
  441. border-radius: 30px;
  442. background-color: var(--primary);
  443. color: white;
  444. border-color: var(--primary);
  445. font-weight: 600;
  446. transition: all 0.3s;
  447. }
  448. .el-button.nav-btn-primary:hover {
  449. background-color: var(--primary-dark);
  450. border-color: var(--primary-dark);
  451. }
  452. /* 英雄区域 */
  453. .hero {
  454. height: 100vh;
  455. display: flex;
  456. flex-direction: column;
  457. justify-content: center;
  458. align-items: center;
  459. text-align: center;
  460. padding: 0 5%;
  461. /* background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 1) 100%); */
  462. position: relative;
  463. overflow: hidden;
  464. }
  465. .hero-content {
  466. max-width: 100%;
  467. z-index: 2;
  468. }
  469. .hero h1 {
  470. font-size: 3.5rem;
  471. font-weight: 800;
  472. margin-bottom: 1.5rem;
  473. line-height: 1.15;
  474. color: var(--secondary);
  475. }
  476. .hero p {
  477. font-size: 1.5rem;
  478. color: var(--gray);
  479. margin-bottom: 2rem;
  480. max-width: 700px;
  481. margin-left: auto;
  482. margin-right: auto;
  483. }
  484. .hero-buttons {
  485. display: flex;
  486. gap: 20px;
  487. justify-content: center;
  488. margin-top: 2rem;
  489. }
  490. .hero-btn {
  491. padding: 15px 30px;
  492. border-radius: 30px;
  493. font-weight: 600;
  494. text-decoration: none;
  495. transition: all 0.3s;
  496. display: inline-block;
  497. font-size: 1.1rem;
  498. }
  499. .hero-btn-primary {
  500. background-color: var(--primary);
  501. color: white;
  502. border: 2px solid var(--primary);
  503. }
  504. .hero-btn-primary:hover {
  505. background-color: var(--primary-dark);
  506. border-color: var(--primary-dark);
  507. color: white;
  508. }
  509. .hero-btn-outline {
  510. border: 2px solid var(--primary);
  511. color: var(--primary);
  512. }
  513. .hero-btn-outline:hover {
  514. background-color: var(--primary);
  515. color: white;
  516. }
  517. /* GPS-REN模型展示 - 使用El-Card */
  518. .model-section {
  519. padding: 6rem 5%;
  520. /* background-color: var(--light); */
  521. }
  522. .section-header {
  523. text-align: center;
  524. max-width: 800px;
  525. margin: 0 auto 4rem;
  526. }
  527. .section-header h2 {
  528. font-size: 2.5rem;
  529. margin-bottom: 1rem;
  530. font-weight: 700;
  531. color: var(--secondary);
  532. }
  533. .section-header p {
  534. font-size: 1.25rem;
  535. color: var(--gray);
  536. }
  537. .model-steps {
  538. display: flex;
  539. align-items: center;
  540. justify-content: center;
  541. grid-template-columns: repeat(6, 1fr);
  542. gap: 2rem;
  543. max-width: calc(100% - 20rem);
  544. margin: 0 auto;
  545. }
  546. .el-card.step-card {
  547. border-radius: 16px;
  548. padding: 2rem;
  549. text-align: center;
  550. transition: transform 0.3s, box-shadow 0.3s;
  551. height: 100%;
  552. }
  553. .el-card.step-card:hover {
  554. transform: translateY(-10px);
  555. box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1) !important;
  556. }
  557. .step-icon {
  558. width: 80px;
  559. height: 80px;
  560. border-radius: 50%;
  561. background-color: rgba(37, 99, 235, 0.1);
  562. display: flex;
  563. align-items: center;
  564. justify-content: center;
  565. margin: 0 auto 1.5rem;
  566. font-size: 2rem;
  567. font-weight: bold;
  568. color: var(--primary);
  569. }
  570. .step-card h3 {
  571. font-size: 1.5rem;
  572. margin-bottom: 1rem;
  573. color: var(--secondary);
  574. }
  575. .step-card p {
  576. color: var(--gray);
  577. }
  578. /* 平台功能 */
  579. .features-section {
  580. padding: 6rem 5%;
  581. background-color: white;
  582. }
  583. .features {
  584. display: grid;
  585. grid-template-columns: repeat(2, 1fr);
  586. gap: 4rem;
  587. max-width: 1200px;
  588. margin: 0 auto;
  589. align-items: center;
  590. }
  591. .feature-text {
  592. padding-right: 2rem;
  593. }
  594. .feature-text h2 {
  595. font-size: 2.5rem;
  596. margin-bottom: 1.5rem;
  597. font-weight: 700;
  598. color: var(--secondary);
  599. }
  600. .feature-text p {
  601. font-size: 1.1rem;
  602. margin-bottom: 2rem;
  603. color: var(--gray);
  604. }
  605. .el-card.feature-image-card {
  606. border-radius: 16px;
  607. overflow: hidden;
  608. box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  609. height: 400px;
  610. background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  611. display: flex;
  612. align-items: center;
  613. justify-content: center;
  614. color: white;
  615. font-size: 5rem;
  616. }
  617. /* 评价标准展示 */
  618. .evaluation-section {
  619. padding: 6rem 5%;
  620. background-color: var(--light);
  621. }
  622. .evaluation-table {
  623. max-width: 1000px;
  624. margin: 0 auto;
  625. background: white;
  626. border-radius: 16px;
  627. overflow: hidden;
  628. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  629. }
  630. table {
  631. width: 100%;
  632. border-collapse: collapse;
  633. }
  634. th, td {
  635. padding: 1.25rem 1.5rem;
  636. text-align: left;
  637. border-bottom: 1px solid var(--light-gray);
  638. }
  639. th {
  640. background-color: var(--primary);
  641. color: white;
  642. font-weight: 600;
  643. }
  644. tr:nth-child(even) {
  645. background-color: rgba(37, 99, 235, 0.03);
  646. }
  647. /* 使用案例 */
  648. .case-study {
  649. padding: 6rem 5%;
  650. background-color: white;
  651. }
  652. .case-grid {
  653. display: grid;
  654. grid-template-columns: repeat(2, 1fr);
  655. gap: 4rem;
  656. max-width: 1200px;
  657. margin: 0 auto;
  658. }
  659. .case-content {
  660. display: flex;
  661. flex-direction: column;
  662. justify-content: center;
  663. }
  664. .case-content h3 {
  665. font-size: 1.8rem;
  666. margin-bottom: 1.5rem;
  667. font-weight: 700;
  668. color: var(--secondary);
  669. }
  670. .case-image {
  671. border-radius: 16px;
  672. overflow: hidden;
  673. box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  674. position: relative;
  675. height: 350px;
  676. background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  677. display: flex;
  678. align-items: center;
  679. justify-content: center;
  680. color: white;
  681. font-size: 5rem;
  682. }
  683. /* CTA区域 */
  684. .cta-section {
  685. padding: 8rem 5%;
  686. background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  687. color: white;
  688. text-align: center;
  689. }
  690. .cta-content {
  691. max-width: 800px;
  692. margin: 0 auto;
  693. }
  694. .cta-content h2 {
  695. font-size: 2.5rem;
  696. margin-bottom: 1.5rem;
  697. }
  698. .cta-content p {
  699. font-size: 1.25rem;
  700. margin-bottom: 2.5rem;
  701. opacity: 0.9;
  702. }
  703. .cta-buttons {
  704. display: flex;
  705. gap: 1rem;
  706. justify-content: center;
  707. }
  708. .cta-btn {
  709. padding: 15px 30px;
  710. border-radius: 30px;
  711. font-weight: 600;
  712. font-size: 1.1rem;
  713. transition: all 0.3s;
  714. }
  715. .cta-btn-light {
  716. background-color: white;
  717. color: var(--primary);
  718. border: none;
  719. }
  720. .cta-btn-light:hover {
  721. background-color: rgba(255, 255, 255, 0.9);
  722. color: var(--primary);
  723. }
  724. .cta-btn-outline {
  725. background: transparent;
  726. color: white;
  727. border: 2px solid white;
  728. }
  729. .cta-btn-outline:hover {
  730. background-color: rgba(255, 255, 255, 0.15);
  731. }
  732. /* 底部 - 使用Element风格 */
  733. footer {
  734. background-color: var(--secondary);
  735. color: white;
  736. padding: 4rem 5% 2rem;
  737. }
  738. .footer-grid {
  739. display: grid;
  740. grid-template-columns: 2fr 1fr 1fr 1fr;
  741. gap: 3rem;
  742. max-width: 1200px;
  743. margin: 0 auto 3rem;
  744. }
  745. .footer-logo {
  746. font-size: 1.8rem;
  747. font-weight: 700;
  748. color: white;
  749. margin-bottom: 1.5rem;
  750. display: flex;
  751. align-items: center;
  752. cursor: pointer;
  753. }
  754. .footer-logo i {
  755. margin-right: 0.5rem;
  756. font-size: 1.8rem;
  757. }
  758. .footer-about p {
  759. opacity: 0.7;
  760. margin-bottom: 1.5rem;
  761. line-height: 1.7;
  762. }
  763. .footer-links h4 {
  764. font-size: 1.25rem;
  765. margin-bottom: 1.5rem;
  766. font-weight: 600;
  767. }
  768. .footer-links ul {
  769. list-style: none;
  770. padding: 0;
  771. }
  772. .footer-links li {
  773. margin-bottom: 0.8rem;
  774. }
  775. .footer-links a {
  776. color: rgba(255, 255, 255, 0.7);
  777. text-decoration: none;
  778. transition: opacity 0.3s;
  779. display: block;
  780. padding: 5px 0;
  781. }
  782. .footer-links a:hover {
  783. color: white;
  784. }
  785. .social-links {
  786. display: flex;
  787. gap: 1rem;
  788. margin-top: 1.5rem;
  789. }
  790. .social-icon {
  791. display: inline-flex;
  792. align-items: center;
  793. justify-content: center;
  794. width: 40px;
  795. height: 40px;
  796. border-radius: 50%;
  797. background-color: rgba(255, 255, 255, 0.1);
  798. color: white;
  799. transition: background-color 0.3s;
  800. text-decoration: none;
  801. font-size: 1.2rem;
  802. }
  803. .social-icon:hover {
  804. background-color: var(--primary);
  805. }
  806. .copyright {
  807. text-align: center;
  808. padding-top: 2rem;
  809. border-top: 1px solid rgba(255, 255, 255, 0.1);
  810. opacity: 0.6;
  811. font-size: 0.9rem;
  812. }
  813. /* 响应式设计 */
  814. @media (max-width: 992px) {
  815. .model-steps {
  816. grid-template-columns: repeat(3, 1fr);
  817. }
  818. .features, .case-grid {
  819. grid-template-columns: 1fr;
  820. }
  821. .footer-grid {
  822. grid-template-columns: repeat(2, 1fr);
  823. }
  824. }
  825. @media (max-width: 768px) {
  826. .nav-menu {
  827. display: none;
  828. }
  829. .hero h1 {
  830. font-size: 2.5rem;
  831. }
  832. .hero p {
  833. font-size: 1.25rem;
  834. }
  835. .model-steps {
  836. grid-template-columns: repeat(2, 1fr);
  837. }
  838. .hero-buttons, .cta-buttons {
  839. flex-direction: column;
  840. align-items: center;
  841. }
  842. }
  843. @media (max-width: 576px) {
  844. .model-steps {
  845. grid-template-columns: 1fr;
  846. }
  847. .footer-grid {
  848. grid-template-columns: 1fr;
  849. }
  850. }
  851. </style>