index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677
  1. <template>
  2. <view class="container">
  3. <!-- 品牌头部 -->
  4. <PageBanner theme="mind-wisdom"
  5. tagline="心智成长 · 智慧人生"
  6. quote="知己知彼,百战不殆" />
  7. <!-- ===== 六维雷达图(登录后可见) ===== -->
  8. <view class="radar-section" v-if="isLoggedIn && familyMembers.length > 0">
  9. <!-- 家庭成员切换 -->
  10. <scroll-view class="member-scroll" scroll-x show-scrollbar="false">
  11. <view class="member-row">
  12. <view
  13. v-for="member in familyMembers"
  14. :key="member.childId"
  15. :class="['member-tab', member.childId === selectedChildId ? 'active' : '']"
  16. @click="selectMember(member.childId)"
  17. >
  18. <text class="member-name">{{ member.childName }}</text>
  19. <text class="member-overall">{{ member.overallScore || 0 }}分</text>
  20. </view>
  21. </view>
  22. </scroll-view>
  23. <!-- 雷达图 -->
  24. <view class="radar-card">
  25. <RadarChart
  26. :dimensions="dimensions"
  27. :scores="currentScores"
  28. :childName="currentChildName"
  29. @dimensionClick="goTraining"
  30. />
  31. <text class="radar-hint">点击维度标签进入能力训练</text>
  32. </view>
  33. </view>
  34. <!-- 未登录雷达图占位 -->
  35. <view class="radar-placeholder" v-else-if="!isLoggedIn">
  36. <view class="placeholder-icon">&#x1F9E0;</view>
  37. <text class="placeholder-title">认知能力评估</text>
  38. <text class="placeholder-desc">登录后查看六维认知雷达图,了解孩子的感知、专注、记忆等能力发展</text>
  39. <view class="placeholder-btn" @click="goLogin">立即登录</view>
  40. </view>
  41. <!-- 功能入口 -->
  42. <view class="func-section" v-if="sectionVisible('func_entries')">
  43. <view class="func-grid">
  44. <view class="func-item" v-for="item in funcList" :key="item.label" @click="onFuncClick(item)">
  45. <view class="func-icon-wrap">
  46. <text class="func-icon">{{ item.icon }}</text>
  47. </view>
  48. <text class="func-label">{{ item.label }}</text>
  49. </view>
  50. </view>
  51. </view>
  52. <!-- 每日心理 -->
  53. <view class="section" v-if="sectionVisible('daily_tip')">
  54. <view class="section-header">
  55. <text class="section-title">每日心理</text>
  56. </view>
  57. <view class="tip-card">
  58. <view class="tip-left-bar"></view>
  59. <view class="tip-body">
  60. <text class="tip-title">{{ dailyTip.title }}</text>
  61. <text class="tip-content">{{ dailyTip.content }}</text>
  62. <view class="tip-footer">
  63. <text class="tip-source">{{ dailyTip.source }}</text>
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. <!-- 推荐阅读 -->
  69. <view class="section" v-if="sectionVisible('recommended_reading')">
  70. <view class="section-header">
  71. <text class="section-title">推荐阅读</text>
  72. </view>
  73. <view class="article-list">
  74. <view class="article-card" v-for="article in articles" :key="article.id" @click="goArticleDetail(article.id)">
  75. <view class="article-category" :style="{ background: article.categoryColor }">
  76. <text class="article-category-text">{{ article.category }}</text>
  77. </view>
  78. <text class="article-title">{{ article.title }}</text>
  79. <text class="article-summary">{{ article.summary }}</text>
  80. <view class="article-meta">
  81. <view class="meta-item">
  82. <text class="meta-icon">&#x1F4D6;</text>
  83. <text class="meta-text">{{ article.views }}</text>
  84. </view>
  85. <view class="meta-item">
  86. <text class="meta-icon">&#x1F44D;</text>
  87. <text class="meta-text">{{ article.likes }}</text>
  88. </view>
  89. <text class="article-date">{{ article.date }}</text>
  90. </view>
  91. </view>
  92. </view>
  93. </view>
  94. <!-- 心智任务 -->
  95. <view class="section" v-if="sectionVisible('mind_tasks') && isLoggedIn">
  96. <view class="section-header">
  97. <text class="section-title">&#x1F9E0; 心智任务</text>
  98. </view>
  99. <view class="task-list" v-if="mindTasks.length > 0">
  100. <view class="task-card" v-for="task in mindTasks" :key="task.id">
  101. <text class="task-title">{{ task.title }}</text>
  102. <text class="task-status">{{ task.status === 'completed' ? '已完成' : '进行中' }}</text>
  103. </view>
  104. </view>
  105. <view class="empty-placeholder" v-else>
  106. <text class="empty-text">暂无相关任务</text>
  107. </view>
  108. </view>
  109. <!-- 相关活动 -->
  110. <view class="section" v-if="sectionVisible('related_activities') && isLoggedIn">
  111. <view class="section-header">
  112. <text class="section-title">&#x1F3C3; 相关活动</text>
  113. </view>
  114. <view class="empty-placeholder">
  115. <text class="empty-text">暂无推荐活动</text>
  116. </view>
  117. </view>
  118. <!-- 已购课程 -->
  119. <view class="section" v-if="sectionVisible('purchased_courses') && isLoggedIn">
  120. <view class="section-header">
  121. <text class="section-title">&#x1F4DA; 已购课程</text>
  122. </view>
  123. <view class="empty-placeholder">
  124. <text class="empty-text">暂无已购课程</text>
  125. </view>
  126. </view>
  127. <!-- 底部占位 -->
  128. <view class="bottom-spacer"></view>
  129. </view>
  130. </template>
  131. <script>
  132. import PageBanner from '../../components/PageBanner.vue'
  133. import RadarChart from '../../components/RadarChart.vue'
  134. import { getVisibleSections, getFeaturedArticles, getEnergyOverview } from '../../utils/api.js'
  135. var BASE_URL = 'http://localhost:9082'
  136. try {
  137. var accountInfo = uni.getAccountInfoSync()
  138. var env = accountInfo && accountInfo.miniProgram && accountInfo.miniProgram.envVersion
  139. if (env === 'trial') BASE_URL = 'https://cfc.iwintrue.com'
  140. else if (env === 'release') BASE_URL = 'https://cfc.etotem.com.cn'
  141. } catch (_e) {}
  142. export default {
  143. components: { PageBanner, RadarChart },
  144. data() {
  145. return {
  146. isLoggedIn: false,
  147. role: null,
  148. currentChildId: null,
  149. visibleSections: [],
  150. // 六维雷达图
  151. dimensions: [
  152. { label: '感知', key: 'perception' },
  153. { label: '专注', key: 'focus' },
  154. { label: '记忆', key: 'memory' },
  155. { label: '逻辑', key: 'logic' },
  156. { label: '空间', key: 'spatial' },
  157. { label: '加工速度', key: 'processingSpeed' }
  158. ],
  159. familyMembers: [],
  160. selectedChildId: null,
  161. currentScores: [0, 0, 0, 0, 0, 0],
  162. currentChildName: '',
  163. funcList: [
  164. { icon: '\u{1F4D6}', label: '阅读', needLogin: false, page: '' },
  165. { icon: '\u{1F9E9}', label: '认知', needLogin: false, page: '' },
  166. { icon: '\u{1F4AA}', label: '专注', needLogin: false, page: '' },
  167. { icon: '\u{1F3AF}', label: '决策', needLogin: false, page: '' },
  168. { icon: '\u{1F31F}', label: '心智测评', needLogin: true, page: '' }
  169. ],
  170. dailyTip: {
  171. title: '成长型思维',
  172. content: '拥有成长型思维的孩子相信自己的能力可以通过努力提升,他们更愿意接受挑战,从失败中学习。作为家长,多鼓励孩子的努力而非天赋,可以帮助孩子建立成长型思维。',
  173. source: '—— 卡罗尔·德韦克《终身成长》'
  174. },
  175. articles: [],
  176. mindTasks: []
  177. }
  178. },
  179. onShow() {
  180. var token = uni.getStorageSync('token')
  181. this.isLoggedIn = !!token
  182. if (this.isLoggedIn) {
  183. this.role = uni.getStorageSync('currentRole') || uni.getStorageSync('role') || null
  184. this.currentChildId = uni.getStorageSync('currentChildId') || null
  185. }
  186. this.loadSectionConfig()
  187. this.loadFeaturedArticles()
  188. if (this.isLoggedIn) {
  189. this.loadEnergyData()
  190. this.loadFamilyCognitiveData()
  191. }
  192. },
  193. methods: {
  194. // ===== 区块可见性 =====
  195. async loadSectionConfig() {
  196. if (!uni.getStorageSync('token')) {
  197. this.visibleSections = ['func_entries', 'daily_tip', 'recommended_reading']
  198. return
  199. }
  200. var role = uni.getStorageSync('currentRole') || uni.getStorageSync('role') || null
  201. try {
  202. var res = await getVisibleSections({ pageKey: 'mind', role: role })
  203. if (res.code === 200 && res.data) {
  204. this.visibleSections = res.data.map(function(s) { return s.sectionKey })
  205. }
  206. } catch (e) {
  207. this.visibleSections = ['func_entries', 'daily_tip', 'recommended_reading', 'mind_tasks', 'related_activities', 'purchased_courses']
  208. }
  209. },
  210. sectionVisible(key) {
  211. return this.visibleSections.length === 0 || this.visibleSections.indexOf(key) !== -1
  212. },
  213. // ===== 六维认知数据 =====
  214. async loadFamilyCognitiveData() {
  215. var self = this
  216. var url = BASE_URL + '/api/cognitive/family'
  217. var token = uni.getStorageSync('token')
  218. var userId = uni.getStorageSync('userId') || ''
  219. try {
  220. var res = await new Promise(function(resolve, reject) {
  221. uni.request({
  222. url: url,
  223. method: 'POST',
  224. header: {
  225. 'Content-Type': 'application/json',
  226. 'Authorization': 'Bearer ' + token,
  227. 'X-User-Id': userId
  228. },
  229. success: function(r) { resolve(r) },
  230. fail: function(e) { reject(e) }
  231. })
  232. })
  233. if (res.statusCode === 200 && res.data && res.data.code === 200 && res.data.data) {
  234. var data = res.data.data
  235. if (Array.isArray(data) && data.length > 0) {
  236. self.familyMembers = data
  237. var first = data[0]
  238. self.selectedChildId = first.childId
  239. self.updateCurrentScores(first)
  240. }
  241. } else if (res.data && res.data.code === 200) {
  242. // empty array
  243. self.familyMembers = []
  244. }
  245. } catch (e) {
  246. console.log('获取认知数据失败', e)
  247. }
  248. },
  249. selectMember(childId) {
  250. if (childId === this.selectedChildId) return
  251. this.selectedChildId = childId
  252. var member = this.familyMembers.find(function(m) { return m.childId === childId })
  253. if (member) {
  254. this.updateCurrentScores(member)
  255. }
  256. },
  257. updateCurrentScores(member) {
  258. this.currentChildName = member.childName || ''
  259. this.currentScores = [
  260. member.perceptionScore || 0,
  261. member.focusScore || 0,
  262. member.memoryScore || 0,
  263. member.logicScore || 0,
  264. member.spatialScore || 0,
  265. member.processingSpeedScore || 0
  266. ]
  267. },
  268. goTraining(dimensionKey) {
  269. if (!this.selectedChildId) {
  270. uni.showToast({ title: '请先选择家庭成员', icon: 'none' })
  271. return
  272. }
  273. var url = '/pages/mind/training?dimension=' + dimensionKey + '&childId=' + this.selectedChildId
  274. uni.navigateTo({ url: url })
  275. },
  276. // ===== 文章 =====
  277. async loadFeaturedArticles() {
  278. try {
  279. const res = await getFeaturedArticles({ size: 5 })
  280. if (res.code === 200 && res.data) {
  281. const gradientColors = [
  282. 'linear-gradient(135deg, #8B5CF6, #A78BFA)',
  283. 'linear-gradient(135deg, #5B9BD5, #8FC5E8)',
  284. 'linear-gradient(135deg, #10B981, #34D399)',
  285. 'linear-gradient(135deg, #8B5CF6, #C084FC)',
  286. 'linear-gradient(135deg, #F97316, #FB923C)'
  287. ]
  288. let list = Array.isArray(res.data) ? res.data : (res.data.records || [])
  289. this.articles = list.map(function(item, index) {
  290. return {
  291. id: item.id,
  292. category: item.categoryName || '成长文章',
  293. categoryColor: gradientColors[index % gradientColors.length],
  294. title: item.title || '',
  295. summary: item.summary || '',
  296. views: item.viewCount ? String(item.viewCount) : '0',
  297. likes: '0',
  298. date: item.publishedAt ? item.publishedAt.slice(0, 10) : ''
  299. }
  300. })
  301. }
  302. } catch (e) {}
  303. },
  304. // ===== 能量数据 =====
  305. async loadEnergyData() {
  306. var childId = this.currentChildId
  307. if (!childId) return
  308. try {
  309. var res = await getEnergyOverview(childId)
  310. if (res && res.data) {
  311. // energy data loaded (no longer used in UI but kept for compatibility)
  312. }
  313. } catch (e) { console.log('获取能量概览失败', e) }
  314. },
  315. // ===== 功能入口点击 =====
  316. onFuncClick(item) {
  317. if (item.needLogin && !this.isLoggedIn) {
  318. uni.showModal({
  319. title: '提示',
  320. content: '请先登录后使用此功能',
  321. success: function(res) { if (res.confirm) uni.navigateTo({ url: '/pages/login/login' }) }
  322. })
  323. return
  324. }
  325. if (item.page) uni.navigateTo({ url: item.page })
  326. },
  327. goArticleDetail(id) {
  328. var token = uni.getStorageSync('token')
  329. if (token) {
  330. uni.navigateTo({ url: '/pages/mind/article-detail?id=' + id })
  331. } else {
  332. uni.navigateTo({ url: '/pages/login/login?redirect=' + encodeURIComponent('/pages/mind/index') })
  333. }
  334. },
  335. goReportDetail() {},
  336. goAssessment() { uni.navigateTo({ url: '/pages/assessment/index' }) },
  337. goLogin() { uni.navigateTo({ url: '/pages/login/login' }) }
  338. }
  339. }
  340. </script>
  341. <style scoped>
  342. .container {
  343. min-height: 100vh;
  344. background: #f5f7fa;
  345. padding-bottom: 120rpx;
  346. }
  347. /* ===== 雷达图区域 ===== */
  348. .radar-section {
  349. margin: 20rpx 30rpx;
  350. }
  351. /* 成员切换标签 */
  352. .member-scroll {
  353. width: 100%;
  354. margin-bottom: 16rpx;
  355. }
  356. .member-row {
  357. display: flex;
  358. flex-direction: row;
  359. padding: 4rpx 0;
  360. white-space: nowrap;
  361. }
  362. .member-tab {
  363. display: inline-flex;
  364. flex-direction: column;
  365. align-items: center;
  366. padding: 16rpx 32rpx;
  367. margin-right: 16rpx;
  368. background: #fff;
  369. border-radius: 16rpx;
  370. box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.05);
  371. min-width: 120rpx;
  372. flex-shrink: 0;
  373. }
  374. .member-tab.active {
  375. background: linear-gradient(135deg, #FF6B35, #FFD700);
  376. box-shadow: 0 4rpx 16rpx rgba(255,107,53,0.3);
  377. }
  378. .member-tab.active .member-name {
  379. color: #fff;
  380. }
  381. .member-tab.active .member-overall {
  382. color: rgba(255,255,255,0.9);
  383. }
  384. .member-name {
  385. font-size: 26rpx;
  386. font-weight: bold;
  387. color: #333;
  388. }
  389. .member-overall {
  390. font-size: 20rpx;
  391. color: #999;
  392. margin-top: 4rpx;
  393. }
  394. /* 雷达图卡片 */
  395. .radar-card {
  396. background: #fff;
  397. border-radius: 24rpx;
  398. padding: 30rpx 20rpx 20rpx;
  399. box-shadow: 0 4rpx 20rpx rgba(0,0,0,0.06);
  400. display: flex;
  401. flex-direction: column;
  402. align-items: center;
  403. }
  404. .radar-hint {
  405. font-size: 22rpx;
  406. color: #bbb;
  407. margin-top: 16rpx;
  408. }
  409. /* 雷达图未登录占位 */
  410. .radar-placeholder {
  411. margin: 30rpx 30rpx;
  412. background: #fff;
  413. border-radius: 24rpx;
  414. padding: 60rpx 40rpx;
  415. display: flex;
  416. flex-direction: column;
  417. align-items: center;
  418. box-shadow: 0 4rpx 20rpx rgba(0,0,0,0.06);
  419. }
  420. .placeholder-icon {
  421. font-size: 80rpx;
  422. margin-bottom: 20rpx;
  423. }
  424. .placeholder-title {
  425. font-size: 32rpx;
  426. font-weight: bold;
  427. color: #333;
  428. margin-bottom: 16rpx;
  429. }
  430. .placeholder-desc {
  431. font-size: 26rpx;
  432. color: #999;
  433. text-align: center;
  434. line-height: 1.6;
  435. margin-bottom: 30rpx;
  436. }
  437. .placeholder-btn {
  438. background: linear-gradient(135deg, #FF6B35, #FFD700);
  439. color: #fff;
  440. font-size: 28rpx;
  441. font-weight: bold;
  442. padding: 16rpx 64rpx;
  443. border-radius: 40rpx;
  444. box-shadow: 0 4rpx 16rpx rgba(255,107,53,0.3);
  445. }
  446. /* ===== 功能区入口 ===== */
  447. .func-section {
  448. margin: 20rpx 30rpx;
  449. }
  450. .func-grid {
  451. display: flex;
  452. flex-direction: row;
  453. justify-content: space-between;
  454. background: #fff;
  455. border-radius: 20rpx;
  456. padding: 24rpx 16rpx;
  457. box-shadow: 0 2rpx 12rpx rgba(0,0,0,0.06);
  458. }
  459. .func-item {
  460. display: flex;
  461. flex-direction: column;
  462. align-items: center;
  463. flex: 1;
  464. }
  465. .func-icon-wrap {
  466. width: 80rpx;
  467. height: 80rpx;
  468. border-radius: 40rpx;
  469. background: linear-gradient(135deg, #D6EAF8, #EBF2FA);
  470. display: flex;
  471. align-items: center;
  472. justify-content: center;
  473. margin-bottom: 10rpx;
  474. }
  475. .func-icon {
  476. font-size: 40rpx;
  477. }
  478. .func-label {
  479. font-size: 22rpx;
  480. color: #666;
  481. font-weight: 500;
  482. }
  483. .func-item:active {
  484. opacity: 0.7;
  485. }
  486. /* ===== 通用区块 ===== */
  487. .section {
  488. margin: 20rpx 30rpx;
  489. }
  490. .section-header {
  491. margin-bottom: 20rpx;
  492. }
  493. .section-title {
  494. font-size: 30rpx;
  495. font-weight: bold;
  496. color: #333;
  497. }
  498. /* ===== 每日心理 ===== */
  499. .tip-card {
  500. background: #fff;
  501. border-radius: 20rpx;
  502. box-shadow: 0 2rpx 12rpx rgba(0,0,0,0.06);
  503. display: flex;
  504. flex-direction: row;
  505. overflow: hidden;
  506. }
  507. .tip-left-bar {
  508. width: 6rpx;
  509. background: linear-gradient(180deg, #5B9BD5, #8FC5E8);
  510. flex-shrink: 0;
  511. }
  512. .tip-body {
  513. flex: 1;
  514. padding: 28rpx 24rpx;
  515. }
  516. .tip-title {
  517. font-size: 28rpx;
  518. font-weight: bold;
  519. color: #5B9BD5;
  520. display: block;
  521. margin-bottom: 12rpx;
  522. }
  523. .tip-content {
  524. font-size: 24rpx;
  525. color: #666;
  526. line-height: 1.6;
  527. display: block;
  528. margin-bottom: 16rpx;
  529. }
  530. .tip-footer {
  531. display: flex;
  532. flex-direction: row;
  533. justify-content: flex-end;
  534. }
  535. .tip-source {
  536. font-size: 22rpx;
  537. color: #bbb;
  538. }
  539. /* ===== 推荐阅读 ===== */
  540. .article-list {
  541. display: flex;
  542. flex-direction: column;
  543. gap: 20rpx;
  544. }
  545. .article-card {
  546. background: #fff;
  547. border-radius: 20rpx;
  548. padding: 28rpx 24rpx;
  549. box-shadow: 0 2rpx 12rpx rgba(0,0,0,0.06);
  550. }
  551. .article-category {
  552. display: inline-block;
  553. padding: 4rpx 18rpx;
  554. border-radius: 20rpx;
  555. margin-bottom: 14rpx;
  556. }
  557. .article-category-text {
  558. font-size: 20rpx;
  559. color: #fff;
  560. font-weight: 500;
  561. }
  562. .article-title {
  563. font-size: 28rpx;
  564. font-weight: bold;
  565. color: #333;
  566. display: block;
  567. margin-bottom: 10rpx;
  568. }
  569. .article-summary {
  570. font-size: 24rpx;
  571. color: #888;
  572. line-height: 1.5;
  573. display: block;
  574. margin-bottom: 20rpx;
  575. }
  576. .article-meta {
  577. display: flex;
  578. flex-direction: row;
  579. align-items: center;
  580. justify-content: space-between;
  581. }
  582. .meta-item {
  583. display: flex;
  584. flex-direction: row;
  585. align-items: center;
  586. margin-right: 20rpx;
  587. }
  588. .meta-icon {
  589. font-size: 22rpx;
  590. margin-right: 4rpx;
  591. }
  592. .meta-text {
  593. font-size: 22rpx;
  594. color: #bbb;
  595. }
  596. .article-date {
  597. font-size: 22rpx;
  598. color: #bbb;
  599. margin-left: auto;
  600. }
  601. /* ===== 任务列表 ===== */
  602. .task-list {
  603. display: flex;
  604. flex-direction: column;
  605. gap: 16rpx;
  606. }
  607. .task-card {
  608. background: #fff;
  609. border-radius: 16rpx;
  610. padding: 24rpx 20rpx;
  611. display: flex;
  612. flex-direction: row;
  613. align-items: center;
  614. justify-content: space-between;
  615. box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.04);
  616. }
  617. .task-title {
  618. font-size: 26rpx;
  619. color: #333;
  620. font-weight: 500;
  621. flex: 1;
  622. }
  623. .task-status {
  624. font-size: 22rpx;
  625. color: #999;
  626. margin-left: 16rpx;
  627. }
  628. /* ===== 空状态占位 ===== */
  629. .empty-placeholder {
  630. background: #fff;
  631. border-radius: 16rpx;
  632. padding: 40rpx 20rpx;
  633. display: flex;
  634. align-items: center;
  635. justify-content: center;
  636. box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.04);
  637. }
  638. .empty-text {
  639. font-size: 24rpx;
  640. color: #ccc;
  641. }
  642. /* ===== 底部 ===== */
  643. .bottom-spacer {
  644. height: 120rpx;
  645. }
  646. </style>