index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  1. <template>
  2. <view class="work-container">
  3. <view style="work-banner">
  4. <image :src="loadImgSrc('work-banner.png')" style="width: 100%;height:43vh"></image>
  5. </view>
  6. <view class="grid-body">
  7. <view class="Grid">
  8. <view class="Grid-Item" v-for="item in List" :key="item.id" @click="navClick(item.id)"
  9. hover-class="click-hover" hover-start-time="50" hover-stay-time="50">
  10. <image class="icon-item" :src="loadImgSrc('mygc.png')" v-if="item.title == '民用工程'"></image>
  11. <image class="icon-item" :src="loadImgSrc('gygc.png')" v-if="item.title == '工业工程'"></image>
  12. <image class="icon-item" :src="loadImgSrc('szgc.png')" v-if="item.title == '市政工程'"></image>
  13. <image class="icon-item" :src="loadImgSrc('wxzy.png')" v-if="item.title == '危险作业工程'"></image>
  14. <image class="icon-item" :src="loadImgSrc('dggc.png')" v-if="item.title == '顶管工程'"></image>
  15. <image class="icon-item" :src="loadImgSrc('jjgc.png')" v-if="item.title == '基建工程'"></image>
  16. <view class="GStitle">{{ item.title }}
  17. </view>
  18. </view>
  19. </view>
  20. <view v-if="showPopup" class="popup">
  21. <view class="content">
  22. <view class="line1 top40">
  23. <view style="width: 61rpx;
  24. color: #CEB98D;
  25. height: 61rpx;
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. border: 3px solid #CEB98D;
  30. border-radius: 50%; margin-right: 20rpx;">旧</view>
  31. <view>旧改工程</view>
  32. </view>
  33. <view class="line2 btn-grp">
  34. <view class="btn-grp-item" v-for="(item, index) in OldProjectList" :key="index"
  35. @click="OldProject(item)">
  36. <image :src="loadImgSrc('sn.png')" class="line2-btn-big" v-if="item.dictLabel == '室内工程'">
  37. </image>
  38. <image :src="loadImgSrc('ty.png')" class="line2-btn-big" v-if="item.dictLabel == '庭院工程'">
  39. </image>
  40. <image :src="loadImgSrc('jk.png')" class="line2-btn-big" v-if="item.dictLabel == '架空'">
  41. </image>
  42. <image :src="loadImgSrc('jk.png')" class="line2-btn-big" v-if="item.dictLabel == '底腿'">
  43. </image>
  44. <image :src="loadImgSrc('jk.png')" class="line2-btn-big" v-if="item.dictLabel == '管道施工记录'">
  45. </image>
  46. {{item.dictLabel}}
  47. </view>
  48. </view>
  49. <view class="line1">
  50. <view style="width: 61rpx;
  51. color: #85c9c2;
  52. height: 61rpx;
  53. display: flex;
  54. justify-content: center;
  55. align-items: center;
  56. border: 3px solid #85c9c2;
  57. border-radius: 50%; margin-right: 20rpx;">新</view>
  58. <view>新建工程</view>
  59. </view>
  60. <view class="line2 btn-grp">
  61. <view class="btn-grp-item" v-for="(item, index) in NewProjectList" :key="index"
  62. @click="NewProject(item)">
  63. <image :src="loadImgSrc('sn2.png')" class="line2-btn-big" v-if="item.dictLabel == '室内工程'">
  64. </image>
  65. <image :src="loadImgSrc('ty2.png')" class="line2-btn-big" v-if="item.dictLabel == '庭院工程'">
  66. </image>
  67. <image :src="loadImgSrc('jk2.png')" class="line2-btn-big" v-if="item.dictLabel == '架空'">
  68. </image>
  69. <image :src="loadImgSrc('jk2.png')" class="line2-btn-big" v-if="item.dictLabel == '底腿'">
  70. </image>
  71. <image :src="loadImgSrc('jk2.png')" class="line2-btn-big" v-if="item.dictLabel == '管道施工记录'">
  72. </image>
  73. {{item.dictLabel}}
  74. </view>
  75. </view>
  76. </view>
  77. <!-- <view class="btn-group">
  78. <view class="btn_position">
  79. <view class="cancel" @click="showMinYong">取消</view>
  80. </view>
  81. </view> -->
  82. </view>
  83. <view v-if="showPopup" class="mask" @click="showMinYong"></view>
  84. </view>
  85. <view class="share">
  86. <view :class="{'share-box': shareState}" @click="handleHiddenShare">
  87. </view>
  88. <view class="share-item" :class="{'share-show': shareState}">
  89. <view class="share-to">
  90. <text>请选择</text>
  91. </view>
  92. <scroll-view scroll-y="true" class="scroll-Y">
  93. <view class="content">
  94. <view class="block" v-for="(item, index) in typeList" :key="index" @click="showTypeSheet(item)">
  95. <!-- <image :src="item.image" mode="aspectFill"></image> -->
  96. <text>{{item.dictLabel}}</text>
  97. </view>
  98. </view>
  99. </scroll-view>
  100. <view class="cancel" @click.stop="handleHiddenShare">
  101. <text>取消</text>
  102. </view>
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. </template>
  108. <script>
  109. import {
  110. getDicts
  111. } from "@/api/system/dict/data";
  112. export default {
  113. data() {
  114. return {
  115. showPopup: false,
  116. shareState: false,
  117. array: [],
  118. projectType: '', //工程类型
  119. OldProjectList: '', //旧改工程
  120. NewProjectList: '', //民用工程
  121. typeList: '', //二次弹窗数据
  122. enginType: '',
  123. enginClassification: '', // 旧改节点 数据字典
  124. enginClassValue: '', //二次节点 数据字典
  125. current: 0,
  126. swiperDotIndex: 0,
  127. List: [{
  128. id: 1,
  129. img: '/static/logo.png',
  130. title: '民用工程'
  131. },
  132. {
  133. id: 2,
  134. img: '/static/logo.png',
  135. title: '工业工程'
  136. },
  137. {
  138. id: 3,
  139. img: '/static/logo.png',
  140. title: '市政工程'
  141. },
  142. {
  143. id: 4,
  144. img: '/static/logo.png',
  145. title: '危险作业工程'
  146. },
  147. {
  148. id: 5,
  149. img: '/static/logo.png',
  150. title: '顶管工程'
  151. },
  152. {
  153. id: 6,
  154. img: '/static/logo.png',
  155. title: '基建工程'
  156. },
  157. ]
  158. }
  159. },
  160. methods: {
  161. navClick(newId) {
  162. if (newId == 1) {
  163. this.showMinYong()
  164. } else if (newId == 2) {
  165. this.showGongYe();
  166. } else if (newId == 3) {
  167. this.municipalProjectClick();
  168. } else if (newId == 4) {
  169. this.showDangerous();
  170. } else if (newId == 5) {
  171. this.showTopPipe();
  172. } else if (newId == 6) {
  173. this.showInfrastructureDialog();
  174. }
  175. },
  176. // 显示二次弹窗
  177. handleShowSheet() {
  178. this.shareState = true;
  179. },
  180. // 隐藏二次弹窗
  181. handleHiddenShare() {
  182. this.shareState = false;
  183. },
  184. showMinYong() {
  185. this.projectType = 'MinYong';
  186. getDicts("old_renovation").then(response => {
  187. this.OldProjectList = response.data;
  188. });
  189. getDicts("new_built").then(response => {
  190. this.NewProjectList = response.data;
  191. });
  192. this.showPopup = !this.showPopup;
  193. },
  194. //市政工程-首页-点击事件
  195. municipalProjectClick() {
  196. let obj = {
  197. value: '市政工程'
  198. };
  199. uni.navigateTo({
  200. url: '/pages/municipal/municipal?params=' + encodeURIComponent(JSON
  201. .stringify(obj))
  202. });
  203. },
  204. NewProject(e) {
  205. this.enginType = 'new_built'; //写死
  206. this.enginClassification = e.dictValue;
  207. this.enginClassValue = e.dictLabel; //(拆旧管等 字典值)
  208. this.typeList = ''; //置空
  209. console.log("新建", e.dictValue);
  210. if (e.dictValue == 'indoor_engin') {
  211. //新建室内
  212. getDicts("new_built_indoor_engin").then(response => {
  213. this.typeList = response.data;
  214. });
  215. this.handleShowSheet();
  216. } else if (e.dictValue == 'courtyard') {
  217. //新建庭院
  218. getDicts("new_built_courtyard").then(response => {
  219. console.log("庭院", response.data)
  220. this.typeList = response.data;
  221. });
  222. } else if (e.dictValue == 'overhead') {
  223. //新建架空
  224. getDicts("new_built_courtyard").then(response => {
  225. console.log("架空", response.data)
  226. this.typeList = response.data;
  227. });
  228. this.handleShowSheet();
  229. } else if (e.dictValue == 'bottom_leg') {
  230. //新建底腿
  231. const obj = {
  232. enginClassValue: this.enginClassValue, //(拆旧管等 字典值)
  233. enginType: this.enginType, //旧改 还是新建 写死
  234. enginClassification: this.enginClassification //室内 庭院 架空
  235. };
  236. uni.navigateTo({
  237. url: '/pages/bottom_leg/bottom_leg?params=' + encodeURIComponent(JSON
  238. .stringify(
  239. obj))
  240. })
  241. } else if (e.dictValue == 'construction_records') {
  242. //新建管道施工记录
  243. const obj = {
  244. enginClassValue: this.enginClassValue, //(拆旧管等 字典值)
  245. enginType: this.enginType, //旧改 还是新建 写死
  246. enginClassification: this.enginClassification //室内 庭院 架空
  247. };
  248. uni.navigateTo({
  249. url: '/pages/piping_record/piping_record?params=' + encodeURIComponent(JSON
  250. .stringify(
  251. obj))
  252. })
  253. }
  254. },
  255. OldProject(e) {
  256. this.enginType = 'old_renovation'; //写死
  257. this.enginClassification = e.dictValue;
  258. this.enginClassValue = e.dictLabel; //(拆旧管等 字典值)
  259. console.log("旧改", e.dictValue);
  260. this.typeList = ''; //置空
  261. if (e.dictValue == 'indoor_engin') {
  262. //旧改室内
  263. getDicts("old_renovation_indoor_engin").then(response => {
  264. this.typeList = response.data;
  265. });
  266. this.handleShowSheet();
  267. } else if (e.dictValue == 'courtyard') {
  268. //旧改庭院
  269. getDicts("old_renovation_courtyard").then(response => {
  270. console.log("庭院", response.data)
  271. this.typeList = response.data;
  272. });
  273. this.handleShowSheet();
  274. } else if (e.dictValue == 'overhead') {
  275. //旧改架空
  276. getDicts("old_renovation_overhead").then(response => {
  277. console.log("架空", response.data)
  278. this.typeList = response.data;
  279. });
  280. this.handleShowSheet();
  281. } else if (e.dictValue == 'bottom_leg') {
  282. //旧改底腿
  283. const obj = {
  284. enginClassValue: this.enginClassValue, //(拆旧管等 字典值)
  285. enginType: this.enginType, //旧改 还是新建 写死
  286. enginClassification: this.enginClassification //室内 庭院 架空
  287. };
  288. uni.navigateTo({
  289. url: '/pages/bottom_leg/bottom_leg?params=' + encodeURIComponent(JSON
  290. .stringify(
  291. obj))
  292. })
  293. } else if (e.dictValue == 'construction_records') {
  294. //旧改管道施工记录
  295. const obj = {
  296. enginClassValue: this.enginClassValue, //(拆旧管等 字典值)
  297. enginType: this.enginType, //旧改 还是新建 写死
  298. enginClassification: this.enginClassification //室内 庭院 架空
  299. };
  300. uni.navigateTo({
  301. url: '/pages/piping_record/piping_record?params=' + encodeURIComponent(JSON
  302. .stringify(
  303. obj))
  304. })
  305. }
  306. },
  307. //二次弹窗 选择类型
  308. showTypeSheet(item) {
  309. if (this.projectType == 'MinYong') {
  310. //this.showPopup = !this.showPopup; //隐藏第一次弹窗
  311. this.enginClassValue = item.dictValue; //二次节点赋值
  312. const obj = {
  313. enginClassValue: this.enginClassValue, //(拆旧管等 字典值)
  314. enginType: this.enginType, //旧改 还是新建 写死
  315. enginClassification: this.enginClassification //室内 庭院 架空
  316. };
  317. console.log(obj)
  318. //this.handleHiddenShare();
  319. // 室内
  320. if (this.enginClassification == 'indoor_engin') {
  321. uni.navigateTo({
  322. url: '/pages/oldrenovation/indoor/indoor?params=' + encodeURIComponent(JSON.stringify(
  323. obj))
  324. })
  325. }
  326. // 庭院
  327. else if (this.enginClassification == 'courtyard') {
  328. if (this.enginClassValue == '下沟') {
  329. uni.navigateTo({
  330. url: '/pages/oldrenovation/courtyard/courtyard?params=' + encodeURIComponent(
  331. JSON
  332. .stringify(
  333. obj))
  334. })
  335. } else {
  336. uni.navigateTo({
  337. url: '/pages/oldrenovation/courtyard/newcourtyard?params=' + encodeURIComponent(
  338. JSON
  339. .stringify(
  340. obj))
  341. })
  342. }
  343. } else if (this.enginClassification == 'overhead') { //架空
  344. if (this.enginClassValue == '全貌照片') {
  345. uni.navigateTo({
  346. url: '/pages/oldrenovation/overhead/newoverhead?params=' + encodeURIComponent(JSON
  347. .stringify(
  348. obj))
  349. })
  350. } else {
  351. uni.navigateTo({
  352. url: '/pages/oldrenovation/overhead/overhead?params=' + encodeURIComponent(JSON
  353. .stringify(
  354. obj))
  355. })
  356. }
  357. }
  358. } else if (this.projectType == 'GongYe') {
  359. console.log("工业", item)
  360. let obj = {
  361. value: item.dictValue
  362. };
  363. //this.handleHiddenShare();
  364. uni.navigateTo({
  365. url: '/pages/enginproject/enginproject?params=' + encodeURIComponent(JSON
  366. .stringify(
  367. obj))
  368. })
  369. } else if (this.projectType == 'JiJian') {
  370. console.log("基建", item)
  371. let obj = {
  372. value: item.dictValue
  373. };
  374. //this.handleHiddenShare();
  375. uni.navigateTo({
  376. url: '/pages/infrastructure/infrastructure?params=' + encodeURIComponent(JSON
  377. .stringify(
  378. obj))
  379. })
  380. } else if (this.projectType == 'DingGuan') {
  381. console.log("顶管", item)
  382. let obj = {
  383. value: item.dictValue
  384. };
  385. //this.handleHiddenShare();
  386. uni.navigateTo({
  387. url: '/pages/TopPipeWork/TopPipeWork?params=' + encodeURIComponent(JSON
  388. .stringify(
  389. obj))
  390. })
  391. }
  392. },
  393. showGongYe() {
  394. this.projectType = 'GongYe';
  395. //工业工程
  396. getDicts("engin_classification").then(response => {
  397. console.log("工业工程", response.data)
  398. this.typeList = response.data;
  399. console.log("工业工程", response.data)
  400. });
  401. this.handleShowSheet();
  402. },
  403. showTopPipe() {
  404. this.projectType = 'DingGuan';
  405. getDicts("pipe_jack").then(response => {
  406. console.log("顶管工程", response.data)
  407. this.typeList = response.data;
  408. });
  409. this.handleShowSheet();
  410. },
  411. showInfrastructureDialog() {
  412. this.projectType = 'JiJian';
  413. //基建工程
  414. getDicts("engineering_infrastructure").then(response => {
  415. console.log("基建工程", response.data)
  416. this.typeList = response.data;
  417. console.log("基建工程", response.data)
  418. });
  419. this.handleShowSheet();
  420. },
  421. showDangerous() {
  422. console.log("危险作业工程")
  423. uni.navigateTo({
  424. url: '/pages/dangerous/dangerous'
  425. })
  426. },
  427. }
  428. }
  429. </script>
  430. <style lang="scss">
  431. /* #ifndef APP-NVUE */
  432. page {
  433. display: flex;
  434. flex-direction: column;
  435. box-sizing: border-box;
  436. background-color: #fff;
  437. min-height: 100%;
  438. height: auto;
  439. }
  440. view {
  441. font-size: 14px;
  442. line-height: inherit;
  443. }
  444. .work-container {
  445. display: flex;
  446. flex-direction: column;
  447. }
  448. /* #endif */
  449. .text {
  450. text-align: center;
  451. font-size: 26rpx;
  452. margin-top: 10rpx;
  453. }
  454. .grid-item-box {
  455. flex: 1;
  456. /* #ifndef APP-NVUE */
  457. display: flex;
  458. /* #endif */
  459. flex-direction: column;
  460. align-items: center;
  461. justify-content: center;
  462. padding: 15px 0;
  463. }
  464. .uni-margin-wrap {
  465. width: 690rpx;
  466. width: 100%;
  467. ;
  468. }
  469. .swiper {
  470. height: 300rpx;
  471. }
  472. .swiper-box {
  473. height: 150px;
  474. }
  475. .swiper-item {
  476. /* #ifndef APP-NVUE */
  477. display: flex;
  478. /* #endif */
  479. flex-direction: column;
  480. justify-content: center;
  481. align-items: center;
  482. color: #fff;
  483. height: 300rpx;
  484. line-height: 300rpx;
  485. }
  486. @media screen and (min-width: 500px) {
  487. .uni-swiper-dot-box {
  488. width: 400px;
  489. /* #ifndef APP-NVUE */
  490. margin: 0 auto;
  491. /* #endif */
  492. margin-top: 8px;
  493. }
  494. .image {
  495. width: 100%;
  496. }
  497. }
  498. // 弹窗效果
  499. .popup {
  500. position: fixed;
  501. bottom: 0;
  502. left: 0;
  503. width: 100%;
  504. background-color: #fff;
  505. // padding: 20rpx;
  506. box-sizing: border-box;
  507. z-index: 999;
  508. border-top-left-radius: 40rpx;
  509. border-top-right-radius: 40rpx;
  510. }
  511. // 遮罩层
  512. .mask {
  513. position: fixed;
  514. top: 0;
  515. left: 0;
  516. width: 100%;
  517. height: 100%;
  518. background-color: rgba(0, 0, 0, 0.5);
  519. z-index: 888;
  520. }
  521. // 弹窗内容
  522. .content {
  523. .top40 {
  524. margin-top: 30rpx;
  525. }
  526. .line1 {
  527. text-align: center;
  528. display: flex;
  529. justify-content: start;
  530. align-items: center;
  531. padding: 20rpx;
  532. }
  533. .btn-grp {
  534. display: flex;
  535. .btn-grp-item {
  536. width: 33%;
  537. display: flex;
  538. flex-direction: column;
  539. align-items: center;
  540. .line2-btn-big {
  541. width: 128rpx;
  542. height: 128rpx;
  543. margin-bottom: 10rpx;
  544. }
  545. }
  546. }
  547. .line2 {
  548. padding: 20rpx;
  549. // border-bottom: 1px solid black;
  550. view {
  551. margin-bottom: 10rpx;
  552. }
  553. }
  554. }
  555. // 按钮样式
  556. .btn-group {
  557. box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.5);
  558. /* 示例阴影参数,根据需要进行调整 */
  559. .btn_position {
  560. display: flex;
  561. width: 100%;
  562. .cancel {
  563. width: 50%;
  564. text-align: center;
  565. padding: 20rpx 0;
  566. color: #519fe7;
  567. }
  568. .submit {
  569. width: 50%;
  570. background-color: #519fe7;
  571. text-align: center;
  572. padding: 20rpx 0;
  573. color: #fff;
  574. }
  575. }
  576. }
  577. .share {
  578. width: 100%;
  579. height: 100%;
  580. }
  581. .share-box {
  582. width: 100%;
  583. height: 100%;
  584. position: fixed;
  585. top: 0rpx;
  586. left: 0rpx;
  587. bottom: 0rpx;
  588. right: 0rpx;
  589. background-color: rgba(0, 0, 0, 0.4);
  590. transition: .3s;
  591. z-index: 999;
  592. }
  593. // 进入分享动画
  594. .share-show {
  595. transition: all 0.3s ease;
  596. transform: translateY(0%) !important;
  597. }
  598. .scroll-Y {
  599. height: 350rpx;
  600. }
  601. // 离开分享动画
  602. .share-item {
  603. position: fixed;
  604. left: 0;
  605. bottom: 0;
  606. width: 100%;
  607. height: auto;
  608. background-color: #FFFFFF;
  609. transition: all 0.3s ease;
  610. transform: translateY(100%);
  611. z-index: 1999;
  612. border-top-left-radius: 40rpx;
  613. border-top-right-radius: 40rpx;
  614. .share-to {
  615. width: 100%;
  616. height: 3rem;
  617. display: flex;
  618. justify-content: center;
  619. align-items: center;
  620. &::after {
  621. content: '';
  622. width: 240rpx;
  623. height: 0rpx;
  624. border-top: 1px solid #E4E7ED;
  625. -webkit-transform: scaleY(0.5);
  626. transform: scaleY(0.5);
  627. margin-left: 30rpx;
  628. }
  629. &::before {
  630. content: '';
  631. width: 240rpx;
  632. height: 0rpx;
  633. border-top: 1px solid #E4E7ED;
  634. -webkit-transform: scaleY(0.5);
  635. transform: scaleY(0.5);
  636. margin-right: 30rpx;
  637. }
  638. }
  639. .content {
  640. width: 100%;
  641. height: 50%;
  642. display: flex;
  643. flex-wrap: wrap;
  644. .block {
  645. width: 100%;
  646. display: flex;
  647. flex-direction: column;
  648. justify-content: center;
  649. align-items: center;
  650. height: 80rpx;
  651. text {
  652. margin-top: 16rpx;
  653. font-size: 28rpx;
  654. color: #606266;
  655. }
  656. }
  657. }
  658. .cancel {
  659. width: 100%;
  660. height: 3rem;
  661. display: flex;
  662. justify-content: center;
  663. align-items: center;
  664. border-top: 1rpx solid #E4E7ED;
  665. }
  666. }
  667. /*********************九宫格********************* */
  668. .Grid {
  669. display: flex;
  670. flex-wrap: wrap;
  671. justify-content: space-between;
  672. align-content: space-between;
  673. // background: #f7f7f7;
  674. padding: 10rpx 0;
  675. .Grid-Item {
  676. width: 50%;
  677. // height: 100px;
  678. text-align: center;
  679. // border: 1rpx solid #ff0000;
  680. box-sizing: border-box;
  681. .icon-item {
  682. width: 220rpx;
  683. height: 220rpx;
  684. }
  685. .GSimg {
  686. width: 96rpx;
  687. height: 96rpx;
  688. margin-top: 42rpx;
  689. margin-left: 75rpx;
  690. .Image {
  691. width: 96rpx;
  692. height: 96rpx;
  693. }
  694. }
  695. .GStitle {
  696. width: 100%;
  697. color: #516d97;
  698. font-size: 28rpx;
  699. text-align: center;
  700. margin-top: -30rpx;
  701. margin-bottom: 30rpx;
  702. }
  703. }
  704. }
  705. .click-hover {
  706. background-color: #d0d0d0;
  707. }
  708. </style>