refund-detail.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741
  1. <template>
  2. <view class="refund-detail-page">
  3. <!-- 状态头部 -->
  4. <view class="status-header">
  5. <template v-if="orderInfo.status == '1'">
  6. <view class="status-title">请等待平台处理</view>
  7. <!-- 倒计时 -->
  8. <view class="status-desc" v-if="orderInfo.restAuditSecond > 0">
  9. <u-count-down :timestamp="orderInfo.restAuditSecond" separator="zh" :show-seconds="false"
  10. @end="getDetail" font-size="26" color="#999" bg-color="transparent"></u-count-down>后平台未处理将自动同意
  11. </view>
  12. <view class="status-tip">您已成功发起退款申请,请耐心等待平台处理</view>
  13. </template>
  14. <template v-else>
  15. <view class="status-title">{{ getStatusText(orderInfo.status) }}</view>
  16. <!-- 协商UI -->
  17. <view class="negotiation-card" v-if="orderInfo.status == '2'">
  18. <view class="negotiation-content">
  19. <u-icon name="file-text-fill" color="#FF6600" size="40" class="negotiation-icon"></u-icon>
  20. <view class="negotiation-text">
  21. <view class="negotiation-title">协商修改退款金额为{{ orderInfo.refundMoney }}元</view>
  22. <view class="negotiation-desc">我们愿意支持退款,若您接受修改金额,我们将立刻退款给您</view>
  23. </view>
  24. </view>
  25. <view class="negotiation-actions">
  26. <u-button size="mini" :custom-style="rejectBtnStyle" @click="handleNegotiation(false)">拒绝协商</u-button>
  27. <u-button size="mini" :custom-style="acceptBtnStyle" @click="handleNegotiation(true)">接受协商</u-button>
  28. </view>
  29. </view>
  30. <!-- 退款成功金额展示 -->
  31. <view class="refund-amount-box" v-if="orderInfo.status == '8'">
  32. <view class="amount-row">
  33. <text class="label">退回余额</text>
  34. <text class="value">¥{{ orderInfo.refundMoney }}</text>
  35. </view>
  36. </view>
  37. </template>
  38. </view>
  39. <!-- 退货方式 (状态为4时显示) -->
  40. <view class="info-card return-method-card" v-if="orderInfo.status == '4'">
  41. <view class="card-title">请选择退货方式</view>
  42. <!-- 这里可以加倒计时,类似:1天11时57分后未寄出平台将自动撤销退货申请,需根据接口返回字段 -->
  43. <view class="method-tabs">
  44. <view class="tab-item disabled">
  45. <view class="tab-name">上门取件</view>
  46. <view class="tab-desc">(快递员上门取包裹)</view>
  47. </view>
  48. <view class="tab-item disabled">
  49. <view class="tab-name">驿站自寄</view>
  50. <view class="tab-desc">(随到随退)</view>
  51. </view>
  52. <view class="tab-item active">
  53. <view class="tab-name">自行寄回</view>
  54. <view class="tab-desc">(需填写单号)</view>
  55. </view>
  56. </view>
  57. <view class="warning-box">
  58. 需您自行联系快递公司退回,请不要邮寄到付
  59. </view>
  60. <view class="address-box">
  61. <view class="address-label">平台地址</view>
  62. <view class="address-content">
  63. <view class="name">{{ orderInfo.platformReceiveName || '张三' }}</view>
  64. <view class="detail">{{ orderInfo.platformReceiveAddress || '河南省鹤壁市浚县即可获得发货单收到单方事故师范号到' }} <image src="/pages-mine/static/copy.png" class="copy-icon" @click="copyAddress"></image></view>
  65. </view>
  66. <u-icon name="arrow-right" color="#ccc" size="28"></u-icon>
  67. </view>
  68. <u-button type="success" shape="circle" :custom-style="fillBtnStyle" @click="goToFillLogistics">填写单号</u-button>
  69. </view>
  70. <!-- 商品列表 -->
  71. <view class="info-card goods-card">
  72. <view class="goods-item" v-for="(goods, index) in orderInfo.detailList" :key="index">
  73. <image :src="goods.cover" mode="aspectFill" class="goods-cover"></image>
  74. <view class="goods-info">
  75. <view class="goods-title u-line-2">{{ goods.bookName }}</view>
  76. <view class="goods-sku" v-if="goods.isbn">品相:{{ goods.conditionType | conditionText }}
  77. </view>
  78. <view class="price-box">
  79. <text class="price">¥{{ goods.price }}</text>
  80. <text class="num">x{{ goods.refundNum }}</text>
  81. </view>
  82. <!-- 状态Badge -->
  83. <view class="refund-status-tag red-tag" v-if="orderInfo.status == '1'">
  84. <text>退款中</text>
  85. </view>
  86. <view class="refund-status-tag" v-if="orderInfo.status == '6'">退款成功</view>
  87. </view>
  88. </view>
  89. </view>
  90. <!-- 退款信息 (包含协商历史) -->
  91. <view class="info-card detail-card">
  92. <!-- 协商历史 -->
  93. <view class="row history-row" @click="goToHistory">
  94. <text class="label">协商历史</text>
  95. <view class="value flex-row link-text">
  96. <text>查看</text>
  97. <!-- <u-icon name="arrow-right" color="#38C148" size="24"></u-icon> -->
  98. <image src="/static/images/arrow-right-green.png" style="width: 24rpx; height: 24rpx;" v-if="false">
  99. </image>
  100. <!-- 使用文字或默认图标 -->
  101. <u-icon name="lightning-fill" color="#38C148" size="28" style="margin-left: 6rpx;"></u-icon>
  102. </view>
  103. </view>
  104. <view class="row">
  105. <text class="label">退款原因</text>
  106. <text class="value">{{ orderInfo.refundReason }}</text>
  107. </view>
  108. <view class="row">
  109. <text class="label">申请金额</text>
  110. <text class="value">共{{ orderInfo.refundMoney }}元</text>
  111. </view>
  112. <view class="row">
  113. <text class="label">申请时间</text>
  114. <text class="value">{{ orderInfo.createTime }}</text>
  115. </view>
  116. <view class="row">
  117. <text class="label">退款编号</text>
  118. <view class="value flex-row">
  119. <text>{{ refundOrderId }}</text>
  120. <image src="/pages-mine/static/copy.png" style="width: 28rpx; height: 28rpx; margin-left: 10rpx;"
  121. @click="copyOrderNo"></image>
  122. </view>
  123. </view>
  124. </view>
  125. <!-- 底部操作栏 -->
  126. <view class="bottom-bar" v-if="showBottomBar">
  127. <view class="btn-group">
  128. <u-button v-if="orderInfo.showComplaint == 1" shape="circle" plain :custom-style="btnStyle"
  129. @click="handleAction('complaint')">投诉</u-button>
  130. <u-button v-if="orderInfo.showCancel == 1" shape="circle" plain :custom-style="btnStyle"
  131. @click="handleAction('cancel')">撤销申请</u-button>
  132. <u-button v-if="orderInfo.showModifyApply == 1" shape="circle" type="success"
  133. :custom-style="primaryBtnStyle" @click="handleAction('modify')">修改申请</u-button>
  134. <u-button v-if="orderInfo.showClose == 1" shape="circle" plain :custom-style="btnStyle"
  135. @click="handleAction('close')">关闭退款</u-button>
  136. </view>
  137. </view>
  138. <!-- 占位符 -->
  139. <view style="height: 150rpx;" v-if="showBottomBar"></view>
  140. <!-- 客服按钮 -->
  141. <FloatingDrag :width="126" :height="140" :initial-position="servicePosition"
  142. @position-change="handlePositionChange">
  143. <!-- #ifdef MP-ALIPAY -->
  144. <button class="service-btn" @click="navigateToCustomerService">
  145. <image src="/static/img/kf.png" mode="widthFix" style="width: 126rpx; height: 140rpx"></image>
  146. </button>
  147. <!-- #endif -->
  148. <!-- #ifndef MP-ALIPAY -->
  149. <button class="service-btn" open-type="contact">
  150. <image src="/static/img/kf.png" mode="widthFix" style="width: 126rpx; height: 140rpx"></image>
  151. </button>
  152. <!-- #endif -->
  153. </FloatingDrag>
  154. </view>
  155. </template>
  156. <script>
  157. import FloatingDrag from "@/components/floating-drag.vue";
  158. export default {
  159. components: {
  160. FloatingDrag
  161. },
  162. data() {
  163. return {
  164. // 客服按钮位置
  165. servicePosition: {
  166. left: 0,
  167. right: 'auto',
  168. bottom: "10%",
  169. },
  170. refundOrderId: '',
  171. orderInfo: {
  172. status: '',
  173. restAuditSecond: 0,
  174. detailList: [],
  175. refundMoney: 0,
  176. refundReason: '',
  177. createTime: '',
  178. refundOrderId: '',
  179. showCancel: 0,
  180. showModifyApply: 0,
  181. showComplaint: 0,
  182. showClose: 0
  183. },
  184. btnStyle: {
  185. marginLeft: '20rpx',
  186. minWidth: '160rpx',
  187. height: '64rpx',
  188. lineHeight: '64rpx',
  189. padding: '0 20rpx',
  190. color: '#666',
  191. borderColor: '#ccc',
  192. fontSize: '28rpx',
  193. },
  194. primaryBtnStyle: {
  195. marginLeft: '20rpx',
  196. minWidth: '160rpx',
  197. height: '64rpx',
  198. lineHeight: '64rpx',
  199. padding: '0 20rpx',
  200. backgroundColor: '#38C148',
  201. color: '#fff',
  202. border: 'none'
  203. },
  204. rejectBtnStyle: {
  205. color: '#333',
  206. backgroundColor: '#fff',
  207. border: '1rpx solid #ccc',
  208. minWidth: '160rpx',
  209. height: '60rpx',
  210. lineHeight: '60rpx',
  211. fontSize: '26rpx',
  212. margin: '0 20rpx 0 0'
  213. },
  214. acceptBtnStyle: {
  215. color: '#fff',
  216. backgroundColor: '#FF6600',
  217. border: 'none',
  218. minWidth: '160rpx',
  219. height: '60rpx',
  220. lineHeight: '60rpx',
  221. fontSize: '26rpx',
  222. margin: '0'
  223. },
  224. fillBtnStyle: {
  225. backgroundColor: '#38C148',
  226. color: '#fff',
  227. height: '80rpx',
  228. fontSize: '30rpx',
  229. marginTop: '30rpx',
  230. width: '100%'
  231. }
  232. };
  233. },
  234. computed: {
  235. showBottomBar() {
  236. const { showCancel, showModifyApply, showComplaint, showClose } = this.orderInfo;
  237. return showCancel == 1 || showModifyApply == 1 || showComplaint == 1 || showClose == 1;
  238. }
  239. },
  240. onLoad(options) {
  241. if (options.refundOrderId) {
  242. this.refundOrderId = options.refundOrderId;
  243. this.getDetail();
  244. } else if (options.orderId) {
  245. // 兼容处理:如果传入的是 orderId,尝试通过 orderId 获取退款单(如果后端支持)
  246. // 或者提示错误
  247. // 假设暂时用 refundOrderId
  248. this.refundOrderId = options.orderId; // 尝试用这个ID
  249. this.getDetail();
  250. }
  251. },
  252. methods: {
  253. getDetail() {
  254. this.$u.api.getNewRefundOrderDetailAjax({
  255. refundOrderId: this.refundOrderId
  256. }).then(res => {
  257. if (res.code == 200) {
  258. this.orderInfo = res.data;
  259. }
  260. });
  261. },
  262. getStatusText(status) {
  263. // 状态 1-申请退款 2-审核通过 3-审核驳回 4-超时关闭 5-卖家已发货 6-已完成
  264. // 状态 1-申请退款 2-协商中待用户确认 3-协商中待商家确认 4-审核通过 5-审核驳回 6-超时关闭 7-卖家已发货 8-已完成
  265. const map = {
  266. '1': '待卖家处理',
  267. '2': '协商中待用户确认',
  268. '3': '协商中待商家确认',
  269. '4': '审核已通过,请您把书籍自行寄回',
  270. '5': '审核已驳回',
  271. '6': '退款关闭', // 超时关闭
  272. '7': '卖家已发货', // 可能是换货场景
  273. '8': '退款成功'
  274. };
  275. return map[status] || '处理中';
  276. },
  277. copyAddress() {
  278. const address = (this.orderInfo.platformReceiveName || '张三') + ' ' + (this.orderInfo.platformReceiveAddress || '河南省鹤壁市浚县即可获得发货单收到单方事故师范号到');
  279. uni.setClipboardData({
  280. data: address,
  281. success: () => {
  282. uni.showToast({ title: '地址复制成功', icon: 'none' });
  283. }
  284. });
  285. },
  286. goToFillLogistics() {
  287. uni.navigateTo({
  288. url: `/pages-car/pages/fill-logistics?refundOrderId=${this.refundOrderId}`
  289. });
  290. },
  291. copyOrderNo() {
  292. uni.setClipboardData({
  293. data: String(this.orderInfo.refundOrderId || ''),
  294. success: () => {
  295. uni.showToast({ title: '复制成功', icon: 'none' });
  296. }
  297. });
  298. },
  299. goToHistory() {
  300. // 跳转协商历史页面 (如果有)
  301. uni.showToast({ title: '协商历史功能开发中', icon: 'none' });
  302. },
  303. navigateToCustomerService() {
  304. // 联系客服
  305. uni.navigateTo({
  306. url: '/pages/customer-service/index'
  307. });
  308. },
  309. // 处理位置变更
  310. handlePositionChange(position) {
  311. this.servicePosition = position;
  312. },
  313. handleNegotiation(accept) {
  314. const title = accept ? '确认接受协商金额?' : '确认拒绝协商?';
  315. uni.showModal({
  316. title: '提示',
  317. content: title,
  318. success: (res) => {
  319. if (res.confirm) {
  320. // TODO: Call API
  321. // const api = accept ? this.$u.api.refundNegotiateAgreeAjax : this.$u.api.refundNegotiateRefuseAjax;
  322. // api(...)
  323. // 模拟成功
  324. uni.showLoading({ title: '处理中' });
  325. setTimeout(() => {
  326. uni.hideLoading();
  327. uni.showToast({
  328. title: accept ? '已接受协商' : '已拒绝协商',
  329. icon: 'success'
  330. });
  331. // 刷新详情
  332. this.getDetail();
  333. }, 1000);
  334. }
  335. }
  336. });
  337. },
  338. handleAction(type) {
  339. switch (type) {
  340. case 'cancel':
  341. // 撤销申请逻辑
  342. uni.showModal({
  343. title: '提示',
  344. content: '确定要撤销退款申请吗?',
  345. success: (res) => {
  346. if (res.confirm) {
  347. uni.showLoading({
  348. title: '处理中'
  349. });
  350. this.$u.api.refundCancelAjax({
  351. refundOrderId: this.refundOrderId
  352. }).then(res => {
  353. uni.hideLoading();
  354. if (res.code == 200) {
  355. uni.showToast({
  356. title: '撤销成功',
  357. icon: 'success'
  358. });
  359. // 刷新页面
  360. this.getDetail();
  361. }
  362. });
  363. }
  364. }
  365. });
  366. break;
  367. case 'modify':
  368. // 跳转到修改申请页面
  369. uni.navigateTo({
  370. url: `/pages-car/pages/apply-refund?refundOrderId=${this.refundOrderId}&isModify=1`
  371. });
  372. break;
  373. case 'complaint':
  374. uni.navigateTo({
  375. url: `/pages-car/pages/complaint?orderId=${this.orderInfo.originOrderId}`
  376. });
  377. break;
  378. case 'close':
  379. // 关闭退款
  380. uni.showToast({ title: '关闭退款', icon: 'none' });
  381. break;
  382. }
  383. }
  384. }
  385. }
  386. </script>
  387. <style lang="scss" scoped>
  388. .service-btn {
  389. height: max-content;
  390. background-color: transparent;
  391. padding: 0;
  392. &::after {
  393. border: none;
  394. }
  395. }
  396. .refund-detail-page {
  397. min-height: 100vh;
  398. background-color: #F5F5F5;
  399. padding-bottom: 20rpx;
  400. .status-header {
  401. background-color: #fff;
  402. padding: 40rpx 30rpx;
  403. text-align: center;
  404. margin-bottom: 20rpx;
  405. .status-title {
  406. font-size: 36rpx;
  407. font-weight: bold;
  408. color: #333;
  409. margin-bottom: 20rpx;
  410. }
  411. .status-desc {
  412. font-size: 26rpx;
  413. color: #999;
  414. margin-bottom: 10rpx;
  415. }
  416. .status-tip {
  417. font-size: 24rpx;
  418. color: #999;
  419. }
  420. .negotiation-card {
  421. margin-top: 30rpx;
  422. text-align: left;
  423. .negotiation-content {
  424. display: flex;
  425. align-items: flex-start;
  426. margin-bottom: 30rpx;
  427. .negotiation-icon {
  428. margin-right: 20rpx;
  429. margin-top: 6rpx;
  430. }
  431. .negotiation-text {
  432. flex: 1;
  433. .negotiation-title {
  434. font-size: 30rpx;
  435. font-weight: bold;
  436. color: #333;
  437. margin-bottom: 10rpx;
  438. }
  439. .negotiation-desc {
  440. font-size: 26rpx;
  441. color: #999;
  442. line-height: 1.4;
  443. }
  444. }
  445. }
  446. .negotiation-actions {
  447. display: flex;
  448. justify-content: flex-end;
  449. }
  450. }
  451. .refund-amount-box {
  452. margin-top: 30rpx;
  453. padding-top: 30rpx;
  454. .amount-row {
  455. display: flex;
  456. justify-content: space-between;
  457. align-items: center;
  458. font-size: 30rpx;
  459. .label {
  460. color: #333;
  461. }
  462. .value {
  463. color: #333;
  464. font-weight: bold;
  465. }
  466. }
  467. }
  468. }
  469. .info-card {
  470. background-color: #fff;
  471. margin: 20rpx;
  472. border-radius: 16rpx;
  473. padding: 30rpx;
  474. &.return-method-card {
  475. .card-title {
  476. font-size: 32rpx;
  477. font-weight: bold;
  478. color: #333;
  479. text-align: center;
  480. margin-bottom: 30rpx;
  481. }
  482. .method-tabs {
  483. display: flex;
  484. justify-content: space-between;
  485. margin-bottom: 30rpx;
  486. .tab-item {
  487. flex: 1;
  488. background-color: #F8F8F8;
  489. border-radius: 12rpx;
  490. padding: 20rpx 0;
  491. text-align: center;
  492. margin-right: 20rpx;
  493. border: 2rpx solid transparent;
  494. &:last-child {
  495. margin-right: 0;
  496. }
  497. &.active {
  498. background-color: #F0F9F1;
  499. border-color: #38C148;
  500. .tab-name { color: #38C148; }
  501. .tab-desc { color: #38C148; opacity: 0.8; }
  502. }
  503. &.disabled {
  504. opacity: 0.5;
  505. }
  506. .tab-name {
  507. font-size: 30rpx;
  508. font-weight: bold;
  509. color: #333;
  510. margin-bottom: 6rpx;
  511. }
  512. .tab-desc {
  513. font-size: 22rpx;
  514. color: #999;
  515. }
  516. }
  517. }
  518. .warning-box {
  519. background-color: #E8F5E9;
  520. color: #38C148;
  521. font-size: 26rpx;
  522. padding: 16rpx;
  523. border-radius: 8rpx;
  524. text-align: center;
  525. margin-bottom: 30rpx;
  526. }
  527. .address-box {
  528. display: flex;
  529. align-items: center;
  530. padding: 20rpx 0;
  531. border-top: 1rpx solid #F5F5F5;
  532. .address-label {
  533. width: 140rpx;
  534. font-size: 28rpx;
  535. color: #333;
  536. font-weight: bold;
  537. }
  538. .address-content {
  539. flex: 1;
  540. padding-right: 20rpx;
  541. .name {
  542. font-size: 30rpx;
  543. font-weight: bold;
  544. color: #333;
  545. margin-bottom: 10rpx;
  546. }
  547. .detail {
  548. font-size: 26rpx;
  549. color: #666;
  550. line-height: 1.4;
  551. .copy-icon {
  552. width: 28rpx;
  553. height: 28rpx;
  554. vertical-align: middle;
  555. margin-left: 10rpx;
  556. }
  557. }
  558. }
  559. }
  560. }
  561. &.goods-card {
  562. .goods-item {
  563. display: flex;
  564. margin-bottom: 20rpx;
  565. &:last-child {
  566. margin-bottom: 0;
  567. }
  568. .goods-cover {
  569. width: 140rpx;
  570. height: 160rpx;
  571. border-radius: 8rpx;
  572. margin-right: 20rpx;
  573. flex-shrink: 0;
  574. }
  575. .goods-info {
  576. flex: 1;
  577. position: relative;
  578. .goods-title {
  579. font-size: 28rpx;
  580. color: #333;
  581. margin-bottom: 10rpx;
  582. }
  583. .goods-sku {
  584. font-size: 24rpx;
  585. color: #999;
  586. margin-bottom: 10rpx;
  587. }
  588. .price-box {
  589. display: flex;
  590. justify-content: space-between;
  591. align-items: center;
  592. margin-top: 20rpx;
  593. .price {
  594. font-size: 28rpx;
  595. color: #333;
  596. }
  597. .num {
  598. font-size: 24rpx;
  599. color: #999;
  600. }
  601. }
  602. .refund-status-tag {
  603. position: absolute;
  604. right: 0;
  605. top: 50%; // Adjust as needed
  606. transform: translateY(-50%);
  607. font-size: 24rpx;
  608. color: #999;
  609. &.red-tag {
  610. color: #ff3b30;
  611. border: 1rpx solid #ff3b30;
  612. padding: 2rpx 10rpx;
  613. border-radius: 6rpx;
  614. font-size: 22rpx;
  615. }
  616. }
  617. }
  618. }
  619. }
  620. &.detail-card {
  621. .row {
  622. display: flex;
  623. justify-content: space-between;
  624. margin-bottom: 20rpx;
  625. font-size: 26rpx;
  626. &:last-child {
  627. margin-bottom: 0;
  628. }
  629. .label {
  630. color: #999;
  631. }
  632. .value {
  633. color: #333;
  634. &.flex-row {
  635. display: flex;
  636. align-items: center;
  637. }
  638. &.link-text {
  639. color: #38C148; // 使用主题色
  640. display: flex;
  641. align-items: center;
  642. }
  643. }
  644. }
  645. }
  646. }
  647. .bottom-bar {
  648. position: fixed;
  649. bottom: 0;
  650. left: 0;
  651. right: 0;
  652. background-color: #fff;
  653. padding: 20rpx 30rpx;
  654. padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
  655. display: flex;
  656. justify-content: space-between;
  657. align-items: center;
  658. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
  659. z-index: 100;
  660. .service-btn {
  661. padding: 10rpx;
  662. }
  663. .btn-group {
  664. display: flex;
  665. align-items: center;
  666. justify-content: flex-end;
  667. width: 100%;
  668. }
  669. }
  670. }
  671. </style>