timeLimit.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. <template>
  2. <view class="time-limit">
  3. <navbar :config="config" backColor="#fff"></navbar>
  4. <view class="top">
  5. <view class="box">
  6. <view class="time" v-for="(item, index) in times" :key="index" @click="switeTime(item)">
  7. <view class="number">
  8. {{ item.st + ":00" }}
  9. </view>
  10. <view :class="item.active?'font':'font-soon'" v-if="item.value == 0"> 即将开始 </view>
  11. <view :class="item.active?'font':'font-soon'" v-if="item.value == 1"> 已开抢 </view>
  12. <view :class="item.active?'font':'font-soon'" v-if="item.value == 2"> 正在抢购 </view>
  13. </view>
  14. </view>
  15. <view class="surplus">
  16. <view class="transverse"> </view>
  17. <view class="surplus-content" v-if="activeState==1">
  18. <view class="lable"> 本场剩余 </view>
  19. <uni-countdown v-if="countDown" :backgroundColor="'#DCCDA4'" :color="'#FF0000'" :splitorColor="'#fff'"
  20. :show-day="time2[0] > 0" :day="time2[0]" :hour="time2[1]" :minute="time2[2]" :second="time2[3]">
  21. </uni-countdown>
  22. </view>
  23. <view class="surplus-content" v-if="activeState==0">
  24. <view class="lable">即将开始</view>
  25. </view>
  26. <view class="surplus-content" v-if="activeState==2">
  27. <view class="lable">已开抢</view>
  28. </view>
  29. <view class="transverse"> </view>
  30. </view>
  31. </view>
  32. <swiper class="commodity" :current="currentItem" v-if="goodList && goodList.length > 0" :indicator-dots="false"
  33. :autoplay="false" @change="imgActiveFun">
  34. <swiper-item class="commodity-item" v-for="(item,key) in goodList" :key="item.id" @click="
  35. goProductDetails('/pages/product/goods/seckillGoods?id=' + item.id)
  36. ">
  37. <view :class="[activeBannerIndex == key ? 'active-back' : 'swiper-back']">
  38. <image :class="[ activeBannerIndex == key ? 'current-item' : 'default-image' ]" :src="item.cover" mode="">
  39. </image>
  40. <view class="bottom-back">
  41. <view :class="[activeBannerIndex == key ? 'active-name' : 'name','u-text2']"> {{ item.title }} </view>
  42. <view class="content-number">
  43. <view class="large">
  44. <rich-text :nodes="$mUtil.priceBigSmall(item.min_price)"></rich-text>
  45. </view>
  46. <view class="small">
  47. <rich-text :nodes="$mUtil.priceBigSmall(item.min_sale_price)"></rich-text>
  48. </view>
  49. </view>
  50. <view class="soon">
  51. <view class="soon-item">
  52. <view class="orange" :style="{ width: 15.3 * item.rate/10 + 'rpx' }">
  53. </view>
  54. </view>
  55. <view class="complete"> 已抢{{ item.rate }}% </view>
  56. </view>
  57. </view>
  58. </view>
  59. </swiper-item>
  60. </swiper>
  61. <view class="option" v-if="goodList && goodList.length > 0">
  62. <!-- <view class="option-item active">
  63. </view> -->
  64. <view class="option-item" :class="{ active: activeBannerIndex == index }" v-for="(item, index) in goodList"
  65. :key="index">
  66. </view>
  67. </view>
  68. <view class="list">
  69. <view v-if="goodList.length>0">
  70. <view class="item" v-for="(item, index) in goodList" :key="index" @click="
  71. goProductDetails('/pages/product/goods/seckillGoods?id=' + item.id)
  72. ">
  73. <view class="item-left">
  74. <image :src="item.cover" mode=""></image>
  75. </view>
  76. <view class="item-right">
  77. <view class="title">
  78. {{ item.title }}
  79. </view>
  80. <view class="list-soon">
  81. <view class="soon-item">
  82. <view class="orange" :style="{ width: 15.3 * item.rate/10 + 'rpx' }">
  83. </view>
  84. </view>
  85. <view class="complete"> 已抢{{ item.rate }}% </view>
  86. </view>
  87. <view class="list-bottom">
  88. <view class="number">
  89. <view class="large">
  90. <rich-text :nodes="$mUtil.priceBigSmall(item.min_price)"></rich-text>
  91. </view>
  92. <view class="small">
  93. <rich-text :nodes="$mUtil.priceBigSmall(item.min_sale_price)"></rich-text>
  94. </view>
  95. </view>
  96. <view class="no-button" v-if="activeState==0">即将开始</view>
  97. <view class="no-button" v-if="activeState==2">已结束 </view>
  98. <view class="button" v-if="activeState==1 && ispay">立即抢购 </view>
  99. </view>
  100. </view>
  101. </view>
  102. <loadMore v-if="goodList.length > 0" :status="status"></loadMore>
  103. </view>
  104. <nodata v-else :config="{top:20,content:'暂无商品~'}"></nodata>
  105. </view>
  106. <ldLoading isFullScreen :active="loading"></ldLoading>
  107. </view>
  108. </template>
  109. <script>
  110. let app = getApp()
  111. export default {
  112. data() {
  113. return {
  114. config: {
  115. back: true, //false是tolbar页面 是则不写
  116. title: "限时秒杀",
  117. color: "#fff",
  118. //背景颜色;参数一:透明度(0-1);参数二:背景颜色(array则为线性渐变,string为单色背景)
  119. backgroundColor: [1, '#FA6138'],
  120. },
  121. loading: true,
  122. page: 1,
  123. limit: 10,
  124. activeState: null,
  125. times: [{
  126. st: "9",
  127. et: "12",
  128. },
  129. {
  130. st: "13",
  131. et: "15",
  132. },
  133. {
  134. st: "16",
  135. et: "18",
  136. },
  137. {
  138. st: "19",
  139. et: "21",
  140. },
  141. {
  142. st: "22",
  143. et: "23",
  144. },
  145. ],
  146. countDown: true,
  147. curTime: null,
  148. goodList: [],
  149. time2: [0, 0, 0, 0], //秒杀倒计时
  150. httpCurTime: null,
  151. status: "more",
  152. activeBannerIndex: 0,
  153. params: {},
  154. endTime: null,
  155. ispay: app.globalData.openPay,
  156. currentItem: 0
  157. };
  158. },
  159. onLoad(options) {
  160. if (options.shopid) {
  161. this.params.shop_id = options.shopid
  162. }
  163. },
  164. // onShow() {
  165. // this.goodList=[];
  166. // this.getTime();
  167. // },
  168. onLoad() {
  169. this.getTime();
  170. },
  171. onPullDownRefresh() {
  172. this.page = 1;
  173. this.goodList = [];
  174. this.times.active = false
  175. this.times.forEach((item) => {
  176. item.active = false
  177. })
  178. this.getTime();
  179. uni.stopPullDownRefresh();
  180. },
  181. onReachBottom() {
  182. this.page++;
  183. this.getList();
  184. },
  185. methods: {
  186. //切换时间
  187. switeTime(item) {
  188. this.countDown = false
  189. this.time2 = [0, 0, 0, 0]
  190. this.$nextTick(function() {
  191. this.countDown = true
  192. })
  193. // this.loading = true
  194. //this.countDown = false
  195. this.httpCurTime = item.st + ":00"
  196. if (item.et == "23") {
  197. this.endTime = item.et + ":59"
  198. } else {
  199. this.endTime = item.et + ":00"
  200. }
  201. this.times.forEach((val, index) => {
  202. val.active = false
  203. })
  204. item.active = true
  205. this.goodList = []
  206. this.page = 1;
  207. this.getList()
  208. },
  209. goProductDetails(url) {
  210. if (this.activeState == 1) {
  211. uni.navigateTo({
  212. url: url,
  213. });
  214. } else if (this.activeState == 0) {
  215. this.$mUtil.toast("该活动还未开始")
  216. } else {
  217. this.$mUtil.toast("该活动已结束")
  218. }
  219. },
  220. imgActiveFun(e) {
  221. this.activeBannerIndex = e.detail.current;
  222. console.log(this.currentItem)
  223. console.log(e.detail.current)
  224. },
  225. getTime() {
  226. this.curTime = new Date().getHours();
  227. this.times.forEach((val, index) => {
  228. // console.log("时间111" + JSON.stringify(val) + this.curTime);
  229. // 活动正在进行中
  230. if (val.st <= this.curTime && this.curTime < val.et) {
  231. val.value = 2;
  232. this.httpCurTime = val.st + ":00";
  233. this.endTime = val.et + ":00";
  234. val.active = true;
  235. } else if (this.curTime < val.st) {
  236. // 活动即将开始
  237. val.value = 0;
  238. if (this.httpCurTime == null) {
  239. this.httpCurTime = val.st + ":00";
  240. this.endTime = val.et + ":00";
  241. val.active = true;
  242. }
  243. } else if (
  244. this.curTime >= val.et && this.curTime > this.times[index + 1] < val.st
  245. ) {
  246. // 活动已过期
  247. val.value = 1;
  248. }
  249. });
  250. this.getList();
  251. },
  252. getList() {
  253. this.loading = false
  254. this.$http
  255. .get(
  256. `/marketing/seckillActivityGoods/start-flash-sale`, {
  257. start_hour: this.httpCurTime,
  258. end_hour: this.endTime,
  259. page: this.page,
  260. limit: this.limit,
  261. ...this.params
  262. },
  263. false
  264. )
  265. .then((res) => {
  266. if (res && res.code == 200) {
  267. this.activeState = res.data.active_state
  268. this.time2 = this.$mUtil
  269. .countDown(Math.floor(res.data.finish_time / 1000), res.data.now_time)
  270. .split(":")
  271. .map((val) => Number(val));
  272. this.goodList = this.goodList.concat(res.data.page.list);
  273. if (res.data.page.totalPage <= res.data.page.currPage) {
  274. this.status = "noMore";
  275. } else {
  276. this.status = "more";
  277. }
  278. }
  279. });
  280. },
  281. },
  282. };
  283. </script>
  284. <style>
  285. page {
  286. background-color: #F5F5F5;
  287. }
  288. </style>
  289. <style lang="scss" scoped>
  290. .no-button {
  291. color: #1E402E;
  292. font-size: 28rpx;
  293. font-weight: 500;
  294. padding: 12rpx 34rpx;
  295. border: 2rpx solid #1E402E;
  296. background-color: #ffffff;
  297. border-radius: 32rpx;
  298. }
  299. .bottom-back {
  300. background-color: #FFFFFF;
  301. border-bottom-left-radius: 18rpx;
  302. border-bottom-right-radius: 18rpx;
  303. display: flex;
  304. flex-direction: column;
  305. position: absolute;
  306. z-index: -1;
  307. bottom: 30rpx;
  308. padding-top: 20rpx;
  309. .soon {
  310. padding: 0 20rpx;
  311. display: flex;
  312. margin-bottom: 6rpx;
  313. align-items: center;
  314. .soon-item {
  315. width: 153rpx;
  316. height: 10rpx;
  317. border-radius: 6rpx;
  318. border: 2rpx solid #fe9000;
  319. margin-right: 10rpx;
  320. .orange {
  321. width: 50rpx;
  322. height: 10rpx;
  323. border-radius: 5rpx;
  324. background-color: #fe9000;
  325. }
  326. }
  327. .complete {
  328. font-size: 20rpx;
  329. color: #fe9000;
  330. line-height: 24rpx;
  331. font-weight: 500;
  332. }
  333. }
  334. .name {
  335. padding: 0 20rpx 0 10rpx;
  336. // margin: 20rpx 0 0 10rpx;
  337. width: 380rpx;
  338. box-sizing: border-box;
  339. line-height: 36rpx;
  340. height: 72rpx;
  341. color: #181818;
  342. font-weight: 400;
  343. overflow: hidden;
  344. // text-overflow: ellipsis;
  345. }
  346. .active-name {
  347. padding: 0 20rpx 0 10rpx;
  348. // margin: 20rpx 0 0 10rpx;
  349. width: 420rpx;
  350. box-sizing: border-box;
  351. line-height: 36rpx;
  352. height: 72rpx;
  353. color: #181818;
  354. font-weight: 400;
  355. overflow: hidden;
  356. transition: all 0.5s;
  357. }
  358. .content-number {
  359. padding: 0 20rpx;
  360. display: flex;
  361. align-items: center;
  362. margin: 15rpx 0;
  363. .large {
  364. font-size: 36rpx;
  365. color: #ff0000;
  366. font-weight: bold;
  367. text {
  368. font-size: 36rpx;
  369. }
  370. }
  371. .small {
  372. font-size: 22rpx;
  373. color: #cccccc;
  374. font-weight: 500;
  375. margin-left: 16rpx;
  376. text-decoration: line-through;
  377. }
  378. }
  379. }
  380. .commodity {
  381. margin-top: -139rpx;
  382. width: 720rpx;
  383. // padding: 0 30rpx;
  384. // margin-left: 30rpx;
  385. // margin-right: 30rpx;
  386. height: 650rpx;
  387. margin-left: 30rpx;
  388. overflow: hidden;
  389. /deep/ swiper-item {
  390. width: 450rpx !important;
  391. }
  392. /deep/ .uni-swiper-slide-frame {
  393. width: 420rpx !important;
  394. }
  395. .commodity-item {
  396. //background-color: #FFFFFF;
  397. // margin-right: 30rpx;
  398. border-radius: 16rpx;
  399. // padding: 18rpx;
  400. padding-top: 0;
  401. // text-align: center;
  402. display: flex;
  403. flex-direction: column;
  404. align-items: center;
  405. .swiper-back {
  406. border-radius: 16rpx;
  407. overflow: hidden;
  408. // background-color: #FFFFFF;
  409. width: 380rpx;
  410. // padding-top: 40rpx;
  411. height: 610rpx;
  412. margin-top: 40rpx;
  413. }
  414. .active-back {
  415. // padding-top: 0;
  416. // background-color: #FFFFFF;
  417. width: 420rpx;
  418. height: 650rpx;
  419. border-radius: 16rpx;
  420. position: relative;
  421. transition: all 0.5s;
  422. }
  423. .default-image {
  424. width: 380rpx;
  425. height: 380rpx;
  426. border-radius: 16rpx;
  427. position: relative;
  428. }
  429. .current-item {
  430. width: 420rpx;
  431. height: 420rpx;
  432. border-radius: 16rpx;
  433. transition: all 0.5s;
  434. }
  435. .completed {
  436. font-size: 22rpx;
  437. margin-top: 2rpx;
  438. font-weight: 400;
  439. color: #333333;
  440. text {
  441. color: #ff0000;
  442. }
  443. }
  444. .number {
  445. margin-top: 20rpx;
  446. font-size: 22rpx;
  447. color: #333333;
  448. font-weight: 500;
  449. display: flex;
  450. align-items: center;
  451. .zero {
  452. margin-left: 20rpx;
  453. font-size: 22rpx;
  454. color: #ff0000;
  455. font-weight: 500;
  456. }
  457. .one {
  458. color: #ff0000;
  459. font-size: 34rpx;
  460. font-weight: 700;
  461. }
  462. .two {
  463. color: #ff0000;
  464. font-size: 18rpx;
  465. font-weight: 700;
  466. }
  467. }
  468. }
  469. }
  470. .option {
  471. margin: 30rpx 0;
  472. display: flex;
  473. justify-content: center;
  474. .option-item {
  475. background-color: #d9d9d9;
  476. margin: 0 8rpx;
  477. width: 14rpx;
  478. height: 14rpx;
  479. border-radius: 7rpx;
  480. }
  481. .active {
  482. background-color: #FA6138;
  483. width: 35rpx;
  484. height: 14rpx;
  485. border-radius: 7rpx;
  486. }
  487. }
  488. .list {
  489. margin: 0 30rpx 26rpx 30rpx;
  490. .item {
  491. padding: 20rpx;
  492. background-color: #ffffff;
  493. border-radius: 18rpx;
  494. display: flex;
  495. margin-bottom: 25rpx;
  496. .item-left {
  497. image {
  498. width: 187rpx;
  499. height: 187rpx;
  500. border-radius: 18rpx;
  501. }
  502. }
  503. .item-right {
  504. margin-left: 30rpx;
  505. flex: 1;
  506. display: flex;
  507. flex-direction: column;
  508. justify-content: space-between;
  509. .title {
  510. font-size: 28rpx;
  511. font-weight: 400;
  512. color: #181818;
  513. overflow: hidden;
  514. text-overflow: ellipsis;
  515. display: -webkit-box;
  516. -webkit-line-clamp: 2;
  517. -webkit-box-orient: vertical;
  518. word-wrap: break-word;
  519. word-break: break-all;
  520. white-space: normal !important;
  521. }
  522. .list-bottom {
  523. display: flex;
  524. align-items: center;
  525. justify-content: space-between;
  526. .number {
  527. display: flex;
  528. align-items: center;
  529. .large {
  530. font-size: 36rpx;
  531. color: #ff0000;
  532. font-weight: Bold;
  533. margin-right: 17rpx;
  534. text {
  535. font-size: 36rpx;
  536. }
  537. }
  538. .small {
  539. font-size: 22rpx;
  540. color: #cccccc;
  541. font-weight: 500;
  542. text-decoration: line-through;
  543. }
  544. }
  545. .button {
  546. color: #ffffff;
  547. font-size: 28rpx;
  548. font-weight: 500;
  549. padding: 12rpx 34rpx;
  550. background-color: #FA6138;
  551. border-radius: 32rpx;
  552. }
  553. }
  554. .list-soon {
  555. display: flex;
  556. align-items: center;
  557. margin-top: 12rpx;
  558. .soon-item {
  559. width: 153rpx;
  560. height: 10rpx;
  561. border: 2rpx solid #fe9000;
  562. border-radius: 6rpx;
  563. margin-right: 10rpx;
  564. .orange {
  565. width: 50rpx;
  566. height: 10rpx;
  567. background-color: #fe9000;
  568. border-radius: 5rpx;
  569. }
  570. }
  571. .complete {
  572. font-size: 20rpx;
  573. color: #fe9000;
  574. font-weight: 500;
  575. }
  576. }
  577. }
  578. }
  579. }
  580. .spot {
  581. display: flex;
  582. justify-content: center;
  583. margin: 27rpx 0 40rpx 0;
  584. .spot-item {
  585. width: 35rpx;
  586. height: 14rpx;
  587. background-color: #ff4e15;
  588. margin-right: 16rpx;
  589. }
  590. .radius {
  591. width: 14rpx;
  592. height: 14rpx;
  593. background-color: #d9d9d9;
  594. border-radius: 7rpx;
  595. margin-right: 16rpx;
  596. }
  597. }
  598. .two-comtent-item {
  599. margin: 0 30rpx;
  600. background-color: #ffffff;
  601. border-radius: 18rpx;
  602. .two-image {
  603. overflow: hidden;
  604. image {
  605. width: 380rpx;
  606. height: 380rpx;
  607. border-radius: 18rpx;
  608. }
  609. }
  610. .two-content-number {
  611. padding: 0 30rpx;
  612. display: flex;
  613. align-items: baseline;
  614. .two-large {
  615. font-size: 20rpx;
  616. color: #ff0000;
  617. font-weight: bold;
  618. text {
  619. font-size: 36rpx;
  620. }
  621. }
  622. .two-small {
  623. font-size: 22rpx;
  624. color: #cccccc;
  625. font-weight: 500;
  626. margin-left: 16rpx;
  627. text-decoration: line-through;
  628. }
  629. }
  630. .two-name {
  631. padding: 0 20rpx;
  632. width: 368rpx;
  633. overflow: hidden;
  634. text-overflow: ellipsis;
  635. display: -webkit-box;
  636. -webkit-line-clamp: 2;
  637. -webkit-box-orient: vertical;
  638. word-wrap: break-word;
  639. word-break: break-all;
  640. white-space: normal !important;
  641. }
  642. }
  643. .two-soon {
  644. padding: 0 30rpx;
  645. display: flex;
  646. align-items: center;
  647. .two-soon-item {
  648. width: 153rpx;
  649. height: 10rpx;
  650. border-radius: 6rpx;
  651. border: 1rpx solid #fe9000;
  652. margin-right: 10rpx;
  653. .two-orange {
  654. width: 50rpx;
  655. height: 10rpx;
  656. border-radius: 5rpx;
  657. background-color: #fe9000;
  658. }
  659. }
  660. .two-complete {
  661. font-size: 20rpx;
  662. color: #fe9000;
  663. line-height: 24rpx;
  664. font-weight: 500;
  665. }
  666. }
  667. .content {
  668. // align-items: center;
  669. // overflow: scroll;
  670. // white-space: nowrap;
  671. // height: 300rpx;
  672. // background-color: red;
  673. margin-top: -139rpx;
  674. // display: flex;
  675. margin-left: 30rpx;
  676. height: 607rpx;
  677. /deep/ .uni-swiper-slide-frame {
  678. width: 402rpx !important;
  679. padding-right: 30rpx;
  680. }
  681. .comtent-item {
  682. margin-right: 30rpx;
  683. // padding: 0 30rpx;
  684. background-color: #ffffff;
  685. border-radius: 18rpx;
  686. // width: 420rpx;
  687. image {
  688. width: 420rpx;
  689. height: 420rpx;
  690. border-radius: 18rpx;
  691. }
  692. }
  693. }
  694. .surplus {
  695. margin-top: 43rpx;
  696. display: flex;
  697. justify-content: space-around;
  698. align-items: center;
  699. padding-bottom: 168rpx;
  700. .surplus-content {
  701. color: #ffffff;
  702. font-size: 20rpx;
  703. font-weight: 500;
  704. display: flex;
  705. align-items: center;
  706. text {
  707. color: #ff0000;
  708. padding: 1rpx 4rpx;
  709. background-color: #dccda4;
  710. border-radius: 4rpx;
  711. margin: 0 6rpx 0 14rpx;
  712. }
  713. }
  714. .lable {
  715. margin-right: 8rpx;
  716. }
  717. /deep/ .uni-countdown__number {
  718. padding: 2rpx 8rpx;
  719. border-radius: 8rpx;
  720. }
  721. .transverse {
  722. width: 210rpx;
  723. height: 1rpx;
  724. opacity: 0.2;
  725. background-color: #ffffff;
  726. }
  727. }
  728. .top {
  729. background-color: #FA6138;
  730. .box {
  731. display: flex;
  732. justify-content: space-around;
  733. .time {
  734. text-align: center;
  735. .number {
  736. font-size: 42rpx;
  737. font-weight: 700;
  738. color: #ffffff;
  739. }
  740. .font {
  741. font-size: 22rpx;
  742. font-weight: 500;
  743. color: #053420;
  744. padding: 2rpx 12rpx;
  745. border-radius: 20rpx;
  746. background-color: #dccda4;
  747. }
  748. .font-soon {
  749. font-size: 22rpx;
  750. font-weight: 500;
  751. color: #f5f5f5;
  752. }
  753. }
  754. }
  755. }
  756. .time-limit {
  757. background-color: #f6f6f6;
  758. }
  759. </style>