affirmOrder.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  1. <template>
  2. <view class="container" v-if="totalMoney">
  3. <!-- 导航栏图片区域 -->
  4. <view class="header">
  5. <img src="https://chtech.ncjti.edu.cn/hotelReservation/image/18.png" />
  6. <!-- 标题区域 -->
  7. <view class="header_title" :style="{ height: customBarH * 2 + 'rpx', paddingTop: statusBarH * 2 + 'rpx' }">{{ hotelName }}</view>
  8. <!-- 返回图标区域 -->
  9. <view class="header_icon" :style="{ height: customBarH * 2 + 'rpx', paddingTop: statusBarH * 2 + 'rpx' }" @click="handleBack">
  10. <img src="../../static/index/left.png" />
  11. </view>
  12. </view>
  13. <view class="body">
  14. <!-- 房间信息区域 -->
  15. <view class="info">
  16. <view class="info_time">
  17. {{ info.startTimeMonth }}月{{ info.startTimeDay }}日
  18. <text class="gap">{{ info.startTimeWeek }}</text>
  19. <view class="time_line"></view>
  20. <view class="time_num">{{ info.nightNum }}晚</view>
  21. <view class="time_line"></view>
  22. <view class="gap">{{ info.endTimeMonth }}月{{ info.endTimeDay }}日</view>
  23. <text>{{ info.endTimeWeek }}</text>
  24. </view>
  25. <view class="info_msg">{{ info.item.hName }}</view>
  26. <view class="info_type">
  27. <view class="type_item">{{ info.hTypeName }}</view>
  28. </view>
  29. <view class="info_tag">
  30. <view class="tag_item">{{ info.item.hAreas }}㎡</view>
  31. <view class="tag_item" v-for="tag in info.item.hConfigList" :key="tag.id">{{ tag.name }}</view>
  32. </view>
  33. </view>
  34. <!-- 入住信息区域 -->
  35. <view class="msg">
  36. <view class="msg_title">入住信息</view>
  37. <view class="msg_box">
  38. <view class="box_key">房间数量</view>
  39. <view class="box_value">{{ roomCount }}间</view>
  40. <view class="box_icon">
  41. <img class="img" src="../../static/index/add.png" @click="handleAdd" />
  42. <img class="img2" src="../../static/index/minus.png" @click="handleMinus" />
  43. </view>
  44. </view>
  45. <view class="msg_box">
  46. <view class="box_key">住客姓名</view>
  47. <view class="box_value">
  48. <input disabled type="text" placeholder="请选择住客" v-model="clientName" />
  49. </view>
  50. <view class="box_icon" @click="handleSelectClient">
  51. <img class="img2" src="../../static/index/people.png" />
  52. </view>
  53. </view>
  54. <view class="msg_box">
  55. <view class="box_key">联系电话</view>
  56. <view class="box_value">
  57. <input disabled type="number" maxlength="11" placeholder="请选择联系电话" v-model="clientPhone" />
  58. </view>
  59. </view>
  60. <!-- <view class="msg_box" @click="handleSelectTime">
  61. <view class="box_key">预计到店</view>
  62. <view class="box_value" :class="{ color: !arriveTime }">{{ arriveTime ? arriveTime : '请选择预计到店时间' }}</view>
  63. <view class="box_icon">
  64. <img class="img3" src="../../static/index/right2.png" />
  65. </view>
  66. </view> -->
  67. <uv-datetime-picker
  68. ref="datetimePicker"
  69. v-model="timeValue"
  70. mode="datetime"
  71. :closeOnClickOverlay="false"
  72. confirmColor="#096562"
  73. :formatter="formatter"
  74. @confirm="confirm"
  75. ></uv-datetime-picker>
  76. </view>
  77. <!-- 本单可享区域 -->
  78. <view class="coupon" v-if="couponNum">
  79. <view class="coupon_title">本单可享</view>
  80. <view class="coupon_box">
  81. <view class="box_key">
  82. <img src="../../static/index/coupon.png" />
  83. 优惠券
  84. </view>
  85. <view class="box_value" @click="handleGoPage">
  86. <view class="value_count">{{ couponNum }}张可用</view>
  87. <img src="../../static/index/right2.png" />
  88. </view>
  89. </view>
  90. </view>
  91. <!-- 费用明细区域 -->
  92. <view class="price1">
  93. <view class="price_title">费用明细</view>
  94. <view class="price_box">
  95. <view class="box_key">在线支付</view>
  96. <view class="box_value">
  97. {{ roomCount }}间{{ info.nightNum }}晚 共
  98. <text>¥</text>
  99. <span>{{ totalPrice }}</span>
  100. </view>
  101. </view>
  102. </view>
  103. <!-- 房费区域 -->
  104. <view class="all">
  105. <view class="all_title">
  106. <text>房费</text>
  107. <text class="mr_30">¥{{ totalPrice }}</text>
  108. </view>
  109. <view class="all_box">
  110. <view class="box_list">
  111. <view class="list_item" v-for="(item, index) in dayList" :key="index">
  112. {{ item.date }}
  113. <text>{{ item.topinfo }}</text>
  114. </view>
  115. </view>
  116. <view class="box_total">
  117. {{ roomCount }}间 x {{ info.nightNum }}晚
  118. <!-- x ¥{{ info.item.price }} -->
  119. </view>
  120. </view>
  121. </view>
  122. <!-- 优惠区域 -->
  123. <view class="sale" v-if="chooseObj.discountAmount">
  124. <view class="sale_top">
  125. <view class="top_key">优惠</view>
  126. <view class="top_value">- ¥{{ chooseObj.discountAmount }}</view>
  127. </view>
  128. <view class="sale_bottom">
  129. <view class="bottom_key">
  130. <img src="../../static/index/coupon.png" />
  131. {{ chooseObj.typeName }}
  132. </view>
  133. <view class="bottom_value">- ¥{{ chooseObj.discountAmount }}</view>
  134. </view>
  135. </view>
  136. </view>
  137. <!-- 底部提交订单区域 -->
  138. <view class="foot">
  139. <view class="foot_left">
  140. <text>¥</text>
  141. {{ totalPrice }}
  142. </view>
  143. <view class="foot_right" @click="goPagePay">提交订单</view>
  144. </view>
  145. </view>
  146. </template>
  147. <script>
  148. export default {
  149. data() {
  150. return {
  151. info: {},
  152. // 预定房间数量
  153. roomCount: 1,
  154. // 住客姓名
  155. clientName: '',
  156. // 联系电话
  157. clientPhone: '',
  158. // 预计到店时间
  159. arriveTime: '',
  160. // 当前时间
  161. timeValue: Number(new Date()),
  162. // 民宿名称
  163. hotelName: '',
  164. // 状态栏高度
  165. statusBarH: 0,
  166. // 胶囊按钮栏高度
  167. customBarH: 0,
  168. // 优惠券数量
  169. couponNum: 0,
  170. chooseObj: {},
  171. dayList: [],
  172. totalMoney: 0,
  173. // 房间数量的最大数
  174. maxRooms: 0
  175. }
  176. },
  177. created() {
  178. // 获取系统信息
  179. uni.getSystemInfo({
  180. success: (e) => {
  181. // 获取状态栏高度
  182. this.statusBarH = e.statusBarHeight + 10
  183. // // 获取菜单按钮栏高度
  184. let custom = uni.getMenuButtonBoundingClientRect()
  185. this.customBarH = custom.height + 10
  186. }
  187. })
  188. },
  189. onLoad(options) {
  190. this.info = JSON.parse(options.info)
  191. this.maxRooms = this.info.item.remainRooms
  192. this.hotelName = this.info.hotelName
  193. this.getDayList()
  194. uni.$on('change', this.change)
  195. uni.$on('choose', this.choose)
  196. },
  197. // 计算属性
  198. computed: {
  199. // 总费用
  200. totalPrice() {
  201. if (this.info.item) {
  202. let tem = this.roomCount * this.totalMoney - (this.chooseObj.discountAmount * 1 || 0)
  203. let res = tem > 0 ? tem.toFixed(2) : 0
  204. return res
  205. }
  206. }
  207. },
  208. // 监听属性
  209. watch: {
  210. totalPrice: {
  211. handler(newVal, oldVal) {
  212. this.getCouponNum()
  213. }
  214. }
  215. },
  216. methods: {
  217. async getDayList() {
  218. const res = await this.$myRequest({
  219. url: '/mhotel/house/price/dailyPrice.action',
  220. data: {
  221. roomId: this.info.item.id,
  222. startTime: this.info.queryStartTime,
  223. endTime: this.info.queryEndTime
  224. }
  225. })
  226. // console.log(res)
  227. if (res.code === 200) {
  228. this.dayList = res.data.list
  229. this.totalMoney = res.data.totalPrice
  230. }
  231. },
  232. async getCouponNum() {
  233. const res = await this.$myRequest({
  234. url: '/mhotel/hcusefulCoupon.action',
  235. data: {
  236. hotelId: this.info.hotelId,
  237. page: 1,
  238. rows: 1,
  239. userId: uni.getStorageSync('userInfo').id,
  240. totalPrice: (this.roomCount * this.totalMoney).toFixed(2)
  241. }
  242. })
  243. // console.log(res);
  244. if (res.code === 200) {
  245. this.couponNum = res.page.total
  246. }
  247. },
  248. change(e) {
  249. this.clientName = e.name
  250. this.clientPhone = e.phone
  251. },
  252. choose(e) {
  253. this.chooseObj = e.data
  254. // console.log(this.chooseObj)
  255. },
  256. handleSelectClient() {
  257. uni.navigateTo({
  258. url: '/pages/common/common?type=1'
  259. })
  260. },
  261. confirm(e) {
  262. // console.log(e.value)
  263. let date = new Date(e.value)
  264. let month = date.getMonth() + 1
  265. let day = date.getDate()
  266. let H = date.getHours()
  267. let M = date.getMinutes()
  268. this.arriveTime = `${month}月${day}日${H}:${M}分之前`
  269. },
  270. formatter(type, value) {
  271. if (type === 'year') {
  272. return `${value}年`
  273. }
  274. if (type === 'month') {
  275. return `${value}月`
  276. }
  277. if (type === 'day') {
  278. return `${value}日`
  279. }
  280. return value
  281. },
  282. handleSelectTime() {
  283. this.$refs.datetimePicker.open()
  284. },
  285. handleAdd() {
  286. if (this.roomCount < this.maxRooms) {
  287. this.roomCount++
  288. } else {
  289. uni.showToast({
  290. title: `当前房型只有${this.roomCount}间`,
  291. icon: 'none'
  292. })
  293. }
  294. },
  295. handleMinus() {
  296. if (this.roomCount > 1) {
  297. this.roomCount--
  298. } else {
  299. uni.showToast({
  300. title: '至少需要预定1间',
  301. icon: 'none'
  302. })
  303. }
  304. },
  305. // 提交订单按钮回调
  306. async goPagePay() {
  307. const reName = /^[\u4e00-\u9fa5]{2,4}$/
  308. const rePhone = /^[1][3,4,5,7,8,9][0-9]{9}$/
  309. if (this.totalPrice <= 0) {
  310. uni.showToast({
  311. title: '支付金额不能小于等于0',
  312. icon: 'none',
  313. mask: true
  314. })
  315. return
  316. }
  317. if (!this.clientName) {
  318. uni.showToast({
  319. title: '请选择住客',
  320. icon: 'none',
  321. mask: true
  322. })
  323. return
  324. }
  325. if (!reName.test(this.clientName)) {
  326. uni.showToast({
  327. title: '姓名格式有误',
  328. icon: 'none'
  329. })
  330. return
  331. }
  332. if (!this.clientPhone) {
  333. uni.showToast({
  334. title: '请选择联系电话',
  335. icon: 'none',
  336. mask: true
  337. })
  338. return
  339. }
  340. if (!rePhone.test(this.clientPhone)) {
  341. uni.showToast({
  342. title: '电话号码格式有误',
  343. icon: 'none'
  344. })
  345. return
  346. }
  347. const res = await this.$myRequest({
  348. url: '/mhotel/abkcreateOrder.action',
  349. data: {
  350. houseId: this.info.item.id,
  351. startTime: this.info.queryStartTime,
  352. endTime: this.info.queryEndTime,
  353. houseOrderNumber: this.roomCount,
  354. userName: this.clientName,
  355. userPhone: this.clientPhone,
  356. userId: uni.getStorageSync('userInfo').id,
  357. complaintId: this.chooseObj.complaintId || '',
  358. useId: this.chooseObj.id || ''
  359. }
  360. })
  361. // console.log(res)
  362. if (res.code === 200) {
  363. uni.navigateTo({
  364. url: `/pages/pay/pay?id=${res.data}`
  365. })
  366. }
  367. },
  368. handleBack() {
  369. uni.navigateBack(1)
  370. },
  371. handleGoPage() {
  372. let temTotalPrice = (this.roomCount * this.totalMoney).toFixed(2)
  373. uni.navigateTo({
  374. url: `/pages/coupon/coupon?id=${this.info.hotelId}&totalPrice=${temTotalPrice}&complaintId=${this.chooseObj.complaintId}`
  375. })
  376. }
  377. }
  378. }
  379. </script>
  380. <style lang="scss" scoped>
  381. .container {
  382. position: relative;
  383. display: flex;
  384. flex-direction: column;
  385. height: 100vh;
  386. overflow: hidden;
  387. background-color: #ebeced;
  388. .header {
  389. position: relative;
  390. height: 180rpx;
  391. overflow: hidden;
  392. img {
  393. width: 100%;
  394. }
  395. .header_title {
  396. position: absolute;
  397. top: 0;
  398. left: 182rpx;
  399. width: 50%;
  400. color: #fff;
  401. text-align: center;
  402. font-size: 28rpx;
  403. overflow: hidden;
  404. text-overflow: ellipsis;
  405. white-space: nowrap;
  406. }
  407. .header_icon {
  408. position: absolute;
  409. top: 0;
  410. left: 5rpx;
  411. width: 47rpx;
  412. height: 70rpx;
  413. img {
  414. width: 47rpx;
  415. height: 47rpx;
  416. }
  417. }
  418. }
  419. .body {
  420. height: calc(100vh - 306rpx);
  421. overflow-y: auto;
  422. .info {
  423. display: flex;
  424. flex-direction: column;
  425. box-sizing: border-box;
  426. padding: 0 30rpx;
  427. margin: 0 auto;
  428. margin-top: 18rpx;
  429. width: 710rpx;
  430. border-radius: 15rpx;
  431. background-color: #fff;
  432. .info_time {
  433. display: flex;
  434. align-items: center;
  435. margin-top: 20rpx;
  436. font-size: 32rpx;
  437. font-weight: bold;
  438. .time_line {
  439. width: 17rpx;
  440. height: 1rpx;
  441. background-color: #096562;
  442. }
  443. .time_num {
  444. box-sizing: border-box;
  445. padding: 0 15rpx;
  446. height: 46rpx;
  447. line-height: 46rpx;
  448. font-size: 24rpx;
  449. font-weight: 400;
  450. border-radius: 66rpx;
  451. border: 1rpx solid #096562;
  452. background-color: #f0f2f5;
  453. }
  454. .gap {
  455. margin: 0 10rpx;
  456. }
  457. text {
  458. font-size: 24rpx;
  459. font-weight: 400;
  460. }
  461. }
  462. .info_msg {
  463. margin-top: 15rpx;
  464. font-size: 28rpx;
  465. font-weight: bold;
  466. }
  467. .info_type {
  468. display: flex;
  469. flex-wrap: wrap;
  470. margin-top: 15rpx;
  471. .type_item {
  472. box-sizing: border-box;
  473. padding: 0 15rpx;
  474. margin-right: 20rpx;
  475. height: 41rpx;
  476. line-height: 41rpx;
  477. font-size: 24rpx;
  478. color: #fff;
  479. border-radius: 34rpx;
  480. background-color: #096562;
  481. }
  482. }
  483. .info_tag {
  484. display: flex;
  485. flex-wrap: wrap;
  486. margin: 18rpx 0 30rpx;
  487. color: #808080;
  488. font-size: 24rpx;
  489. .tag_item {
  490. margin-right: 20rpx;
  491. }
  492. }
  493. }
  494. .msg {
  495. box-sizing: border-box;
  496. padding-left: 26rpx;
  497. margin: auto;
  498. margin-top: 20rpx;
  499. width: 710rpx;
  500. border-radius: 15rpx;
  501. background-color: #fff;
  502. .msg_title {
  503. height: 87rpx;
  504. line-height: 87rpx;
  505. font-size: 28rpx;
  506. font-weight: bold;
  507. border-bottom: 1rpx solid #e6e6e6;
  508. }
  509. .msg_box {
  510. display: flex;
  511. align-items: center;
  512. height: 97rpx;
  513. font-size: 28rpx;
  514. border-bottom: 1rpx solid #e6e6e6;
  515. .box_key {
  516. width: 120rpx;
  517. color: #808080;
  518. }
  519. .box_value {
  520. margin-left: 30rpx;
  521. flex: 1;
  522. input {
  523. box-sizing: border-box;
  524. padding-right: 30rpx;
  525. width: 100%;
  526. }
  527. }
  528. .color {
  529. color: #808080;
  530. }
  531. .box_icon {
  532. display: flex;
  533. align-items: center;
  534. height: 100%;
  535. .img {
  536. width: 47rpx;
  537. height: 47rpx;
  538. }
  539. .img2 {
  540. margin: 0 30rpx;
  541. width: 37rpx;
  542. height: 37rpx;
  543. }
  544. .img3 {
  545. margin: 0 30rpx;
  546. width: 40rpx;
  547. height: 40rpx;
  548. }
  549. }
  550. }
  551. }
  552. .coupon {
  553. box-sizing: border-box;
  554. padding-left: 26rpx;
  555. margin: 20rpx auto 0;
  556. width: 710rpx;
  557. height: 197rpx;
  558. border-radius: 15rpx;
  559. background-color: #fff;
  560. .coupon_title {
  561. line-height: 92rpx;
  562. font-size: 28rpx;
  563. font-weight: bold;
  564. border-bottom: 1rpx solid #e6e6e6;
  565. }
  566. .coupon_box {
  567. display: flex;
  568. align-items: center;
  569. justify-content: space-between;
  570. height: 105rpx;
  571. .box_key {
  572. display: flex;
  573. align-items: center;
  574. font-size: 28rpx;
  575. img {
  576. margin-right: 10rpx;
  577. width: 40rpx;
  578. height: 40rpx;
  579. }
  580. }
  581. .box_value {
  582. display: flex;
  583. align-items: center;
  584. .value_count {
  585. display: flex;
  586. justify-content: center;
  587. align-items: center;
  588. width: 105rpx;
  589. height: 45rpx;
  590. color: #fff;
  591. font-size: 24rpx;
  592. border-radius: 7rpx;
  593. background-color: #ff5733;
  594. }
  595. img {
  596. margin-right: 17rpx;
  597. width: 40rpx;
  598. height: 40rpx;
  599. }
  600. }
  601. }
  602. }
  603. .price1 {
  604. box-sizing: border-box;
  605. padding-left: 26rpx;
  606. margin: 20rpx auto;
  607. width: 710rpx;
  608. height: 197rpx;
  609. border-radius: 15rpx;
  610. background-color: #fff;
  611. .price_title {
  612. line-height: 92rpx;
  613. font-size: 28rpx;
  614. font-weight: bold;
  615. border-bottom: 1rpx solid #e6e6e6;
  616. }
  617. .price_box {
  618. display: flex;
  619. justify-content: space-between;
  620. align-items: center;
  621. height: 92rpx;
  622. font-size: 28rpx;
  623. .box_key {
  624. color: #808080;
  625. }
  626. .box_value {
  627. display: flex;
  628. align-items: center;
  629. text {
  630. color: #ff5733;
  631. font-size: 24rpx;
  632. }
  633. span {
  634. margin-right: 30rpx;
  635. color: #ff5733;
  636. }
  637. }
  638. }
  639. }
  640. .all {
  641. box-sizing: border-box;
  642. padding-left: 26rpx;
  643. margin: 0 auto 20rpx;
  644. width: 710rpx;
  645. border-radius: 15rpx;
  646. background-color: #fff;
  647. .all_title {
  648. display: flex;
  649. height: 92rpx;
  650. justify-content: space-between;
  651. align-items: center;
  652. font-size: 28rpx;
  653. font-weight: bold;
  654. border-bottom: 1rpx solid #e6e6e6;
  655. .mr_30 {
  656. margin-right: 30rpx;
  657. }
  658. }
  659. .all_box {
  660. box-sizing: border-box;
  661. padding-right: 26rpx;
  662. display: flex;
  663. justify-content: space-between;
  664. font-size: 28rpx;
  665. .box_list {
  666. margin-bottom: 28rpx;
  667. color: #808080;
  668. .list_item {
  669. margin-top: 30rpx;
  670. text {
  671. margin-left: 120rpx;
  672. }
  673. }
  674. }
  675. .box_total {
  676. display: flex;
  677. justify-content: center;
  678. align-items: center;
  679. }
  680. }
  681. }
  682. .sale {
  683. margin: 0 auto 20rpx;
  684. box-sizing: border-box;
  685. padding: 0 30rpx;
  686. width: 710rpx;
  687. height: 209rpx;
  688. border-radius: 15rpx;
  689. background-color: #fff;
  690. .sale_top {
  691. display: flex;
  692. align-items: center;
  693. justify-content: space-between;
  694. height: 92rpx;
  695. font-size: 28rpx;
  696. font-weight: bold;
  697. .top_key {
  698. }
  699. .top_value {
  700. color: #ff5733;
  701. }
  702. }
  703. .sale_bottom {
  704. display: flex;
  705. align-items: center;
  706. justify-content: space-between;
  707. box-sizing: border-box;
  708. padding: 0 26rpx;
  709. width: 650rpx;
  710. height: 80rpx;
  711. font-size: 24rpx;
  712. border-radius: 7rpx;
  713. background-color: #f2f2f2;
  714. .bottom_key {
  715. display: flex;
  716. align-items: center;
  717. img {
  718. margin-right: 10rpx;
  719. width: 34rpx;
  720. height: 34rpx;
  721. }
  722. }
  723. .bottom_value {
  724. }
  725. }
  726. }
  727. }
  728. .foot {
  729. position: absolute;
  730. left: 0;
  731. right: 0;
  732. bottom: 0;
  733. padding: 0 20rpx;
  734. display: flex;
  735. justify-content: space-between;
  736. align-items: center;
  737. height: 126rpx;
  738. background-color: #fff;
  739. .foot_left {
  740. margin-top: -10rpx;
  741. font-size: 40rpx;
  742. color: #ff5733;
  743. text {
  744. font-size: 24rpx;
  745. }
  746. }
  747. .foot_right {
  748. margin-top: -10rpx;
  749. display: flex;
  750. justify-content: center;
  751. align-items: center;
  752. width: 238rpx;
  753. height: 80rpx;
  754. color: #fff;
  755. font-size: 32rpx;
  756. border-radius: 64rpx;
  757. background-color: #096562;
  758. }
  759. }
  760. }
  761. </style>