index.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746
  1. <template>
  2. <div class="coopetate">
  3. <common-banner
  4. :img="bgImg"
  5. :height="510">
  6. <h2>加盟合作</h2>
  7. <h4>合作热线:400-6807300</h4>
  8. </common-banner>
  9. <!-- 项目介绍 -->
  10. <div class="project">
  11. <title-content :title="'项目介绍'" :titleSub="'PROJECT INTRODUCTION'"></title-content>
  12. <div class="p-content w1200">
  13. <div class="left">
  14. <img :src="projectImg" alt="" srcset="">
  15. </div>
  16. <div class="right">
  17. <p>
  18. 中德智慧教育集团旗下北京逻辑狗教育科技有限公司创立培训机构思维教育品牌加盟,开创性提出了
  19. <strong>逻辑狗专柜、逻辑狗探索小镇、逻辑狗思维体验Plus、逻辑狗思维体验Home</strong>项目定位于专注3.4岁-12岁儿童优质思维能力养成的场景式、游戏化体验中心,为3~12岁儿童提供国际品质的全球同频思维训练课程与服务。
  20. </p>
  21. <p style="margin-top: 35px">
  22. 18年品牌深耕、1100万中国家庭的选择标注化、精细化运营,赋能合作伙伴,共同成就具有影响力的儿童思维教育品牌。
  23. </p>
  24. </div>
  25. </div>
  26. </div>
  27. <!-- 合作模式 -->
  28. <div class="model bgF8">
  29. <title-content :title="'合作模式'" :titleSub="'COOPERATION'"></title-content>
  30. <div class="m-content w1200">
  31. <div class="m-tab">
  32. <div
  33. :class="['m-tab-item', `m-tab-item${index}`]"
  34. :style="{ backgroundImage: currentMtab == index ? `url(${item.imgUrlSel})` : `url(${item.imgUrl})` }"
  35. @mouseover="tabMouseover(index)" @mouseleave="tabMouseleave(index)"
  36. v-for="(item, index) in mTabList" :key="index">
  37. </div>
  38. </div>
  39. <div class="tab-centent">
  40. <div class="tab-content-01" v-show="currentMtab == 0">
  41. <div class="tab-content-item left">
  42. <img :src="tabContent01" alt="" srcset="">
  43. <div class="content-info content-info-left">
  44. <div class="title">技术支持</div>
  45. <div class="desc">满足公司合作条件后,支持线上门店设立、线下门店管理和运营等技术输出</div>
  46. </div>
  47. </div>
  48. <div class="tab-content-item right">
  49. <img :src="tabContent02" alt="" srcset="">
  50. <div class="content-info content-info-right">
  51. <div class="title">整体加盟</div>
  52. <div class="desc">满足公司合作条件后,支付相应的整体加盟费用,整体店铺加盟,价格、服务由公司整体输出。</div>
  53. </div>
  54. <!-- <div class="title">技术支持</div>
  55. <div class="desc">满足公司合作条件后,支付相应的整体加盟费用,整体店铺加盟,价格、服务由公司整体输出。</div> -->
  56. </div>
  57. </div>
  58. <div class="tab-content-02" v-show="currentMtab == 1">
  59. <img class="img-content-02-01" :src="tabContent03" alt="" srcset="">
  60. <img class="img-content-02-02" :src="tabContent04" alt="" srcset="">
  61. </div>
  62. <div class="tab-content-03" v-show="currentMtab == 2">
  63. <img class="img-content-03-01" :src="tabContent05" alt="" srcset="">
  64. <img class="img-content-03-02" :src="tabContent06" alt="" srcset="">
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <!-- 品牌支持 -->
  70. <div class="support">
  71. <title-content :title="'品牌支持'" :titleSub="'BRAND SUPPORT'"></title-content>
  72. <div class="s-content w1200">
  73. <img :src="supportImg" alt="" srcset="">
  74. </div>
  75. </div>
  76. <!-- 合作案例 -->
  77. <div class="case bgF8">
  78. <title-content :title="'合作案例'" :titleSub="'COOPERATION CASE'"></title-content>
  79. <div class="c-content w1200">
  80. <div class="left">
  81. <img :src="caseImg[0].imgUrl" alt="" srcset="">
  82. </div>
  83. <div class="right">
  84. <template v-for="(item, index) in caseImg">
  85. <img v-if="index !==0 " :src="item.imgUrl" alt="" srcset="" :key="index">
  86. </template>
  87. </div>
  88. </div>
  89. </div>
  90. <!-- 加入我们 -->
  91. <div class="join-us">
  92. <div class="mask">
  93. </div>
  94. <div class="join-content">
  95. <div class="title-content">
  96. <div class="title">加入我们</div>
  97. </div>
  98. <div class="join-us-form w1200">
  99. <no-ssr>
  100. <el-form :model="form" :rules="rules" ref="ruleBottomForm">
  101. <el-form-item prop="name">
  102. <el-input placeholder="姓名:" v-model="form.name"></el-input>
  103. </el-form-item>
  104. <el-form-item prop="phone">
  105. <el-input placeholder="手机号:" v-model="form.phone"></el-input>
  106. </el-form-item>
  107. <el-form-item prop="email">
  108. <el-input placeholder="邮箱地址:" v-model="form.email"></el-input>
  109. </el-form-item>
  110. <el-form-item prop="city">
  111. <el-input placeholder="加盟城市:" v-model="form.city"></el-input>
  112. </el-form-item>
  113. <el-form-item prop="project">
  114. <el-select placeholder="合作项目" v-model="form.project">
  115. <el-option
  116. v-for="(item, index) in projectList"
  117. :key="index"
  118. :label="item.title"
  119. :value="item.title">
  120. </el-option>
  121. </el-select>
  122. </el-form-item>
  123. <el-button class="submit cp" :loading="loading" :disabled="disabled" @click="handleSubmit('ruleBottomForm')">提交申请</el-button>
  124. </el-form>
  125. </no-ssr>
  126. <div class="address">地址:北京市朝阳区高碑店乡西店记忆文创小镇E6号楼一层102号</div>
  127. </div>
  128. </div>
  129. </div>
  130. </div>
  131. </template>
  132. <script>
  133. import axios from "axios";
  134. import CommonBanner from "@/components/common/banner";
  135. import TitleContent from '@/components/common/titleContent';
  136. const advantageImg = Object.freeze([
  137. "http://res.training.luojigou.vip/Fgzcc1GuXoorH_5NX1BmNQ8sCpMo?imageView2/0/q/50|imageslim",
  138. "http://res.training.luojigou.vip/FhtDRiZ4jCYsC2xCyV9uOilQRNqh?imageView2/0/q/50|imageslim",
  139. "http://res.training.luojigou.vip/Ftr-z7dlfG8WhtqYnzu08qlRz8sb?imageView2/0/q/50|imageslim",
  140. "http://res.training.luojigou.vip/FpQyT6VRsHQVGfmXSO1kuWrYx0Jh?imageView2/0/q/50|imageslim",
  141. "http://res.training.luojigou.vip/FrgZIm21VIRX62rYSg-5Osx32Jkx?imageView2/0/q/50|imageslim",
  142. ]);
  143. const exprienceImg = Object.freeze([
  144. {
  145. id: 0,
  146. num: '01',
  147. // imgUrl:
  148. // "http://res.training.luojigou.vip/FoHy9wMCaPPpgzaDmwQvFwRdM1Za?imageView2/0/q/50|imageslim",
  149. imgUrl: require('~/assets/images/cooperate/exprience_01.png'),
  150. label: "招聘驱动",
  151. infoList: ['人员素质模型', '绩效评级体系', '招聘广告模板']
  152. },
  153. {
  154. id: 1,
  155. num: '02',
  156. // imgUrl:
  157. // "http://res.training.luojigou.vip/FiumJtB1GJfyCphjUdlYrLTXYB6J?imageView2/0/q/50|imageslim",
  158. imgUrl: require('~/assets/images/cooperate/exprience_02.png'),
  159. label: "课程驱动",
  160. infoList: ['能力测评体系', '国际课程引进', '独立自主研发']
  161. },
  162. {
  163. id: 2,
  164. num: '03',
  165. // imgUrl:
  166. // "http://res.training.luojigou.vip/FlhyrFbDqh4rUzE39K3O8tJ0RjdP?imageView2/0/q/50|imageslim",
  167. imgUrl: require('~/assets/images/cooperate/exprience_03.png'),
  168. label: "督导驱动",
  169. infoList: ['三维过程把握', '到点指导落地', '专家持续绑定']
  170. },
  171. {
  172. id: 3,
  173. num: '04',
  174. // imgUrl:
  175. // "http://res.training.luojigou.vip/FgDk_mDwKmS97_IIzdGl0fNVTE4k?imageView2/0/q/50|imageslim",
  176. imgUrl: require('~/assets/images/cooperate/exprience_04.png'),
  177. label: "开店驱动",
  178. infoList: ['分析地理位置', '视觉识别系统', '标准装修方案']
  179. },
  180. {
  181. id: 4,
  182. num: '05',
  183. // imgUrl:
  184. // "http://res.training.luojigou.vip/Fm3NVf5OAfxaV3KUwoh25hSC0gim?imageView2/0/q/50|imageslim",
  185. imgUrl: require('~/assets/images/cooperate/exprience_05.png'),
  186. label: "品牌驱动",
  187. infoList: ['品牌认证标识', '市场宣传套装', '制定区域保护', '中华品牌领袖联盟企业']
  188. },
  189. {
  190. id: 5,
  191. num: '06',
  192. // imgUrl:
  193. // "http://res.training.luojigou.vip/Fqhl44i_bmz2fslvMe-UcnhgPMFJ?imageView2/0/q/50|imageslim",
  194. imgUrl: require('~/assets/images/cooperate/exprience_06.png'),
  195. label: "招生驱动",
  196. infoList: ['市场推广方案', '招生方法指导', '节日活动方案'],
  197. },
  198. {
  199. id: 6,
  200. num: '07',
  201. // imgUrl:
  202. // "http://res.training.luojigou.vip/Fg9yIinUo_5yOjaqpRspcotcB92f?imageView2/0/q/50|imageslim",
  203. imgUrl: require('~/assets/images/cooperate/exprience_07.png'),
  204. label: "培训驱动",
  205. infoList: ['管理流程梳理', '教育教学培训', '线上直播培训'],
  206. },
  207. {
  208. id: 7,
  209. num: '08',
  210. // imgUrl:
  211. // "http://res.training.luojigou.vip/Fixkl6HyDOOPy-1ZU1WN7wSTIXTl?imageView2/0/q/50|imageslim",
  212. imgUrl: require('~/assets/images/cooperate/exprience_08.png'),
  213. label: "体系驱动",
  214. infoList: ['能力级别评测体系', '线上运营系统APP', 'CRM客户管理系统'],
  215. },
  216. ]);
  217. const showImg = Object.freeze([
  218. {
  219. id: 0,
  220. imgUrl:
  221. "http://res.training.luojigou.vip/FmWD-hqllLJjHbFlAT9QeoZUjKxd?imageView2/0/q/50|imageslim",
  222. label:
  223. "武商亚贸广场的小小夏令营来啦,参加小小夏令营的小朋友,从此就爱武商亚贸广场的小小夏令营来啦,参加小小夏令营的小朋友,从此就爱",
  224. },
  225. {
  226. id: 1,
  227. imgUrl:
  228. "http://res.training.luojigou.vip/FmWD-hqllLJjHbFlAT9QeoZUjKxd?imageView2/0/q/50|imageslim",
  229. label:
  230. "武商亚贸广场的小小夏令营来啦,参加小小夏令营的小朋友,从此就爱武商亚贸广场的小小夏令营来啦,参加小小夏令营的小朋友,从此就爱",
  231. },
  232. {
  233. id: 2,
  234. imgUrl:
  235. "http://res.training.luojigou.vip/FmWD-hqllLJjHbFlAT9QeoZUjKxd?imageView2/0/q/50|imageslim",
  236. label:
  237. "武商亚贸广场的小小夏令营来啦,参加小小夏令营的小朋友,从此就爱武商亚贸广场的小小夏令营来啦,参加小小夏令营的小朋友,从此就爱",
  238. },
  239. ]);
  240. const joinImg = Object.freeze({
  241. hot:
  242. "http://res.training.luojigou.vip/Fv5jDvDdHaVLQThclUJhhoIL9ee8?imageView2/0/q/50|imageslim",
  243. cold:
  244. "http://res.training.luojigou.vip/FisuM3wRDkZawF3sXOCzsyaIGCuA?imageView2/0/q/50|imageslim",
  245. });
  246. const joinData = Object.freeze([
  247. {
  248. id: 0,
  249. label: "总部项目考察",
  250. },
  251. {
  252. id: 1,
  253. label: "签署合作协议",
  254. },
  255. {
  256. id: 2,
  257. label: "门店选址评估",
  258. },
  259. {
  260. id: 3,
  261. label: "人员招募筹备",
  262. },
  263. {
  264. id: 4,
  265. label: "门店正式营业",
  266. },
  267. {
  268. id: 5,
  269. label: "总部运营支持",
  270. },
  271. ]);
  272. const caseImg = Object.freeze([
  273. {
  274. imgUrl: require("~/assets/images/cooperate/case01.png"),
  275. },
  276. {
  277. imgUrl: require("~/assets/images/cooperate/case02.png"),
  278. },
  279. {
  280. imgUrl: require("~/assets/images/cooperate/case03.png"),
  281. },
  282. {
  283. imgUrl: require("~/assets/images/cooperate/case04.png"),
  284. },
  285. {
  286. imgUrl: require("~/assets/images/cooperate/case05.png"),
  287. }
  288. ])
  289. export default {
  290. name: "Coopetate",
  291. mounted() {},
  292. data() {
  293. return {
  294. currentMtab: 0,
  295. loading: false,
  296. disabled: false,
  297. bgImg: require("~/assets/images/cooperate/cooperateBg.png"),
  298. // projectImg: require("~/assets/images/cooperate/project_img.png"),
  299. projectImg: 'https://app-resources-luojigou.luojigou.vip/Fr5m-_f0ah6Jdkw6kh4QsjM8a9fy',
  300. tabContent01: require('~/assets/images/cooperate/tab_content_01@2x.png'),
  301. tabContent02: require('~/assets/images/cooperate/tab_content_02@2x.png'),
  302. tabContent03: require('~/assets/images/cooperate/tab_content_03@2x.png'),
  303. tabContent04: require('~/assets/images/cooperate/tab_content_04@2x.png'),
  304. tabContent05: require('~/assets/images/cooperate/tab_content_05@2x.png'),
  305. tabContent06: require('~/assets/images/cooperate/tab_content_06@2x.png'),
  306. supportImg: require('~/assets/images/cooperate/supportImg@2x.png'),
  307. currentId: 0,
  308. exprienceCurrenId: 0,
  309. form: {},
  310. bottomform: {},
  311. advantageImg,
  312. exprienceImg,
  313. showImg,
  314. joinImg,
  315. joinData,
  316. caseImg,
  317. mTabList: [
  318. {
  319. imgUrl: require("~/assets/images/cooperate/coopreate_01@2x.png"),
  320. imgUrlSel: require("~/assets/images/cooperate/coopreate_01_sel@2x.png")
  321. },
  322. {
  323. imgUrl: require("~/assets/images/cooperate/coopreate_02@2x.png"),
  324. imgUrlSel: require("~/assets/images/cooperate/coopreate_02_sel@2x.png")
  325. },
  326. {
  327. imgUrl: require("~/assets/images/cooperate/coopreate_03@2x.png"),
  328. imgUrlSel: require("~/assets/images/cooperate/coopreate_03_sel@2x.png")
  329. }
  330. ],
  331. projectList: [
  332. {
  333. id: 1,
  334. title: '逻辑狗·探索小镇'
  335. },
  336. {
  337. id: 2,
  338. title: '逻辑狗专柜'
  339. },
  340. {
  341. id: 3,
  342. title: '逻辑狗思维体验Plus'
  343. },
  344. {
  345. id: 4,
  346. title: '逻辑狗思维体验Home'
  347. },
  348. {
  349. id: 5,
  350. title: '逻辑狗体验中心'
  351. }
  352. ],
  353. rules: {
  354. name: [{ required: true, message: "请输入姓名", trigger: "blur" }],
  355. phone: [
  356. { required: true, message: "请输入手机号", trigger: "blur" },
  357. {
  358. pattern: /^1[345789]\d{9}$/,
  359. message: "请输入正确手机号",
  360. trigger: "blur",
  361. },
  362. ],
  363. email: [
  364. { required: true, message: "请输入邮箱地址", trigger: "blur" },
  365. {
  366. type: "email",
  367. message: "请输入正确的邮箱地址",
  368. trigger: ["blur", "change"],
  369. },
  370. ],
  371. city: [{ required: true, message: "请输入加盟城市", trigger: "blur" }],
  372. project: [{ required: true, message: "请选择合作项目", trigger: "blur" }]
  373. },
  374. };
  375. },
  376. components: {
  377. CommonBanner,
  378. TitleContent
  379. },
  380. head() {
  381. return {
  382. title: "逻辑狗官网-中德智慧教育",
  383. meta: [
  384. {
  385. name: "keywords",
  386. hid: "keywords",
  387. content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
  388. },
  389. {
  390. name: "description",
  391. hid: "description",
  392. content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
  393. },
  394. ],
  395. };
  396. },
  397. async asyncData({ params, store }) {},
  398. methods: {
  399. async handleSubmit(formName) {
  400. this.$refs[formName].validate(async (valid) => {
  401. if (valid) {
  402. this.loading = true;
  403. this.disabled = true;
  404. const { data } = await axios.post(`${this.$store.state.wordpressAPI}/official-api/joinIn`,{
  405. ...this.form
  406. });
  407. if(data.status == 200 ) {
  408. this.$notify({
  409. title: '成功',
  410. message: '提交成功',
  411. type: 'success'
  412. });
  413. this.$refs[formName].resetFields();
  414. } else {
  415. this.$notify({
  416. title: '失败',
  417. message: '提交失败',
  418. type: 'info'
  419. });
  420. }
  421. this.loading = false;
  422. this.disabled = false;
  423. } else {
  424. this.loading = false;
  425. this.disabled = false;
  426. return false;
  427. }
  428. });
  429. },
  430. campusEnter(item) {
  431. this.currentId = item.id;
  432. },
  433. currentEventInfo(item) {
  434. this.exprienceCurrenId = item.id;
  435. },
  436. tabMouseover(index) {
  437. this.currentMtab = index;
  438. },
  439. tabMouseleave(index) {
  440. }
  441. },
  442. };
  443. </script>
  444. <style lang="scss">
  445. .coopetate {
  446. width: 100%;
  447. .bgF8 {
  448. background: #F8FBFF;
  449. }
  450. .project {
  451. margin-top: 100px;
  452. .p-content {
  453. display: flex;
  454. justify-content: space-between;
  455. margin: 53px auto 95px;
  456. width: 1200px;
  457. height: 667px;
  458. background: url('~assets/images/cooperate/modeBg@2x.png') no-repeat;
  459. background-size: 100% 100%;
  460. .left {
  461. margin-top: 57px;
  462. img {
  463. width: 568px;
  464. height: 528px;
  465. }
  466. }
  467. .right {
  468. width: 505px;
  469. margin-top: 108px;
  470. p {
  471. font-size: 16px;
  472. line-height: 48px;
  473. text-indent: 30px;
  474. strong {
  475. color: #0D5CFA;
  476. font-size: 18px;
  477. }
  478. }
  479. }
  480. }
  481. .left {
  482. }
  483. .right {
  484. }
  485. }
  486. .model {
  487. padding: 100px 0 108px;
  488. .m-content {
  489. margin-top: 65px;
  490. }
  491. .m-tab {
  492. padding: 0 200px;
  493. display: flex;
  494. justify-content: space-between;
  495. .m-tab-item {
  496. width: 123px;
  497. height: 97px;
  498. background-size: 100%;
  499. &.m-tab-item0 {
  500. }
  501. &.m-tab-item1 {
  502. }
  503. &.m-tab-item2 {
  504. }
  505. }
  506. }
  507. .tab-centent {
  508. .tab-content-01 {
  509. margin-top: 85px;
  510. display: flex;
  511. justify-content: space-between;
  512. height: 351px;
  513. color: #ffffff;
  514. opacity: 1;
  515. transition: opacity 1s ease-in-out;
  516. .tab-content-item {
  517. position: relative;
  518. width: 579px;
  519. border-radius: 30px;
  520. text-align: center;
  521. .content-info {
  522. padding: 0 53px;
  523. position: absolute;
  524. z-index: 1;
  525. top: 0;
  526. height: 100%;
  527. border-radius: 30px;
  528. opacity: 0.79;
  529. &.content-info-left {
  530. background: #0D5CFA;
  531. }
  532. &.content-info-right {
  533. background-color: rgba(246, 84, 25, 1);
  534. }
  535. }
  536. img {
  537. width: 579px;
  538. height: 351px;
  539. }
  540. }
  541. .left {
  542. // background: url('~assets/images/cooperate/tab_content_01@2x.png') no-repeat;
  543. // background-size: 523px 351px;
  544. // background-position: center;
  545. width: 579px;
  546. border-radius: 30px;
  547. }
  548. .right {
  549. background: url('~assets/images/cooperate/tab_content_02@2x.png') no-repeat;
  550. background-size: 523px 351px;
  551. background-position: center;
  552. }
  553. .title {
  554. margin: 53px 61px;
  555. font-size: 30px;
  556. font-family: PingFangSC-Medium, PingFang SC;
  557. font-weight: 500;
  558. line-height: 42px;
  559. }
  560. .desc {
  561. font-size: 16px;
  562. font-family: PingFangSC-Medium, PingFang SC;
  563. font-weight: 500;
  564. line-height: 26px;
  565. }
  566. }
  567. .tab-content-02 {
  568. margin-top: 32px;
  569. position: relative;
  570. text-align: center;
  571. .img-content-02-01 {
  572. width: 478px;
  573. height: 478px;
  574. }
  575. .img-content-02-02 {
  576. position: absolute;
  577. left: 50%;
  578. transform: translateX(-50%);
  579. bottom: 22px;
  580. width: 1064px;
  581. height: 337px;
  582. }
  583. }
  584. .tab-content-03 {
  585. position: relative;
  586. text-align: center;
  587. .img-content-03-01 {
  588. width: 778px;
  589. height: 511px;
  590. }
  591. .img-content-03-02 {
  592. position: absolute;
  593. bottom: 81px;
  594. left: 50%;
  595. transform: translateX(-50%);
  596. width: 1234px;
  597. height: 348px;
  598. }
  599. }
  600. }
  601. }
  602. .support {
  603. padding: 105px 0 170px;
  604. .s-content {
  605. margin-top: 42px;
  606. text-align: center;
  607. img {
  608. width: 1200px;
  609. height: 220px;
  610. }
  611. }
  612. }
  613. .case {
  614. padding: 100px 0 100px;
  615. .c-content {
  616. margin-top: 40px;
  617. display: flex;
  618. justify-content: space-between;
  619. .left {
  620. width: 588px;
  621. height: 392px;
  622. margin-right: 22px;
  623. img {
  624. width: 588px;
  625. }
  626. }
  627. .right {
  628. display: flex;
  629. flex-wrap: wrap;
  630. justify-content: space-between;
  631. img {
  632. width: 284px;
  633. height: 189px;
  634. margin-bottom: 14px;
  635. }
  636. }
  637. }
  638. }
  639. .join-us {
  640. position: relative;
  641. height: 684px;
  642. background: url("~assets/images/cooperate/joinBgImg.png") no-repeat;
  643. // opacity: 0.9;
  644. // background: url("http://res.training.luojigou.vip/FhPOU-rQqK2TdIDILiLM5f17xb2V?imageView2/0/q/50|imageslim")
  645. // no-repeat;
  646. background-size: 100% 100%;
  647. // padding: 95px 0 80px;
  648. .mask {
  649. width: 100%;
  650. height: 100%;
  651. background-color: rgb(13, 92, 250);
  652. opacity: 0.9;
  653. }
  654. .join-content {
  655. position: absolute;
  656. top: 0;
  657. z-index: 1;
  658. padding: 95px 0 80px;
  659. height: 100%;
  660. width: 100%;
  661. .el-button {
  662. border: none;
  663. }
  664. }
  665. .title-content {
  666. .title {
  667. font-size: 34px;
  668. font-family: PingFangSC-Medium, PingFang SC;
  669. font-weight: 500;
  670. color: #FFFFFF;
  671. line-height: 48rpx;
  672. }
  673. }
  674. .join-us-form {
  675. margin-top: 60px;
  676. .el-form {
  677. width: 464px;
  678. margin: 0 auto;
  679. text-align: center;
  680. }
  681. .el-form-item {
  682. margin-bottom: 14px;
  683. }
  684. .el-input {
  685. width: 464px;
  686. height: 44px;
  687. .el-input__inner {
  688. height: 44px;
  689. padding: 0 26px;
  690. color: #666666;
  691. font-size: 14px;
  692. border-radius: 10px;
  693. &::-webkit-input-placeholder {
  694. height: 25px;
  695. font-size: 14px;
  696. font-family: PingFangSC-Regular, sans-serif;
  697. font-weight: 400;
  698. color: #788DBA;
  699. line-height: 25px;
  700. }
  701. }
  702. }
  703. .el-form-item__error {
  704. padding-top: 0;
  705. }
  706. .submit {
  707. margin: 37px auto 25px;
  708. width: 150px;
  709. height: 36px;
  710. // line-height: 36px;
  711. background: linear-gradient(360deg, #B9D0FF 0%, #FFFFFF 100%);
  712. box-shadow: 0px 8px 16px 0px rgba(0, 76, 228, 0.59);
  713. border-radius: 100px;
  714. color: #0D5CFA;
  715. text-shadow: 0px 8px 16px rgba(0, 76, 228, 0.59);
  716. font-size: 14px;
  717. text-align: center;
  718. }
  719. .address {
  720. font-size: 12px;
  721. font-family: PingFangSC-Regular, sans-serif;
  722. font-weight: 400;
  723. color: rgba(255, 255, 255, 1);
  724. text-align: center;
  725. }
  726. }
  727. }
  728. }
  729. .cp {
  730. cursor: pointer;
  731. }
  732. </style>