achievement.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706
  1. <template>
  2. <div class="main">
  3. <div class="w_1300">
  4. <!-- <div class="active">
  5. <div class="active_1" v-show="industry && industry.length > 0">
  6. <div class="active_left">行业:</div>
  7. <div class="active_right">
  8. <div class="active_label" v-for="(item, index) in industry" :key="index">
  9. {{ item.title }}<el-icon @click="toDel(item, '1')"><Close /></el-icon>
  10. </div>
  11. </div>
  12. </div>
  13. <div class="active_1" v-show="field && field.length > 0">
  14. <div class="active_left">技术领域:</div>
  15. <div class="active_right">
  16. <div class="active_label" v-for="(item, index) in field" :key="index">
  17. {{ item.label }}<el-icon @click="toDel(item, '2')"><Close /></el-icon>
  18. </div>
  19. </div>
  20. </div>
  21. <div class="active_1" v-show="mature && mature.length > 0">
  22. <div class="active_left">成熟度:</div>
  23. <div class="active_right">
  24. <div class="active_label" v-for="(item, index) in mature" :key="index">
  25. {{ item.label }}<el-icon @click="toDel(item, '3')"><Close /></el-icon>
  26. </div>
  27. </div>
  28. </div>
  29. <div class="active_1" v-show="sell && sell.length > 0">
  30. <div class="active_left">出让方式:</div>
  31. <div class="active_right">
  32. <div class="active_label" v-for="(item, index) in sell" :key="index">
  33. {{ item.label }}<el-icon @click="toDel(item, '4')"><Close /></el-icon>
  34. </div>
  35. </div>
  36. </div>
  37. <div class="active_1" v-show="money && money.length > 0">
  38. <div class="active_left">价格:</div>
  39. <div class="active_right">
  40. <div class="active_label" v-for="(item, index) in money" :key="index">
  41. {{ item.label }}<el-icon @click="toDel(item, '5')"><Close /></el-icon>
  42. </div>
  43. </div>
  44. </div>
  45. <div class="active_1" v-show="city && city.length > 0">
  46. <div class="active_left">所在地:</div>
  47. <div class="active_right">
  48. <div class="active_label" v-for="(item, index) in city" :key="index">
  49. {{ item.name }}<el-icon @click="toDel(item, '6')"><Close /></el-icon>
  50. </div>
  51. </div>
  52. </div>
  53. </div> -->
  54. <div class="two">
  55. <div class="twoSeacher">
  56. <div class="twoLeft">
  57. <span>行业</span>
  58. </div>
  59. <div v-if="!oneShow" class="twoRight">
  60. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in plateList.slice(0, 6)" :key="index" @click="toSelect(item, '1')">
  61. {{ item.title }}
  62. </div>
  63. </div>
  64. <div v-else class="twoRight">
  65. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in plateList" :key="index" @click="toSelect(item, '1')">
  66. {{ item.title }}
  67. </div>
  68. </div>
  69. <div class="button">
  70. <span v-if="!oneShow" @click="oneShow = true">
  71. <el-icon><ArrowDown /></el-icon>
  72. </span>
  73. <span v-else @click="oneShow = false">
  74. <el-icon><ArrowUp /></el-icon>
  75. </span>
  76. </div>
  77. </div>
  78. <div class="twoSeacher">
  79. <div class="twoLeft">
  80. <span>技术领域</span>
  81. </div>
  82. <div v-if="!twoShow" class="twoRight">
  83. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in typeList.slice(0, 10)" :key="index" @click="toSelect(item, '2')">
  84. {{ item.label }}
  85. </div>
  86. </div>
  87. <div v-else class="twoRight">
  88. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in typeList" :key="index" @click="toSelect(item, '2')">
  89. {{ item.label }}
  90. </div>
  91. </div>
  92. <div class="button">
  93. <span v-if="!twoShow" @click="twoShow = true">
  94. <el-icon><ArrowDown /></el-icon>
  95. </span>
  96. <span v-else @click="twoShow = false">
  97. <el-icon><ArrowUp /></el-icon>
  98. </span>
  99. </div>
  100. </div>
  101. <div class="twoSeacher">
  102. <div class="twoLeft">
  103. <span>成熟度</span>
  104. </div>
  105. <div class="twoRight">
  106. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in matureList" :key="index" @click="toSelect(item, '3')">
  107. {{ item.label }}
  108. </div>
  109. </div>
  110. </div>
  111. <div class="twoSeacher">
  112. <div class="twoLeft">
  113. <span>出让方式</span>
  114. </div>
  115. <div class="twoRight">
  116. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in sellList" :key="index" @click="toSelect(item, '4')">
  117. {{ item.label }}
  118. </div>
  119. </div>
  120. </div>
  121. <div class="twoSeacher">
  122. <div class="twoLeft">
  123. <span>价格</span>
  124. </div>
  125. <div class="twoRight">
  126. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in moneyList" :key="index" @click="toSelect(item, '5')">
  127. {{ item.label }}
  128. </div>
  129. </div>
  130. </div>
  131. <div class="twoSeacher border">
  132. <div class="twoLeft">
  133. <span>所在地</span>
  134. </div>
  135. <div class="twoRight">
  136. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in cityList" :key="index" @click="toSelect(item, '6')">
  137. {{ item.name }}
  138. </div>
  139. </div>
  140. </div>
  141. <div class="two_ipunt">
  142. <el-input class="input" clearable size="large" v-model="searchForm.name" placeholder="成果名称" />
  143. <el-input class="input" clearable size="large" v-model="searchForm.tags" placeholder="标签名称" />
  144. <el-input class="input" clearable size="large" v-model="searchForm.source" placeholder="项目来源" />
  145. <el-input class="input" clearable size="large" v-model="searchForm.industry" placeholder="所属产业" />
  146. <el-button class="button" size="large" type="primary" @click="toSearchInfo">检索</el-button>
  147. </div>
  148. </div>
  149. <div class="thr">
  150. <div class="list" v-for="(item, index) in list" :key="index" @click="toView(item)">
  151. <div class="list_1">
  152. <el-image class="image" :src="file[index]" fit="fill" />
  153. <div class="box">
  154. <p class="name textMore">{{ item.name || '暂无' }}</p>
  155. </div>
  156. <div class="list_2">
  157. <div class="other">
  158. <el-image class="image" :src="one" fit="fill" />
  159. <div class="text textOne">{{ item.field || '暂无' }}</div>
  160. </div>
  161. <div class="other">
  162. <el-image class="image" :src="two" fit="fill" />
  163. <div class="text textOne">{{ item.person || '暂无' }}</div>
  164. </div>
  165. <div class="other">
  166. <el-image class="image" :src="thr" fit="fill" />
  167. <div class="text textOne">{{ item.source || '暂无' }}</div>
  168. </div>
  169. </div>
  170. </div>
  171. </div>
  172. </div>
  173. <div class="four">
  174. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  175. </div>
  176. </div>
  177. </div>
  178. </template>
  179. <script setup>
  180. // 图片引入
  181. import bg_1 from '/images/achievement/tec_bg_1.png'
  182. import bg_2 from '/images/achievement/tec_bg_2.png'
  183. import bg_3 from '/images/achievement/tec_bg_3.png'
  184. import bg_4 from '/images/achievement/tec_bg_4.png'
  185. import bg_5 from '/images/achievement/tec_bg_6.png'
  186. import bg_6 from '/images/achievement/tec_bg_8.png'
  187. import bg_7 from '/images/achievement/tec_bg_9.png'
  188. import bg_8 from '/images/achievement/tec_bg_10.png'
  189. import bg_9 from '/images/achievement/tec_bg_7.png'
  190. import one from '/images/achievement/bg-cgyx-list-icon1.png'
  191. import two from '/images/achievement/bg-cgyx-list-icon2.png'
  192. import thr from '/images/achievement/bg-cgyx-list-icon3.png'
  193. const $checkRes = inject('$checkRes')
  194. // 接口
  195. import { DictDataStore } from '@/store/api/system/dictData'
  196. import { RegionStore } from '@/store/api/system/region'
  197. import { SectorStore } from '@/store/api/platform/sector'
  198. import { EsStore } from '@/store/api/es'
  199. const esStore = EsStore()
  200. const dictDataStore = DictDataStore()
  201. const regionStore = RegionStore()
  202. const sectorStore = SectorStore()
  203. // 路由
  204. const router = useRouter()
  205. const searchValue = inject('searchValue')
  206. // 加载中
  207. const loading = ref(false)
  208. const file = ref([bg_1, bg_2, bg_3, bg_4, bg_5, bg_6, bg_7, bg_8, bg_9, bg_1, bg_2, bg_3])
  209. // 列表
  210. const list = ref([])
  211. let skip = 0
  212. let limit = inject('limit')
  213. const total = ref(0)
  214. // 是否展开
  215. const oneShow = ref(false)
  216. const twoShow = ref(false)
  217. // 字典表
  218. const moneyList = ref([])
  219. const matureList = ref([])
  220. const sellList = ref([])
  221. const cityList = ref([])
  222. const typeList = ref([])
  223. const plateList = ref([])
  224. // 搜索
  225. const searchForm = ref({})
  226. // 查询
  227. const industry = ref([])
  228. const field = ref([])
  229. const mature = ref([])
  230. const sell = ref([])
  231. const money = ref([])
  232. const city = ref([])
  233. // 请求
  234. onMounted(async () => {
  235. loading.value = true
  236. await searchOther()
  237. await search()
  238. loading.value = false
  239. })
  240. const search = async (query = { skip, limit }) => {
  241. skip = query.skip
  242. limit = query.limit
  243. const info = { skip: query.skip, limit: query.limit, status: '1', is_use: '0', ...searchForm.value }
  244. if (searchValue.value) info.keyword = searchValue.value
  245. const res = await esStore.Sachievement(info)
  246. if (res.errcode == '0') {
  247. list.value = res.data
  248. total.value = res.total
  249. }
  250. }
  251. const searchOther = async () => {
  252. let result
  253. // 技术领域
  254. result = await dictDataStore.query({ code: 'field', is_use: '0' })
  255. if ($checkRes(result)) typeList.value = result.data
  256. // 成熟度
  257. result = await dictDataStore.query({ code: 'mature', is_use: '0' })
  258. if ($checkRes(result)) matureList.value = result.data
  259. // 出让方式
  260. result = await dictDataStore.query({ code: 'sell', is_use: '0' })
  261. if ($checkRes(result)) sellList.value = result.data
  262. // // 技术分类
  263. // result = await dictDataStore.query({ code: 'technology', is_use: '0' })
  264. // if ($checkRes(result)) technologyList.value = result.data
  265. // 价格
  266. result = await dictDataStore.query({ code: 'money', is_use: '0' })
  267. if ($checkRes(result)) moneyList.value = result.data
  268. // 处理数据
  269. for (const val of moneyList.value) {
  270. if (val.value == '0') val.is_active = true
  271. }
  272. matureList.value.unshift({ id: '-1', is_active: true, value: '-1', label: '不限' })
  273. sellList.value.unshift({ id: '-1', is_active: true, value: '-1', label: '不限' })
  274. typeList.value.unshift({ id: '-1', is_active: true, value: '-1', label: '不限' })
  275. result = await regionStore.list({ level: 'city', parent_code: 22 })
  276. if (result.errcode == '0') cityList.value = result.data
  277. cityList.value.unshift({ id: '-1', is_active: true, code: '-1', name: '不限' })
  278. result = await sectorStore.query({ is_use: '0' })
  279. if (result.errcode == '0') plateList.value = result.data
  280. plateList.value.unshift({ id: '-1', is_active: true, title: '不限' })
  281. }
  282. // 搜索
  283. const toSearchInfo = async () => {
  284. await search({ skip, limit })
  285. }
  286. // 查看详情
  287. const toView = async (item) => {
  288. router.push({ path: '/achievement/detail', query: { id: item.id || item._id } })
  289. }
  290. const currentPage = ref(1)
  291. // 分页
  292. const changePage = (page = currentPage.value) => {
  293. search({ skip: (page - 1) * limit, limit: limit })
  294. }
  295. const sizeChange = (limits) => {
  296. limit = limits
  297. currentPage.value = 1
  298. search({ skip: 0, limit: limit })
  299. }
  300. // 筛选条件
  301. const toSearchFind = async () => {
  302. if (industry.value && industry.value.length > 0) {
  303. searchForm.value.industry = industry.value.map((i) => {
  304. return i.title
  305. })
  306. } else delete searchForm.value.industry
  307. if (field.value && field.value.length > 0) {
  308. searchForm.value.field = field.value.map((i) => {
  309. return i.label
  310. })
  311. } else delete searchForm.value.field
  312. if (mature.value && mature.value.length > 0) {
  313. searchForm.value.mature = mature.value.map((i) => {
  314. return i.value
  315. })
  316. } else delete searchForm.value.mature
  317. if (sell.value && sell.value.length > 0) {
  318. searchForm.value.sell = sell.value.map((i) => {
  319. return i.value
  320. })
  321. } else delete searchForm.value.sell
  322. if (money.value && money.value.length > 0) {
  323. searchForm.value.money = money.value.map((i) => {
  324. return i.value
  325. })
  326. } else delete searchForm.value.money
  327. if (city.value && city.value.length > 0) {
  328. searchForm.value.area = city.value.map((i) => {
  329. return i.name
  330. })
  331. } else delete searchForm.value.area
  332. await search({ skip, limit })
  333. }
  334. const toSelect = async (data, type) => {
  335. if (data.is_active) {
  336. toDel(data, type)
  337. } else {
  338. if (data.id != '-1') {
  339. if (type == '1') {
  340. for (const val of plateList.value) {
  341. if (data.id == val.id) val.is_active = true
  342. if (val.id == '-1') val.is_active = false
  343. }
  344. const res = industry.value.find((i) => i.id == data.id)
  345. if (!res) industry.value.push(data)
  346. } else if (type == '2') {
  347. for (const val of typeList.value) {
  348. if (data.id == val.id) val.is_active = true
  349. if (val.id == '-1') val.is_active = false
  350. }
  351. const res = field.value.find((i) => i.id == data.id)
  352. if (!res) field.value.push(data)
  353. } else if (type == '3') {
  354. for (const val of matureList.value) {
  355. if (data.id == val.id) val.is_active = true
  356. if (val.id == '-1') val.is_active = false
  357. }
  358. const res = mature.value.find((i) => i.id == data.id)
  359. if (!res) mature.value.push(data)
  360. } else if (type == '4') {
  361. for (const val of sellList.value) {
  362. if (data.id == val.id) val.is_active = true
  363. if (val.id == '-1') val.is_active = false
  364. }
  365. const res = sell.value.find((i) => i.id == data.id)
  366. if (!res) sell.value.push(data)
  367. } else if (type == '5') {
  368. if (data.value != '0') {
  369. for (const val of moneyList.value) {
  370. if (data.id == val.id) val.is_active = true
  371. if (val.value == '0') val.is_active = false
  372. }
  373. const res = money.value.find((i) => i.id == data.id)
  374. if (!res) money.value.push(data)
  375. } else {
  376. for (const val of moneyList.value) {
  377. if (val.value == '0') val.is_active = true
  378. else val.is_active = false
  379. }
  380. money.value = []
  381. }
  382. } else {
  383. for (const val of cityList.value) {
  384. if (data.id == val.id) val.is_active = true
  385. if (val.id == '-1') val.is_active = false
  386. }
  387. const res = city.value.find((i) => i.id == data.id)
  388. if (!res) city.value.push(data)
  389. }
  390. } else {
  391. if (type == '1') {
  392. for (const val of plateList.value) {
  393. if (val.id == '-1') val.is_active = true
  394. else val.is_active = false
  395. }
  396. industry.value = []
  397. } else if (type == '2') {
  398. for (const val of typeList.value) {
  399. if (val.id == '-1') val.is_active = true
  400. else val.is_active = false
  401. }
  402. field.value = []
  403. } else if (type == '3') {
  404. for (const val of matureList.value) {
  405. if (val.id == '-1') val.is_active = true
  406. else val.is_active = false
  407. }
  408. mature.value = []
  409. } else if (type == '4') {
  410. for (const val of sellList.value) {
  411. if (val.id == '-1') val.is_active = true
  412. else val.is_active = false
  413. }
  414. sell.value = []
  415. } else if (type == '5') {
  416. for (const val of moneyList.value) {
  417. if (val.value == '0') val.is_active = true
  418. else val.is_active = false
  419. }
  420. money.value = []
  421. } else {
  422. for (const val of cityList.value) {
  423. if (val.id == '-1') val.is_active = true
  424. else val.is_active = false
  425. }
  426. city.value = []
  427. }
  428. }
  429. }
  430. await toSearchFind()
  431. }
  432. const toDel = async (data, type) => {
  433. if (type == '1') {
  434. for (const val of plateList.value) {
  435. if (data.id == val.id) val.is_active = false
  436. }
  437. industry.value = industry.value.filter((f) => f.id != data.id)
  438. if (industry.value.length == 0) {
  439. for (const val of plateList.value) {
  440. if (val.id == '-1') val.is_active = true
  441. }
  442. }
  443. } else if (type == '2') {
  444. for (const val of typeList.value) {
  445. if (data.id == val.id) val.is_active = false
  446. }
  447. field.value = field.value.filter((f) => f.id != data.id)
  448. if (field.value.length == 0) {
  449. for (const val of typeList.value) {
  450. if (val.id == '-1') val.is_active = true
  451. }
  452. }
  453. } else if (type == '3') {
  454. for (const val of matureList.value) {
  455. if (data.id == val.id) val.is_active = false
  456. }
  457. mature.value = mature.value.filter((f) => f.id != data.id)
  458. if (mature.value.length == 0) {
  459. for (const val of matureList.value) {
  460. if (val.id == '-1') val.is_active = true
  461. }
  462. }
  463. } else if (type == '4') {
  464. for (const val of sellList.value) {
  465. if (data.id == val.id) val.is_active = false
  466. }
  467. sell.value = sell.value.filter((f) => f.id != data.id)
  468. if (sell.value.length == 0) {
  469. for (const val of sellList.value) {
  470. if (val.id == '-1') val.is_active = true
  471. }
  472. }
  473. } else if (type == '5') {
  474. for (const val of moneyList.value) {
  475. if (data.id == val.id) val.is_active = false
  476. }
  477. money.value = money.value.filter((f) => f.id != data.id)
  478. if (money.value.length == 0) {
  479. for (const val of moneyList.value) {
  480. if (val.value == '0') val.is_active = true
  481. }
  482. }
  483. } else {
  484. for (const val of cityList.value) {
  485. if (data.id == val.id) val.is_active = false
  486. }
  487. city.value = city.value.filter((f) => f.id != data.id)
  488. if (city.value.length == 0) {
  489. for (const val of cityList.value) {
  490. if (val.id == '-1') val.is_active = true
  491. }
  492. }
  493. }
  494. await toSearchFind()
  495. }
  496. defineExpose({
  497. search
  498. })
  499. </script>
  500. <style scoped lang="scss">
  501. .main {
  502. .one {
  503. .image {
  504. width: 100%;
  505. height: 350px;
  506. }
  507. }
  508. .active {
  509. .active_1 {
  510. display: inline-flex;
  511. background: #f5f7f9;
  512. border-radius: 2px;
  513. min-height: 28px;
  514. line-height: 28px;
  515. margin: 0 10px 0 0;
  516. position: relative;
  517. background-color: #fff;
  518. padding: 0 10px;
  519. .active_left {
  520. flex: 0 0 auto;
  521. font-family: PingFangSC-Regular;
  522. color: #525a68;
  523. line-height: 36px;
  524. }
  525. .active_right {
  526. font-family: PingFangSC-Regular;
  527. color: rgba(0, 0, 0, 0.85);
  528. line-height: 28px;
  529. padding-right: 4px;
  530. display: flex;
  531. flex-wrap: wrap;
  532. overflow: hidden;
  533. .active_label {
  534. overflow: hidden;
  535. display: inline-block;
  536. margin-right: 10px;
  537. margin-top: 3px;
  538. margin-bottom: 3px;
  539. padding: 10px;
  540. display: flex;
  541. align-items: center;
  542. flex: none;
  543. box-sizing: border-box;
  544. max-width: 100%;
  545. height: 30px;
  546. background: #f5f5f5;
  547. border: 1px solid #f0f0f0;
  548. border-radius: 2px;
  549. cursor: default;
  550. }
  551. }
  552. }
  553. }
  554. .two {
  555. margin: 10px 0;
  556. background-color: $global-color-fff;
  557. .twoSeacher {
  558. display: flex;
  559. justify-content: center;
  560. align-items: stretch;
  561. position: relative;
  562. border: solid 1px #e5e5e5;
  563. border-bottom: 0;
  564. font-size: $global-font-size-18;
  565. color: #666;
  566. min-height: 60px;
  567. overflow: hidden;
  568. .twoLeft {
  569. display: flex;
  570. justify-content: center;
  571. align-items: center;
  572. flex-shrink: 0;
  573. width: 110px;
  574. text-align: center;
  575. color: #000;
  576. font-weight: bold;
  577. background-color: #fafafa;
  578. }
  579. .twoRight {
  580. display: flex;
  581. flex-wrap: wrap;
  582. align-items: center;
  583. padding: 12px;
  584. flex: 1;
  585. border-left: solid 1px #e5e5e5;
  586. background-color: #fff;
  587. .label {
  588. margin-right: 3px;
  589. color: #313131;
  590. margin-bottom: 10px;
  591. padding: 8px 10px;
  592. border-radius: 3px;
  593. background-color: #fff;
  594. border: solid 1px transparent;
  595. cursor: pointer;
  596. }
  597. .show {
  598. color: #0a58c2;
  599. border: solid 1px #006dd2;
  600. }
  601. .label:hover {
  602. color: $global-color-107;
  603. }
  604. }
  605. .button {
  606. display: flex;
  607. align-items: center;
  608. margin: 0 5px 0 0;
  609. }
  610. }
  611. .border {
  612. border: solid 1px #e5e5e5;
  613. border-bottom: 1 !important;
  614. }
  615. .two_ipunt {
  616. display: flex;
  617. align-items: center;
  618. justify-content: space-between;
  619. margin: 10px 0;
  620. .input {
  621. margin: 0 5px 0 0;
  622. }
  623. .button {
  624. margin: 0 0 0 5px;
  625. }
  626. }
  627. }
  628. .thr {
  629. margin: 10px 0;
  630. display: flex;
  631. flex-wrap: wrap;
  632. align-items: center;
  633. .list {
  634. margin-right: 10px;
  635. margin-bottom: 15px;
  636. padding-top: 3px;
  637. width: 317px;
  638. height: 325px;
  639. background-color: #fff;
  640. box-shadow: 0 2px 5px 0 rgba(159, 158, 158, 0.3);
  641. .list_1 {
  642. position: relative;
  643. .image {
  644. height: 100%;
  645. width: 100%;
  646. }
  647. .box {
  648. display: flex !important;
  649. align-items: center;
  650. position: absolute;
  651. top: 45px;
  652. left: 0;
  653. padding: 15px 10px;
  654. width: 100%;
  655. height: 82px;
  656. background-color: rgba(0, 25, 79, 0.5);
  657. font-size: $global-font-size-18;
  658. line-height: 24px;
  659. color: #fff;
  660. }
  661. }
  662. .list_2 {
  663. margin: 10px 13px 0;
  664. .other {
  665. display: flex;
  666. align-items: center;
  667. margin: 0 0 5px 0;
  668. .image {
  669. width: 25px;
  670. height: 25px;
  671. margin: 0 5px 0 0;
  672. }
  673. .text {
  674. max-width: 260px;
  675. font-size: $global-font-size-16;
  676. line-height: 32px;
  677. color: #404040;
  678. }
  679. }
  680. }
  681. }
  682. .list:nth-child(4n) {
  683. margin-right: 0;
  684. }
  685. .list:hover {
  686. box-shadow: 0 2px 5px 0 rgba(159, 158, 158, 0.8);
  687. }
  688. }
  689. .four {
  690. display: flex;
  691. justify-content: center;
  692. margin: 20px 0;
  693. }
  694. }
  695. </style>