list.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  1. <template>
  2. <view class="container" slot="gBody" style="background-color: #F8F8F8;">
  3. <ourLoading isFullScreen :active="pageLoading" :text="pageLoadingText" />
  4. <view class="main" v-if="state == 1">
  5. <view class="content" :style="height">
  6. <scroll-view class="menus" :scroll-into-view="view" scroll-with-animation scroll-y>
  7. <view class="wrapper">
  8. <view class="menu" :id="`menu-${v.id}`" :class="{'current': k == cate_index}" v-for="(v, k) in fetch.cate" :key="k" @tap="menu(k, v.id)">
  9. <text>{{ v.name }}</text>
  10. </view>
  11. </view>
  12. </scroll-view>
  13. <!-- goods list begin -->
  14. <scroll-view class="goods" scroll-with-animation scroll-y :scroll-top="top">
  15. <view class="wrapper">
  16. <swiper class="ads" id="ads" autoplay :interval="3000" indicator-dots v-if="fetch.focus.length > 0">
  17. <swiper-item v-for="(v, k) in fetch.focus" :key="k" @tap="go" :data-url="v.link">
  18. <image :src="v.pic"></image>
  19. </swiper-item>
  20. </swiper>
  21. <view class="list">
  22. <!-- category begin -->
  23. <view class="category" v-for="(v, k) in fetch.cate" :key="k" :id="`cate-${v.id}`" v-if="k == cate_index">
  24. <view class="items">
  25. <!-- 商品 begin -->
  26. <view class="good" v-for="(v1, k1) in fetch.info[v.id]" :key="k1">
  27. <image :src="v1.pic_cover" class="image" @tap="location(v1.id_code)"></image>
  28. <view class="right" @tap="location(v1.id_code)">
  29. <text class="name">{{ v1.name }}</text>
  30. <text class="tips">{{ v1.desc }}</text>
  31. <view class="price_and_action" v-if="v1.buy == 1" style="display: none;">
  32. <text class="price">¥{{ v1.buy_price }}</text>
  33. </view>
  34. </view>
  35. </view>
  36. <!-- 商品 end -->
  37. </view>
  38. </view>
  39. <!-- category end -->
  40. </view>
  41. </view>
  42. </scroll-view>
  43. <!-- goods list end -->
  44. </view>
  45. <!-- content end -->
  46. </view>
  47. <view v-if="state == 2" class="d-flex w-100 h-100 flex-column just-content-center align-items-center">
  48. <view class="tips d-flex flex-column align-items-center font-size-base text-color-assist">
  49. <view>您还没有任何阅览的小记</view>
  50. <view>小记可能就在你身边,快去寻找吧~</view>
  51. </view>
  52. <button type="primary" class="drink-btn" size="default" @tap="home">我的家园</button>
  53. <view class="font-size-sm text-color-primary" @tap="qun" style="display: none;">加入官方微信群</view>
  54. </view>
  55. <dever-share ref="share" :data="fetch.share" v-if="fetch.share"></dever-share>
  56. </view>
  57. </template>
  58. <script>
  59. import deverShare from '@/lib/dever/components/share.vue';
  60. export default {
  61. components: {
  62. },
  63. data() {
  64. return {
  65. state : 0,
  66. fetch : {
  67. cate : [],
  68. info : [],
  69. hot : [],
  70. },
  71. height : 'height:100%',
  72. cate_index: 0,//默认分类
  73. top: 0,
  74. view: '',
  75. }
  76. },
  77. components:{
  78. deverShare
  79. },
  80. onLoad() {
  81. },
  82. onShow() {
  83. //this.Dever.checkLogin();
  84. this.getData();
  85. },
  86. // 重新加载
  87. onPullDownRefresh: function() {
  88. this.getData();
  89. },
  90. //下拉加载
  91. onReachBottom() {
  92. this.getData();
  93. },
  94. methods: {
  95. getData : function() {
  96. var self = this;
  97. this.Dever.get(this, 'app/collection/?l=api.getList', {id:-1}, function(t) {
  98. if (t.cate.length > 0) {
  99. self.state = 1;
  100. } else {
  101. self.state = 2;
  102. }
  103. uni.getSystemInfo({
  104. success: function (res) {
  105. self.height = 'height:' + res.windowHeight + 'px';
  106. }
  107. })
  108. });
  109. },
  110. home : function() {
  111. this.Dever.location('index/index');
  112. },
  113. location : function(id) {
  114. this.Dever.location('dream/index?id=' + id);
  115. },
  116. go : function(e) {
  117. var link = e.currentTarget.dataset.url;
  118. if (link) {
  119. this.Dever.location(link);
  120. }
  121. },
  122. menu : function(index, id) {
  123. this.cate_index = index
  124. },
  125. }
  126. };
  127. </script>
  128. <style lang="scss" scoped>
  129. /* #ifdef H5 */
  130. page {
  131. min-height: 100%;
  132. }
  133. /* #endif */
  134. .order-box {
  135. padding: 20rpx;
  136. /* #ifdef H5 */
  137. margin-bottom: 100rpx;
  138. /* #endif */
  139. }
  140. .drinks-img {
  141. width: 260rpx;
  142. height: 260rpx;
  143. }
  144. .tips {
  145. margin: 60rpx 0 80rpx;
  146. line-height: 48rpx;
  147. }
  148. .drink-btn {
  149. width: 320rpx;
  150. border-radius: 50rem !important;
  151. margin-bottom: 40rpx;
  152. font-size: $font-size-base;
  153. line-height: 3.0;
  154. }
  155. uni-button {
  156. background-color: #ADB838;
  157. }
  158. .container {
  159. overflow: hidden;
  160. position: relative;
  161. }
  162. .loading {
  163. width: 100%;
  164. height: 100%;
  165. display: flex;
  166. align-items: center;
  167. justify-content: center;
  168. image {
  169. width: 260rpx;
  170. height: 260rpx;
  171. position: relative;
  172. margin-top: -200rpx;
  173. /* #ifdef h5 */
  174. margin-top: 0;
  175. /* #endif */
  176. }
  177. }
  178. .stores {
  179. width: 100%;
  180. display: flex;
  181. flex-direction: column;
  182. justify-content: flex-start;
  183. margin-bottom: -40rpx;
  184. .store {
  185. width: 100%;
  186. background-color: $bg-color-grey;
  187. padding: 20rpx;
  188. display: flex;
  189. align-items: center;
  190. margin-bottom: 20rpx;
  191. border-radius: 6rpx;
  192. .iconfont {
  193. font-size: 50rpx;
  194. margin-right: 15rpx;
  195. &.iconradio-button-off {
  196. color: $text-color-assist;
  197. }
  198. &.iconradio-button-on {
  199. color: $color-primary;
  200. }
  201. }
  202. .infos {
  203. flex: 1;
  204. display: flex;
  205. flex-direction: column;
  206. color: $text-color-base;
  207. overflow: hidden;
  208. .name_and_distance {
  209. width: 100%;
  210. display: flex;
  211. justify-content: space-between;
  212. margin-bottom: 10rpx;
  213. overflow: hidden;
  214. .name {
  215. flex: 1;
  216. flex-shrink: 0;
  217. overflow: hidden;
  218. text-overflow: ellipsis;
  219. white-space: nowrap;
  220. font-size: $font-size-lg;
  221. }
  222. .distance {
  223. flex-shrink: 0;
  224. font-size: $font-size-lg;
  225. font-weight: bold;
  226. margin-left: 20rpx;
  227. }
  228. }
  229. .street {
  230. color: $text-color-assist;
  231. font-size: $font-size-sm;
  232. }
  233. }
  234. }
  235. }
  236. .main {
  237. width: 100%;
  238. height: 100%;
  239. position: relative;
  240. display: flex;
  241. flex-direction: column;
  242. }
  243. .nav {
  244. width: 100%;
  245. height: 212rpx;
  246. flex-shrink: 0;
  247. display: flex;
  248. flex-direction: column;
  249. .header {
  250. width: 100%;
  251. display: flex;
  252. align-items: center;
  253. justify-content: space-between;
  254. padding: 20rpx;
  255. background-color: #ffffff;
  256. height: 140rpx;
  257. .left {
  258. flex: 1;
  259. display: flex;
  260. flex-direction: column;
  261. .store-name {
  262. display: flex;
  263. justify-content: flex-start;
  264. align-items: center;
  265. font-size: $font-size-lg;
  266. margin-bottom: 10rpx;
  267. .iconfont {
  268. margin-left: 10rpx;
  269. line-height: 100%;
  270. }
  271. }
  272. .store-location {
  273. display: flex;
  274. justify-content: flex-start;
  275. align-items: center;
  276. color: $text-color-assist;
  277. font-size: $font-size-sm;
  278. .iconfont {
  279. vertical-align: middle;
  280. display: table-cell;
  281. color: $color-primary;
  282. line-height: 100%;
  283. }
  284. }
  285. }
  286. .right {
  287. background-color: $bg-color-grey;
  288. border-radius: 38rpx;
  289. display: flex;
  290. align-items: center;
  291. font-size: $font-size-sm;
  292. padding: 0 38rpx;
  293. color: $text-color-assist;
  294. .dinein, .takeout {
  295. position: relative;
  296. display: flex;
  297. align-items: center;
  298. &.active {
  299. padding: 14rpx 38rpx;
  300. color: #ffffff;
  301. background-color: $color-primary;
  302. border-radius: 38rpx;
  303. }
  304. }
  305. .takeout {
  306. margin-left: 20rpx;
  307. height: 100%;
  308. flex: 1;
  309. padding: 14rpx 0;
  310. }
  311. .dinein.active {
  312. margin-left: -38rpx;
  313. }
  314. .takeout.active {
  315. margin-right: -38rpx;
  316. }
  317. }
  318. }
  319. .coupon {
  320. flex: 1;
  321. width: 100%;
  322. background-color: $bg-color-primary;
  323. font-size: $font-size-base;
  324. color: $color-primary;
  325. padding: 0 20rpx;
  326. display: flex;
  327. align-items: center;
  328. overflow: hidden;
  329. .title {
  330. flex: 1;
  331. margin-left: 10rpx;
  332. overflow: hidden;
  333. white-space: nowrap;
  334. text-overflow: ellipsis;
  335. }
  336. .iconfont {
  337. line-height: 100%;
  338. }
  339. }
  340. }
  341. .content {
  342. flex: 1;
  343. overflow: hidden;
  344. width: 100%;
  345. display: flex;
  346. .menus {
  347. width: 200rpx;
  348. height: 100%;
  349. overflow: hidden;
  350. background-color: $bg-color-grey;
  351. .wrapper {
  352. width: 100%;
  353. height: 100%;
  354. .menu {
  355. display: flex;
  356. align-items: center;
  357. justify-content: flex-start;
  358. padding: 30rpx 20rpx;
  359. font-size: 26rpx;
  360. color: $text-color-assist;
  361. position: relative;
  362. &:nth-last-child(1) {
  363. margin-bottom: 130rpx;
  364. }
  365. &.current {
  366. background-color: #ffffff;
  367. color: $text-color-base;
  368. }
  369. .dot {
  370. position: absolute;
  371. width: 34rpx;
  372. height: 34rpx;
  373. line-height: 34rpx;
  374. font-size: 22rpx;
  375. background-color: $color-primary;
  376. color: #ffffff;
  377. top: 16rpx;
  378. right: 10rpx;
  379. border-radius: 100%;
  380. text-align: center;
  381. }
  382. }
  383. }
  384. }
  385. .goods {
  386. flex: 1;
  387. height: 100%;
  388. overflow: hidden;
  389. background-color: #ffffff;
  390. .wrapper {
  391. width: 100%;
  392. height: 100%;
  393. padding: 20rpx;
  394. .ads {
  395. height: calc(300 / 550 * 510rpx);
  396. image {
  397. width: 100%;
  398. height: 100%;
  399. border-radius: 8rpx;
  400. }
  401. }
  402. .list {
  403. width: 100%;
  404. font-size: $font-size-base;
  405. padding-bottom: 130rpx;
  406. .category {
  407. width: 100%;
  408. .title {
  409. padding: 30rpx 0;
  410. display: flex;
  411. align-items: center;
  412. color: $text-color-base;
  413. .icon {
  414. width: 38rpx;
  415. height: 38rpx;
  416. margin-left: 10rpx;
  417. }
  418. }
  419. }
  420. .items {
  421. display: flex;
  422. flex-direction: column;
  423. padding-bottom: -30rpx;
  424. .good {
  425. display: flex;
  426. align-items: center;
  427. margin-bottom: 30rpx;
  428. .image {
  429. width: 160rpx;
  430. height: 160rpx;
  431. margin-right: 20rpx;
  432. border-radius: 8rpx;
  433. }
  434. .right {
  435. flex: 1;
  436. height: 160rpx;
  437. overflow: hidden;
  438. display: flex;
  439. flex-direction: column;
  440. align-items: flex-start;
  441. justify-content: space-between;
  442. padding-right: 14rpx;
  443. .name {
  444. font-size: $font-size-base;
  445. margin-bottom: 10rpx;
  446. }
  447. .tips {
  448. width: 100%;
  449. height: 100rpx;
  450. line-height: 40rpx;
  451. overflow: hidden;
  452. text-overflow: ellipsis;
  453. white-space: nowrap;
  454. font-size: $font-size-sm;
  455. color: $text-color-assist;
  456. margin-bottom: 10rpx;
  457. }
  458. .price_and_action {
  459. width: 100%;
  460. display: flex;
  461. justify-content: space-between;
  462. align-items: center;
  463. .price {
  464. font-size: $font-size-base;
  465. font-weight: 600;
  466. }
  467. .btn-group {
  468. display: flex;
  469. justify-content: space-between;
  470. align-items: center;
  471. position: relative;
  472. .btn {
  473. padding: 0 20rpx;
  474. box-sizing: border-box;
  475. font-size: $font-size-sm;
  476. height: 44rpx;
  477. line-height: 44rpx;
  478. &.property_btn {
  479. border-radius: 24rpx;
  480. }
  481. &.add_btn,
  482. &.reduce_btn {
  483. padding: 0;
  484. width: 44rpx;
  485. border-radius: 44rpx;
  486. }
  487. }
  488. .dot {
  489. position: absolute;
  490. background-color: #ffffff;
  491. border: 1px solid $color-primary;
  492. color: $color-primary;
  493. font-size: $font-size-sm;
  494. width: 36rpx;
  495. height: 36rpx;
  496. line-height: 36rpx;
  497. text-align: center;
  498. border-radius: 100%;
  499. right: -12rpx;
  500. top: -10rpx;
  501. }
  502. .number {
  503. width: 44rpx;
  504. height: 44rpx;
  505. line-height: 44rpx;
  506. text-align: center;
  507. }
  508. }
  509. }
  510. }
  511. }
  512. }
  513. }
  514. }
  515. }
  516. }
  517. .modal-box {
  518. max-height: 90vh;
  519. }
  520. .good-detail-modal {
  521. width: 100%;
  522. height: 100%;
  523. display: flex;
  524. flex-direction: column;
  525. .cover {
  526. height: 320rpx;
  527. padding: 30rpx 0;
  528. display: flex;
  529. justify-content: center;
  530. align-items: center;
  531. position: relative;
  532. .image {
  533. width: 260rpx;
  534. height: 260rpx;
  535. }
  536. .btn-group {
  537. position: absolute;
  538. right: 10rpx;
  539. top: 30rpx;
  540. display: flex;
  541. align-items: center;
  542. justify-content: space-around;
  543. image {
  544. width: 80rpx;
  545. height: 80rpx;
  546. }
  547. }
  548. }
  549. .detail {
  550. width: 100%;
  551. min-height: 1vh;
  552. max-height: calc(90vh - 320rpx - 80rpx - 120rpx);
  553. .wrapper {
  554. width: 100%;
  555. height: 100%;
  556. overflow: hidden;
  557. .basic {
  558. padding: 0 20rpx 30rpx;
  559. display: flex;
  560. flex-direction: column;
  561. .name {
  562. font-size: $font-size-base;
  563. color: $text-color-base;
  564. margin-bottom: 10rpx;
  565. }
  566. .tips {
  567. font-size: $font-size-sm;
  568. color: $text-color-grey;
  569. }
  570. }
  571. .properties {
  572. width: 100%;
  573. border-top: 2rpx solid $bg-color-grey;
  574. padding: 10rpx 30rpx 0;
  575. display: flex;
  576. flex-direction: column;
  577. .property {
  578. width: 100%;
  579. display: flex;
  580. flex-direction: column;
  581. margin-bottom: 30rpx;
  582. padding-bottom: -16rpx;
  583. .title {
  584. width: 100%;
  585. display: flex;
  586. justify-content: flex-start;
  587. align-items: center;
  588. margin-bottom: 20rpx;
  589. .name {
  590. font-size: 26rpx;
  591. color: $text-color-base;
  592. margin-right: 20rpx;
  593. }
  594. .desc {
  595. flex: 1;
  596. font-size: $font-size-sm;
  597. color: $color-primary;
  598. overflow: hidden;
  599. text-overflow: ellipsis;
  600. white-space: nowrap;
  601. }
  602. }
  603. .values {
  604. width: 100%;
  605. display: flex;
  606. flex-wrap: wrap;
  607. .value {
  608. border-radius: 8rpx;
  609. background-color: $bg-color-grey;
  610. padding: 16rpx 30rpx;
  611. font-size: 26rpx;
  612. color: $text-color-assist;
  613. margin-right: 16rpx;
  614. margin-bottom: 16rpx;
  615. &.default {
  616. background-color: $color-primary;
  617. color: $text-color-white;
  618. }
  619. }
  620. }
  621. }
  622. }
  623. }
  624. }
  625. .action {
  626. display: flex;
  627. align-items: center;
  628. justify-content: space-between;
  629. background-color: $bg-color-grey;
  630. height: 120rpx;
  631. padding: 0 26rpx;
  632. .left {
  633. flex: 1;
  634. display: flex;
  635. flex-direction: column;
  636. justify-content: center;
  637. margin-right: 20rpx;
  638. overflow: hidden;
  639. .price {
  640. font-size: $font-size-lg;
  641. color: $text-color-base;
  642. }
  643. .props {
  644. color: $text-color-assist;
  645. font-size: 24rpx;
  646. width: 100%;
  647. overflow: hidden;
  648. text-overflow: ellipsis;
  649. white-space: nowrap;
  650. }
  651. }
  652. .btn-group {
  653. display: flex;
  654. align-items: center;
  655. justify-content: space-around;
  656. .number {
  657. font-size: $font-size-base;
  658. width: 44rpx;
  659. height: 44rpx;
  660. line-height: 44rpx;
  661. text-align: center;
  662. }
  663. .btn {
  664. padding: 0;
  665. font-size: $font-size-base;
  666. width: 44rpx;
  667. height: 44rpx;
  668. line-height: 44rpx;
  669. border-radius: 100%;
  670. }
  671. }
  672. }
  673. .add-to-cart-btn {
  674. display: flex;
  675. justify-content: center;
  676. align-items: center;
  677. background-color: $color-primary;
  678. color: $text-color-white;
  679. font-size: $font-size-base;
  680. height: 80rpx;
  681. border-radius: 0 0 12rpx 12rpx;
  682. }
  683. }
  684. .cart-box {
  685. position: absolute;
  686. bottom: 30rpx;
  687. left: 30rpx;
  688. right: 30rpx;
  689. height: 96rpx;
  690. border-radius: 48rpx;
  691. box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.2);
  692. background-color: #FFFFFF;
  693. display: flex;
  694. align-items: center;
  695. justify-content: space-between;
  696. z-index: 9999;
  697. .cart-img {
  698. width: 96rpx;
  699. height: 96rpx;
  700. position: relative;
  701. margin-top: -48rpx;
  702. }
  703. .pay-btn {
  704. height: 100%;
  705. padding: 0 30rpx;
  706. color: #FFFFFF;
  707. border-radius: 0 50rpx 50rpx 0;
  708. display: flex;
  709. align-items: center;
  710. font-size: $font-size-base;
  711. }
  712. .mark {
  713. padding-left: 46rpx;
  714. margin-right: 30rpx;
  715. position: relative;
  716. .tag {
  717. background-color: $color-warning;
  718. color: $text-color-white;
  719. display: flex;
  720. justify-content: center;
  721. align-items: center;
  722. font-size: $font-size-sm;
  723. position: absolute;
  724. right: -10rpx;
  725. top: -50rpx;
  726. border-radius: 100%;
  727. padding: 4rpx;
  728. width: 40rpx;
  729. height: 40rpx;
  730. opacity: .9;
  731. }
  732. }
  733. .price {
  734. flex: 1;
  735. color: $text-color-base;
  736. }
  737. }
  738. .cart-popup {
  739. .top {
  740. background-color: $bg-color-primary;
  741. color: $color-primary;
  742. padding: 10rpx 30rpx;
  743. font-size: 24rpx;
  744. text-align: right;
  745. }
  746. .cart-list {
  747. background-color: #FFFFFF;
  748. width: 100%;
  749. overflow: hidden;
  750. min-height: 1vh;
  751. max-height: 60vh;
  752. .wrapper {
  753. height: 100%;
  754. display: flex;
  755. flex-direction: column;
  756. padding: 0 30rpx;
  757. margin-bottom: 156rpx;
  758. .item {
  759. display: flex;
  760. justify-content: space-between;
  761. align-items: center;
  762. padding: 30rpx 0;
  763. position: relative;
  764. &::after {
  765. content: ' ';
  766. position: absolute;
  767. bottom: 0;
  768. left: 0;
  769. width: 100%;
  770. background-color: $border-color;
  771. height: 2rpx;
  772. transform: scaleY(.6);
  773. }
  774. .left {
  775. flex: 1;
  776. display: flex;
  777. flex-direction: column;
  778. overflow: hidden;
  779. margin-right: 30rpx;
  780. .name {
  781. font-size: $font-size-sm;
  782. color: $text-color-base;
  783. }
  784. .props {
  785. color: $text-color-assist;
  786. font-size: 24rpx;
  787. overflow: hidden;
  788. text-overflow: ellipsis;
  789. white-space: nowrap;
  790. }
  791. }
  792. .center {
  793. margin-right: 120rpx;
  794. font-size: $font-size-base;
  795. }
  796. .right {
  797. display: flex;
  798. align-items: center;
  799. justify-content: space-between;
  800. .btn {
  801. width: 46rpx;
  802. height: 46rpx;
  803. border-radius: 100%;
  804. padding: 0;
  805. text-align: center;
  806. line-height: 46rpx;
  807. }
  808. .number {
  809. font-size: $font-size-base;
  810. width: 46rpx;
  811. height: 46rpx;
  812. text-align: center;
  813. line-height: 46rpx;
  814. }
  815. }
  816. }
  817. }
  818. }
  819. }
  820. </style>