rankOverview.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701
  1. <!--
  2. [报名] 样式2 - 排名总览
  3. http://localhost:5173/card/#/pages/bm/style2/rankOverview
  4. https://oss-mbh5.colormaprun.com/card/#/pages/bm/style2/rankOverview
  5. -->
  6. <template>
  7. <view class="body">
  8. <view class="content">
  9. <view class="uni-column" :class="cssTop">
  10. <view class="topbar uni-row" :class="cssTopbarColor">
  11. <uni-icons type="left" class="topbar-back" @click="btnBack"></uni-icons>
  12. <text class="mcName" @click="playMusic">{{mcName}}</text>
  13. <text class="topbar-rule" @click="btnInfo">规则</text>
  14. <!-- <image mode="aspectFit" class="topbar-info" @click="btnInfo" src="/static/default/info.png"></image> -->
  15. </view>
  16. <view class="topbtm uni-column">
  17. <text class="topbtm-name">姓名:{{nickName}}</text>
  18. </view>
  19. </view>
  20. <view class="top-oval">
  21. <!-- <text class="top-oval-text" @click="onOverviewClick('totalNum')">点击查看排行榜</text> -->
  22. </view>
  23. <view class="mid uni-column">
  24. <view class="mid-1 uni-row uni-jcsb">
  25. <view class="overview-1 uni-column" @click="onOverviewClick('totalDistanct')">
  26. <text class="ovline1">总距离 {{fmtDistanct(totalDistanct)}} km</text>
  27. <text class="ovline2">第 {{totalDistanctRankNum > 0 ? totalDistanctRankNum : '- -'}} 名</text>
  28. </view>
  29. <view class="overview-2 uni-column" @click="onOverviewClick('totalNum')">
  30. <text class="">总场次 {{totalNum}}</text>
  31. </view>
  32. <view class="overview-3 uni-column" @click="onOverviewClick('totalCp')">
  33. <text class="ovline1">总打点数 {{totalCp}} 个</text>
  34. <text class="ovline2">第 {{totalCpRankNum > 0 ? totalCpRankNum : '- -'}} 名</text>
  35. </view>
  36. </view>
  37. <view class="mid-2 uni-row uni-jcse">
  38. <view class="overview-4 uni-column" @click="onOverviewClick('totalSysPoint')">
  39. <text class="ovline1">总百味豆 {{totalSysPoint}} 个</text>
  40. <text class="ovline2">第 {{totalSysPointRankNum > 0 ? totalSysPointRankNum : '- -'}} 名</text>
  41. </view>
  42. <view class="overview-5 uni-column" @click="onOverviewClick('fastPace')">
  43. <text class="ovline1">最快配速 {{fmtPace(fastPace)}}</text>
  44. <text class="ovline2">第 {{fastPaceRankNum > 0 ? fastPaceRankNum : '- -'}} 名</text>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="main uni-column">
  49. <text class="main-title">选择比赛路线</text>
  50. <my-pathList :style="pathListStyle.style" :pathList="pathList" :mcState="mcState" :showLine="pathListStyle.showLine"></my-pathList>
  51. </view>
  52. <my-popup ref="mypopup" :dataList="popupDataList" :acttime="acttime"></my-popup>
  53. <!-- <my-popup-map ref="mypopupmap" :point="navPoint"></my-popup-map> -->
  54. </view>
  55. </view>
  56. </template>
  57. <script>
  58. import tools from '/common/tools';
  59. import {
  60. defaultPopUpDataList
  61. } from '/common/define';
  62. import {
  63. token,
  64. apiMatchRsDetailQuery,
  65. apiCardConfigQuery,
  66. checkResCode
  67. } from '/common/api';
  68. export default {
  69. data() {
  70. return {
  71. // audioSrc: "/static/audio/2.mp3",
  72. // audioSrc: "https://oss-mbh5.colormaprun.com/card/static/audio/2.mp3",
  73. // audioSrc: "http://t-oss-mbh5.colormaprun.com/card/static/audio/2.mp3",
  74. pageName: "rankOverview",
  75. firstEnterKey: 'firstEnter-bm-style2',
  76. rankKey: "rank-bm-style2",
  77. queryObj: {},
  78. queryString: "",
  79. token: "",
  80. ecId: 0, // 卡片id
  81. mcId: 0, // 赛事id
  82. mcType: 0, // 赛事类型 1 普通活动 2 线下赛 3 线上赛
  83. mcName: "", // 赛事名称
  84. acttime: "", // 活动时间
  85. beginSecond: null, // 活动或赛事开始时间戳,单位秒
  86. endSecond: null, // 活动或赛事结束时间戳,单位秒
  87. nickName: "", // 昵称
  88. totalNum: null, // 总场次
  89. totalDistanct: null, // 总距离,单位米
  90. totalDistanctRankNum: null, // 总距离排名
  91. totalCp: null, // 总打点数
  92. totalCpRankNum: null, // 总打点数排名
  93. totalSysPoint: null, // 总百味豆
  94. totalSysPointRankNum: null, // 总百味豆排名
  95. fastPace: null, // 个人最快配速
  96. fastPaceRankNum: null, // 个人最快配速排名
  97. ocaRs: [], // 卡片对应活动集合
  98. interval: null,
  99. mcState: 0, // 赛事/活动状态 0: 未开始 1: 进行中 2: 已结束
  100. cssTop: "",
  101. cssTopbarColor: "",
  102. pathList: {},
  103. pathListStyle: {},
  104. popupDataList: [],
  105. navPoint: {},
  106. }
  107. },
  108. computed: {
  109. pathListLen() {
  110. return Object.keys(this.pathList).length;
  111. }
  112. },
  113. onLoad(query) { // 类型非必填,可自动推导
  114. // console.log("query:", query);
  115. this.queryObj = query;
  116. this.queryString = tools.objectToQueryString(this.queryObj);
  117. // console.log(queryString);
  118. this.token = query["token"] ?? token;
  119. this.ecId = query["id"] ?? 0;
  120. this.firstEnterKey += "-" + this.ecId;
  121. console.log("firstEnterKey:", this.firstEnterKey);
  122. this.rankKey += "-" + this.ecId;
  123. console.log("rankKey:", this.rankKey);
  124. tools.removeCssCode();
  125. this.getCardConfigQuery();
  126. },
  127. // 页面初次渲染完成,此时组件已挂载完成,DOM 树($el)已可用
  128. onReady() {
  129. // this.dealFirstEnter();
  130. // this.playMusic();
  131. },
  132. onShow() {
  133. // uni.showToast({
  134. // icon: "none",
  135. // title: "[rankOverview] onShow"
  136. // })
  137. // if (this.$audio.audioStatus == 2 && this.$audio.audioSrc == this.audioSrc) {
  138. // this.$audio.play();
  139. // }
  140. },
  141. onUnload() {
  142. this.clear();
  143. },
  144. methods: {
  145. playMusic() {
  146. return;
  147. // uni.showToast({
  148. // title: 'playMusic',
  149. // icon: 'none',
  150. // duration: 2000
  151. // });
  152. // if (this.$audio.audioStatus == 0 || this.$audio.audioSrc != this.audioSrc) {
  153. // this.$audio.playAudio(this.audioSrc);
  154. // }
  155. },
  156. dealNotice(rank) {
  157. // console.log('[dealFirstEnter]');
  158. let that = this;
  159. uni.getStorage({
  160. key: that.rankKey,
  161. success: (res) => {
  162. console.log('[getStorage]', that.rankKey, res.data);
  163. const oldRank = res.data;
  164. if (oldRank != rank) {
  165. // that.notice = true;
  166. that.setRankValue(rank);
  167. }
  168. },
  169. fail: (e) => {
  170. console.log('[getStorage] fail', that.rankKey, e);
  171. // that.notice = false;
  172. that.setRankValue(rank);
  173. },
  174. })
  175. },
  176. setRankValue(data) {
  177. let that = this;
  178. uni.setStorage({
  179. key: that.rankKey,
  180. data: data,
  181. success: () => {
  182. console.log('[setStorage] success', that.rankKey, data);
  183. },
  184. fail: (e) => {
  185. console.log('[setStorage] fail', that.rankKey, e);
  186. },
  187. })
  188. },
  189. dealFirstEnter() {
  190. // console.log('[dealFirstEnter]');
  191. let that = this;
  192. uni.getStorage({
  193. key: that.firstEnterKey,
  194. success: (res) => {
  195. console.log('[getStorage]', that.firstEnterKey, res.data);
  196. },
  197. fail: (e) => {
  198. console.log('[getStorage] fail', that.firstEnterKey, e);
  199. that.btnInfo();
  200. that.setFirstEnterValue(true);
  201. },
  202. })
  203. },
  204. setFirstEnterValue(data) {
  205. let that = this;
  206. uni.setStorage({
  207. key: that.firstEnterKey,
  208. data: data,
  209. success: () => {
  210. console.log('[setStorage] success', that.firstEnterKey, data);
  211. },
  212. fail: (e) => {
  213. console.log('[setStorage] fail', that.firstEnterKey, e);
  214. },
  215. })
  216. },
  217. clear() {
  218. if (this.interval != null) {
  219. clearInterval(this.interval);
  220. this.interval = null;
  221. }
  222. },
  223. loadConfig(config) {
  224. // console.log("config", config);
  225. // 加载CSS样式
  226. const css = config.css;
  227. if (css != undefined && css.length > 0) {
  228. tools.loadCssCode(css);
  229. if (css.indexOf(".top{") >= 0) {
  230. this.cssTop = "top";
  231. }
  232. if (css.indexOf(".topbar-color{") >= 0) {
  233. this.cssTopbarColor = "topbar-color";
  234. }
  235. }
  236. if (this.cssTop == "") {
  237. this.cssTop = "top-default";
  238. }
  239. if (this.cssTopbarColor == "") {
  240. this.cssTopbarColor = "topbar-color-default";
  241. }
  242. console.log("[loadConfig] cssTop:", this.cssTop);
  243. console.log("[loadConfig] cssTopbarColor:", this.cssTopbarColor);
  244. // 加载比赛路线数据
  245. const pathList = config.pathList;
  246. // console.log("[loadConfig] pathList:", pathList);
  247. if (pathList != undefined) {
  248. this.pathList = pathList;
  249. }
  250. // 加载比赛路线样式
  251. const pathListStyle = config.pathListStyle;
  252. // console.log("[loadConfig] pathList:", pathList);
  253. if (pathListStyle != undefined) {
  254. this.pathListStyle = pathListStyle;
  255. }
  256. // 加载弹窗数据
  257. const popupDataList = config.popupDataList;
  258. // console.log("[loadConfig] popupDataList:", popupDataList);
  259. if (popupDataList != undefined && popupDataList.length > 0) {
  260. for (var i = 0; i < popupDataList.length; i++) {
  261. // console.log("[loadConfig] popupDataList", i, popupDataList[i]);
  262. if (popupDataList[i] == 'default') {
  263. for (var j = 0; j < defaultPopUpDataList.length; j++) {
  264. this.popupDataList.push(defaultPopUpDataList[j]);
  265. }
  266. } else {
  267. this.popupDataList.push(popupDataList[i]);
  268. }
  269. }
  270. } else {
  271. this.popupDataList = defaultPopUpDataList;
  272. console.log("[loadConfig] popupDataList 加载默认列表");
  273. }
  274. // console.log("[loadConfig] popupDataList:", this.popupDataList);
  275. },
  276. // 获取倒计时
  277. getCountdown() {
  278. // console.log(this.endSecond)
  279. if (this.endSecond > 0) {
  280. const now = Date.now() / 1000;
  281. const dif = this.endSecond - now;
  282. // const dif = 3600*24 - 60;
  283. if (dif > 0) {
  284. this.countdown = '距结束 ' + tools.convertSecondsToDHM(dif);
  285. } else {
  286. this.countdown = "活动已结束";
  287. }
  288. // this.countdown = tools.convertSecondsToHMS(dif);
  289. } else {
  290. this.countdown = "距结束 --天--小时";
  291. }
  292. },
  293. // 格式化 距离
  294. fmtDistanct(val) {
  295. if (val < 1000)
  296. return Math.round(val * 10 / 1000) / 10;
  297. else
  298. return Math.round(val / 1000);
  299. },
  300. // 格式化 配速
  301. fmtPace(val) {
  302. return tools.convertSecondsToHMS(val, 2);
  303. },
  304. fmtMcTime(timestamp) {
  305. var date = new Date(timestamp * 1000); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
  306. // var Y = date.getFullYear() + '-';
  307. var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
  308. var D = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + ' ';
  309. var h = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':';
  310. var m = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes());
  311. // var s = (date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds());
  312. const timeStr = M + D + h + m;
  313. // console.log("timeStr", timeStr);
  314. return timeStr;
  315. },
  316. // 获取活动时间
  317. getActtime() {
  318. this.acttime = this.fmtMcTime(this.beginSecond) + " 至 " + this.fmtMcTime(this.endSecond);
  319. },
  320. getCardConfigQuery() {
  321. uni.request({
  322. url: apiCardConfigQuery,
  323. header: {
  324. "Content-Type": "application/x-www-form-urlencoded",
  325. "token": this.token,
  326. },
  327. method: "POST",
  328. data: {
  329. ecId: this.ecId,
  330. pageName: this.pageName
  331. },
  332. success: (res) => {
  333. // console.log("getCardConfigQuery", res)
  334. const data = res.data.data;
  335. // console.log("configJson", data.configJson);
  336. const config = data.configJson != "" ? JSON.parse(data.configJson) : "";
  337. // console.log("configJson", data.configJson);
  338. /* const config = {
  339. "css": `
  340. .top{
  341. position: relative;
  342. z-index: 10;
  343. width: 100%;
  344. height: 300px;
  345. padding-top: 36px;
  346. justify-content: space-between;
  347. background-image: url('static/backgroud/top_bg_sea.png');
  348. background-repeat: no-repeat;
  349. background-position-x: center;
  350. background-position-y: bottom;
  351. background-size: cover;
  352. }
  353. `,
  354. "pathList": {
  355. "row1": [{
  356. "type": 2, // 1: 比赛路线 2: 导航到指定地点
  357. "img": "/static/common/dhdqdwz.png",
  358. "point": {
  359. "longitude": 117.022194,
  360. "latitude": 36.661612,
  361. "name": "小飞龙定向赛起始点"
  362. }
  363. },
  364. {
  365. "type": 1, // 1: 比赛路线 2: 导航到指定地点
  366. "img": "/static/common/cjlx12dw.png",
  367. "path": {
  368. "ocaId": 1,
  369. "mcType": 3 // 赛事类型 1 普通活动 2 线下赛 3 线上赛
  370. }
  371. }
  372. ],
  373. "row2": [{
  374. "type": 1, // 1: 比赛路线 2: 导航到指定地点
  375. "img": "/static/common/zjlx16dw.png",
  376. "path": {
  377. "ocaId": 2,
  378. "mcType": 3 // 赛事类型 1 普通活动 2 线下赛 3 线上赛
  379. }
  380. },
  381. {
  382. "type": 1, // 1: 比赛路线 2: 导航到指定地点
  383. "img": "/static/common/gjlx20dw.png",
  384. "path": {
  385. "ocaId": 3,
  386. "mcType": 3 // 赛事类型 1 普通活动 2 线下赛 3 线上赛
  387. }
  388. }
  389. ]
  390. },
  391. "pathListStyle" : {
  392. "showLine" : false,
  393. "style": "justify-content: space-evenly;"
  394. },
  395. "popupDataList": [{
  396. "type": 1,
  397. "data": {
  398. "title": "小飞龙定向赛",
  399. "img": "/static/logo/xfl.png",
  400. "content": "济南奥体中心“一场三馆”包括体育场、体育馆、网球馆和游泳馆,呈现出“东荷西柳”的总体布局。 体育场以济南的“市树”柳树为母题,将垂柳柔美飘逸的形态固化为建筑语言。"
  401. }
  402. },
  403. {
  404. type: 2,
  405. data: {
  406. title: "规则",
  407. img: "/static/common/guize.png",
  408. }
  409. }, {
  410. type: 2,
  411. data: {
  412. title: "奖励",
  413. img: "/static/common/jiangli.png",
  414. }
  415. },
  416. "default"
  417. ]
  418. }; */
  419. this.loadConfig(config);
  420. this.matchRsDetailQuery();
  421. setTimeout(this.dealFirstEnter, 500);
  422. },
  423. fail: (err) => {
  424. console.log("getCardConfigQuery err", err)
  425. },
  426. });
  427. },
  428. // 卡片对应线上赛多个活动查询
  429. matchRsDetailQuery() {
  430. uni.request({
  431. url: apiMatchRsDetailQuery,
  432. header: {
  433. "Content-Type": "application/x-www-form-urlencoded",
  434. "token": this.token,
  435. },
  436. method: "POST",
  437. data: {
  438. ecId: this.ecId
  439. },
  440. success: (res) => {
  441. console.log("matchRsDetailQuery", res);
  442. if (checkResCode(res)) {
  443. const data = res.data.data;
  444. this.mcType = data.mcType;
  445. this.mcId = data.mcId;
  446. this.mcName = data.mcName;
  447. this.beginSecond = data.beginSecond;
  448. this.endSecond = data.endSecond;
  449. this.nickName = data.nickName;
  450. this.totalNum = data.totalNum;
  451. this.totalDistanct = data.totalDistanct;
  452. this.totalDistanctRankNum = data.totalDistanctRankNum;
  453. this.totalCp = data.totalCp;
  454. this.totalCpRankNum = data.totalCpRankNum;
  455. this.totalSysPoint = data.totalSysPoint;
  456. this.totalSysPointRankNum = data.totalSysPointRankNum;
  457. this.fastPace = data.fastPace;
  458. this.fastPaceRankNum = data.fastPaceRankNum;
  459. this.ocaRs = data.ocaRs;
  460. this.mcState = tools.checkMcState(this.beginSecond, this.endSecond);
  461. const rank = JSON.stringify(data);
  462. this.dealNotice(rank);
  463. this.getCountdown();
  464. this.getActtime();
  465. this.clear();
  466. this.interval = setInterval(this.getCountdown, 60000);
  467. }
  468. },
  469. fail: (err) => {
  470. console.log("matchRsDetailQuery err", err)
  471. },
  472. });
  473. },
  474. btnBack() {
  475. // window.history.back();
  476. // const url = `action://to_home/`;
  477. // window.location.href = url;
  478. // tools.appAction(url);
  479. uni.navigateTo({
  480. url: "/pages/bm/style2/rankList?" + this.queryString
  481. });
  482. },
  483. btnInfo() {
  484. // console.log(this.$refs.mypopup);
  485. this.$refs.mypopup.popupOpen();
  486. },
  487. onOverviewClick(ovtype) {
  488. this.queryObj.ovtype = ovtype;
  489. this.queryString = tools.objectToQueryString(this.queryObj);
  490. uni.navigateTo({
  491. url: "/pages/bm/style2/rankList?" + this.queryString
  492. });
  493. },
  494. }
  495. }
  496. </script>
  497. <style scoped>
  498. .content {
  499. width: 100vw;
  500. height: 100vh;
  501. overflow-x: hidden;
  502. }
  503. .top-default {
  504. position: relative;
  505. z-index: 10;
  506. width: 100%;
  507. height: 300px;
  508. padding-top: 36px;
  509. justify-content: space-between;
  510. background-image: url("/static/backgroud/top_bg_aoti2.png");
  511. background-repeat: no-repeat;
  512. background-position-x: center;
  513. background-position-y: bottom;
  514. /* background-size: 100% 100%; */
  515. background-size: cover;
  516. }
  517. .top-oval {
  518. position: relative;
  519. z-index: 0;
  520. margin-top: -180px;
  521. margin-left: -10%;
  522. width: 120%;
  523. height: 280px;
  524. background: linear-gradient(180deg, #ffffff 12.18%, #eeeeee 100%);
  525. border-radius: 50%;
  526. text-align: center;
  527. }
  528. .top-oval-text {
  529. color: #333333;
  530. font-size: 13px;
  531. line-height: 386px;
  532. pointer-events: auto;
  533. }
  534. .topbar {
  535. width: 90%;
  536. justify-content: space-between;
  537. }
  538. .topbar-color-default {
  539. color: #5b9100;
  540. }
  541. .topbar-back {
  542. width: 43rpx;
  543. height: 43rpx;
  544. color: inherit !important;
  545. font-size: 48rpx !important;
  546. /* opacity: 0; */
  547. }
  548. .topbar-info {
  549. width: 46rpx;
  550. height: 46rpx;
  551. }
  552. .topbar-rule {
  553. font-size: 32rpx;
  554. }
  555. .mcName {
  556. font-size: 40rpx;
  557. font-weight: 550;
  558. }
  559. .topbtm {
  560. width: 100%;
  561. /* height: 60rpx; */
  562. margin-bottom: 40px;
  563. justify-content: space-evenly;
  564. }
  565. .topbtm-name {
  566. /* width: 320rpx; */
  567. /* height: 28px; */
  568. padding: 5px 12px;
  569. background-color: #9fda39;
  570. border-radius: 5px;
  571. /* backdrop-filter: blur(30px); */
  572. text-align: center;
  573. font-weight: 500;
  574. color: #497400;
  575. font-size: 14px;
  576. }
  577. .mid {
  578. position: relative;
  579. z-index: 20;
  580. margin-top: -130px;
  581. pointer-events: none;
  582. }
  583. .mid-1 {
  584. width: 92%;
  585. }
  586. .mid-2 {
  587. width: 66%;
  588. }
  589. .overview-1 {
  590. width: 111px;
  591. height: 54px;
  592. background: #ffb40b;
  593. border-radius: 50%;
  594. box-shadow: 3px 3px 0px rgba(140, 140, 140, 1);
  595. pointer-events: auto;
  596. }
  597. .overview-2 {
  598. margin-top: -43px;
  599. color: #ffffff;
  600. font-size: 18px;
  601. pointer-events: auto;
  602. }
  603. .overview-3 {
  604. width: 111px;
  605. height: 54px;
  606. background: #f39509;
  607. border-radius: 50%;
  608. box-shadow: 3px 3px 0px rgba(140, 140, 140, 1);
  609. pointer-events: auto;
  610. }
  611. .overview-4 {
  612. width: 111px;
  613. height: 54px;
  614. background: #81cd00;
  615. border-radius: 50%;
  616. box-shadow: 3px 3px 0px rgba(140, 140, 140, 1);
  617. pointer-events: auto;
  618. }
  619. .overview-5 {
  620. width: 111px;
  621. height: 54px;
  622. background: #64cbb0;
  623. border-radius: 50%;
  624. box-shadow: 3px 3px 0px rgba(140, 140, 140, 1);
  625. pointer-events: auto;
  626. }
  627. .ovline1 {
  628. margin-top: 9px;
  629. color: #ffffff;
  630. font-size: 12px;
  631. }
  632. .ovline2 {
  633. color: #ffffff;
  634. font-size: 16px;
  635. }
  636. .main {
  637. width: 100%;
  638. margin-top: 36px;
  639. margin-bottom: 10px;
  640. /* height: 70vh; */
  641. justify-content: space-around;
  642. /* justify-content: space-between; */
  643. }
  644. .main-title {
  645. margin-bottom: 10px;
  646. font-weight: 550;
  647. color: #333333;
  648. font-size: 16px;
  649. }
  650. </style>