rizhao.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751
  1. <template>
  2. <view class="rizhao">
  3. <u-navbar :title="title" back-icon-color="#fff" title-color="#fff" :background="{background:'rgba(0,0,0,0)'}" :border-bottom="false" :immersive="true"></u-navbar>
  4. <view class="header-3d" id="objContaier" @click="to3D">
  5. <image v-if="detail.sunlight_image" :src="detail.sunlight_image" class="bg-3d" mode="aspectFill"></image>
  6. <image v-else src="../static/3d-bg.png" class="bg-3d" mode="aspectFill"></image>
  7. <view class="btn-3d u-flex u-row-center">
  8. <image src="../static/3d-btn.png" mode=""></image>
  9. </view>
  10. </view>
  11. <view class="time-box u-flex u-flex-wrap u-row-center">
  12. <view class="u-flex time-item u-row-center" v-for="(a,b) in timelist" :key="b">
  13. <text :style="{background:a.color}"></text>
  14. <text>{{a.name}}</text>
  15. </view>
  16. </view>
  17. <view class="louceng-fangxiang u-flex u-row-between u-flex-wrap">
  18. <text :class="{text:fangxiang == index}" v-for="(item,index) in fangxianglist" :key="index" @click="changefangxiang(index)">{{item.orientation}}</text>
  19. </view>
  20. <view class="louceng-jieqi">
  21. <view class="jieqi-box u-flex u-row-between u-flex-wrap">
  22. <text v-for="(a,b) in jieqilist" :class="b == jieqi ? 'text' : ''" :key="b" @click="changejieqi(b)">{{a.solar_terms}}</text>
  23. </view>
  24. </view>
  25. <view class="rizhao-louhao u-flex u-flex-wrap">
  26. <view class="u-flex u-col-center u-row-center louhao-active" :style="{borderColor:louhao == index ? '#1F7EFF' : '#999999'}" v-for="(item,index) in louhaoList" :key="index" @click="changelou(index)">
  27. <text class="text1" :style="{color:louhao == index ? '#1F7EFF' : '#999999'}">{{item.build_num}}#</text>
  28. <text class="text2" v-if="louhao == index">✓</text>
  29. </view>
  30. </view>
  31. <scroll-view class="louceng-time-table" scroll-x="true" v-if="list.length > 0">
  32. <view class="u-flex-col" :style="{width:getwidth() + 'rpx'}">
  33. <view class="table-header">
  34. {{louhaoList[louhao].build_num}}#{{fangxianglist[fangxiang] ? fangxianglist[fangxiang].orientation : ''}}{{jieqilist[jieqi] ? jieqilist[jieqi].solar_terms : ''}}
  35. </view>
  36. <view class="body-header u-flex">
  37. <view class="header-title u-flex-col u-row-between">
  38. <text class="text1">单元</text>
  39. <text class="text2">楼层</text>
  40. <image src="../../static/images/xiegang.png" mode=""></image>
  41. </view>
  42. <view class="danyuan-header" v-for="(a,b) in list[0].unit_info" :key="b">
  43. <view class="danyuan-title">
  44. 第{{a.unit}}单元
  45. </view>
  46. <view class="u-flex">
  47. <view class="house-title" v-for="(c,d) in a.house_info" :key="d">
  48. {{a.house_info.length - d}}室
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. <view class="body-item" v-for="(item,index) in list" :key="index">
  54. <view class="item-title">
  55. <text>{{item.floor}}F</text>
  56. </view>
  57. <view class="danyuan-item" v-for="(a,b) in item.unit_info" :key="b">
  58. <view class="house-item" v-for="(c,d) in a.house_info" :key="d" :style="{background:getcolor(c)}">
  59. <view class="house-room u-flex">
  60. <text>{{c.room_num}}</text>
  61. <text>室</text>
  62. </view>
  63. <view class="house-allprice">
  64. <text>{{c.sunlight_duration}}</text>
  65. <text></text>
  66. </view>
  67. <view class="house-price">
  68. <text></text>
  69. <text>{{c.sunlight_time}}</text>
  70. </view>
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. </scroll-view>
  76. <view class="" style="padding: 24rpx;">
  77. <view v-html="sunshine"></view>
  78. </view>
  79. <view class="u-flex-col" style="font-size: 28rpx;color: #9DA3AB;padding: 0 24rpx;">
  80. <view class="u-flex" style="margin-bottom: 10rpx;" @click="showmianze2 = true">
  81. <text style="margin-right: 10rpx;">免责声明</text>
  82. <u-icon name="info-circle-fill"></u-icon>
  83. </view>
  84. </view>
  85. <view class="" style="height:170rpx"></view>
  86. <view class="rizhao-btn u-flex u-row-between">
  87. <text @click="opentel">隐私电话</text>
  88. <text @click="tochat">在线咨询</text>
  89. </view>
  90. <u-popup v-model="showtocall" mode="center" background="rgba(0,0,0,0)">
  91. <view class="tocall-box u-flex-col u-col-center">
  92. <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
  93. <view class="u-flex-col u-col-center tocall-text">您是否进行呼叫?</view>
  94. <view class="u-flex u-row-between tocall-btn">
  95. <text @click="showtocall = false">取消</text>
  96. <text @click="tocell">确定</text>
  97. </view>
  98. </view>
  99. </u-popup>
  100. <u-popup v-model="showlogin" mode="center" background="rgba(0,0,0,0)">
  101. <view class="tocall-box u-flex-col u-col-center">
  102. <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
  103. <view class="u-flex-col u-col-center tocall-text">你目前处于未登录状态请前往登录</view>
  104. <view class="u-flex u-row-between tocall-btn">
  105. <text @click="showlogin = false">取消</text>
  106. <text @click="tologin">确定</text>
  107. </view>
  108. </view>
  109. </u-popup>
  110. <!-- <u-popup v-model="showmianze1" mode="bottom" height="900rpx">
  111. <view class="" style="padding: 24rpx;">
  112. <view v-html="sunshine"></view>
  113. </view>
  114. </u-popup> -->
  115. <u-popup v-model="showmianze2" mode="bottom" height="900rpx">
  116. <view class="" style="padding: 24rpx;">
  117. <view v-html="disclaimer"></view>
  118. </view>
  119. </u-popup>
  120. <gf-chat ref="chatlist" @over="getuser"></gf-chat>
  121. <gf-tel ref="tellist" @over="getuser"></gf-tel>
  122. </view>
  123. </template>
  124. <script>
  125. export default {
  126. data() {
  127. return {
  128. showmianze2: false,
  129. showtocall: false,
  130. showlogin: false,
  131. id: '',
  132. louhaoList: [],
  133. louhao: 0,
  134. jieqilist: [],
  135. jieqi: 0,
  136. fangxianglist: [],
  137. fangxiang: 0,
  138. detail: {},
  139. list: [],
  140. timelist: [{
  141. name: '8h=日照',
  142. color: '#61C86A',
  143. value: ['08:00']
  144. }, {
  145. name: '8h>日照>=6h',
  146. color: '#9BD56D',
  147. value: ['08:00', '06:00']
  148. }, {
  149. name: '6h>日照>=4h',
  150. color: '#E7E2A6',
  151. value: ['06:00', '04:00']
  152. }, {
  153. name: '4h>日照>=2h',
  154. color: '#F4CE9E',
  155. value: ['04:00', '02:00']
  156. }, {
  157. name: '2h>日照>=0h',
  158. color: '#F5BBB1',
  159. value: ['02:00', '00:00']
  160. }],
  161. sunshine: '',
  162. disclaimer: '',
  163. title: '',
  164. worker_id: 0,
  165. worker_phone: '',
  166. worker_hx_username: ''
  167. }
  168. },
  169. onLoad(option) {
  170. this.id = option.id
  171. this.getdata()
  172. this.getlist()
  173. this.getconfig()
  174. },
  175. onShow() {
  176. if (uni.getStorageSync("token")) {
  177. this.getuser()
  178. }
  179. },
  180. mounted() {
  181. },
  182. methods: {
  183. to3D() {
  184. if (this.detail.abbr_url) {
  185. uni.navigateTo({
  186. url: '/pagesA/index/webview?url=' + this.detail.abbr_url + "&id=" + this.id + "&type=1"
  187. })
  188. } else {
  189. this.$u.toast("暂无数据")
  190. }
  191. },
  192. opentel() {
  193. if (uni.getStorageSync("token")) {
  194. this.showtocall = true
  195. } else {
  196. this.showlogin = true
  197. }
  198. },
  199. getuser() {
  200. this.$u.post('/api/Member/member_info').then(res => {
  201. this.worker_id = res.data.worker_id
  202. this.worker_phone = res.data.worker_phone
  203. this.worker_hx_username = res.data.worker_hx_username
  204. })
  205. },
  206. getconfig() {
  207. this.$u.post('/api/Index/platform_config').then(res => {
  208. const regex = new RegExp('<img', 'gi')
  209. this.sunshine = res.data.sunshine.replace(regex, `<img style="max-width: 100%; height: auto"`)
  210. this.disclaimer = res.data.disclaimer.replace(regex, `<img style="max-width: 100%; height: auto"`)
  211. })
  212. },
  213. changejieqi(index) {
  214. this.jieqi = index
  215. this.getdetail()
  216. },
  217. changefangxiang(index) {
  218. this.fangxiang = index
  219. this.getdetail()
  220. },
  221. getcolor(item) {
  222. for (let i = 0; i < this.timelist.length; i++) {
  223. var sunlight_duration = item.sunlight_duration.length == 4 ? ('0' + item.sunlight_duration) : item.sunlight_duration
  224. if (this.timelist[i].value[0] == sunlight_duration) {
  225. return this.timelist[i].color
  226. }
  227. if (this.timelist[i].value[1]) {
  228. if (this.timelist[i].value[0] > sunlight_duration && this.timelist[i].value[1] <= sunlight_duration) {
  229. return this.timelist[i].color
  230. }
  231. }
  232. }
  233. },
  234. getwidth() {
  235. var width = 0
  236. this.list.forEach((item, index) => {
  237. if (index == 0) {
  238. width = width + 104
  239. item.unit_info.forEach(val => {
  240. width = width + val.house_info.length * 160
  241. })
  242. }
  243. })
  244. return width
  245. },
  246. getlist() {
  247. this.$u.get('/api/Property/sunshine_info', {
  248. id: this.id
  249. }).then(res => {
  250. this.louhaoList = res.data.build_info
  251. this.jieqilist = res.data.solar_terms_info
  252. this.fangxianglist = res.data.orientation_info
  253. this.getdetail()
  254. })
  255. },
  256. getdetail() {
  257. this.$u.get('/api/Property/sunshine_detail', {
  258. id: this.id,
  259. build_num: this.louhaoList[this.louhao] ? this.louhaoList[this.louhao].build_num : '',
  260. orientation: this.fangxianglist[this.fangxiang] ? this.fangxianglist[this.fangxiang].orientation : '',
  261. solar_terms: this.jieqilist[this.jieqi] ? this.jieqilist[this.jieqi].solar_terms : ''
  262. }).then(res => {
  263. this.list = res.data.sort((a, b) => b.floor - a.floor)
  264. this.list.forEach(item => {
  265. item.unit_info = item.unit_info.sort((a, b) => b.unit - a.unit)
  266. item.unit_info.forEach(val => {
  267. val.house_info = val.house_info.sort((a, b) => b.room_num - a.room_num)
  268. })
  269. })
  270. })
  271. },
  272. getdata() {
  273. this.$u.post('/api/Property/property_detail', {
  274. id: this.id
  275. }).then(res => {
  276. this.detail = res.data
  277. this.title = res.data.name
  278. })
  279. },
  280. tologin() {
  281. this.showlogin = false
  282. uni.navigateTo({
  283. url: "/pages/mine/login"
  284. })
  285. },
  286. tochat() {
  287. if (uni.getStorageSync("token")) {
  288. if (this.worker_id == 0) {
  289. this.$refs.chatlist.open(this.id)
  290. } else {
  291. this.$u.post('/api/Member/consult_record', {
  292. type: 2
  293. })
  294. uni.navigateTo({
  295. url: "/pages/index/chat?hx_username=" + this.worker_hx_username + "&worker_id=" + this.worker_id
  296. })
  297. }
  298. } else {
  299. this.showlogin = true
  300. }
  301. },
  302. tocell() {
  303. if (uni.getStorageSync("token")) {
  304. this.showtocall = false
  305. if (this.worker_id == 0) {
  306. this.$refs.tellist.open(this.id)
  307. } else {
  308. this.$u.post('/api/Member/consult_record', {
  309. type: 1
  310. })
  311. uni.makePhoneCall({
  312. phoneNumber: this.worker_phone
  313. })
  314. }
  315. } else {
  316. this.showlogin = true
  317. }
  318. },
  319. changelou(index) {
  320. this.louhao = index
  321. this.getdetail()
  322. },
  323. }
  324. }
  325. </script>
  326. <style lang="scss">
  327. page {
  328. background-color: #F5F5F5;
  329. }
  330. .rizhao {
  331. .header-3d {
  332. height: 648rpx;
  333. width: 750rpx;
  334. position: relative;
  335. .bg-3d {
  336. height: 648rpx;
  337. width: 750rpx;
  338. }
  339. .btn-3d {
  340. width: 128rpx;
  341. height: 128rpx;
  342. background: rgba(0, 0, 0, 0.5);
  343. border: 4rpx solid rgba(255, 255, 255, 0.5);
  344. border-radius: 100%;
  345. position: absolute;
  346. top: 50%;
  347. left: 50%;
  348. transform: translate(-50%, -50%);
  349. image {
  350. width: 50rpx;
  351. height: 70rpx;
  352. }
  353. }
  354. }
  355. .tocall-box {
  356. position: relative;
  357. .tocall-img {
  358. width: 650rpx;
  359. height: 476rpx;
  360. }
  361. .tocall-btn {
  362. position: absolute;
  363. bottom: 70rpx;
  364. left: 0;
  365. width: 100%;
  366. padding: 0 48rpx;
  367. text:first-child {
  368. width: 254rpx;
  369. line-height: 80rpx;
  370. background: #FFA120;
  371. border-radius: 20rpx;
  372. text-align: center;
  373. font-size: 34rpx;
  374. font-family: PingFangSC-Medium, PingFang SC;
  375. font-weight: 500;
  376. color: #FFFFFF;
  377. }
  378. text:last-child {
  379. width: 254rpx;
  380. line-height: 80rpx;
  381. background: #1F7EFF;
  382. border-radius: 20rpx;
  383. text-align: center;
  384. font-size: 34rpx;
  385. font-family: PingFangSC-Medium, PingFang SC;
  386. font-weight: 500;
  387. color: #FFFFFF;
  388. text-decoration: none;
  389. }
  390. }
  391. .tocall-text {
  392. text-align: center;
  393. font-size: 24rpx;
  394. font-family: PingFangSC-Regular, PingFang SC;
  395. font-weight: 400;
  396. color: #999999;
  397. position: absolute;
  398. top: 244rpx;
  399. left: 0;
  400. z-index: 10;
  401. width: 100%;
  402. }
  403. }
  404. .rizhao-btn {
  405. position: fixed;
  406. bottom: 0;
  407. left: 0;
  408. z-index: 10;
  409. width: 750rpx;
  410. height: 166rpx;
  411. background: #FFFFFF;
  412. padding: 0 24rpx 54rpx 24rpx;
  413. text:first-child {
  414. width: 338rpx;
  415. line-height: 84rpx;
  416. background: #FFA120;
  417. border-radius: 20rpx;
  418. text-align: center;
  419. font-size: 28rpx;
  420. font-family: PingFangSC-Regular, PingFang SC;
  421. font-weight: 400;
  422. color: #FFFFFF;
  423. text-decoration: none;
  424. }
  425. text:last-child {
  426. width: 338rpx;
  427. line-height: 84rpx;
  428. background: #1F7EFF;
  429. border-radius: 20rpx;
  430. text-align: center;
  431. font-size: 28rpx;
  432. font-family: PingFangSC-Regular, PingFang SC;
  433. font-weight: 400;
  434. color: #FFFFFF;
  435. }
  436. }
  437. .louceng-time-table {
  438. width: 702rpx;
  439. margin: 20rpx auto;
  440. background-color: #fff;
  441. .body-header {
  442. height: 124rpx;
  443. white-space: nowrap;
  444. border-bottom: 1rpx solid #CCCCCC;
  445. .danyuan-header {
  446. .danyuan-title {
  447. height: 58rpx;
  448. line-height: 58rpx;
  449. text-align: center;
  450. border-bottom: 1rpx solid #CCCCCC;
  451. border-right: 1rpx solid #CCCCCC;
  452. }
  453. .house-title {
  454. width: 160rpx;
  455. height: 64rpx;
  456. line-height: 64rpx;
  457. font-size: 24rpx;
  458. font-family: PingFangSC-Regular, PingFang SC;
  459. font-weight: 400;
  460. color: #333333;
  461. text-align: center;
  462. border-right: 1rpx solid #CCCCCC;
  463. }
  464. }
  465. .header-title {
  466. width: 104rpx;
  467. height: 124rpx;
  468. border-right: 1rpx solid #CCCCCC;
  469. padding: 8rpx 12rpx;
  470. position: relative;
  471. image {
  472. position: absolute;
  473. top: 0;
  474. left: 0;
  475. width: 100%;
  476. height: 100%;
  477. }
  478. text {
  479. font-size: 24rpx;
  480. font-family: PingFangSC-Regular, PingFang SC;
  481. font-weight: 400;
  482. color: #333333;
  483. }
  484. .text1 {
  485. width: 100%;
  486. text-align: right;
  487. }
  488. .text2 {
  489. width: 100%;
  490. }
  491. }
  492. }
  493. .body-item {
  494. // height: 160rpx;
  495. display: inline-flex;
  496. align-items: stretch;
  497. white-space: nowrap;
  498. border-bottom: 1rpx solid #CCCCCC;
  499. .danyuan-item {
  500. display: inline-flex;
  501. align-items: stretch;
  502. white-space: nowrap;
  503. vertical-align: top;
  504. .house-item {
  505. display: inline-flex;
  506. flex-direction: column;
  507. justify-content: flex-start;
  508. width: 160rpx;
  509. padding-left: 16rpx;
  510. border-right: 1rpx solid #CCCCCC;
  511. min-height: 160rpx;
  512. .house-mianji {
  513. text:first-child {
  514. font-size: 24rpx;
  515. color: #333333;
  516. }
  517. text:last-child {
  518. font-size: 18rpx;
  519. color: #999999;
  520. }
  521. }
  522. .house-price {
  523. text:first-child {
  524. font-size: 24rpx;
  525. color: #1F7EFF;
  526. }
  527. text:last-child {
  528. font-size: 18rpx;
  529. color: #999999;
  530. }
  531. }
  532. .house-allprice {
  533. text:first-child {
  534. font-size: 28rpx;
  535. color: #333333;
  536. }
  537. text:last-child {
  538. font-size: 18rpx;
  539. color: #999999;
  540. }
  541. }
  542. .house-room {
  543. padding-top: 10rpx;
  544. text:first-child {
  545. font-size: 24rpx;
  546. color: #333333;
  547. }
  548. text:last-child {
  549. font-size: 18rpx;
  550. color: #999999;
  551. }
  552. }
  553. }
  554. }
  555. .item-title {
  556. display: inline-flex;
  557. align-items: center;
  558. justify-content: center;
  559. vertical-align: top;
  560. width: 104rpx;
  561. text-align: center;
  562. font-size: 24rpx;
  563. font-family: PingFangSC-Regular, PingFang SC;
  564. font-weight: 400;
  565. color: #333333;
  566. border-right: 1rpx solid #CCCCCC;
  567. min-width: 1rpx;
  568. }
  569. }
  570. .table-header {
  571. width: 100%;
  572. text-align: center;
  573. font-size: 24rpx;
  574. font-family: PingFangSC-Regular, PingFang SC;
  575. font-weight: 400;
  576. color: #333333;
  577. line-height: 110rpx;
  578. border-bottom: 1rpx solid #CCCCCC;
  579. }
  580. }
  581. .time-box {
  582. width: 750rpx;
  583. height: 138rpx;
  584. background: #FFFFFF;
  585. margin: 0 auto;
  586. padding: 24rpx 24rpx 4rpx 24rpx;
  587. border-bottom: 2rpx solid #F5F5F5;
  588. .time-item {
  589. width: 33%;
  590. margin-bottom: 20rpx;
  591. text:first-child {
  592. width: 32rpx;
  593. height: 32rpx;
  594. background: #61C86A;
  595. border-radius: 8rpx;
  596. margin-right: 20rpx;
  597. }
  598. text:last-child {
  599. font-size: 24rpx;
  600. font-family: PingFangSC-Regular, PingFang SC;
  601. font-weight: 400;
  602. color: #999999;
  603. // margin-right: 40rpx;
  604. }
  605. }
  606. }
  607. .louceng-jieqi {
  608. background-color: #fff;
  609. padding-bottom: 24rpx;
  610. .jieqi-box {
  611. width: 662rpx;
  612. // height: 164rpx;
  613. background: #F5F5F5;
  614. border-radius: 20rpx;
  615. margin: 0 auto;
  616. padding: 24rpx 20rpx 4rpx 20rpx;
  617. text {
  618. margin-bottom: 20rpx;
  619. width: 194rpx;
  620. line-height: 48rpx;
  621. background: #FFFFFF;
  622. border-radius: 8rpx;
  623. border: 2rpx solid #999999;
  624. text-align: center;
  625. font-size: 24rpx;
  626. font-family: PingFangSC-Regular, PingFang SC;
  627. font-weight: 400;
  628. color: #999999;
  629. }
  630. .text {
  631. color: #1F7EFF;
  632. border-color: #1F7EFF;
  633. }
  634. }
  635. }
  636. .louceng-fangxiang {
  637. padding: 24rpx 44rpx;
  638. background-color: #FFFFFF;
  639. text {
  640. flex: 1;
  641. min-width: 318rpx;
  642. line-height: 84rpx;
  643. background: #FFFFFF;
  644. border-radius: 20rpx;
  645. border: 2rpx solid #999999;
  646. text-align: center;
  647. font-size: 28rpx;
  648. font-family: PingFangSC-Regular, PingFang SC;
  649. font-weight: 400;
  650. color: #999999;
  651. }
  652. .text {
  653. color: #1F7EFF;
  654. border-color: #1F7EFF;
  655. }
  656. }
  657. .rizhao-louhao {
  658. width: 702rpx;
  659. background: #FFFFFF;
  660. border-radius: 20rpx;
  661. padding: 0 0 24rpx 0;
  662. margin: 20rpx auto;
  663. .louhao-active {
  664. margin: 0 20rpx;
  665. width: 92rpx;
  666. height: 40rpx;
  667. background: #FFFFFF;
  668. border-radius: 8rpx;
  669. border: 1rpx solid #999999;
  670. position: relative;
  671. margin-top: 24rpx;
  672. .text1 {
  673. font-size: 24rpx;
  674. font-family: PingFangSC-Regular, PingFang SC;
  675. font-weight: 400;
  676. color: #999999;
  677. }
  678. .text2 {
  679. width: 20rpx;
  680. line-height: 20rpx;
  681. background: #1F7EFF;
  682. border-radius: 8rpx 0px 8rpx 0px;
  683. text-align: center;
  684. position: absolute;
  685. bottom: 0;
  686. right: 0;
  687. z-index: 1;
  688. color: #fff;
  689. font-size: 18rpx;
  690. }
  691. }
  692. }
  693. }
  694. </style>