general-info.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749
  1. <template>
  2. <view class="gongsi-info">
  3. <image src="../static/images/gongsi-bg.png" class="gongsi-bg" mode=""></image>
  4. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true"
  5. @leftClick="return1"></u-navbar>
  6. <view class="" style="padding: 0 24rpx 0;box-sizing: border-box;">
  7. <view class="gongsi-header">
  8. <view class="header-top u-flex">
  9. <image :src="detail.company.logo" class="gongsi-logo" mode="aspectFill"></image>
  10. <view class="top-right u-flex-col u-flex-1">
  11. <text>{{detail.company.name || ''}}</text>
  12. <text>{{detail.company.categoryindustry.name || ''}}|{{detail.company.scale.name || ''}}·{{detail.company.stage.name || ''}}</text>
  13. </view>
  14. </view>
  15. <view class="gongso-label u-flex u-flex-wrap">
  16. <text v-for="(a,b) in detail.company.welfare_tag_text" :key="b">{{a}}</text>
  17. </view>
  18. </view>
  19. <!-- <view class="gongsi-address">
  20. <view class="address-title">
  21. 公司地址
  22. </view>
  23. <view class="address-down u-flex u-row-between">
  24. <text>{{detail.province || ''}}{{detail.city || ''}}{{detail.address || ''}}</text>
  25. <image src="static/address.png" mode="" @click="openlocation"></image>
  26. </view>
  27. </view> -->
  28. <view class="gongsi-text">
  29. <view class="text-title">
  30. 学校介绍
  31. </view>
  32. <view class="">
  33. {{detail.title}}
  34. </view>
  35. <view class="text-body">
  36. {{detail.content || ''}}
  37. </view>
  38. </view>
  39. <!-- <view class="gongsi-text">
  40. <view class="text-title">
  41. 公司优势
  42. </view>
  43. <view class="text-body">
  44. {{detail.welfare_tag_text ? detail.welfare_tag_text.join(',') : ''}}
  45. </view>
  46. </view> -->
  47. </view>
  48. <view class="" style="height: 220rpx;"></view>
  49. <!-- <u-mask :show="showzhiwei" z-index="990" @click="closeshaixuan"></u-mask> -->
  50. <u-overlay :show="showzhiwei" z-index="990" @click="closeshaixuan"></u-overlay>
  51. <view class="gongsi-zhiwei u-flex-col" :style="{bottom:showzhiwei ? '0' : 'calc(210rpx - 90vh)'}">
  52. <view class="zhiwei-header">
  53. <view class="header-top" v-if="showsearch">
  54. <u-search placeholder="搜索职位" @search="tosearch(1)" action-text="取消" @custom="chongzhi"
  55. v-model="keyword1"></u-search>
  56. </view>
  57. <view class="header-top u-flex u-row-between" v-else @click="openzhiwei">
  58. <text class="text1">校招职位({{total}})</text>
  59. <!-- <view @click.stop="opensearch">
  60. <u-icon name="search" size="32"></u-icon>
  61. </view> -->
  62. </view>
  63. <view class="header-shaixuan u-flex u-row-between">
  64. <view class="shaixuan-item u-flex u-row-center"
  65. :class="{shaixuanItemActive:(showshaixuan == 1 || zhiwei > 0)}" @click="openshaixuan(1)">
  66. <text class="text u-line-1">{{zhiwei == 0 ? '职位' : zhiweilist[zhiwei].name}}</text>
  67. <u-icon name="arrow-down-fill" size="16"></u-icon>
  68. </view>
  69. <view class="shaixuan-item u-flex u-row-center"
  70. :class="{shaixuanItemActive:(showshaixuan == 2 || city1.id)}" @click="openshaixuan(2)">
  71. <text class="text u-line-1">{{city1.name|| '城市'}}</text>
  72. <u-icon name="arrow-down-fill" size="16"></u-icon>
  73. </view>
  74. <view class="shaixuan-item u-flex u-row-center"
  75. :class="{shaixuanItemActive:showshaixuan == 3 || xinzi.name}" @click="openshaixuan(3)">
  76. <text class="text u-line-1">{{xinzi.name || '薪资'}}</text>
  77. <u-icon name="arrow-down-fill" size="16"></u-icon>
  78. </view>
  79. </view>
  80. </view>
  81. <view class="zhiwei-list u-flex-1">
  82. <scroll-view v-if="showshaixuan == 1" scroll-y="true" class="zhiwei-shaixuan">
  83. <view class="shaixuan1-item" v-for="(a,b) in zhiweilist" :key="b" :class="{shaixuan1:zhiwei == b}"
  84. @click="changeshaixuan(1,b)">
  85. {{a.name}}
  86. </view>
  87. </scroll-view>
  88. <scroll-view scroll-y="true" class="zhiwei-scroll">
  89. <view class="zhiwei-item" v-for="(item,index) in list" :key="index">
  90. <view class="item-top u-flex u-row-between">
  91. <view class="u-flex">
  92. <text class="text1">{{item.job_name}}</text>
  93. <view class="xue">校</view>
  94. </view>
  95. <text class="text3 u-flex-1">{{item.salary_min}}-{{item.salary_max}}K</text>
  96. </view>
  97. <view class="item-label u-flex">
  98. <text v-for="(a,b) in item.city " :key="b">{{a.city.slice(0,-1)}}</text>
  99. <text>应届</text>
  100. <text>{{item.education.name}}</text>
  101. </view>
  102. <view class="item-down u-flex u-row-between">
  103. <view class="u-flex">
  104. <image style="width: 50rpx;height: 50rpx; border-radius: 50%;margin-right: 16rpx;"
  105. :src="item.user.avatar" mode=""></image>
  106. <text>{{item.user.name}}·{{item.user.job_text}}</text>
  107. </view>
  108. <view class="u-flex">
  109. <view class="btn1" @click.stop="tochat">立即聊聊</view>
  110. <view class="btn2" @click.stop="open(item.city[0])">投递简历</view>
  111. </view>
  112. </view>
  113. </view>
  114. </scroll-view>
  115. </view>
  116. </view>
  117. <u-picker :columns="cityList" ref="uPicker" :show="showcity" keyName="name" @confirm="changecity"
  118. @change="changeHandler" @cancel="confirm1"></u-picker>
  119. <u-picker keyName="label" :columns="xinzilist" :show="showxinzi" @confirm="changexinzi"
  120. @cancel="confirm1"></u-picker>
  121. </view>
  122. </template>
  123. <script>
  124. import {
  125. get_company_job_list,
  126. jobdata,
  127. getexperience,
  128. getareacity,
  129. getAllArea,
  130. activityCreate,
  131. get_company_detail
  132. } from "@/units/inquire.js"
  133. export default {
  134. data() {
  135. return {
  136. cityList: [],
  137. showzhiwei: false,
  138. showsearch: false,
  139. showshaixuan: 0,
  140. zhiweilist: [],
  141. zhiwei: 0,
  142. jingyanlist: [],
  143. jingyan: -1,
  144. showcity: false,
  145. province: [], //省份
  146. city: [],
  147. area: [], //区域
  148. provinceid: "", //省数据
  149. cityid: "", //市数据
  150. areaid: "", //区数据
  151. indexs: [], //默认地区下标
  152. city1: {
  153. id: '',
  154. name: ''
  155. },
  156. showxinzi: false,
  157. xinzilist: [],
  158. xinzi: {
  159. max: '',
  160. min: '',
  161. name: ''
  162. },
  163. keyword1: '',
  164. keyword: '',
  165. page: 1,
  166. total: 0,
  167. list: [],
  168. detail: {}
  169. }
  170. },
  171. onLoad(option) {
  172. this.id = option.id
  173. this.getdata()
  174. this.getlist()
  175. this.getconfig()
  176. },
  177. methods: {
  178. open(city) {
  179. activityCreate({
  180. apply_info_id: city.apply_info_id,
  181. city_id: city.city_id,
  182. city: city.city,
  183. }).then(res => {
  184. if (res.code == 1) {
  185. this.$u.toast("投递成功")
  186. }
  187. })
  188. },
  189. tovhat() {
  190. uni.navigateTo({
  191. url: "/pagesC/chat"
  192. })
  193. },
  194. confirm1() {
  195. this.showxinzi = false,
  196. this.showcity = false
  197. },
  198. return1() {
  199. uni.navigateBack()
  200. },
  201. toinfo(item) {
  202. uni.navigateTo({
  203. url: "/pagesB/details?id=" + item.id
  204. })
  205. },
  206. openlocation() {
  207. uni.openLocation({
  208. longitude: Number(this.detail.lng),
  209. latitude: Number(this.detail.lat)
  210. })
  211. },
  212. getdata() {
  213. get_company_detail({
  214. id: this.id
  215. }).then((res) => {
  216. this.detail = res.data
  217. })
  218. },
  219. chongzhi() {
  220. this.keyword1 = ''
  221. this.showsearch = false
  222. this.tosearch()
  223. },
  224. opensearch() {
  225. if (this.showzhiwei) {
  226. this.showsearch = true
  227. } else {
  228. this.showzhiwei = true
  229. }
  230. },
  231. changeHandler(e) {
  232. const {
  233. columnIndex, //当前改变值的列下标
  234. value,
  235. values, // values为当前变化列的数组内容
  236. indexs, //当前地区值下标
  237. picker = this.$refs.uPicker
  238. } = e
  239. //columnIndex代表第几列,意思是下标为0的列发生变化
  240. if (columnIndex === 0) {
  241. picker.setColumnValues(1, this.city[indexs[0]].map(v => {
  242. return {
  243. name: v.name,
  244. id: v.id
  245. }
  246. }))
  247. picker.setColumnValues(2, this.area[indexs[0]][0].map(v => {
  248. return {
  249. name: v.name,
  250. id: v.id
  251. }
  252. }))
  253. }
  254. if (columnIndex === 1) {
  255. picker.setColumnValues(2, this.area[indexs[0]][indexs[1]].map(v => {
  256. return {
  257. name: v.name,
  258. id: v.id
  259. }
  260. }))
  261. }
  262. },
  263. changexinzi(e) {
  264. console.log(e);
  265. if (e.value[0].value > e.value[1].value) {
  266. this.xinzi.min = e.value[1].value
  267. this.xinzi.max = e.value[0].value
  268. this.xinzi.name = e.value[1].label + "-" + e.value[0].label
  269. } else {
  270. this.xinzi.min = e.value[0].value
  271. this.xinzi.max = e.value[1].value
  272. this.xinzi.name = e.value[0].label + "-" + e.value[1].label
  273. }
  274. this.showxinzi = false
  275. this.tosearch()
  276. },
  277. changeshaixuan(type, index) {
  278. if (type == 1) {
  279. this.zhiwei = index
  280. }
  281. this.showshaixuan = 0
  282. this.tosearch()
  283. },
  284. changecity(e) {
  285. console.log(e);
  286. let a = e.value[0].name + e.value[1].name + e.value[2].name
  287. let ids = String(e.value[0].id) + String(e.value[1].id) + String(e.value[2].id)
  288. this.showcity = false
  289. this.city1.id = e.value[1].id
  290. this.city1.name = e.value[1].name
  291. console.log(this.city.name);
  292. this.tosearch()
  293. },
  294. closeshaixuan() {
  295. this.showzhiwei = false;
  296. this.showsearch = false
  297. this.showshaixuan1 = false
  298. },
  299. openshaixuan(type) {
  300. if (!this.showzhiwei) {
  301. this.showzhiwei = true
  302. return
  303. }
  304. if (this.showshaixuan == type) {
  305. this.showshaixuan = 0
  306. } else {
  307. this.showshaixuan = type
  308. }
  309. if (type == 2) {
  310. this.showcity = true
  311. }
  312. if (type == 3) {
  313. this.showxinzi = true
  314. }
  315. },
  316. tosearch(type) {
  317. if (type == 1) {
  318. this.keyword = this.keyword1
  319. }
  320. this.page = 1
  321. this.total = 0
  322. this.list = []
  323. this.getlist()
  324. },
  325. openzhiwei() {
  326. if (this.showzhiwei) {
  327. this.showzhiwei = false
  328. this.showsearch = false
  329. } else {
  330. this.showzhiwei = true
  331. }
  332. },
  333. getlist() {
  334. // 招聘信息列表
  335. get_company_job_list({
  336. id: this.id,
  337. category_job_id: this.zhiwei > 0 ? this.zhiweilist[this.zhiwei].id : '',
  338. city_id: this.city1.id,
  339. education_id: this.jingyan == -1 ? '' : this.jingyanlist[this.jingyan].id,
  340. salary_min: this.xinzi.min,
  341. salary_max: this.xinzi.max
  342. }).then(res => {
  343. this.total = res.data.length
  344. this.list = res.data
  345. })
  346. },
  347. getconfig() {
  348. jobdata({
  349. id: this.id
  350. }).then(res => {
  351. this.zhiweilist = res.data
  352. })
  353. getexperience().then(res => {
  354. this.jingyanlist = res.data
  355. })
  356. getAllArea().then(res => {
  357. console.log(res);
  358. this.province = res.data.map(t => {
  359. return {
  360. name: t.name,
  361. id: t.id
  362. }
  363. })
  364. this.city = res.data.map(t => t.children.map(v => {
  365. return {
  366. name: v.name,
  367. id: v.id
  368. }
  369. }))
  370. console.log(this.city);
  371. this.area = res.data.map(t => t.children.map(v => v.children.map(i => {
  372. return {
  373. name: i.name,
  374. id: i.id
  375. }
  376. })))
  377. let a = []
  378. let b = []
  379. let c = []
  380. this.province.map(res => {
  381. a.push({
  382. name: res.name,
  383. id: res.id,
  384. })
  385. })
  386. this.city[0].map(res => {
  387. b.push({
  388. name: res.name,
  389. id: res.id,
  390. })
  391. })
  392. this.area[0][0].map(res => {
  393. c.push({
  394. name: res.name,
  395. id: res.id,
  396. })
  397. })
  398. this.cityList = [a, b, c]
  399. })
  400. var xinzilist = []
  401. for (var i = 1; i <= 100; i++) {
  402. xinzilist.push({
  403. label: `${i}K`,
  404. value: i
  405. })
  406. }
  407. this.xinzilist.push(xinzilist)
  408. this.xinzilist.push(xinzilist)
  409. }
  410. }
  411. }
  412. </script>
  413. <style lang="scss">
  414. page {
  415. background-color: #F3F3F3;
  416. }
  417. .btn1 {
  418. width: 150rpx;
  419. height: 60rpx;
  420. background: #0C66C2;
  421. border-radius: 8rpx;
  422. font-size: 28rpx;
  423. font-family: PingFangSC-Regular, PingFang SC;
  424. font-weight: 400;
  425. color: #FFFFFF;
  426. line-height: 60rpx;
  427. text-align: center;
  428. }
  429. .btn2 {
  430. width: 150rpx;
  431. height: 60rpx;
  432. background: #FA6400;
  433. border-radius: 8rpx;
  434. font-size: 28rpx;
  435. font-family: PingFangSC-Regular, PingFang SC;
  436. font-weight: 400;
  437. color: #FFFFFF;
  438. line-height: 60rpx;
  439. text-align: center;
  440. margin-left: 20rpx;
  441. }
  442. .xue {
  443. width: 36rpx;
  444. height: 32rpx;
  445. background: #0C66C2;
  446. border-radius: 8rpx 0rpx 8rpx 0rpx;
  447. font-size: 22rpx;
  448. font-family: PingFangSC-Regular, PingFang SC;
  449. font-weight: 400;
  450. color: #FFFFFF;
  451. line-height: 32rpx;
  452. text-align: center;
  453. margin-left: 12rpx;
  454. }
  455. .gongsi-info {
  456. position: relative;
  457. z-index: 1;
  458. .zhiwei-list {
  459. min-height: 1rpx;
  460. position: relative;
  461. .zhiwei-shaixuan {
  462. position: absolute;
  463. top: 0;
  464. left: 0;
  465. z-index: 1;
  466. background-color: #fff;
  467. width: 750rpx;
  468. height: 100%;
  469. padding: 16rpx 0;
  470. box-sizing: border-box;
  471. .shaixuan1-item {
  472. padding: 16rpx 66rpx;
  473. font-size: 28rpx;
  474. font-family: PingFangSC-Regular, PingFang SC;
  475. font-weight: 400;
  476. color: #444444;
  477. }
  478. .shaixuan1 {
  479. font-size: 28rpx;
  480. font-family: PingFangSC-Medium, PingFang SC;
  481. font-weight: 500;
  482. color: #0C66C2;
  483. }
  484. }
  485. .zhiwei-scroll {
  486. height: 100%;
  487. padding: 0 20rpx;
  488. box-sizing: border-box;
  489. .zhiwei-item {
  490. // width: 702rpx;
  491. background: #FFFFFF;
  492. border-radius: 20rpx;
  493. margin: 20rpx auto;
  494. padding: 0 20rpx 24rpx 20rpx;
  495. .item-down {
  496. text:first-child {
  497. font-size: 24rpx;
  498. font-family: SFPro-Regular, SFPro;
  499. font-weight: 400;
  500. color: #666666;
  501. margin-left: 16rpx;
  502. }
  503. }
  504. .item-label {
  505. margin-bottom: 24rpx;
  506. text {
  507. line-height: 46rpx;
  508. background: #F3F3F3;
  509. border-radius: 4rpx;
  510. padding: 0 14rpx;
  511. font-size: 24rpx;
  512. font-family: PingFangSC-Regular, PingFang SC;
  513. font-weight: 400;
  514. color: #5F5F5F;
  515. display: block;
  516. margin-left: 12rpx;
  517. }
  518. }
  519. .item-top {
  520. padding: 24rpx 0 20rpx 0;
  521. .text1 {
  522. font-size: 32rpx;
  523. font-family: PingFangSC-Medium, PingFang SC;
  524. font-weight: 500;
  525. color: #222222;
  526. }
  527. .text2 {
  528. margin: 0 16rpx;
  529. line-height: 32rpx;
  530. background: #E6EFF8;
  531. border-radius: 6rpx;
  532. padding: 0 4rpx;
  533. font-size: 20rpx;
  534. font-family: SFPro-Regular, SFPro;
  535. font-weight: 400;
  536. color: #0C66C2;
  537. }
  538. .text3 {
  539. text-align: right;
  540. font-size: 32rpx;
  541. font-family: JDZhengHT-Regular, JDZhengHT;
  542. font-weight: 400;
  543. color: #0C66C2;
  544. }
  545. }
  546. }
  547. }
  548. }
  549. .gongsi-zhiwei {
  550. position: fixed;
  551. left: 0;
  552. bottom: 0;
  553. width: 750rpx;
  554. height: 90vh;
  555. background: #F3F3F3;
  556. box-shadow: 0rpx -8rpx 48rpx 0rpx rgba(0, 0, 0, 0.2);
  557. border-radius: 28rpx 28rpx 0rpx 0rpx;
  558. z-index: 999;
  559. transition: all 0.3s;
  560. border-radius: 28rpx 28rpx 0 0;
  561. overflow: hidden;
  562. .zhiwei-header {
  563. border-bottom: 2rpx solid #F3F3F3;
  564. background-color: #fff;
  565. padding: 0 32rpx;
  566. .header-shaixuan {
  567. padding-bottom: 28rpx;
  568. .shaixuan-item {
  569. width: 150rpx;
  570. height: 60rpx;
  571. background: #F3F3F3;
  572. border-radius: 6rpx;
  573. .text {
  574. font-size: 26rpx;
  575. font-family: PingFangSC-Regular, PingFang SC;
  576. font-weight: 400;
  577. color: #333333;
  578. margin-right: 16rpx;
  579. max-width: 80rpx;
  580. }
  581. }
  582. .shaixuanItemActive {
  583. background-color: #E6EFF8;
  584. color: #0C66C2;
  585. .text {
  586. color: #0C66C2;
  587. }
  588. }
  589. }
  590. .header-top {
  591. padding: 32rpx 0;
  592. .text1 {
  593. font-size: 40rpx;
  594. font-family: PingFangSC-Medium, PingFang SC;
  595. font-weight: 500;
  596. color: #222222;
  597. }
  598. }
  599. }
  600. }
  601. .gongsi-text {
  602. // width: 702rpx;
  603. background: #FFFFFF;
  604. border-radius: 16rpx;
  605. padding: 0 20rpx 24rpx 20rpx;
  606. margin: 20rpx auto;
  607. .text-body {
  608. font-size: 28rpx;
  609. font-family: PingFangSC-Regular, PingFang SC;
  610. font-weight: 400;
  611. color: #555555;
  612. }
  613. .text-title {
  614. font-size: 32rpx;
  615. font-family: PingFangSC-Medium, PingFang SC;
  616. font-weight: 500;
  617. color: #222222;
  618. padding: 24rpx 0;
  619. }
  620. }
  621. .gongsi-address {
  622. // width: 702rpx;
  623. background: #FFFFFF;
  624. border-radius: 16rpx;
  625. margin: 20rpx auto;
  626. padding: 0 20rpx 24rpx 20rpx;
  627. .address-down {
  628. text {
  629. flex: 1;
  630. margin-right: 20rpx;
  631. font-size: 28rpx;
  632. font-family: PingFangSC-Regular, PingFang SC;
  633. font-weight: 400;
  634. color: #666666;
  635. }
  636. image {
  637. width: 70rpx;
  638. height: 70rpx;
  639. }
  640. }
  641. .address-title {
  642. padding: 24rpx 0;
  643. font-size: 32rpx;
  644. font-family: PingFangSC-Medium, PingFang SC;
  645. font-weight: 500;
  646. color: #222222;
  647. }
  648. }
  649. .gongsi-header {
  650. // width: 702rpx;
  651. background: #FFFFFF;
  652. border-radius: 20rpx;
  653. margin: 20rpx auto;
  654. padding: 0 24rpx;
  655. .gongso-label {
  656. text {
  657. font-size: 24rpx;
  658. font-family: PingFangSC-Regular, PingFang SC;
  659. font-weight: 400;
  660. color: #444444;
  661. padding: 0 12rpx;
  662. line-height: 50rpx;
  663. background: #F3F3F3;
  664. border-radius: 6rpx;
  665. margin-right: 16rpx;
  666. margin-bottom: 20rpx;
  667. }
  668. }
  669. .header-top {
  670. padding: 28rpx 0;
  671. .top-right {
  672. text:first-child {
  673. font-size: 40rpx;
  674. font-family: PingFangSC-Medium, PingFang SC;
  675. font-weight: 500;
  676. color: #222222;
  677. margin-bottom: 12rpx;
  678. }
  679. text:nth-child(2) {
  680. font-size: 26rpx;
  681. font-family: SFPro-Regular, SFPro;
  682. font-weight: 400;
  683. color: #555555;
  684. }
  685. }
  686. .gongsi-logo {
  687. width: 120rpx;
  688. height: 120rpx;
  689. border-radius: 12rpx;
  690. border: 2rpx solid rgba(151, 151, 151, 0.7);
  691. margin-right: 20rpx;
  692. }
  693. }
  694. }
  695. .gongsi-bg {
  696. position: absolute;
  697. top: 0;
  698. left: 0;
  699. width: 750rpx;
  700. height: 396rpx;
  701. z-index: -1;
  702. }
  703. }
  704. </style>