index.vue 23 KB

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