index.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. <template>
  2. <view class="container" :style="{backgroundColor: `${backgroundColor}`}">
  3. <u-navbar :is-back="false" title="" :style="{backgroundColor: `${backgroundColor}`}" :border-bottom="false">
  4. <view class="slot-wrap">
  5. <image :src="`${FILE_URL}/login-icon.png`" mode="aspectFit" style="width: 300rpx;"></image>
  6. </view>
  7. </u-navbar>
  8. <!-- <u-link href="http://www.uviewui.com">蜀道难,难于上青天</u-link> -->
  9. <view class="page-content">
  10. <swiper class="swiper" autoplay :interval="5000" :duration="500" circular indicator-dots
  11. style="border-radius: 20rpx;overflow: hidden;height: 200px">
  12. <swiper-item v-for="(data, index) in swiperList" style="width: 100%;height: 100%;" :key="index">
  13. <view class="swiper-item" style="width: 100%;height: 100%;" @click="itemClick(data)">
  14. <image :src="data.imgUrl" mode="aspectFill" style="width: 100%;height: 100%;"></image>
  15. </view>
  16. </swiper-item>
  17. </swiper>
  18. <u-grid :col="4" :border="false" style="margin: 10rpx 0 ;">
  19. <template v-for="(item,index) in navList" :key="index">
  20. <u-grid-item bg-color="none" @click="jumpToPage(item)" class="menu-item">
  21. <i :class="['iconfont', `${item.icon}`]" :style="{ color: `${tabbarActiveColor}` }"></i>
  22. <view class="grid-text">{{item.title}}</view>
  23. </u-grid-item>
  24. </template>
  25. </u-grid>
  26. <u-card padding="20" margin="0rpx 0rpx 30rpx" border-radius="20"
  27. box-shadow="0px 2px 5px rgba(0, 0, 0, 0.1)">
  28. <template v-slot:head>
  29. <u-section title="课程预告" sub-title="查看更多" sub-color="#000000"
  30. @click="toPage('/pages/goOnEdu/index')"></u-section>
  31. </template>
  32. <template v-slot:body>
  33. <lg-swiper v-if="courseList.length!=0" :sildeItems="courseList" @swiperClick="swiperClick"
  34. image="thumImg" title="title"></lg-swiper>
  35. <u-empty text="暂无内容" mode="data" v-else></u-empty>
  36. </template>
  37. </u-card>
  38. <u-card padding="30" margin="0rpx 0rpx 30rpx" border-radius="20"
  39. box-shadow="0px 2px 5px rgba(0, 0, 0, 0.1)">
  40. <template v-slot:head>
  41. <u-section title="研究报告" sub-title="查看更多" sub-color="#000000"
  42. @click="toPage('/pages/researchReport/reportHome/reportHome')"></u-section>
  43. </template>
  44. <template v-slot:body>
  45. <view v-if="reportList.length!=0">
  46. <view v-for="(data,index) in reportList" :key="index" class="u-body-item u-flex u-p-t-0 "
  47. style="align-items: inherit;" @click="toReport(data.id, data.title)">
  48. <image :src="data.cover" mode="aspectFill"></image>
  49. <view class="u-body-item-content">
  50. <view class="item-content">
  51. <text class="item-content-title text-ellipsis">{{data.title}}</text>
  52. <text class="item-content-type">{{data.type}}</text>
  53. </view>
  54. <view class="item-button">
  55. <view v-if="data.viewMode==='1'" class="func-box"
  56. style="justify-content: flex-end;">
  57. <view class="button free">免费</view>
  58. </view>
  59. <view v-else-if="data.viewMode==='2' && isMember" class="func-box">
  60. <view class="price">¥{{ data.price }}元</view>
  61. <view class="button member-free">会员免费</view>
  62. </view>
  63. <view v-else-if="data.viewMode==='2' && !isMember" class="func-box">
  64. <view style="flex: 0 0 auto;display: flex;align-items: center;">
  65. <view class="member-free">
  66. 会员免费
  67. </view>
  68. <view class="not-member-price">
  69. 非会员:¥{{data.price}}元
  70. </view>
  71. </view>
  72. <view :class="['button', data.hasBuy ? 'free' : 'buy']">
  73. {{data.hasBuy ? '已购买' : '立即购买'}}
  74. </view>
  75. </view>
  76. <view v-else-if="data.viewMode==='3' && data.price===data.priceMember"
  77. class="func-box">
  78. <view class="price">¥{{ data.price }}元</view>
  79. <view :class="['button', data.hasBuy ? 'free' : 'buy']">
  80. {{data.hasBuy ? '已购买' : '立即购买'}}
  81. </view>
  82. </view>
  83. <view v-else-if="data.viewMode==='3' && data.price!==data.priceMember"
  84. class="func-box">
  85. <view style="flex: 0 0 auto;display: flex;align-items: center;">
  86. <view class="member-free">
  87. {{`会员:${data.priceMember}元`}}
  88. </view>
  89. <view class="not-member-price">
  90. 非会员:¥{{data.price}}元
  91. </view>
  92. </view>
  93. <view :class="['button', data.hasBuy ? 'free' : 'buy']">
  94. {{data.hasBuy ? '已购买' : '立即购买'}}
  95. </view>
  96. </view>
  97. </view>
  98. </view>
  99. </view>
  100. </view>
  101. <u-empty text="暂无内容" mode="data" v-else></u-empty>
  102. </template>
  103. </u-card>
  104. </view>
  105. <u-modal v-model="loginModal" mask-close-able class="modal" show-cancel-button
  106. :title-style="{fontWeight: 'bold'}" @confirm="confirmModal">
  107. <view class="modal-content">
  108. <text>请登录后使用该功能</text>
  109. </view>
  110. </u-modal>
  111. <!-- 与包裹页面所有内容的元素u-page同级,且在它的下方 -->
  112. <u-tabbar v-model="tabbarCurrentIndex" :list="tabbarList" icon-size="50" :active-color="tabbarActiveColor"
  113. :inactive-color="tabbarInactiveColor"></u-tabbar>
  114. </view>
  115. </template>
  116. <script setup>
  117. import lgSwiper from '@/components/lgSwiper.vue'
  118. import {
  119. onMounted,
  120. ref,
  121. computed
  122. } from 'vue'
  123. import {
  124. onReady,
  125. onLoad,
  126. onShow
  127. } from '@dcloudio/uni-app'
  128. import {
  129. useAuthStore
  130. } from '@/store/authStore'
  131. import {
  132. count
  133. } from '@/api/chat.js'
  134. import {
  135. homeCourseList,
  136. homeReportList,
  137. homeSetting,
  138. homeSwiperList,
  139. loadJlrzsUrl
  140. } from '@/api/home.js'
  141. import {
  142. me
  143. } from '@/api/user.js'
  144. import configService from '@/utils/baseurl.js'
  145. const FILE_URL = configService.FILE_URL;
  146. import {
  147. useTabbarStore
  148. } from '@/store/tabbarStore.js'
  149. import {
  150. msg,
  151. msgSuccess
  152. } from '../../utils/common'
  153. const tabbarStore = useTabbarStore()
  154. // 底部导航栏数据
  155. const tabbarList = computed(() => {
  156. return tabbarStore.list
  157. })
  158. // 底部导航栏选中颜色
  159. const tabbarActiveColor = computed(() => {
  160. return tabbarStore.activeColor
  161. })
  162. const backgroundColor = computed(() => {
  163. return tabbarStore.backgroundColor
  164. })
  165. // 底部导航栏未选中颜色
  166. const tabbarInactiveColor = computed(() => {
  167. return tabbarStore.inactiveColor
  168. })
  169. const tabbarCurrentIndex = 0
  170. const jlrzsUrl = ref(null)
  171. const authStore = useAuthStore()
  172. // 屏幕状态栏高度
  173. const statusBarHeight = ref(0)
  174. // 顶部导航栏高度
  175. const navBarHeight = ref(0)
  176. // 是否登录
  177. const loginModal = ref(false)
  178. // 是否为会员,从缓存里拿取用户信息
  179. // const userInfo = uni.getStorageSync("userinfo") || {}
  180. const isMemberMap = {
  181. 0: true,
  182. 1: false
  183. }
  184. const isMember = ref(false)
  185. // 首页-轮播图
  186. const swiperList = ref([])
  187. const courseList = ref([{
  188. courseImg: 'https://tse3-mm.cn.bing.net/th/id/OIP-C.YKoZzgmubNBxQ8j-mmoTKAHaEK?rs=1&pid=ImgDetMain',
  189. id: 1,
  190. courseName: '【8月8日】房地产经纪进阶培训班'
  191. },
  192. {
  193. courseImg: 'https://pic3.zhimg.com/v2-e52354ffdbd94a8e0a7649eacd34a788_r.jpg?source=1940ef5c',
  194. id: 2,
  195. courseName: '【8月9日】《房地产中介服务规范》培训'
  196. },
  197. {
  198. courseImg: 'https://desk-fd.zol-img.com.cn/t_s960x600c5/g4/M03/00/0C/Cg-4zFS8bC-Ie9zBADCvovJAqiEAATJ8wDX__cAMK-6184.jpg',
  199. id: 3,
  200. courseName: '【已结束】《广州市房屋租赁管理规定》'
  201. },
  202. ])
  203. // 首页-导航栏
  204. const navList = ref([{
  205. id: 'notice',
  206. isLogin: false,
  207. title: '通知公告',
  208. icon: 'icon-xiaoxitongzhi',
  209. url: '/pages/notice/notice/notice',
  210. toOtherApp: false,
  211. otherAppId: '其他小程序的appid'
  212. },
  213. {
  214. id: 'dynamic',
  215. title: '协会动态',
  216. isLogin: false,
  217. icon: 'icon-xinxisousuo-01',
  218. url: '/pages/dynamic/dynamic/dynamic',
  219. toOtherApp: false,
  220. otherAppId: '其他小程序的appid'
  221. },
  222. {
  223. id: 'guide',
  224. title: '办事指引',
  225. isLogin: false,
  226. icon: 'icon-caidanguanli',
  227. url: '/pages/guide/guide/guide',
  228. toOtherApp: false,
  229. otherAppId: '其他小程序的appid'
  230. },
  231. {
  232. id: 'edu',
  233. title: '行业培训',
  234. isLogin: true,
  235. icon: 'icon-xueshimao1',
  236. url: '/pages/goOnEdu/index',
  237. toOtherApp: false,
  238. otherAppId: '其他小程序的appid'
  239. },
  240. {
  241. id: 'level',
  242. isLogin: true,
  243. title: '水平认证',
  244. icon: 'icon-zhengshu-copy',
  245. url: 'pages/index/index',
  246. toOtherApp: true,
  247. otherAppId: 'wx050c17d8b239da86'
  248. },
  249. {
  250. id: 'report',
  251. title: '研究报告',
  252. isLogin: true,
  253. icon: 'icon-circular',
  254. url: '/pages/researchReport/reportHome/reportHome',
  255. toOtherApp: false,
  256. otherAppId: '其他小程序的appid'
  257. },
  258. {
  259. id: 'index',
  260. isLogin: true,
  261. title: '经理人指数',
  262. icon: 'icon-zhishu',
  263. url: '跳转页面的路径',
  264. toOtherApp: false,
  265. otherAppId: '其他小程序的appid'
  266. },
  267. {
  268. id: 'pay',
  269. isLogin: true,
  270. title: '会费缴交',
  271. icon: 'icon-shangchuanchenggong',
  272. url: '/pages/huifeijiaojiaoRukou/huifeijiaojiaoRukou',
  273. toOtherApp: false,
  274. otherAppId: '其他小程序的appid'
  275. }
  276. ])
  277. const reportList = ref([])
  278. // 跳转页面
  279. const jumpToPage = (data) => {
  280. if (data.toOtherApp) {
  281. // 跳转其他小程序
  282. wx.navigateToMiniProgram({
  283. appId: data.otherAppId, // 例如:wx1234567890abcdef
  284. path: data.url, // 跳转路径
  285. envVersion: 'release', // 版本(develop/trial/release)
  286. success(res) {
  287. console.log('跳转成功');
  288. },
  289. fail(err) {
  290. console.error('跳转失败', err);
  291. }
  292. });
  293. return
  294. }
  295. if (data.isLogin) {
  296. if (!authStore.isAuthenticated) {
  297. loginModal.value = true
  298. return
  299. }
  300. }
  301. if (data.id === 'index') {
  302. // jlrzsUrl.value = 'https://www.gzrea.cn:8089/start/534C6DA13FDBAD13479F099E9FC873DF/4D3433353936/'
  303. const src = encodeURIComponent(jlrzsUrl.value);
  304. uni.navigateTo({
  305. url: `/pages/webview/webview?url=${src}`
  306. });
  307. // uni.setClipboardData({
  308. // data: jlrzsUrl.value,
  309. // success: function () {
  310. // msg("链接已复制,请在浏览器中打开")
  311. // }
  312. // });
  313. return
  314. }
  315. uni.navigateTo({
  316. url: data.url
  317. })
  318. }
  319. // 确认跳转至登录
  320. const confirmModal = () => {
  321. uni.navigateTo({
  322. url: "/pages/initial/initial"
  323. })
  324. }
  325. const toPage = (url) => {
  326. if (!authStore.isAuthenticated) {
  327. loginModal.value = true
  328. return
  329. }
  330. uni.navigateTo({
  331. url: url
  332. })
  333. }
  334. const itemClick = (data) => {
  335. // console.log("轮播图swiper", data)
  336. if (!authStore.isAuthenticated) {
  337. loginModal.value = true
  338. return
  339. }
  340. uni.navigateTo({
  341. url: "/pages/swiperDetail/swiperDetail?id=" + data.id
  342. })
  343. }
  344. const swiperClick = (data) => {
  345. // console.log(data, "课程预告数据")
  346. if (!authStore.isAuthenticated) {
  347. loginModal.value = true
  348. return
  349. }
  350. uni.navigateTo({
  351. url: `/pages/goOnEdu/course/courseDetail/courseDetail?id=${data.id}&title=${data.title}`
  352. });
  353. }
  354. function initUser() {
  355. me().then(res => {
  356. if (res?.data) {
  357. authStore.setUserInfo(res.data);
  358. isMember.value = res.data.isMember;
  359. }
  360. })
  361. }
  362. function init() {
  363. homeSwiperList().then(res => {
  364. if (res?.data) {
  365. swiperList.value = res.data
  366. }
  367. })
  368. homeCourseList().then(res => {
  369. // console.log(1000, res.data)
  370. if (res?.data) {
  371. courseList.value = res.data
  372. }
  373. })
  374. initReport()
  375. // homeSetting().then(res=>{
  376. // console.log(res)
  377. // })
  378. }
  379. function initReport() {
  380. homeReportList().then(res => {
  381. if (res?.data) {
  382. reportList.value = res.data
  383. }
  384. })
  385. }
  386. function getCharCount() {
  387. count().then(res => {
  388. if (res && res.code === 0) {
  389. tabbarStore.setMessageCount(res.data.amount)
  390. uni.setTabBarBadge({ //显示数字
  391. index: 1, //tabbar下标
  392. text: `${res.data.amount}` ?? '0' //数字
  393. })
  394. }
  395. })
  396. }
  397. function toReport(id, title) {
  398. if (!authStore.isAuthenticated) {
  399. loginModal.value = true
  400. return
  401. }
  402. uni.navigateTo({
  403. url: "/pages/reportDetail/reportDetail?id=" + id + "&title=" + title
  404. })
  405. }
  406. function loadUrl() {
  407. loadJlrzsUrl().then(res => {
  408. if (res && res.code === 0) {
  409. jlrzsUrl.value = res.data.url
  410. }
  411. })
  412. }
  413. onReady(() => {
  414. uni.getSystemInfo({
  415. success(e) {
  416. statusBarHeight.value = e.statusBarHeight;
  417. let custom = uni.getMenuButtonBoundingClientRect();
  418. navBarHeight.value = custom.height + (custom.top - e.statusBarHeight) * 2;
  419. }
  420. })
  421. })
  422. // 测试
  423. // onShareAppMessage(() => {
  424. // const imageUrl = 'https://www.gzrea.org.cn/upload/news/2025/07/06b20b86fe90188a86405a1b77e75c306cdfb722832fb569.jpg'
  425. // console.log('分享图片路径:', imageUrl);
  426. // uni.getImageInfo({
  427. // src: imageUrl,
  428. // success: (res) => {
  429. // console.log('图片:', res);
  430. // },
  431. // fail: (err) => {
  432. // console.error('图片加载失败:', err);
  433. // }
  434. // })
  435. // return {
  436. // title: 'fenxiang',
  437. // path: '/pages/index/index',
  438. // imageUrl: 'https://www.gzrea.org.cn/upload/news/2025/07/06b20b86fe90188a86405a1b77e75c306cdfb722832fb569.jpg',
  439. // success(res) {
  440. // console.log('分享成功:', res);
  441. // },
  442. // fail(err) {
  443. // console.error('分享失败:', err);
  444. // }
  445. // };
  446. // })
  447. onLoad(() => {
  448. init()
  449. // uni.setBackgroundColor({
  450. // backgroundColor: '#ffff7f',
  451. // });
  452. // initUser()
  453. })
  454. onShow(() => {
  455. const isLogin = authStore.isAuthenticated;
  456. const isUserInfo = authStore.isUserInfo;
  457. if (isLogin) {
  458. // 登录后才请求消息数量
  459. getCharCount()
  460. initReport()
  461. if (!jlrzsUrl.value) {
  462. loadUrl()
  463. }
  464. // 没有用户信息就加载一边
  465. if (!isUserInfo) {
  466. initUser();
  467. } else {
  468. isMember.value = authStore.userInfo.isMember === '0' ? false : true;
  469. }
  470. }
  471. })
  472. </script>
  473. <style lang="scss" scoped>
  474. .container {
  475. width: 100vw;
  476. // background-color: $uni-bg-color;
  477. padding: 0 20rpx 5rpx;
  478. }
  479. .slot-wrap {
  480. padding-left: 20rpx;
  481. }
  482. .menu-item {
  483. .iconfont {
  484. font-size: 60rpx;
  485. }
  486. }
  487. .grid-text {
  488. font-size: 28rpx;
  489. margin-top: 4rpx;
  490. color: $uni-text-color;
  491. }
  492. .u-card-wrap {
  493. background-color: $u-bg-color;
  494. padding: 1px;
  495. }
  496. .u-body-item {
  497. font-size: 32rpx;
  498. color: #333;
  499. margin-bottom: 30rpx;
  500. height: 140rpx;
  501. &:last-of-type {
  502. margin-bottom: 0;
  503. }
  504. .u-body-item-content {
  505. position: relative;
  506. flex: 1;
  507. /* 剩余空间占用 Flex 规则 */
  508. min-width: 0;
  509. // width: 100%;
  510. height: inherit;
  511. .item-content text {
  512. width: inherit;
  513. font-size: $uni-font-size-2;
  514. display: block;
  515. margin: 10rpx;
  516. color: $uni-text-color;
  517. }
  518. .item-content .item-content-title {
  519. font-size: $uni-title-font-size-2;
  520. }
  521. .item-content .item-content-price {
  522. color: $uni-color-error;
  523. // font-weight: bold;
  524. }
  525. .item-button {
  526. width: 100%;
  527. .item-button-huiyuan {
  528. padding: 15rpx 0 5rpx;
  529. text-align: center;
  530. width: 150rpx;
  531. background-image: url('https://www.gzrea.cn/wxmp/static/icon/bg-label.png');
  532. background-size: cover;
  533. background-repeat: no-repeat;
  534. // background-position: center;
  535. }
  536. .item-button-goumai {
  537. padding: 5rpx 0;
  538. text-align: center;
  539. width: 150rpx;
  540. background-color: #fe0000;
  541. border-radius: 30rpx;
  542. color: #fff;
  543. }
  544. .item-button-yiGouMai {
  545. text-align: center;
  546. width: 150rpx;
  547. padding: 5rpx 0;
  548. background-color: #006af4;
  549. border-radius: 30rpx;
  550. color: #fff;
  551. }
  552. }
  553. }
  554. image {
  555. width: 200rpx;
  556. flex: 0 0 200rpx;
  557. height: 100%;
  558. border-radius: 20rpx;
  559. margin-right: 12rpx;
  560. }
  561. }
  562. .course-swiper {
  563. height: 200px;
  564. .swiper-item {
  565. width: 33.33%;
  566. height: 200px;
  567. /* 三个一排,宽度为三分之一 */
  568. transition: transform 0.3s ease;
  569. /* 加入过渡效果 */
  570. display: flex;
  571. flex-direction: column;
  572. align-items: center;
  573. justify-content: center;
  574. }
  575. .swiper-item.active {
  576. transform: scale(2);
  577. /* 主项放大 */
  578. }
  579. image {
  580. width: 80%;
  581. /* 图片宽度 */
  582. height: auto;
  583. }
  584. text {
  585. margin-top: 10px;
  586. }
  587. }
  588. .text-ellipsis {
  589. overflow: hidden;
  590. /* 隐藏超出内容 */
  591. white-space: nowrap;
  592. /* 禁止换行 */
  593. text-overflow: ellipsis;
  594. }
  595. .swiper-container {
  596. perspective: 1000px;
  597. }
  598. .swiper-item {
  599. transition: transform 0.5s;
  600. transform-style: preserve-3d;
  601. /* 其他样式 */
  602. }
  603. .content {
  604. backface-visibility: hidden;
  605. /* 确保背面不可见 */
  606. display: flex;
  607. justify-content: center;
  608. align-items: center;
  609. height: 200px;
  610. /* 设置高度 */
  611. font-size: 24px;
  612. color: white;
  613. background: linear-gradient(45deg, #ff5858, #f09819);
  614. /* 示例背景 */
  615. }
  616. // 登录模拟态
  617. .modal {
  618. .modal-content {
  619. padding: 50rpx;
  620. .content-a {
  621. color: #2979ff;
  622. }
  623. }
  624. }
  625. .item-button {
  626. display: flex;
  627. justify-content: space-between;
  628. align-items: flex-end;
  629. font-size: $uni-font-size-2;
  630. font-weight: bold;
  631. margin-top: 10rpx;
  632. .func-box {
  633. display: flex;
  634. justify-content: space-between;
  635. width: 100%;
  636. align-items: center;
  637. }
  638. .button {
  639. text-align: center;
  640. width: 130rpx;
  641. }
  642. .price {
  643. color: $uni-color-error;
  644. font-size: $uni-title-font-size-3;
  645. }
  646. .not-member-price {
  647. font-size: $uni-font-size-4;
  648. color: $uni-text-color-grey;
  649. text-align: end;
  650. }
  651. .buy {
  652. padding: 6rpx 25rpx;
  653. background-color: $uni-color-error;
  654. border-radius: $uni-card-border-radius;
  655. color: $uni-text-color-inverse;
  656. }
  657. .free {
  658. padding: 6rpx 25rpx;
  659. background-color: $uni-color-primary;
  660. border-radius: $uni-card-border-radius;
  661. color: $uni-text-color-inverse;
  662. }
  663. .member-free {
  664. padding: 10rpx 20rpx;
  665. @include backgroundImg('https://www.gzrea.cn/wxmp/static/icon/bg-label.png');
  666. color: $uni-text-color;
  667. }
  668. }
  669. </style>