index.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809
  1. <template>
  2. <view class="index">
  3. <u-navbar :is-back="false" :border-bottom="false" title-color="#333333" back-icon-color="#ffffff">
  4. <view class="slot-wrap">
  5. <image src="/static/logo2.png"></image>
  6. </view>
  7. </u-navbar>
  8. <u-swiper :list="list" @change="e => current = e.current" :autoplay="false"></u-swiper>
  9. <view class="content">
  10. <view class="notice">
  11. <image src="/static/icon/msg_icon1.png" class="icon"></image>
  12. <view class="text">
  13. 您有2条新的通知
  14. </view>
  15. <view class="btn">立即查看</view>
  16. </view>
  17. <view>
  18. <!-- 日历-->
  19. <view class="calendar_card">
  20. <view class="card_box">
  21. <u-row gutter="16">
  22. <u-col span="11" v-if="false">
  23. <view>
  24. <text class="t1">距离</text>
  25. <text class="t2">二级建造师</text>
  26. <text class="t1">考试</text>
  27. <text class="t3">365</text>
  28. <text class="t1">天,继续加油哦!</text>
  29. </view>
  30. </u-col>
  31. <u-col offset="11" span="1">
  32. <view @click="jumpPlan"><image src="/static/more.png" class="img_more"></image></view>
  33. </u-col>
  34. </u-row>
  35. </view>
  36. <u-line color="#EEEEEE" />
  37. <view style="width: 100%;display: flex;justify-content:center;margin-top: 20rpx;">
  38. <view v-for="(item, index) in date" :key="index" class="card_date">{{ item }}</view>
  39. </view>
  40. <view style="width: 100%;display: flex;justify-content:center;margin-top: 40rpx;">
  41. <view v-for="(item, index) in date_num" :key="index" class="date_num">
  42. <view v-if="item.color == 0" class="date_num_color0" v-show="item.date > 0">
  43. {{ item.date }}
  44. <view v-if="item.note > 0" class="date_note">{{ item.note }}</view>
  45. <view v-if="item.dot" class="date_dot"></view>
  46. </view>
  47. <view v-if="item.color == 1" class="date_num_color1">
  48. {{ item.date }}
  49. <view v-if="item.note > 0" class="date_note">{{ item.note }}</view>
  50. <view v-if="item.dot" class="date_dot"></view>
  51. </view>
  52. <view v-if="item.color == 2" class="date_num_color2">
  53. {{ item.date }}
  54. <view v-if="item.note > 0" class="date_note">{{ item.note }}</view>
  55. <view v-if="item.dot" class="date_dot"></view>
  56. </view>
  57. <view v-if="item.color == 3" class="date_num_color3">
  58. {{ item.date }}
  59. <view v-if="item.note > 0" class="date_note">{{ item.note }}</view>
  60. <view v-if="item.dot" class="date_dot"></view>
  61. </view>
  62. </view>
  63. </view>
  64. <view style="width: 100%;margin-top: 20rpx;" v-if="workList.length > 0">
  65. <u-row gutter="16">
  66. <u-col span="2" text-align="center">
  67. <view><image src="/static/left.png" class="arr-icon" @click="preveItem"></image></view>
  68. </u-col>
  69. <u-col span="8" text-align="center">
  70. <view class="course_title" @click="jumpGoodsDetail(goodsItem)">{{ goodsItem.goodsName }}</view>
  71. </u-col>
  72. <u-col span="2" text-align="center">
  73. <view><image src="/static/right.png" class="arr-icon" @click="nextItem"></image></view>
  74. </u-col>
  75. </u-row>
  76. </view>
  77. </view>
  78. </view>
  79. <u-tabs class="tabs" :current="tabCurrent" @change="tab" :list="menu" :activeStyle="{fontSize:'36rpx'}" :inactiveStyle="{color:'#EAEEF1',fontSize:'30rpx'}" sticky></u-tabs>
  80. <view class="course-list" v-show="tabCurrent==0">
  81. <navigator class="item" v-for="(item,index) in list1" :url="'/pages2/course/detail?id='+item.goodsId">
  82. <view class="img">
  83. <image :src="$method.splitImgHost(item.coverUrl, true)"></image>
  84. <view class="time">{{item.year?item.year:''}}</view>
  85. </view>
  86. <view class="text">
  87. <view class="title">{{item.goodsName}}</view>
  88. <view class="desc">
  89. <view class="left">
  90. {{item.classHours}}
  91. <text>学时</text>
  92. </view>
  93. <view class="right">¥ {{item.standPrice}}</view>
  94. </view>
  95. </view>
  96. </navigator>
  97. </view>
  98. <view class="course-list" v-show="tabCurrent==1">
  99. <navigator class="item" v-for="(item,index) in list2" :url="'/pages2/bank/detail?id='+item.goodsId">
  100. <view class="img">
  101. <image :src="$method.splitImgHost(item.coverUrl, true)"></image>
  102. <view class="time">{{item.year?item.year:''}}</view>
  103. </view>
  104. <view class="text">
  105. <view class="title">{{item.goodsName}}</view>
  106. <view class="desc">
  107. <view class="left" v-if="false">
  108. {{item.classHours}}
  109. <text>学时</text>
  110. </view>
  111. <view class="right">¥ {{item.standPrice}}</view>
  112. </view>
  113. </view>
  114. </navigator>
  115. </view>
  116. </view>
  117. </view>
  118. </template>
  119. <script>
  120. import { mapGetters } from 'vuex';
  121. export default {
  122. components: {},
  123. data() {
  124. return {
  125. list:[
  126. 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
  127. 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
  128. 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
  129. ],
  130. tabCurrent:0,
  131. date:['日','一','二','三','四','五','六'],
  132. date_num: [],
  133. current:0,
  134. indicatorDots: true,
  135. autoplay: true,
  136. interval: 2000,
  137. duration: 500,
  138. menu: [{
  139. name: '推荐课程',
  140. }, {
  141. name: '推荐题库',
  142. }],
  143. goodsIndex: 0,
  144. goodsItem: 0,
  145. workList: [],
  146. workTextList: [],
  147. planGoodsList: [],
  148. paramList: [
  149. {
  150. pageNum: 1,
  151. pageSize: 10,
  152. total: 0,
  153. showStatus: 0,
  154. goodsType:1
  155. },
  156. {
  157. pageNum: 1,
  158. pageSize: 10,
  159. total: 0,
  160. showStatus: 0,
  161. goodsType:2
  162. }
  163. ],
  164. list1: [],
  165. list2: [],
  166. isLogin:false
  167. };
  168. },
  169. onPullDownRefresh() {},
  170. onLoad(option) {
  171. this.init()
  172. this.courseList();
  173. this.bankList();
  174. },
  175. onShow() {
  176. if(this.isLogin!=this.$method.isLogin()){
  177. this.init()
  178. this.isLogin = this.$method.isLogin()
  179. }
  180. },
  181. onShareAppMessage(res) {
  182. var self = this;
  183. return {
  184. title: '中正',
  185. path: `/pages/index/index?inviteCode=` + userInfo == null ? '' : userInfo.userAccount
  186. };
  187. },
  188. methods: {
  189. //课程
  190. courseList() {
  191. var self = this;
  192. var param = this.paramList[0];
  193. this.$api.goodsList(param).then(res => {
  194. self.paramList[0].total = res.data.total;
  195. self.list1.push.apply(self.list1, res.data.rows);
  196. if (self.list1.length === res.data.total) {
  197. self.paramList[0].showStatus = true;
  198. }
  199. });
  200. },
  201. //题库
  202. bankList() {
  203. var self = this;
  204. var param = this.paramList[1];
  205. this.$api.goodsList(param).then(res => {
  206. self.paramList[1].total = res.data.total;
  207. self.list2.push.apply(self.list2, res.data.rows);
  208. if (self.list2.length === res.data.total) {
  209. self.paramList[1].showStatus = true;
  210. }
  211. });
  212. },
  213. jumpGoodsDetail(item){
  214. this.$navTo.togo('/pages2/wd/course', {
  215. id: item.goodsId
  216. });
  217. },
  218. preveItem() {
  219. if (this.goodsIndex > 0) {
  220. this.goodsIndex = this.goodsIndex - 1;
  221. this.planGoodsList =this.workList[this.goodsIndex].goodsVos
  222. this.goodsItem = this.planGoodsList[0];
  223. this.dealRL(this.workList[this.goodsIndex].calendarStudyVo)
  224. }
  225. },
  226. nextItem() {
  227. if (this.goodsIndex < this.workList.length - 1) {
  228. this.goodsIndex = this.goodsIndex + 1;
  229. this.planGoodsList =this.workList[this.goodsIndex].goodsVos
  230. this.goodsItem = this.planGoodsList[0];
  231. this.dealRL(this.workList[this.goodsIndex].calendarStudyVo)
  232. }
  233. },
  234. jumpPlan() {
  235. if (!this.$method.isLogin()) {
  236. this.$navTo.togo('/pages/login/login');
  237. } else {
  238. this.$navTo.togo('/pages2/plan/index', {});
  239. }
  240. },
  241. init() {
  242. if (!this.$method.isLogin()) {
  243. //未登录
  244. this.date_num = [];
  245. this.workList = [];
  246. this.planGoodsList = [];
  247. this.initDay();
  248. } else {
  249. this.date_num = [];
  250. this.workList = [];
  251. this.planGoodsList = [];
  252. this.userPlanSeven();
  253. }
  254. },
  255. getMonDate() {
  256. var d = new Date(),
  257. day = d.getDay(),
  258. date = d.getDate();
  259. if (day == 0) return d;
  260. else d.setDate(date - day);
  261. return d;
  262. },
  263. initDay() {
  264. // d是当前星期一的日期对象
  265. var d = this.getMonDate();
  266. var arr = [];
  267. let date = new Date();
  268. let num = date.getDate();
  269. for (var i = 0; i < 7; i++) {
  270. let item = { date: d.getDate() };
  271. item.color = 0;
  272. if (d.getDate() == num) {
  273. item.color = 3;
  274. }
  275. this.date_num.push(item);
  276. d.setDate(d.getDate() + 1);
  277. }
  278. },
  279. dealRL(calendarStudyVo){
  280. let self = this
  281. self.date_num = []
  282. let date = new Date();
  283. let num = date.getDate();
  284. let month = date.getMonth() + 1;
  285. let list = [];
  286. for (let i = 0; i < calendarStudyVo.length; i++) {
  287. let item = calendarStudyVo[i];
  288. if (item.month == month) {
  289. list = item.dayStudyList;
  290. }
  291. }
  292. for (let i = 0; i < list.length; i++) {
  293. let item = list[i];
  294. item.color = 0;
  295. if (item.date == num) {
  296. item.color = 3;
  297. }
  298. if (item.perform == 1) {
  299. item.color = 1;
  300. }
  301. if (item.perform == 2) {
  302. item.color = 2;
  303. }
  304. item.note = item.studyCourseKnob;
  305. if (item.note > 0) {
  306. item.dot = true;
  307. }
  308. self.date_num.push(item);
  309. }
  310. },
  311. userPlanSeven() {
  312. let self = this;
  313. this.$api.userPlanSeven().then(result => {
  314. if (result.data.data.length>0) {
  315. self.workList = result.data.data
  316. self.planGoodsList = self.workList[0].goodsVos;
  317. if (self.planGoodsList != null && self.planGoodsList.length > 0) {
  318. self.goodsItem = self.planGoodsList[0];
  319. }
  320. self.dealRL(result.data.data[0].calendarStudyVo)
  321. /* let date = new Date();
  322. let num = date.getDate();
  323. let month = date.getMonth() + 1;
  324. let list = [];
  325. for (let i = 0; i < result.data.data[0].calendarStudyVo.length; i++) {
  326. let item = result.data.data[0].calendarStudyVo[i];
  327. if (item.month == month) {
  328. list = item.dayStudyList;
  329. }
  330. }
  331. for (let i = 0; i < list.length; i++) {
  332. let item = list[i];
  333. item.color = 0;
  334. if (item.date == num) {
  335. item.color = 3;
  336. }
  337. if (item.perform == 1) {
  338. item.color = 1;
  339. }
  340. if (item.perform == 2) {
  341. item.color = 2;
  342. }
  343. item.note = item.studyCourseKnob;
  344. if (item.note > 0) {
  345. item.dot = true;
  346. }
  347. self.date_num.push(item);
  348. } */
  349. } else {
  350. self.initDay();
  351. }
  352. });
  353. },
  354. tab(e) {
  355. this.tabCurrent = e;
  356. },
  357. updateHomePlan() {
  358. this.$refs.home.init();
  359. },
  360. beforeSwitch(index) {
  361. let that = this;
  362. if (index == 1) {
  363. this.isClick1 = true;
  364. }
  365. if (index == this.current) {
  366. return false;
  367. }
  368. if (!this.$method.isLogin()) {
  369. if (index == 0 || index == 1) {
  370. return true;
  371. } else {
  372. this.$navTo.togo('/pages/login/login');
  373. return false;
  374. }
  375. } else {
  376. if (index == 2) {
  377. this.$refs.refMy.init();
  378. }
  379. return true;
  380. }
  381. }
  382. },
  383. onReachBottom() {},
  384. computed: { ...mapGetters(['userInfo']) }
  385. };
  386. </script>
  387. <style lang="scss" scoped>
  388. .index {
  389. .slot-wrap {
  390. width:100%;
  391. display: flex;
  392. align-items: center;
  393. justify-content: flex-end;
  394. image {
  395. margin-right:98rpx;
  396. width: 178rpx;
  397. height: 31rpx;
  398. }
  399. }
  400. .swiper {
  401. width:100%;
  402. image {
  403. width:100%;
  404. }
  405. .indicator__dot {
  406. background: rgba(255, 255, 255, 1);
  407. &.indicator__dot--active {
  408. background: rgba(0, 122, 255, 1);
  409. }
  410. }
  411. }
  412. .content {
  413. padding:16rpx;
  414. background: rgba(234, 238, 241, 1);
  415. .notice {
  416. padding:0 8rpx;
  417. height: 56rpx;
  418. background: linear-gradient(-90deg, rgba(255, 209, 0, 0.3), rgba(255, 255, 255, 0.3));
  419. border-radius: 16rpx;
  420. display: flex;
  421. align-items: center;
  422. .icon {
  423. width: 40rpx;
  424. height: 40rpx;
  425. margin-right: 8rpx;
  426. }
  427. .text {
  428. flex:1;
  429. font-size: 24rpx;
  430. color: #333333;
  431. position: relative;
  432. }
  433. .btn {
  434. font-size: 24rpx;
  435. color: #007AFF;
  436. }
  437. }
  438. .date-list {
  439. margin-top:16rpx;
  440. width: 718rpx;
  441. height: 330rpx;
  442. background: #FFFFFF;
  443. border-radius: 16rpx;
  444. padding:18rpx 27rpx;
  445. .title {
  446. font-size: 30rpx;
  447. font-weight: bold;
  448. color: #007AFF;
  449. }
  450. .list {
  451. margin-top:40rpx;
  452. display: flex;
  453. justify-content: space-around;
  454. .item {
  455. .top {
  456. text-align: center;
  457. font-size: 26rpx;
  458. color: rgba(102, 102, 102, 0.6);
  459. }
  460. .bottom {
  461. text-align: center;
  462. line-height: 48rpx;
  463. margin-top:30rpx;
  464. width: 48rpx;
  465. height: 48rpx;
  466. border-radius: 50%;
  467. color:rgba(51, 51, 51, 1);
  468. font-size: 26rpx;
  469. position:relative;
  470. &.red {
  471. color:red;
  472. }
  473. &.green {
  474. color:green;
  475. }
  476. &.blue {
  477. background: #007AFF;
  478. color:#fff;
  479. }
  480. .note {
  481. width: 30rpx;
  482. height: 30rpx;
  483. border: 2rpx solid #FF9500;
  484. border-radius: 50%;
  485. position:absolute;
  486. top:-20rpx;
  487. right:-20rpx;
  488. line-height: 28rpx;
  489. text-align: center;
  490. color:#FF9500;
  491. font-size: 26rpx;
  492. }
  493. .point {
  494. margin:0 auto;
  495. width: 8rpx;
  496. height: 8rpx;
  497. background: #FF9500;
  498. border-radius: 50%;
  499. }
  500. }
  501. }
  502. }
  503. .btns {
  504. margin-top:50rpx;
  505. display: flex;
  506. align-items: center;
  507. justify-content: center;
  508. .left,.right {
  509. width: 40rpx;
  510. height: 40rpx;
  511. }
  512. .center{
  513. width: 440rpx;
  514. height: 56rpx;
  515. background: #FFFFFF;
  516. box-shadow: 0px 0px 9rpx 1rpx rgba(47, 67, 121, 0.1);
  517. border-radius: 28rpx;
  518. color:rgba(255, 149, 0, 1);
  519. line-height: 56rpx;
  520. text-align: center;
  521. font-size: 30rpx;
  522. margin:0 30rpx;
  523. }
  524. }
  525. }
  526. .tabs {
  527. /deep/ .u-tabs {
  528. background:none!important;
  529. }
  530. }
  531. .course-list {
  532. background:#fff;
  533. padding:0 8rpx;
  534. box-shadow: 0px 10rpx 9rpx 1rpx rgba(165, 196, 239, 0.1);
  535. border-radius: 16rpx ;
  536. .item {
  537. padding:8rpx 0;
  538. border-bottom:1rpx solid #eeeeee;
  539. display: flex;
  540. .img {
  541. position:relative;
  542. margin-right:10rpx;
  543. border-radius: 16rpx ;
  544. overflow: hidden;
  545. width: 320rpx;
  546. height: 155rpx;
  547. image {
  548. width:100%;
  549. height:100%;
  550. }
  551. .time {
  552. position:absolute;
  553. bottom:0;
  554. right:0;
  555. width: 80rpx;
  556. height: 32rpx;
  557. background: rgba(1, 25, 45, 0.4);
  558. color:#fff;
  559. text-align: center;
  560. line-height: 32rpx;
  561. font-size: 24rpx;
  562. border-radius: 10rpx 0px 10rpx 0px;
  563. }
  564. }
  565. .text {
  566. flex:1;
  567. padding-right:10rpx;
  568. position: relative;
  569. .title {
  570. font-size: 30rpx;
  571. color: #333333;
  572. }
  573. .desc {
  574. margin-top:40rpx;
  575. display: flex;
  576. position: absolute;
  577. bottom: 0;
  578. width: 100%;
  579. .left {
  580. flex:1;
  581. color:#333;
  582. font-size: 26rpx;
  583. text {
  584. font-size: 24rpx;
  585. color:#999;
  586. }
  587. }
  588. .right {
  589. font-size: 24rpx;
  590. font-weight: bold;
  591. color: #FF2D55;
  592. }
  593. }
  594. }
  595. }
  596. }
  597. }
  598. }
  599. .date_dot {
  600. width: 6rpx;
  601. height: 6rpx;
  602. background: #ffcc00;
  603. border-radius: 50%;
  604. margin: 0 auto;
  605. }
  606. .date_note {
  607. border-radius: 50%;
  608. width: 29rpx;
  609. height: 29rpx;
  610. border: 1px solid #ffcc00;
  611. font-size: 18rpx;
  612. color: #ffcc00;
  613. text-align: center;
  614. display: inline-block;
  615. position: absolute;
  616. top: -19rpx;
  617. right: 9rpx;
  618. }
  619. .circle_num {
  620. border-radius: 50%;
  621. width: 29rpx;
  622. height: 29rpx;
  623. border: 1px solid #ffcc00;
  624. font-size: 18rpx;
  625. color: #ffcc00;
  626. text-align: center;
  627. display: inline-block;
  628. margin: 5rpx;
  629. }
  630. .date_num {
  631. width: 14%;
  632. text-align: center;
  633. position: relative;
  634. display: inline-block;
  635. margin-top: 20rpx;
  636. }
  637. .course_title {
  638. color: #2f4379;
  639. box-shadow: 0rpx 0rpx 9rpx 1rpx rgba(47, 67, 121, 0.1);
  640. border-radius: 28rpx;
  641. width: 100%;
  642. height: 48rpx;
  643. line-height: 48rpx;
  644. overflow: hidden;
  645. text-overflow:ellipsis;
  646. white-space: nowrap;
  647. }
  648. .arr-icon {
  649. width: 40rpx;
  650. height: 40rpx;
  651. }
  652. .date_num_color0 {
  653. color: #32467b;
  654. }
  655. .date_num_color1 {
  656. color: #34c759;
  657. }
  658. .date_num_color2 {
  659. color: #ff3b30;
  660. }
  661. .date_num_color3 {
  662. color: #ffffff;
  663. background-color: #ffcc00;
  664. border-radius: 50%;
  665. width: 40rpx;
  666. height: 40rpx;
  667. display: inline-block;
  668. }
  669. .card_date {
  670. width: 14%;
  671. text-align: center;
  672. color: #7f8caf;
  673. }
  674. page {
  675. background: #ffffff;
  676. font-size: 28rpx;
  677. }
  678. .calendar_card {
  679. width: 100%;
  680. background: #ffffff;
  681. box-shadow: 0rpx 0rpx 16rpx 4rpx rgba(47, 67, 121, 0.1);
  682. border-radius: 22rpx;
  683. margin-top: 25rpx;
  684. padding-bottom: 15rpx;
  685. }
  686. .calendar_card .card_box {
  687. height: 60rpx;
  688. line-height: 60rpx;
  689. margin-left: 40rpx;
  690. }
  691. .calendar_card .t1 {
  692. color: #7f8caf;
  693. font-size: 24rpx;
  694. }
  695. .calendar_card .t2 {
  696. font-size: 24rpx;
  697. font-family: PingFang SC;
  698. font-weight: bold;
  699. color: #32467b;
  700. margin: 0 10rpx;
  701. }
  702. .calendar_card .t3 {
  703. font-size: 30rpx;
  704. font-weight: bold;
  705. color: #32467b;
  706. text-shadow: 0rpx 3rpx 3rpx rgba(0, 0, 0, 0.2);
  707. margin: 0 10rpx;
  708. }
  709. .img_more {
  710. width: 26rpx;
  711. height: 26rpx;
  712. }
  713. .flex-d {
  714. display: flex;
  715. flex-direction: column;
  716. justify-content: space-between;
  717. height: 100%;
  718. }
  719. .contentZ {
  720. flex: 1;
  721. overflow-y: auto;
  722. padding-left: 35rpx;
  723. display: flex;
  724. justify-content: space-around;
  725. }
  726. .contentZ::-webkit-scrollbar {
  727. display: none;
  728. }
  729. .fots {
  730. height: 100rpx;
  731. display: flex;
  732. align-items: center;
  733. justify-content: space-around;
  734. border-top: 1rpx solid #eee;
  735. }
  736. .leftBtns {
  737. font-size: 30rpx;
  738. color: #32467b;
  739. font-weight: 500;
  740. }
  741. .right_Btns {
  742. font-size: 30rpx;
  743. color: #fff;
  744. background-color: #32467b;
  745. border-radius: 24rpx;
  746. height: 60rpx;
  747. line-height: 60rpx;
  748. text-align: center;
  749. padding: 0rpx 23rpx;
  750. box-shadow: 0rpx 0rpx 16rpx 4rpx rgba(145, 156, 178, 0.1);
  751. }
  752. .lzs {
  753. width: 31%;
  754. margin: 0rpx 1%;
  755. max-width: 31%;
  756. }
  757. .tylsz{
  758. margin-top: 23rpx;
  759. color: #666;
  760. font-weight: 400;
  761. font-size: 24rpx;
  762. }
  763. .tylsz:first-child{
  764. text-align: center;
  765. }
  766. .activeStys{
  767. font-weight: bold;
  768. color: #32467B;
  769. }
  770. </style>