arrive.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781
  1. <template>
  2. <view class="container">
  3. <view class="header">注:请按照自己的真实情况填写</view>
  4. <view class="form">
  5. <view class="form_box">
  6. <view class="form_key">按时报到:</view>
  7. <switch :checked="studentInfo.registerOntime == 1" color="#0061FF" style="transform: scale(0.9)" @change="switchChange" />
  8. </view>
  9. <view class="form_box">
  10. <view class="form_key">交通方式:</view>
  11. <view class="form_value">
  12. <picker @change="bindPickerChange" :value="currtIndex" :range="wayList">
  13. <view class="select" :class="{ active: currtIndex != null }">
  14. {{ currtIndex != null ? wayList[currtIndex] : '请选择交通方式' }}
  15. <uni-icons type="down" size="20" color="#ccc"></uni-icons>
  16. </view>
  17. </picker>
  18. </view>
  19. </view>
  20. <view class="form_box">
  21. <view class="form_key">到站地点:</view>
  22. <view class="form_value">
  23. <picker @change="bindPickerChange_place" :value="currtIndex_place" :range="placeList">
  24. <view class="select" :class="{ active: currtIndex_place != null }">
  25. {{ currtIndex_place != null ? placeList[currtIndex_place] : '请选择到站地点' }}
  26. <uni-icons type="down" size="20" color="#ccc"></uni-icons>
  27. </view>
  28. </picker>
  29. </view>
  30. </view>
  31. <view class="form_box">
  32. <view class="form_key">到站日期:</view>
  33. <view class="form_value">
  34. <uni-datetime-picker type="date" v-model="studentInfo.arrvieDate">
  35. <view class="select" :class="{ active: studentInfo.arrvieDate }">
  36. {{ studentInfo.arrvieDate ? studentInfo.arrvieDate : '请输入到站日期' }}
  37. <uni-icons type="down" size="20" color="#ccc"></uni-icons>
  38. </view>
  39. </uni-datetime-picker>
  40. </view>
  41. </view>
  42. <view class="form_box start noMargin">
  43. <view class="form_key">到站时间:</view>
  44. <radio-group @change="radioChange">
  45. <label v-for="(item, index) in timeList" :key="item">
  46. <view class="form_time">
  47. <radio style="transform: scale(0.8)" :value="index.toString()" :checked="index === currentIndex" />
  48. <view>{{ item.timeStr }}</view>
  49. </view>
  50. </label>
  51. </radio-group>
  52. </view>
  53. </view>
  54. <!-- 陪同人员信息区域 -->
  55. <view class="family">
  56. <view class="family_top">
  57. <uni-icons type="staff-filled" size="30"></uni-icons>
  58. <view class="top_title">陪同人员信息</view>
  59. <uni-icons style="margin-left: auto" type="personadd" size="26" color="#0061FF" @click="handleAdd"></uni-icons>
  60. </view>
  61. <view class="family_table" v-if="avs.length">
  62. <view class="table_box top">
  63. <view class="title">序号</view>
  64. <view class="name">姓名</view>
  65. <view class="phone">联系电话</view>
  66. </view>
  67. <view class="table_box" v-for="(item, index) in avs" :key="index">
  68. <view class="title">{{ index + 1 }}</view>
  69. <view class="name">{{ item.name }}</view>
  70. <view class="phone">{{ item.phone }}</view>
  71. </view>
  72. </view>
  73. </view>
  74. <!-- 温馨提示区域 -->
  75. <view class="tips">
  76. <view class="tips_box">
  77. <view class="box_title">温馨提示:</view>
  78. <view class="box_text">{{ info }}</view>
  79. </view>
  80. </view>
  81. <!-- 按钮区域 -->
  82. <view class="btns">
  83. <view class="btn up" @click="handleUp">上一步</view>
  84. <view class="btn down" @click="handleNext">下一步</view>
  85. </view>
  86. <!-- 添加陪同成员弹窗区域 -->
  87. <uni-popup ref="popup" :is-mask-click="false">
  88. <view class="pop">
  89. <image class="pop_img" src="/static/3.png" mode="aspectFill"></image>
  90. <!-- 关闭图标 -->
  91. <uni-icons class="pop_close" type="closeempty" color="#808080" size="20" @click="handleClose"></uni-icons>
  92. <view class="pop_box">
  93. <view class="box_key">姓名:</view>
  94. <view class="box_value">
  95. <input class="input" type="text" placeholder="请输入姓名" placeholder-style="color:#CCCCCC;font-size:28rpx;" v-model="popObj.name" />
  96. </view>
  97. </view>
  98. <view class="pop_box">
  99. <view class="box_key">联系电话:</view>
  100. <view class="box_value">
  101. <input class="input" type="text" placeholder="请输入联系电话" placeholder-style="color:#CCCCCC;font-size:28rpx;" v-model="popObj.phone" />
  102. </view>
  103. </view>
  104. <view class="pop_btn" @click="handleConfirm">确定</view>
  105. </view>
  106. </uni-popup>
  107. <!-- 提示缴费弹窗区域 -->
  108. <uni-popup ref="popup_tips" :is-mask-click="false">
  109. <view class="pop_tips">
  110. <image class="pop_img" src="/static/3.png" mode="aspectFill"></image>
  111. <!-- 关闭图标 -->
  112. <uni-icons class="pop_close" type="closeempty" color="#808080" size="20" @click="handleClose_tips"></uni-icons>
  113. <view class="pop_title">温馨提示</view>
  114. <view class="pop_text">
  115. {{ pop_info }}
  116. </view>
  117. <view class="pop_btn" @click="handleFinish_tips">去完成缴费</view>
  118. </view>
  119. </uni-popup>
  120. <!-- web弹窗区域 -->
  121. <uni-popup ref="popup_web" :is-mask-click="false">
  122. <view class="pop_web">
  123. <!-- 关闭图标 -->
  124. <uni-icons class="pop_close" type="closeempty" color="#808080" size="20" @click="handleClose_web"></uni-icons>
  125. <view class="web">
  126. <iframe class="iframe" src="https://pay.ncjti.edu.cn" frameborder="0"></iframe>
  127. </view>
  128. </view>
  129. </uni-popup>
  130. </view>
  131. </template>
  132. <script setup>
  133. import { onLoad } from '@dcloudio/uni-app'
  134. import { ref } from 'vue'
  135. import { submitInfoReq, getArriveTimeListReq, getStudentPayInfo } from '@/api/index.js'
  136. const currtIndex = ref(null)
  137. const wayList = ref(['火车', '飞机', '汽车', '自驾', '其他'])
  138. const currtIndex_place = ref(null)
  139. const placeList = ref(['南昌火车站', '南昌西站', '南昌东站', '昌北机场', '南昌长途汽车西站', '靖安汽车站', '墨轩湖校区', '黄家湖校区'])
  140. // 学生信息
  141. const studentInfo = ref({})
  142. // 到达时间数组
  143. const timeList = ref([])
  144. // 陪同人员数组
  145. const avs = ref([])
  146. // 到站时间索引
  147. const currentIndex = ref(null)
  148. // 弹窗DOM
  149. const popup = ref()
  150. const popup_tips = ref()
  151. const popup_web = ref()
  152. // 弹窗对象数据
  153. const popObj = ref({
  154. name: '',
  155. phone: ''
  156. })
  157. const info = ref()
  158. const pop_info = ref()
  159. onLoad(() => {
  160. studentInfo.value = uni.getStorageSync('studentInfo')
  161. info.value = uni.getStorageSync('settingInfo').arriveSchool
  162. pop_info.value = uni.getStorageSync('settingInfo').chooseDormitory
  163. // console.log(studentInfo.value)
  164. // console.log(info.value)
  165. if (!studentInfo.value.registerOntime) {
  166. studentInfo.value.registerOntime = 0
  167. }
  168. if (studentInfo.value.trafficMethod) {
  169. // console.log(studentInfo.value.trafficMethod)
  170. wayList.value.forEach((ele, index) => {
  171. if (ele == studentInfo.value.trafficMethod) {
  172. currtIndex.value = index
  173. }
  174. })
  175. if (studentInfo.value.trafficMethod == '自驾') {
  176. placeList.value = ['墨轩湖校区', '黄家湖校区']
  177. } else if (studentInfo.value.trafficMethod == '火车') {
  178. placeList.value = ['南昌火车站', '南昌西站', '南昌东站']
  179. } else if (studentInfo.value.trafficMethod == '飞机') {
  180. placeList.value = ['昌北机场']
  181. } else {
  182. placeList.value = ['南昌火车站', '南昌西站', '南昌东站', '昌北机场', '南昌长途汽车西站', '靖安汽车站', '墨轩湖校区', '黄家湖校区']
  183. }
  184. }
  185. if (studentInfo.value.arrive) {
  186. // console.log(studentInfo.value.arrive)
  187. placeList.value.forEach((ele, index) => {
  188. if (ele == studentInfo.value.arrive) {
  189. currtIndex_place.value = index
  190. }
  191. })
  192. }
  193. avs.value = studentInfo.value.avs || []
  194. getArriveTimeList()
  195. })
  196. // 获取到达时间数组
  197. const getArriveTimeList = async () => {
  198. const res = await getArriveTimeListReq()
  199. // console.log(res)
  200. if (res.code == 200) {
  201. timeList.value = res.data
  202. if (studentInfo.value.arriveTimeId) {
  203. timeList.value.forEach((ele, index) => {
  204. if (ele.id == studentInfo.value.arriveTimeId) {
  205. currentIndex.value = index
  206. }
  207. })
  208. // console.log(currentIndex.value)
  209. }
  210. }
  211. }
  212. // 选择交通方式回调
  213. const bindPickerChange = (e) => {
  214. // console.log(e)
  215. currtIndex.value = e.detail.value
  216. studentInfo.value.trafficMethod = wayList.value[currtIndex.value]
  217. currtIndex_place.value = null
  218. if (studentInfo.value.trafficMethod == '自驾') {
  219. placeList.value = ['墨轩湖校区', '黄家湖校区']
  220. } else if (studentInfo.value.trafficMethod == '火车') {
  221. placeList.value = ['南昌火车站', '南昌西站', '南昌东站']
  222. } else if (studentInfo.value.trafficMethod == '飞机') {
  223. placeList.value = ['昌北机场']
  224. } else {
  225. placeList.value = ['南昌火车站', '南昌西站', '南昌东站', '昌北机场', '南昌长途汽车西站', '靖安汽车站', '墨轩湖校区', '黄家湖校区']
  226. }
  227. }
  228. // 选择到站地点回调
  229. const bindPickerChange_place = (e) => {
  230. currtIndex_place.value = e.detail.value
  231. studentInfo.value.arrive = placeList.value[currtIndex_place.value]
  232. }
  233. // 添加陪同成员按钮回调
  234. const handleAdd = () => {
  235. popup.value.open()
  236. }
  237. // 陪同成员弹窗关闭图标回调
  238. const handleClose = () => {
  239. popup.value.close()
  240. }
  241. // 点击陪同成员弹窗确定按钮回调
  242. const handleConfirm = () => {
  243. if (!popObj.value.name) {
  244. uni.showToast({
  245. title: '请输入姓名',
  246. icon: 'none'
  247. })
  248. return
  249. }
  250. if (!popObj.value.phone) {
  251. uni.showToast({
  252. title: '请输入联系电话',
  253. icon: 'none'
  254. })
  255. return
  256. }
  257. let reg = /^1[3-9]\d{9}$/
  258. if (!reg.test(popObj.value.phone)) {
  259. uni.showToast({
  260. title: '联系电话格式错误',
  261. icon: 'none'
  262. })
  263. return
  264. }
  265. uni.showModal({
  266. title: '提示',
  267. content: '确定添加吗?',
  268. success: (res) => {
  269. if (res.confirm) {
  270. avs.value.push(popObj.value)
  271. popObj.value = {
  272. name: '',
  273. phone: ''
  274. }
  275. popup.value.close()
  276. }
  277. }
  278. })
  279. }
  280. // 提示缴费弹窗关闭图标回调
  281. const handleClose_tips = () => {
  282. popup_tips.value.close()
  283. }
  284. // 提示缴费弹窗去完成缴费按钮回调
  285. const handleFinish_tips = () => {
  286. popup_tips.value.close()
  287. popup_web.value.open()
  288. }
  289. // web弹窗关闭图标回调
  290. const handleClose_web = async () => {
  291. // 关闭弹窗时查询用户是否已经支付
  292. // const res = await getStudentPayInfo({
  293. // admissNum: studentInfo.value.admissNum
  294. // })
  295. // console.log(res)
  296. // if (res.code == 200) {
  297. // if (res.data.isPay == 0) {
  298. // popup_web.value.close()
  299. // popup_tips.value.open()
  300. // } else if (res.data.isPay == 1) {
  301. // studentInfo.value.isPay = 1
  302. // uni.setStorageSync('studentInfo', studentInfo.value)
  303. // uni.reLaunch({
  304. // url: '/pages/payInfo/payInfo'
  305. // })
  306. // }
  307. // }
  308. popup_web.value.close()
  309. setTimeout(() => {
  310. uni.navigateTo({
  311. url: '/pages/payInfo/payInfo'
  312. })
  313. }, 500)
  314. }
  315. // 切换按时报到
  316. const switchChange = (e) => {
  317. // console.log(e.detail.value)
  318. if (e.detail.value) {
  319. studentInfo.value.registerOntime = 1
  320. } else {
  321. studentInfo.value.registerOntime = 0
  322. }
  323. }
  324. // 选择到达时间
  325. const radioChange = (e) => {
  326. // console.log(e.detail.value)
  327. studentInfo.value.arriveTime = timeList.value[e.detail.value].timeStr
  328. studentInfo.value.arriveTimeId = timeList.value[e.detail.value].id
  329. }
  330. // 点击上一步按钮回调
  331. const handleUp = () => {
  332. uni.navigateBack()
  333. }
  334. // 点击提交按钮回调
  335. const handleNext = () => {
  336. if (currtIndex.value == null) {
  337. uni.showToast({
  338. title: '请选择交通方式',
  339. icon: 'none'
  340. })
  341. return
  342. }
  343. if (currtIndex_place.value == null) {
  344. uni.showToast({
  345. title: '请选择到站地点',
  346. icon: 'none'
  347. })
  348. return
  349. }
  350. if (!studentInfo.value.arrvieDate) {
  351. uni.showToast({
  352. title: '请选择到站日期',
  353. icon: 'none'
  354. })
  355. return
  356. }
  357. if (!studentInfo.value.arriveTime) {
  358. uni.showToast({
  359. title: '请选择到站时间',
  360. icon: 'none'
  361. })
  362. return
  363. }
  364. // if (!avs.value.length) {
  365. // uni.showToast({
  366. // title: '请至少添加一名陪同人员',
  367. // icon: 'none'
  368. // })
  369. // return
  370. // }
  371. studentInfo.value.avs = avs.value
  372. uni.setStorageSync('studentInfo', studentInfo.value)
  373. studentInfo.value.arrvieDate = studentInfo.value.arrvieDate + ' 00:00:00'
  374. // console.log(studentInfo.value)
  375. uni.showModal({
  376. title: '提示',
  377. content: '确定提交吗?',
  378. success: async (res) => {
  379. if (res.confirm) {
  380. const res = await submitInfoReq(studentInfo.value)
  381. // console.log(res)
  382. if (res.code == 200) {
  383. uni.showToast({
  384. title: res.message,
  385. icon: 'success'
  386. })
  387. setTimeout(() => {
  388. let { isPay } = studentInfo.value
  389. // console.log(isPay)
  390. if (isPay == 0) {
  391. popup_tips.value.open()
  392. } else if (isPay == 1) {
  393. uni.navigateTo({
  394. url: '/pages/payInfo/payInfo'
  395. })
  396. }
  397. }, 1500)
  398. }
  399. }
  400. }
  401. })
  402. }
  403. </script>
  404. <style lang="scss" scoped>
  405. .container {
  406. min-height: 100vh;
  407. background-color: #f5f9ff;
  408. .header {
  409. padding-left: 20rpx;
  410. height: 93rpx;
  411. line-height: 93rpx;
  412. font-size: 28rpx;
  413. font-weight: bold;
  414. background-color: #fff;
  415. }
  416. .form {
  417. padding: 25rpx 0 0;
  418. margin-top: 10rpx;
  419. background-color: #fff;
  420. .form_box {
  421. display: flex;
  422. align-items: center;
  423. margin-bottom: 20rpx;
  424. min-height: 75rpx;
  425. .form_key {
  426. width: 170rpx;
  427. font-size: 28rpx;
  428. text-align: end;
  429. }
  430. .form_value {
  431. box-sizing: border-box;
  432. padding: 0 25rpx;
  433. width: 560rpx;
  434. height: 75rpx;
  435. border-radius: 4rpx;
  436. border: 2rpx solid #cccccc;
  437. .input {
  438. height: 100%;
  439. }
  440. .select {
  441. display: flex;
  442. align-items: center;
  443. justify-content: space-between;
  444. height: 74rpx;
  445. font-size: 28rpx;
  446. color: #ccc;
  447. }
  448. .active {
  449. color: #000;
  450. }
  451. }
  452. .form_time {
  453. display: flex;
  454. margin-bottom: 20rpx;
  455. font-size: 28rpx;
  456. }
  457. }
  458. .start {
  459. align-items: start;
  460. }
  461. .noMargin {
  462. margin-top: 30rpx;
  463. margin-bottom: 0;
  464. }
  465. }
  466. .family {
  467. background-color: #fff;
  468. .family_top {
  469. display: flex;
  470. align-items: center;
  471. padding: 0 20rpx;
  472. height: 90rpx;
  473. .top_title {
  474. margin-left: 20rpx;
  475. font-size: 30rpx;
  476. font-weight: bold;
  477. }
  478. }
  479. .family_table {
  480. padding: 0 20rpx;
  481. font-size: 24rpx;
  482. .table_box {
  483. display: flex;
  484. justify-content: space-between;
  485. align-items: center;
  486. height: 70rpx;
  487. border-bottom: 2rpx solid #e6e6e6;
  488. .title {
  489. width: 140rpx;
  490. text-align: center;
  491. white-space: nowrap;
  492. text-overflow: ellipsis;
  493. overflow: hidden;
  494. }
  495. .name {
  496. width: 140rpx;
  497. text-align: center;
  498. white-space: nowrap;
  499. text-overflow: ellipsis;
  500. overflow: hidden;
  501. }
  502. .work {
  503. width: 200rpx;
  504. text-align: center;
  505. white-space: nowrap;
  506. text-overflow: ellipsis;
  507. overflow: hidden;
  508. }
  509. .phone {
  510. width: 200rpx;
  511. text-align: center;
  512. white-space: nowrap;
  513. text-overflow: ellipsis;
  514. overflow: hidden;
  515. }
  516. }
  517. .top {
  518. background-color: #f0f3f7;
  519. }
  520. }
  521. }
  522. .tips {
  523. padding: 25rpx 15rpx;
  524. font-size: 24rpx;
  525. background-color: #fff;
  526. .tips_box {
  527. padding: 20rpx 0 20rpx 10rpx;
  528. line-height: 48rpx;
  529. background-color: #fff2f2;
  530. }
  531. }
  532. .btns {
  533. display: flex;
  534. align-items: center;
  535. justify-content: space-around;
  536. padding: 10rpx 0 50rpx;
  537. height: 100rpx;
  538. background-color: #fff;
  539. .btn {
  540. display: flex;
  541. align-items: center;
  542. justify-content: center;
  543. width: 300rpx;
  544. height: 100rpx;
  545. font-size: 32rpx;
  546. border-radius: 8rpx;
  547. }
  548. .up {
  549. border: 2rpx solid #0061ff;
  550. }
  551. .down {
  552. color: #fff;
  553. background-color: #0061ff;
  554. }
  555. }
  556. .pop {
  557. position: relative;
  558. display: flex;
  559. flex-direction: column;
  560. align-items: center;
  561. box-sizing: border-box;
  562. padding: 150rpx 20rpx 50rpx;
  563. width: 659rpx;
  564. height: 528rpx;
  565. border-radius: 15rpx;
  566. background: linear-gradient(180deg, #ebf2ff 0%, #ffffff 100%);
  567. .pop_img {
  568. position: absolute;
  569. top: -103rpx;
  570. left: 227rpx;
  571. width: 206rpx;
  572. height: 206rpx;
  573. }
  574. .pop_close {
  575. position: absolute;
  576. top: 19rpx;
  577. right: 29rpx;
  578. }
  579. .pop_box {
  580. display: flex;
  581. align-items: center;
  582. margin-bottom: 20rpx;
  583. .box_key {
  584. width: 150rpx;
  585. font-size: 28rpx;
  586. text-align: end;
  587. }
  588. .box_value {
  589. width: 300rpx;
  590. height: 70rpx;
  591. border-radius: 4rpx;
  592. border: 2rpx solid #cccccc;
  593. .input {
  594. padding: 0 20rpx;
  595. height: 100%;
  596. }
  597. }
  598. }
  599. .pop_btn {
  600. display: flex;
  601. align-items: center;
  602. justify-content: center;
  603. margin-top: 30rpx;
  604. width: 460rpx;
  605. height: 100rpx;
  606. color: #fff;
  607. font-size: 32rpx;
  608. border-radius: 8rpx;
  609. background-color: #0061ff;
  610. }
  611. }
  612. .pop_tips {
  613. position: relative;
  614. box-sizing: border-box;
  615. padding: 150rpx 20rpx 50rpx;
  616. width: 659rpx;
  617. height: 728rpx;
  618. border-radius: 15rpx;
  619. background: linear-gradient(180deg, #ebf2ff 0%, #ffffff 100%);
  620. .pop_img {
  621. position: absolute;
  622. top: -103rpx;
  623. left: 227rpx;
  624. width: 206rpx;
  625. height: 206rpx;
  626. }
  627. .pop_close {
  628. position: absolute;
  629. top: 19rpx;
  630. right: 29rpx;
  631. }
  632. .pop_title {
  633. margin-bottom: 28rpx;
  634. font-size: 32rpx;
  635. font-weight: bold;
  636. }
  637. .pop_text {
  638. font-size: 28rpx;
  639. line-height: 50rpx;
  640. }
  641. .pop_btn {
  642. display: flex;
  643. align-items: center;
  644. justify-content: center;
  645. margin: 90rpx auto 0;
  646. width: 543rpx;
  647. height: 100rpx;
  648. color: #fff;
  649. font-size: 32rpx;
  650. border-radius: 8rpx;
  651. background-color: #0061ff;
  652. }
  653. }
  654. .pop_web {
  655. position: relative;
  656. box-sizing: border-box;
  657. padding: 80rpx 20rpx 50rpx;
  658. width: 90vw;
  659. height: 90vh;
  660. border-radius: 15rpx;
  661. background: linear-gradient(180deg, #ebf2ff 0%, #ffffff 100%);
  662. .pop_close {
  663. position: absolute;
  664. top: 19rpx;
  665. right: 29rpx;
  666. }
  667. .web {
  668. height: calc(90vh - 90rpx);
  669. .iframe {
  670. width: 100%;
  671. height: 100%;
  672. }
  673. }
  674. }
  675. }
  676. </style>