index.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921
  1. <template>
  2. <view class="content">
  3. <!-- 轮播 -->
  4. <view class="carousel-section">
  5. <swiper class="carousel" :autoplay="true" :interval="3000" :duration="1000">
  6. <swiper-item v-for="item in carouselList" :key="item.id">
  7. <!-- #ifdef H5 -->
  8. <image :src="baseURL + item.image"></image>
  9. <!-- #endif -->
  10. </swiper-item>
  11. </swiper>
  12. </view>
  13. <!-- 上半部分菜单 -->
  14. <view class="box-top"></view>
  15. <view class="top-box flex">
  16. <view class="top-item" v-for="item in navList" @click="navTo(item.path)">
  17. <view class="item-tit">{{item.tit}}</view>
  18. <view class="item-content">{{item.content}}</view>
  19. <image :src="item.bgimg" mode="" class="item-logo"
  20. :style="{width:item.bgwidth,height:item.bgheight,top:item.bgtop,left:item.bgleft}"></image>
  21. </view>
  22. </view>
  23. <!-- 下半部分菜单 -->
  24. <view class="bottom-box flex">
  25. <view class="btm-left" @click="navTo('/pages/applic/location')">
  26. <view class="tit">救在身边救护员</view>
  27. <view class="left-content">实时救护,就在身边</view>
  28. <image src="../../static/icon/tb-5.png" mode="" class="bglogo"></image>
  29. </view>
  30. <view class="btm-right">
  31. <view class="b-l-item" @click="navTo('/pages/applic/aid')">
  32. <view class="tit">救护站</view>
  33. <view class="left-content">附近的救护站都在这里</view>
  34. <image src="../../static/icon/tb-6.png" mode="" class="right-logo"></image>
  35. </view>
  36. <view class="b-l-item" @click="navTo('/pages/applic/aed')">
  37. <view class="tit">智能AED</view>
  38. <view class="left-content">查找附近AED设备</view>
  39. <image src="../../static/icon/tb-7.png" mode="" class="right-logo right-logo-2"></image>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. import {
  47. loadIndexs,
  48. bannerlist,
  49. getListAED,
  50. getDistance,
  51. getListMechanism,
  52. getdis,
  53. tocall,
  54. getCompany
  55. } from '@/api/index.js';
  56. import {
  57. saveUrl,
  58. interceptor
  59. } from '@/utils/loginUtils.js';
  60. import {
  61. mapState,
  62. mapMutations
  63. } from 'vuex';
  64. import {
  65. userinfo
  66. } from '@/api/user.js';
  67. import uniPopup from '@/components/uni-popup/uni-popup.vue';
  68. import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
  69. import {
  70. getLoca
  71. } from '@/utils/wxAuthorized.js';
  72. import {
  73. getcomAddress
  74. } from '@/api/index.js';
  75. import topTitle from '../../components/top-title/top-title.vue';
  76. export default {
  77. components: {
  78. uniPopup,
  79. uniLoadMore,
  80. topTitle
  81. },
  82. data() {
  83. return {
  84. navList: [{
  85. tit: '我要报名',
  86. content: '志愿者捐献者报名',
  87. path: '/pages/applic/applicList',
  88. bgimg: '../../static/icon/tb-1.png',
  89. bgwidth: '84rpx',
  90. bgheight: '111rpx',
  91. bgtop: '84rpx',
  92. bgleft: '210rpx'
  93. }, {
  94. tit: '红十字事业',
  95. content: '红十字事业介绍',
  96. path: '/pages/applic/cause',
  97. bgimg: '../../static/icon/tb-2.png',
  98. bgwidth: '128rpx',
  99. bgheight: '127rpx',
  100. bgtop: '69rpx',
  101. bgleft: '181rpx'
  102. },
  103. {
  104. tit: '我要捐赠',
  105. content: '在线捐款渠道',
  106. path: '/pages/applic/love',
  107. bgimg: '../../static/icon/tb-3.png',
  108. bgwidth: '120rpx',
  109. bgheight: '120rpx',
  110. bgtop: '75rpx',
  111. bgleft: '192rpx'
  112. },
  113. {
  114. tit: '红十字知识',
  115. content: '急救知识科普',
  116. path: '/pages/applic/science',
  117. bgimg: '../../static/icon/tb-4.png',
  118. bgwidth: '120rpx',
  119. bgheight: '120rpx',
  120. bgtop: '75rpx',
  121. bgleft: '192rpx'
  122. }
  123. ],
  124. carouselList: [], //轮播
  125. };
  126. },
  127. onShow() {
  128. saveUrl();
  129. // let token = uni.getStorageSync('token');
  130. console.log(11, this);
  131. console.log(this.userInfo, 'this.userInfo++++++++++++++++')
  132. if (!this.userInfo.id) {
  133. // 登录拦截
  134. uni.showModal({
  135. title: '登录',
  136. content: '您未登录,是否马上登陆?',
  137. success: e => {
  138. if (e.confirm) {
  139. interceptor();
  140. }
  141. },
  142. fail: e => {
  143. console.log(e);
  144. }
  145. });
  146. }
  147. this.loadData();
  148. getCompany().then(res => {
  149. console.log(res)
  150. })
  151. },
  152. onLoad() {
  153. saveUrl();
  154. },
  155. computed: {
  156. ...mapState('user', ['userInfo', 'hasLogin']),
  157. ...mapState(['baseURL']),
  158. },
  159. methods: {
  160. ...mapMutations('user', ['setUserInfo']),
  161. //提示
  162. tishi() {
  163. uni.showModal({
  164. title: '提示',
  165. content: '获取当前位置信息失败,是否刷新页面。',
  166. success: function(res) {
  167. if (res.confirm) {
  168. window.location.reload();
  169. console.log('用户点击确定');
  170. } else if (res.cancel) {
  171. console.log('用户点击取消');
  172. }
  173. }
  174. })
  175. },
  176. loadData() {
  177. let obj = this;
  178. loadIndexs({}).then(({
  179. data
  180. }) => {
  181. obj.carouselList = data.banner
  182. // obj.carouselList = data.banner; //轮播图
  183. });
  184. },
  185. navTo(url) {
  186. uni.navigateTo({
  187. url
  188. });
  189. },
  190. }
  191. };
  192. </script>
  193. <style lang="scss">
  194. a {
  195. text-decoration: none;
  196. color: #5f5f5f;
  197. }
  198. .content {
  199. // line-height: 1;
  200. background-color: #ffabab;
  201. // padding-bottom: 60rpx;
  202. }
  203. .popup_row {
  204. width: 100%;
  205. height: 500rpx;
  206. background-color: #ffffff;
  207. border-radius: 20rpx;
  208. display: flex;
  209. justify-content: center;
  210. align-items: center;
  211. .rows {
  212. width: 100%;
  213. padding: 0 24rpx;
  214. .rows-item {
  215. height: 80rpx;
  216. line-height: 80rpx;
  217. text-align: center;
  218. width: 100%;
  219. font-size: 32rpx;
  220. color: #303133;
  221. // border-bottom: 1rpx solid #f0f0f0;
  222. }
  223. // .row-1 {
  224. // margin: auto;
  225. // .first_aid {
  226. // width: 300rpx;
  227. // height: 300rpx;
  228. // }
  229. // }
  230. // .row-2 {
  231. // font-size: 38rpx;
  232. // margin-top: 20rpx;
  233. // }
  234. }
  235. }
  236. .content {
  237. background-color: #f8f8f8;
  238. height: 100%;
  239. /* 头部 轮播图 */
  240. .carousel-section {
  241. // padding-top: 10px;
  242. overflow: hidden;
  243. background-color: #fff;
  244. .carousel {
  245. width: 750rpx;
  246. height: 504rpx;
  247. margin: 0 auto;
  248. overflow: hidden;
  249. .carousel-item {
  250. width: 100%;
  251. height: 100%;
  252. overflow: hidden;
  253. }
  254. image {
  255. width: 100%;
  256. height: 100%;
  257. }
  258. }
  259. }
  260. // 分类
  261. .cate-section {
  262. justify-content: space-around;
  263. background-color: #fff;
  264. padding: 46rpx 0 30rpx;
  265. .cate-item {
  266. width: 25%;
  267. flex-direction: column;
  268. text-align: center;
  269. align-items: center;
  270. justify-content: center;
  271. .img-wrapper {
  272. width: 100rpx;
  273. height: 88rpx;
  274. background: #eef4ff;
  275. border-radius: 14rpx;
  276. position: relative;
  277. image {
  278. position: absolute;
  279. left: 50%;
  280. top: 50%;
  281. transform: translate(-50%, -50%);
  282. }
  283. .img1 {
  284. width: 100rpx;
  285. height: 84rpx;
  286. }
  287. .img2 {
  288. width: 100rpx;
  289. height: 85rpx;
  290. }
  291. .img3 {
  292. width: 100rpx;
  293. height: 84rpx;
  294. }
  295. .img4 {
  296. width: 100rpx;
  297. height: 88rpx;
  298. }
  299. }
  300. .item-title {
  301. margin-top: 15rpx;
  302. font-size: 24rpx;
  303. font-family: PingFang SC;
  304. font-weight: 500;
  305. color: #333333;
  306. }
  307. }
  308. }
  309. // 红会科普
  310. .science-section {
  311. width: 100%;
  312. background-color: #ffffff;
  313. margin-top: 18rpx;
  314. padding-top: 30rpx;
  315. .science-title {
  316. display: flex;
  317. justify-content: center;
  318. align-items: center;
  319. padding-bottom: 22rpx;
  320. .title {
  321. width: 285rpx;
  322. height: 64rpx;
  323. background-color: #ca121e;
  324. border-radius: 32rpx;
  325. color: #ffffff;
  326. font-size: 32rpx;
  327. line-height: 64rpx;
  328. text-align: center;
  329. }
  330. image {
  331. width: 68rpx;
  332. height: 43rpx;
  333. margin-left: 16rpx;
  334. margin-right: 16rpx;
  335. }
  336. }
  337. .science-box {
  338. padding-left: 15rpx;
  339. padding-right: 15rpx;
  340. padding-bottom: 20rpx;
  341. border-bottom: 1rpx solid #f0f0f0;
  342. white-space: nowrap;
  343. display: flex;
  344. width: 100%;
  345. // .uni-scroll-view-content{
  346. // display: flex;
  347. // }
  348. .science-content {
  349. // width: 100%;
  350. // display: flex;
  351. display: -webkit-box;
  352. .science-item {
  353. margin-right: 24rpx;
  354. width: 198rpx;
  355. display: flex;
  356. flex-direction: column;
  357. align-items: center;
  358. text-align: center;
  359. image {
  360. width: 100%;
  361. height: 145rpx;
  362. }
  363. .article-title {
  364. width: 198rpx;
  365. color: #333;
  366. font-size: 25rpx;
  367. padding-top: 20rpx;
  368. padding-bottom: 16rpx;
  369. font-weight: 900;
  370. }
  371. .article-content {
  372. width: 198rpx;
  373. color: #999999;
  374. font-size: 18rpx;
  375. overflow: hidden;
  376. text-overflow: ellipsis;
  377. display: -webkit-box;
  378. word-break: break-all;
  379. -webkit-box-orient: vertical;
  380. -webkit-line-clamp: 2;
  381. }
  382. }
  383. }
  384. }
  385. .science-more {
  386. display: flex;
  387. justify-content: center;
  388. align-items: center;
  389. color: #cb131c;
  390. font-size: 30rpx;
  391. padding-top: 18rpx;
  392. padding-bottom: 18rpx;
  393. image {
  394. width: 20rpx;
  395. height: 27rpx;
  396. }
  397. }
  398. }
  399. // sos急救中心
  400. .system {
  401. width: 100%;
  402. background-color: #ffffff;
  403. margin-top: 18rpx;
  404. padding: 40rpx 30rpx 35rpx 30rpx;
  405. margin-bottom: 20rpx;
  406. .system-map {
  407. margin: 30rpx auto 0;
  408. width: 689rpx;
  409. height: 312rpx;
  410. background-color: #ffffff;
  411. // padding: 0 30rpx;
  412. padding-bottom: 45rpx;
  413. // .map-box {
  414. // width: 100%;
  415. // height: 312rpx;
  416. // // background-color: #fff;
  417. // }
  418. }
  419. }
  420. // AED
  421. .list-box {
  422. padding: 0rpx 25rpx 24rpx;
  423. // margin-bottom: 84rpx;
  424. background-color: #fff;
  425. .system-title {
  426. display: flex;
  427. justify-content: flex-start;
  428. align-items: center;
  429. height: 130rpx;
  430. // padding-bottom: 22rpx;
  431. background-color: #ffffff;
  432. .title {
  433. width: 285rpx;
  434. height: 64rpx;
  435. background-color: #ca121e;
  436. border-radius: 32rpx;
  437. color: #ffffff;
  438. font-size: 32rpx;
  439. line-height: 64rpx;
  440. text-align: center;
  441. }
  442. .img {
  443. width: 68rpx;
  444. height: 43rpx;
  445. margin-left: 16rpx;
  446. margin-right: 16rpx;
  447. image {
  448. width: 68rpx;
  449. height: 43rpx;
  450. }
  451. }
  452. }
  453. }
  454. .map-box {
  455. width: 100%;
  456. height: 366rpx;
  457. }
  458. .list-tpl {
  459. background-color: #ffffff;
  460. margin: 25rpx 0rpx;
  461. padding: 25rpx 25rpx;
  462. font-size: 28rpx;
  463. border-radius: 15rpx;
  464. display: flex;
  465. justify-content: space-between;
  466. align-items: center;
  467. border-bottom: 1px solid #f1f1f1;
  468. .list-left {
  469. display: flex;
  470. width: 100%;
  471. .number {
  472. font-size: 32rpx;
  473. margin-right: 14rpx;
  474. }
  475. .info {
  476. width: 100%;
  477. .title {
  478. font-size: 32rpx;
  479. color: #222222;
  480. font-weight: 500;
  481. }
  482. .addr {
  483. width: 400rpx;
  484. margin-top: 20rpx;
  485. font-size: 20rpx;
  486. font-family: PingFang SC;
  487. font-weight: 500;
  488. color: #999999;
  489. }
  490. }
  491. }
  492. .image {
  493. width: 10%;
  494. text-align: center;
  495. image {
  496. width: 50rpx;
  497. height: 50rpx;
  498. }
  499. .tip {
  500. color: #7f7f7f;
  501. font-size: 21rpx;
  502. }
  503. }
  504. }
  505. }
  506. // .red-box {
  507. // margin: 20rpx 0;
  508. // height: 521rpx;
  509. // padding: 40rpx 23rpx 35rpx 23rpx;
  510. // background-color: #fff;
  511. // .red-nav {
  512. // justify-content: space-between;
  513. // margin-top: 23rpx;
  514. // .left-nav {
  515. // width: 332rpx;
  516. // height: 392rpx;
  517. // background: #FFF3F5;
  518. // background-image: url(../../static/img/m1.png);
  519. // background-size: 100% 100%;
  520. // }
  521. // .right-nav {
  522. // width: 357rpx;
  523. // height: 392rpx;
  524. // flex-direction: column;
  525. // justify-content: space-between;
  526. // // background: #F6F6FF;
  527. // .right-top-nav {
  528. // width: 357rpx;
  529. // height: 204rpx;
  530. // background: #F6F6FF;
  531. // background-image: url(../../static/img/m2.png);
  532. // background-size: 100% 100%;
  533. // }
  534. // .right-bottom-nav {
  535. // width: 357rpx;
  536. // height: 173rpx;
  537. // justify-content: space-between;
  538. // view {
  539. // width: 171rpx;
  540. // height: 173rpx;
  541. // }
  542. // .left-item {
  543. // background: #F5EFFE;
  544. // background-image: url(../../static/img/m3.png);
  545. // background-size: 100% 100%;
  546. // }
  547. // .right-item {
  548. // background: #EDFEFE;
  549. // background-image: url(../../static/img/m4.png);
  550. // background-size: 100% 100%;
  551. // }
  552. // }
  553. // }
  554. // }
  555. // }
  556. .red-box {
  557. margin: 20rpx 0;
  558. // height: 393rpx;
  559. padding: 30rpx 30rpx 40rpx 30rpx;
  560. background-color: #fff;
  561. .red-nav {
  562. padding-top: 25rpx;
  563. display: flex;
  564. justify-content: space-between;
  565. .nav-item {
  566. width: 330rpx;
  567. height: 175rpx;
  568. background: #FFF4F2;
  569. border-radius: 15rpx;
  570. image {
  571. width: 330rpx;
  572. height: 175rpx;
  573. }
  574. }
  575. }
  576. }
  577. .popup_row2 {
  578. // margin-top: 108rpx;
  579. height: 440rpx;
  580. border-radius: 25rpx;
  581. width: 100%;
  582. padding: 24rpx;
  583. background-color: #f8f8f8;
  584. z-index: 999;
  585. .title {
  586. border-bottom: 2rpx solid #F2F2F2;
  587. color: #E63931;
  588. font-size: 32rpx;
  589. padding-left: 4rpx;
  590. padding-bottom: 16rpx;
  591. display: flex;
  592. justify-content: space-between;
  593. // align-items: center;
  594. .cancel {
  595. margin-left: 52rpx;
  596. width: 36rpx;
  597. height: 36rpx;
  598. image {
  599. width: 36rpx;
  600. height: 36rpx;
  601. }
  602. }
  603. }
  604. .inpBox {
  605. margin-top: 52rpx;
  606. border: 2px solid #f2f2f2;
  607. padding: 12rpx 24rpx;
  608. color: #FF9797;
  609. border-radius: 8rpx;
  610. .input-placeholder {
  611. // height: 70rpx;
  612. font-size: 32rpx;
  613. color: #FF9797;
  614. }
  615. }
  616. .inpedit {
  617. margin-top: 24rpx;
  618. margin-left: 14rpx;
  619. font-size: 28rpx;
  620. color: #FF9797;
  621. }
  622. .comfirm {
  623. display: flex;
  624. justify-content: flex-end;
  625. margin-top: 54rpx;
  626. .comfirm1 {
  627. padding: 12rpx 24rpx;
  628. border-radius: 12rpx;
  629. color: #FFFFFF;
  630. background-color: #E63931;
  631. }
  632. }
  633. }
  634. .location-item {
  635. z-index: 1000;
  636. display: flex;
  637. justify-content: space-between;
  638. align-items: center;
  639. border-bottom: 1rpx solid #E7E8EA;
  640. padding: 15rpx 0;
  641. .box-left {
  642. display: flex;
  643. .img01 {
  644. width: 8rpx;
  645. height: 28rpx;
  646. margin-right: 18rpx;
  647. image {
  648. width: 8rpx;
  649. height: 28rpx;
  650. }
  651. }
  652. .img02 {
  653. width: 117rpx;
  654. height: 117rpx;
  655. border-radius: 50%;
  656. image {
  657. width: 117rpx;
  658. height: 117rpx;
  659. border-radius: 50%;
  660. }
  661. }
  662. .info {
  663. margin-left: 16rpx;
  664. .info-header {
  665. display: flex;
  666. align-items: center;
  667. .name {
  668. font-size: 32rpx;
  669. color: #333333;
  670. }
  671. .distance {
  672. margin-left: 25rpx;
  673. font-size: 28rpx;
  674. color: #303133;
  675. }
  676. .location-icon {
  677. margin-left: 10rpx;
  678. width: 20rpx;
  679. height: 26rpx;
  680. image {
  681. width: 20rpx;
  682. height: 26rpx;
  683. display: inline;
  684. }
  685. }
  686. }
  687. .address {
  688. font-size: 26rpx;
  689. color: #333333;
  690. margin-top: 33rpx;
  691. }
  692. }
  693. }
  694. .box-right {
  695. .img {
  696. height: 107rpx;
  697. image {
  698. width: 107rpx;
  699. height: 107rpx;
  700. }
  701. }
  702. .called {
  703. margin-right: 16rpx;
  704. height: 107rpx;
  705. line-height: 107rpx;
  706. font-size: 28rpx;
  707. color: #CB131C;
  708. }
  709. }
  710. }
  711. .box-top {
  712. height: 36rpx;
  713. height: 36rpx;
  714. border-radius: 36rpx 36rpx 0 0;
  715. // margin: -36rpx auto;
  716. margin-bottom: -36rpx;
  717. position: relative;
  718. top: -36rpx;
  719. background-color: #fff;
  720. z-index: 9;
  721. }
  722. .top-box {
  723. background-color: #fff;
  724. flex-wrap: wrap;
  725. justify-content: center;
  726. padding: 14rpx 0 50rpx;
  727. margin-bottom: 20rpx;
  728. .top-item {
  729. margin: 10rpx;
  730. width: 327rpx;
  731. height: 210rpx;
  732. background: linear-gradient(0deg, #FFF0ED, #FFFFFF, #FFF0ED);
  733. box-shadow: 0px 0px 20rpx 0px rgba(255, 52, 52, 0.06);
  734. border-radius: 10rpx;
  735. position: relative;
  736. padding: 25rpx 20rpx;
  737. .item-tit {
  738. font-size: 32rpx;
  739. font-family: PingFang SC;
  740. font-weight: bold;
  741. color: #333333;
  742. }
  743. .item-content {
  744. font-size: 22rpx;
  745. font-family: PingFang SC;
  746. font-weight: 500;
  747. color: #C3C3C3;
  748. padding-top: 10rpx;
  749. }
  750. .item-logo {
  751. position: absolute;
  752. }
  753. }
  754. }
  755. .bottom-box {
  756. justify-content: center;
  757. flex-wrap: wrap;
  758. background-color: #fff;
  759. .tit {
  760. font-size: 28rpx;
  761. font-family: PingFang SC;
  762. font-weight: bold;
  763. color: #333333;
  764. }
  765. .left-content {
  766. padding-top: 5rpx;
  767. font-size: 20rpx;
  768. font-family: PingFang SC;
  769. font-weight: 500;
  770. max-width: 210rpx;
  771. color: #C3C3C3;
  772. }
  773. .btm-left {
  774. height: 334rpx;
  775. width: 261rpx;
  776. // background-color: #009100;
  777. padding: 30rpx 20rpx;
  778. position: relative;
  779. .bglogo {
  780. position: absolute;
  781. width: 189rpx;
  782. height: 194rpx;
  783. bottom: 23rpx;
  784. left: 35rpx;
  785. }
  786. }
  787. .btm-right {
  788. width: 438rpx;
  789. height: 334rpx;
  790. // background-color: #03A9F4;
  791. .b-l-item {
  792. width: 438rpx;
  793. height: 167rpx;
  794. // background-color: red;
  795. position: relative;
  796. padding: 50rpx 36rpx;
  797. .right-logo {
  798. position: absolute;
  799. width: 195rpx;
  800. height: 137rpx;
  801. top: 6rpx;
  802. left: 240rpx;
  803. }
  804. .right-logo-2 {
  805. width: 90rpx;
  806. height: 130rpx;
  807. top: 13rpx;
  808. left: 290rpx;
  809. }
  810. }
  811. }
  812. }
  813. </style>