_id.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. <template>
  2. <div class="container">
  3. <common-banner :img="bgImg" :height="644">
  4. <div class="content-wrap">
  5. <div class="content w1200">
  6. <div class="left title">中德校区详情</div>
  7. <div class="right">
  8. <no-ssr>
  9. <submit-form></submit-form>
  10. </no-ssr>
  11. </div>
  12. </div>
  13. </div>
  14. </common-banner>
  15. <!-- 校区 -->
  16. <div class="town one">
  17. <title-content class="w1200" :title="getCity(type).name || ''" :titleSub="getCity(type).pingy || ''"></title-content>
  18. <div class="town-content w1200">
  19. <h3 class="town-title">逻辑狗·搜索小镇</h3>
  20. <div class="town-content-info">
  21. <div class="content-left">
  22. <img src="~/assets/images/campus/icon_adderss_new@2x.png" alt="" srcset="">
  23. <div class="content-left-info">
  24. <div class="info-address">
  25. <p class="area">{{ town.area }}</p>
  26. <!-- <p class="address">{{ town.address }}</p> -->
  27. </div>
  28. <p class="info-desc">
  29. {{ town.content }}
  30. </p>
  31. <div class="info-mission">
  32. <p class="text">教育使命</p>
  33. <p class="slogan">{{ town.mission1 }} </p>
  34. <p class="slogan">{{ town.mission2 }}</p>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="content-right">
  39. <div class="town-img">
  40. <img :src="town.imgUrl" alt="">
  41. </div>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. <!-- 校区环境/精彩活动 -->
  47. <div class="environment">
  48. <!-- <title-content class="w1200" :title="'校区环境'" :titleSub="getCity(type).pingy || ''"></title-content> -->
  49. <div class="title-content">
  50. <div class="title">校区环境 </div>
  51. <div class="title-sub">{{getCity(type).pingy + ' CAMPUS' || ''}}</div>
  52. </div>
  53. <div class="main-wrap w1200">
  54. <div class="e-content">
  55. <div class="e-content-left">
  56. <img :src="environment[0].imgUrl" alt="" srcset="">
  57. </div>
  58. <div class="e-content-right">
  59. <div class="e-right-top">
  60. <div class="right-top-1"><img :src="environment[1].imgUrl" alt="" srcset=""></div>
  61. <div class="right-top-2"><img :src="environment[2].imgUrl" alt="" srcset=""></div>
  62. </div>
  63. <div class="e-right-bottom">
  64. <div class="right-bottom-1"><img :src="environment[3].imgUrl" alt="" srcset=""></div>
  65. <div class="right-bottom-2"><img :src="environment[4].imgUrl" alt="" srcset=""></div>
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. <!-- 精彩活动 -->
  72. <div class="active w1200">
  73. <title-content class="w1200" :title="'精彩活动'" :titleSub="'WONDERFUL ACTIVITY'"></title-content>
  74. <div class="active-content">
  75. <ul class="list">
  76. <li class="active-item" v-for="(item, index) in activeData" :key="index">
  77. <img :src="item.imgUrl" alt="" srcset="">
  78. <div class="info">
  79. <p class="title">{{ item.title }}</p>
  80. <p class="desc">{{ item.desc }}</p>
  81. </div>
  82. </li>
  83. </ul>
  84. </div>
  85. </div>
  86. </div>
  87. </template>
  88. <script>
  89. import CommonBanner from '@/components/common/banner';
  90. import SubmitForm from '@/components/common/form';
  91. import TitleContent from '@/components/common/titleContent';
  92. const townList = [
  93. {
  94. area: '湖北省·襄阳市',
  95. address: '盈港东路8300弄佳乐苑社区商铺',
  96. content: '逻辑狗·探索小镇是襄阳市首家专注于儿童优质思维能力养成的游戏式体验中心。为2.5—8岁儿童提供具有国际品质的全球同频思维训练课程与服务。课程综合了以思维游戏、逻辑数学、探究科学为主的丰富内容。通过多种思维游戏体验帮助孩子获得卓越的思维能力,养成优秀的思维习惯,成就未来幸福人生。',
  97. mission1: '让发现成为自然,让探索成为习惯',
  98. mission2: '培养思维能力,塑造学习品质',
  99. imgUrl: require('~/assets/images/campus/xq1-1.jpg')
  100. },
  101. {
  102. area: '湖北省·武汉市',
  103. address: '盈港东路8300弄佳乐苑社区商铺',
  104. content: '逻辑狗·探索小镇是专注于儿童优质思维能力养成的游戏式体验中心,坐落于武汉市中央文化区汉街旁,交通便利,环境优雅,课程内容非常丰富,有思维游戏、逻辑数学、探究科学等。在这里小朋友可以在安静的环境中学习,在快乐的氛围中游戏,在老师悉心的照料下茁壮成长!',
  105. mission1: '让发现成为自然,让探索成为习惯',
  106. mission2: '培养思维能力,塑造学习品质',
  107. imgUrl: require('~/assets/images/campus/xq2-1.jpg')
  108. },
  109. {
  110. area: '河北省·唐山市',
  111. address: '盈港东路8300弄佳乐苑社区商铺',
  112. content: '逻辑狗.探索小镇诞生于2018年9月15日,它是唐山市首家专注于儿童思维逻辑教育能力养成的游戏式体验中心。在开业初期就备受关注,从事幼儿(3-6)思维教育,侧重幼儿思维运用培养,帮助孩子在成长初期早接触,早锻炼,早养成好习惯。让幼儿思维具备敏锐性,深刻性,灵动性,批判性,独特性。逻辑狗.探索小镇有三大特色课程:思维游戏,探究科学,逻辑数学。通过丰富的游戏方案,情景式的参与互动课程,帮助孩子爱动脑,勤思考,深追究,从而养成思考的好习惯即良好的思维模式。',
  113. mission1: '让发现成为自然,让探索成为习惯',
  114. mission2: '培养思维能力,塑造学习品质',
  115. imgUrl: require('~/assets/images/campus/xq3-1.jpg')
  116. },
  117. {
  118. area: '福建省·莆田市',
  119. address: '盈港东路8300弄佳乐苑社区商铺',
  120. content: '逻辑狗探索小镇坐落在交通便利的中高档社区和商业中心附近,镇内设备均采用标准化配备,800平方以上的教学和游戏空间,配有专用的逻辑狗思维教室,科学实验室,机器人教室及绘本馆等。打造了结合西方理性思维与东方智慧的场景式、游戏化儿童思维养成中心,为3—12岁儿童提供具有国际品质的全球同频思维训练课程与服务,让孩子们在舒适、轻松的环境下体验,给孩子一颗强大的思维芯!',
  121. mission1: '让发现成为自然,让探索成为习惯',
  122. mission2: '培养思维能力,塑造学习品质',
  123. imgUrl: require('~/assets/images/campus/xq4-1.jpg')
  124. }
  125. ]
  126. const environmentList = [
  127. {
  128. list: [
  129. {
  130. imgUrl: require('~/assets/images/campus/1-1.jpg'),
  131. },
  132. {
  133. imgUrl: require('~/assets/images/campus/1-2.jpg'),
  134. },
  135. {
  136. imgUrl: require('~/assets/images/campus/1-3.jpg'),
  137. },
  138. {
  139. imgUrl: require('~/assets/images/campus/1-1.jpg'),
  140. },
  141. {
  142. imgUrl: require('~/assets/images/campus/1-2.jpg'),
  143. }
  144. ]
  145. },
  146. {
  147. list: [
  148. {
  149. imgUrl: require('~/assets/images/campus/2-1.jpg'),
  150. },
  151. {
  152. imgUrl: require('~/assets/images/campus/2-2.jpg'),
  153. },
  154. {
  155. imgUrl: require('~/assets/images/campus/2-3.jpg'),
  156. },
  157. {
  158. imgUrl: require('~/assets/images/campus/2-1.jpg'),
  159. },
  160. {
  161. imgUrl: require('~/assets/images/campus/2-2.jpg'),
  162. }
  163. ]
  164. },
  165. {
  166. list: [
  167. {
  168. imgUrl: require('~/assets/images/campus/3-1.jpg'),
  169. },
  170. {
  171. imgUrl: require('~/assets/images/campus/3-2.jpg'),
  172. },
  173. {
  174. imgUrl: require('~/assets/images/campus/3-3.jpg'),
  175. },
  176. {
  177. imgUrl: require('~/assets/images/campus/3-1.jpg'),
  178. },
  179. {
  180. imgUrl: require('~/assets/images/campus/3-2.jpg'),
  181. }
  182. ]
  183. },
  184. {
  185. list: [
  186. {
  187. imgUrl: require('~/assets/images/campus/4-1.jpg'),
  188. },
  189. {
  190. imgUrl: require('~/assets/images/campus/4-2.jpg'),
  191. },
  192. {
  193. imgUrl: require('~/assets/images/campus/4-3.jpg'),
  194. },
  195. {
  196. imgUrl: require('~/assets/images/campus/4-1.jpg'),
  197. },
  198. {
  199. imgUrl: require('~/assets/images/campus/4-2.jpg'),
  200. }
  201. ]
  202. }
  203. ]
  204. const activeList = [
  205. {
  206. list: [
  207. {
  208. title: '见过超大只的逻辑狗吗?',
  209. desc: '想和他一起合影吗?那就来逻辑狗探索小镇吧',
  210. imgUrl: require('~/assets/images/campus/hc-1.jpg'),
  211. },
  212. {
  213. title: '万圣节是宝贝们喜欢的节日',
  214. desc: '他们可以变成自己喜欢的样子 在小镇度过这开心而又难忘的一天',
  215. imgUrl: require('~/assets/images/campus/hc-2.jpg'),
  216. },
  217. {
  218. title: '万圣节能变成自己喜欢的样子',
  219. desc: '和家长们一起做游戏可真开心 小镇的丰富的活动可真多啊',
  220. imgUrl: require('~/assets/images/campus/hc-3.jpg'),
  221. },
  222. {
  223. title: '幼儿园师资培训教师培训圆满结束',
  224. desc: '老师们都带着满满的收获准备回去啦 当然要留下这具有纪念意义的一刻',
  225. imgUrl: require('~/assets/images/campus/hc-4.jpg')
  226. },
  227. {
  228. title: '引流活动 家长微笑的看着宝贝',
  229. desc: '看来大家都做对咯 今天在逻辑狗的收获满满',
  230. imgUrl: require('~/assets/images/campus/hc-5.jpg')
  231. },
  232. {
  233. title: '引流活动',
  234. desc: '积极的举手回答问题认真的听题目 是在逻辑狗养成的良好学习习惯',
  235. imgUrl: require('~/assets/images/campus/hc-6.jpg')
  236. }
  237. ]
  238. },
  239. {
  240. list: [
  241. {
  242. title: '逻辑狗·探索小镇武汉中心一周岁',
  243. desc: '在周年庆典上小朋友玩的非常开心 会员小朋友收到了非常暖心的小礼物',
  244. imgUrl: require('~/assets/images/campus/hc-7.jpg')
  245. },
  246. {
  247. title: 'jingle bells, jingle bells, jingle all the way......',
  248. desc: '小朋友收到了最好的礼物! 那就是爸爸妈妈亲手写的圣诞贺卡~',
  249. imgUrl: require('~/assets/images/campus/hc-8.jpg')
  250. },
  251. {
  252. title: '逻辑狗·探索小镇的圣诞活动来啦~',
  253. desc: '圣诞老爷爷背着大大的口袋来啦! 来给大家发礼物啦~',
  254. imgUrl: require('~/assets/images/campus/hc-9.jpg')
  255. },
  256. {
  257. title: '祝你生日快乐,祝你生日快乐~',
  258. desc: '逻辑狗·探索小镇的会员生日会来咯~ 在生日歌中,小朋许下了美好的愿望',
  259. imgUrl: require('~/assets/images/campus/hc-10.jpg')
  260. },
  261. {
  262. title: '武商亚贸广场的小小夏令营来啦~',
  263. desc: '参加小小夏令营的小朋友 从此就爱上了逻辑狗~',
  264. imgUrl: require('~/assets/images/campus/hc-11.jpg')
  265. },
  266. {
  267. title: '铛铛铛!我在小镇学习一年啦!',
  268. desc: '小会员在欢声笑语中迎来了毕业典礼 这里有奖状,期盼,还有美好的祝福',
  269. imgUrl: require('~/assets/images/campus/hc-12.jpg')
  270. }
  271. ]
  272. },
  273. {
  274. list: [
  275. {
  276. title: '简洁明亮的教室、实验室',
  277. desc: '舒适温馨的学习环境 学员的学习必定事半功倍',
  278. imgUrl: require('~/assets/images/campus/hc-13.jpg')
  279. },
  280. {
  281. title: '我们开业啦',
  282. desc: '小宝贝来和小魔女一起做游戏吧!开心!!!',
  283. imgUrl: require('~/assets/images/campus/hc-14.jpg')
  284. },
  285. {
  286. title: '多元化的课程,切合学员的不同需求~',
  287. desc: '确保最佳的师资力量提供服务 务求最完善的硬件设施及学习空间',
  288. imgUrl: require('~/assets/images/campus/hc-15.jpg')
  289. },
  290. {
  291. title: '丰富的玩教具~',
  292. desc: '锻炼小朋友的手眼脑口协调能力 增强趣味性,让孩子爱上小镇',
  293. imgUrl: require('~/assets/images/campus/hc-16.jpg')
  294. },
  295. {
  296. title: '万圣节活动~',
  297. desc: '看我们百变的灯笼 你也想拥有吗?~',
  298. imgUrl: require('~/assets/images/campus/hc-17.jpg')
  299. },
  300. {
  301. title: '祖国,生日快乐!',
  302. desc: '我们一起为祖国庆祝生日!和妈妈一起动手,好幸福!',
  303. imgUrl: require('~/assets/images/campus/hc-18.jpg')
  304. }
  305. ]
  306. },
  307. {
  308. list: [
  309. {
  310. title: '喜庆的万圣节',
  311. desc: '请把您的目光锁定在我们的舞台上 让我们来共享这奇妙的万圣夜之旅!',
  312. imgUrl: require('~/assets/images/campus/hc-19.jpg')
  313. },
  314. {
  315. title: '探索、求知、自主的游戏',
  316. desc: '早已让老师和孩子们身临其境到忘形 满脸的笑容,一定是爱上了逻辑思维~',
  317. imgUrl: require('~/assets/images/campus/hc-20.jpg')
  318. },
  319. {
  320. title: '圣诞老公公',
  321. desc: '给我们带来神秘的礼物哦 你们心动了吗?',
  322. imgUrl: require('~/assets/images/campus/hc-21.jpg')
  323. },
  324. {
  325. title: '逻辑狗外出活动啦!',
  326. desc: '粉丝们的热情挡不住呀!期待下次与你们相约在探索小镇哦!',
  327. imgUrl: require('~/assets/images/campus/hc-22.jpg')
  328. },
  329. {
  330. title: '母亲节,一个充满爱的节日',
  331. desc: '在小镇我们一起见证了 这份母爱的伟大!',
  332. imgUrl: require('~/assets/images/campus/hc-23.jpg')
  333. },
  334. {
  335. title: '全国思维能力挑战大赛开赛啦!',
  336. desc: '孩子们正在紧张认真的比拼中 当然要留下这激动人心的一幕',
  337. imgUrl: require('~/assets/images/campus/hc-24.jpg')
  338. }
  339. ]
  340. }
  341. ]
  342. export default {
  343. data() {
  344. return {
  345. bgImg: require('@/assets/images/merchants/bg.png'),
  346. town: {
  347. area: '上海市·青浦区1',
  348. address: '盈港东路8300弄佳乐苑社区商铺',
  349. content: '逻辑狗·探索小镇是襄阳市首家专注于儿童优质思维能力养成 的游戏式体验中心。为2.5—8岁儿童提供具有国际品质的全 球同频思维训练课程与服务。通过多种思维游戏体验帮助孩子 获得卓越的思维能力,养成优秀的思维习惯,成就未来幸福人生',
  350. mission1: '让发现成为自然,让探索成为习惯',
  351. mission2: '培养思维能力,塑造学习品质',
  352. imgUrl: require('~/assets/images/campus/town_img.png')
  353. },
  354. environment: [],
  355. activeList: [
  356. {
  357. title: '逻辑狗·探索小镇武汉中心一周岁',
  358. desc: '在周年庆典上小朋友玩的非常开心 会员小朋友收到了非常暖心的小礼物',
  359. imgUrl: 'http://zaojiao.net/public/static/index/images/xq/hc-1.jpg'
  360. },
  361. {
  362. title: 'jingle bells, jingle bells, jingle all the way......',
  363. desc: '小朋友收到了最好的礼物! 那就是爸爸妈妈亲手写的圣诞贺卡~',
  364. imgUrl: 'http://zaojiao.net/public/static/index/images/xq/hc-2.jpg'
  365. },
  366. {
  367. title: '逻辑狗·探索小镇的圣诞活动来啦~',
  368. desc: '圣诞老爷爷背着大大的口袋来啦! 来给大家发礼物啦~',
  369. imgUrl: 'http://zaojiao.net/public/static/index/images/xq/hc-1.jpg'
  370. },
  371. {
  372. title: '祝你生日快乐,祝你生日快乐~',
  373. desc: '逻辑狗·探索小镇的会员生日会来咯~ 在生日歌中,小朋许下了美好的愿望',
  374. imgUrl: 'http://zaojiao.net/public/static/index/images/xq/hc-1.jpg'
  375. },
  376. {
  377. title: '武商亚贸广场的小小夏令营来啦~',
  378. desc: '参加小小夏令营的小朋友 从此就爱上了逻辑狗~',
  379. imgUrl: 'http://zaojiao.net/public/static/index/images/xq/hc-1.jpg'
  380. },
  381. {
  382. title: '铛铛铛!我在小镇学习一年啦!',
  383. desc: '小会员在欢声笑语中迎来了毕业典礼 这里有奖状,期盼,还有美好的祝福',
  384. imgUrl: 'http://zaojiao.net/public/static/index/images/xq/hc-1.jpg'
  385. }
  386. ]
  387. }
  388. },
  389. components: {
  390. CommonBanner,
  391. SubmitForm,
  392. TitleContent
  393. },
  394. head() {
  395. return {
  396. title: "逻辑狗官网-中德智慧教育",
  397. meta: [
  398. {
  399. name: "keywords",
  400. hid: "keywords",
  401. content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
  402. },
  403. {
  404. name: "description",
  405. hid: "description",
  406. content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
  407. },
  408. ],
  409. };
  410. },
  411. asyncData({isDev, route, store, env, params, query, req, res, redirect, error}) {
  412. const type = params.id;
  413. const index = type - 1;
  414. const town = townList[index];
  415. const environment = environmentList[index].list;
  416. const activeData = activeList[index].list;
  417. return {
  418. type,
  419. town,
  420. environment,
  421. activeData
  422. }
  423. },
  424. mounted() {
  425. },
  426. methods: {
  427. getCity(type) {
  428. let key = parseInt(type);
  429. switch (key) {
  430. case 1:
  431. return {
  432. name: '襄阳',
  433. pingy: 'XIANGYANG'
  434. }
  435. break;
  436. case 2:
  437. return {
  438. name: '武汉',
  439. pingy: 'WUHAN'
  440. }
  441. break;
  442. case 3:
  443. return {
  444. name: '唐山',
  445. pingy: 'TANGSHAN'
  446. }
  447. break;
  448. case 4:
  449. return {
  450. name: '莆田',
  451. pingy: 'PUTIAN'
  452. }
  453. break;
  454. default:
  455. return ''
  456. break;
  457. }
  458. }
  459. }
  460. }
  461. </script>
  462. <style lang="scss" scoped>
  463. @import "~static/common/style.sass";
  464. .container {
  465. // background: #f0f2f5;
  466. }
  467. // .title-content {
  468. // .title {
  469. // font-size: 34px;
  470. // font-family: PingFangSC-Semibold, PingFang SC;
  471. // font-weight: 600;
  472. // color: #262626;
  473. // }
  474. // .title-sub {
  475. // text-align: center;
  476. // margin-top: 10px;
  477. // font-size: 16px;
  478. // font-family: PingFangSC-Regular, PingFang SC;
  479. // font-weight: 400;
  480. // color: #646A7E;
  481. // line-height: 26px;
  482. // }
  483. // }
  484. .title-zh {
  485. font-size: 46px;
  486. font-family: PingFangSC-Semibold, sans-serif;
  487. font-weight: 600;
  488. color: #333333;
  489. text-align: center;
  490. }
  491. .header {
  492. position: relative;
  493. // background: url('~assets/images/campus/detail_bg.png') 100% 100% no-repeat;
  494. background-image: url('~assets/images/campus/detail_bg.png');
  495. background-size: center center;
  496. background-repeat: no-repeat;
  497. height: 595px;
  498. h3 {
  499. height: 92px;
  500. font-size: 66px;
  501. font-family: PingFangSC-Semibold, sans-serif;
  502. font-weight: 600;
  503. color: #FFFFFF;
  504. line-height: 92px;
  505. }
  506. }
  507. .town {
  508. padding: 100px 0 100px;
  509. background: url('~assets/images/campus/bg_active.png') no-repeat center;
  510. background-size: 100% 100%;
  511. // margin-top: 100px;
  512. .title-en {
  513. top: -38px;
  514. left: 50%;
  515. transform: translateX(-50%);
  516. }
  517. .town-content {
  518. margin-top: 38px;
  519. .town-title {
  520. width: 230px;
  521. height: 40px;
  522. line-height: 40px;
  523. font-size: 28px;
  524. font-family: PingFangSC-Semibold, sans-serif;
  525. font-weight: 600;
  526. color:#262626;
  527. }
  528. .town-content-info {
  529. display: flex;
  530. margin-top: 38px;
  531. .content-left {
  532. display: flex;
  533. margin-right: 50px;
  534. .content-left-info {
  535. margin-left: 23px;
  536. }
  537. .info-address {
  538. .area {
  539. font-size: 16px;
  540. font-family: PingFangSC-Medium, sans-serif;
  541. font-weight: 500;
  542. color: #747576;
  543. }
  544. .address {
  545. font-size: 16px;
  546. font-family: PingFangSC-Regular, sans-serif;
  547. font-weight: 400;
  548. color: #747576;
  549. line-height: 22px;
  550. margin-top: 8px;
  551. }
  552. }
  553. .info-desc {
  554. margin-top: 30px;
  555. font-size: 18px;
  556. width: 500px;
  557. font-family: PingFangSC-Regular, sans-serif;
  558. font-weight: 400;
  559. color: #262626;
  560. line-height:30px;
  561. }
  562. .info-mission {
  563. font-size: 18px;
  564. margin-top: 20px;
  565. .text {
  566. color: #262626;
  567. font-family:PingFangSC-Medium, sans-serif;
  568. font-weight:500;
  569. margin-bottom: 6px;
  570. font-size: 18px;
  571. line-height: 25px;
  572. }
  573. .slogan {
  574. font-family: PingFangSC-Regular, sans-serif;
  575. font-size: 18px;
  576. font-weight: 400;
  577. color: #3475FC;
  578. line-height: 30px;
  579. letter-spacing: 0.45px;
  580. }
  581. }
  582. img {
  583. width: 23px;
  584. height: 28px;
  585. }
  586. }
  587. }
  588. .content-right {
  589. position: relative;
  590. // background: url('~assets/images/campus/circle_big.png'),
  591. // url('~assets/images/campus/circle_small.png');
  592. // background-position: top -88px right -28px, bottom -82px left 28px;
  593. // background-repeat: no-repeat no-repeat;
  594. .town-img {
  595. position: relative;
  596. z-index: 10;
  597. font-size: 0;
  598. img {
  599. border-radius: 10px;
  600. }
  601. }
  602. .circle_top_r {
  603. position: absolute;
  604. top: -62px;
  605. right: 0px;
  606. }
  607. }
  608. }
  609. }
  610. .main {
  611. .main-wrap {
  612. background: url('~assets/images/campus/content_bg.png') no-repeat;
  613. }
  614. }
  615. .environment {
  616. padding: 100px 0;
  617. background: url('~assets/images/campus/bg_env.png') no-repeat bottom 33px center;
  618. background-size: 1338px 375px;
  619. background-color: #004DE7;
  620. .title-content {
  621. .title {
  622. font-size: 34px;
  623. font-family: PingFangSC-Semibold, PingFang SC;
  624. font-weight: 600;
  625. color: #FFFFFF;
  626. }
  627. .title-sub {
  628. text-align: center;
  629. margin-top: 10px;
  630. font-size: 16px;
  631. font-family: PingFangSC-Regular, PingFang SC;
  632. font-weight: 400;
  633. color: #B6BDD4;
  634. line-height: 26px;
  635. }
  636. }
  637. .e-content {
  638. position: relative;
  639. display: flex;
  640. margin-top: 68px;
  641. // background: url('~assets/images/campus/circle_active.png') no-repeat bottom -120px left -14px;
  642. img {
  643. object-fit: cover;
  644. height: 100%;
  645. width: 100%;
  646. border-radius: 10px;
  647. }
  648. .e-content-left {
  649. width: 577px;
  650. height: 433px;
  651. margin-right: 9px;
  652. z-index: 10;
  653. }
  654. .e-content-right {
  655. display: flex;
  656. flex-direction: column;
  657. justify-content: space-between;
  658. .e-right-top {
  659. display: flex;
  660. align-items: center;
  661. justify-content: space-between;
  662. .right-top-1 {
  663. width: 385px;
  664. height: 217px;
  665. margin-right: 11px;
  666. }
  667. .right-top-2 {
  668. width: 217px;
  669. height: 225px;
  670. }
  671. }
  672. .e-right-bottom {
  673. display: flex;
  674. align-items: center;
  675. justify-content: space-between;
  676. .right-bottom-1 {
  677. width: 307px;
  678. height: 204px;
  679. margin-right: 11px;
  680. }
  681. .right-bottom-2 {
  682. width: 293px;
  683. height: 204px;
  684. }
  685. }
  686. }
  687. .circle {
  688. position: absolute;
  689. bottom: -100px;
  690. left: -14px;
  691. }
  692. }
  693. }
  694. .active {
  695. margin-bottom: 95px;
  696. padding: 100px 0 25px;
  697. background: url('~assets/images/campus/bg_campus.png') no-repeat center;
  698. background-size: 555px 1238px;
  699. .active-content {
  700. margin-top: 58px;
  701. }
  702. .list {
  703. .active-item {
  704. width: 373px;
  705. font-size: 0;
  706. margin: 0 40px 42px 0;
  707. display: inline-block;
  708. box-shadow: 0px 5px 21px 0px #E8F3F3;
  709. transition: transform .3s ease-in-out;
  710. &:nth-child(3n) {
  711. margin-right: 0;
  712. }
  713. &:hover {
  714. transform: translate3d(0,-8px,0);
  715. }
  716. img {
  717. border-radius: 10px 10px 0px 0px;
  718. object-fit: cover;
  719. width: 100%;
  720. }
  721. .info {
  722. background-color: #ffffff;
  723. // background-image: url('~assets/images/campus/active_bg_01.png'),
  724. // url('~assets/images/campus/active_bg_02.png');
  725. // background-repeat: no-repeat no-repeat;
  726. // background-position: left 34px top 80px, left 210px top 54px;
  727. border-radius: 0 0 10px 10px;
  728. padding: 33px 36px 64px;
  729. height: 174px;
  730. .title {
  731. font-size: 20px;
  732. font-family: PingFangSC-Medium, sans-serif;
  733. font-weight: 500;
  734. color: #1F241E;
  735. line-height: 28px;
  736. overflow: hidden;//超出一行文字自动隐藏
  737. text-overflow: ellipsis;//文字隐藏后添加省略号
  738. white-space: nowrap;//强制不换行
  739. }
  740. .desc {
  741. margin-top: 10px;
  742. font-size: 14px;
  743. font-family: PingFangSC-Regular, sans-serif;
  744. font-weight: 400;
  745. color: #333333;
  746. overflow : hidden;
  747. text-overflow: ellipsis;
  748. display: -webkit-box;
  749. -webkit-line-clamp: 2;
  750. -webkit-box-orient: vertical;
  751. }
  752. }
  753. }
  754. }
  755. }
  756. </style>