index.vue 17 KB

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