page.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825
  1. <template>
  2. <div class="page">
  3. <div class="title">
  4. <el-image class="image" :src="left" fit="fill" />
  5. <div class="title_center">新闻资讯</div>
  6. <el-image class="image" :src="right" fit="fill" />
  7. </div>
  8. <div class="one" data-aos="fade-up" data-aos-duration="1000">
  9. <div class="one_left">
  10. <el-carousel height="680px">
  11. <el-carousel-item v-for="(item, index) in carouselList" :key="index">
  12. <el-image class="image" :src="getUrl(item)" fit="fill" @click="toRedirect(item)" />
  13. </el-carousel-item>
  14. </el-carousel>
  15. </div>
  16. <div class="one_right">
  17. <div class="right_1">
  18. <div class="right_left">
  19. <span class="tab" :class="[item.value == active ? 'active' : '']" v-for="(item, index) in newList" :key="index" @click="toActive(item)">{{ item.label }}</span>
  20. </div>
  21. <div class="right_right" @click="toMore(0)">查看更多</div>
  22. </div>
  23. <div class="right_2">
  24. <vue3-seamless-scroll :list="list" :hover="true" :step="0.5" :wheel="true" :isWatch="true">
  25. <div class="list" v-for="(item, index) in list" :key="index" @click="toView(item, '0')">
  26. <div class="left">
  27. <el-image class="image" v-if="item.logo && item.logo.length > 0" :src="getFile(item.logo)" fit="fill">
  28. <template v-slot:error>
  29. <el-image class="image" :src="new_4" fit="fill" />
  30. </template>
  31. </el-image>
  32. <el-image class="image" v-else :src="new_4" fit="fill" />
  33. </div>
  34. <div class="right">
  35. <div class="new_title textOne">
  36. {{ item.title || '暂无标题' }}
  37. </div>
  38. <div class="new_content textMore">{{ removeHtmlStyle(item.content) || '暂无内容' }}</div>
  39. <div class="new_time">{{ moment(item.time).format('YYYY-MM-DD') || '暂无时间' }}</div>
  40. </div>
  41. </div>
  42. </vue3-seamless-scroll>
  43. </div>
  44. </div>
  45. </div>
  46. <div class="two" data-aos="fade-up" data-aos-duration="1000">
  47. <div class="title">
  48. <el-image class="image" :src="left" fit="fill" />
  49. <div class="title_center">数据展示</div>
  50. <el-image class="image" :src="right" fit="fill" />
  51. </div>
  52. <div class="two_1">
  53. <div class="twoList" v-for="(item, index) in recordList" :key="index" @click="toSelect(item)">
  54. <div class="two_num">
  55. <span>{{ item.num || 0 }}+</span>
  56. <span>{{ item.unit || '' }}</span>
  57. </div>
  58. <div class="two_title">{{ item.name || '暂无名称' }}</div>
  59. </div>
  60. </div>
  61. <div class="two_2">
  62. <div class="two_title">{{ recordInfo.name }}数据分析</div>
  63. <div class="two_content">
  64. <cecharts1 v-if="recordInfo.id == '1'"></cecharts1>
  65. <secharts1 v-if="recordInfo.id == '2'"></secharts1>
  66. <decharts1 v-if="recordInfo.id == '3'"></decharts1>
  67. <pecharts1 v-if="recordInfo.id == '4'"></pecharts1>
  68. <aecharts1 v-if="recordInfo.id == '5'"></aecharts1>
  69. </div>
  70. </div>
  71. </div>
  72. <div class="thr" data-aos="fade-up" data-aos-duration="1000">
  73. <div class="title">
  74. <el-image class="image" :src="left" fit="fill" />
  75. <div class="title_center">成果展示</div>
  76. <el-image class="image" :src="right" fit="fill" />
  77. </div>
  78. <div class="more">
  79. <div class="more_title" @click="toMore(2)">查看更多</div>
  80. </div>
  81. <div class="thr_1">
  82. <div class="w_1700">
  83. <div class="list" v-for="(item, index) in achieveList" :key="index" @click="toView(item, '2')">
  84. <div class="other_1">
  85. <div class="round"></div>
  86. <div class="name">{{ item.name || '暂无成果名称' }}</div>
  87. </div>
  88. <div class="other_2" v-if="user && user.id"><span>技术领域:</span>{{ item.field || '暂无' }}</div>
  89. <div class="other_2" v-if="user && user.id"><span>负责人:</span>{{ item.person || '暂无' }}</div>
  90. <div class="other_2" v-if="user && user.id"><span>来源:</span>{{ item.source || '暂无' }}</div>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
  95. <div class="four" data-aos="fade-up" data-aos-duration="1000">
  96. <div class="title">
  97. <el-image class="image" :src="left" fit="fill" />
  98. <div class="title_center">孵化体系</div>
  99. <el-image class="image" :src="right" fit="fill" />
  100. </div>
  101. <div class="more">
  102. <div class="more_title" @click="toMore(1)">查看更多</div>
  103. </div>
  104. <div class="four_1">
  105. <div class="list" v-for="(item, index) in incubatorList" :key="index" @mouseover="handleMouseOver(index)" @mouseout="handleMousOut(index)">
  106. <div class="list_1" :class="[item.hover ? 'menuTrue' : '']">
  107. <el-image class="image" :src="getFile(item.logo)" fit="fill">
  108. <template v-slot:error>
  109. <el-image class="image" :src="baseLogo" fit="fill" />
  110. </template>
  111. </el-image>
  112. <div class="square" :class="`square` + [index]"></div>
  113. <div class="content" :class="`content` + [index]">
  114. <div class="name">{{ item.name || '暂无孵化基地名称' }}</div>
  115. <div class="other_1"><span>负责人姓名:</span>{{ item.person || '暂无' }}</div>
  116. <div class="other_1"><span>负责人联系电话:</span>{{ item.person_phone || '暂无' }}</div>
  117. <div class="other_1"><span>地址:</span>{{ getArea(item.area) || '暂无' }}</div>
  118. <div class="button">
  119. <button @click="toView(item, '1')">查看详情</button>
  120. </div>
  121. </div>
  122. </div>
  123. <div class="list_2" :class="[item.hover ? '' : 'menuTrue']">
  124. <div class="content" :class="`content` + [index]">
  125. <div class="name">{{ item.name || '暂无孵化基地名称' }}</div>
  126. <div class="other_1">
  127. {{ removeHtmlStyle(item.brief) || '暂无简介' }}
  128. </div>
  129. <div class="button">
  130. <button @click="toView(item, '1')">查看详情</button>
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. <div class="join">
  137. <div class="join_bg"></div>
  138. <div class="join_scroll">
  139. <div class="join_shadow">
  140. <div class="join_shadow_left"></div>
  141. <div class="join_shadow_right"></div>
  142. </div>
  143. <div class="join_top">
  144. <div class="join_item" v-for="(item, index) in friendList" :key="index" @click="toFriend(item)">
  145. <el-image class="image" :src="getFile(item.url)" fit="fill">
  146. <template v-slot:error>
  147. <el-image class="image" :src="friend" fit="fill" />
  148. </template>
  149. </el-image>
  150. <div class="name">{{ item.name }}</div>
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. </div>
  156. </div>
  157. </template>
  158. <script setup>
  159. import moment from 'moment'
  160. import { get } from 'lodash-es'
  161. import { useNumberAnimation } from '@/utils/animation'
  162. // 图片引入
  163. import left from '/images/top-left.png'
  164. import right from '/images/top-right.png'
  165. import new_4 from '/images/new_4.png'
  166. import friend from '/images/friend.jpeg'
  167. import baseLogo from '/images/base.jpg'
  168. // 组件
  169. import cecharts1 from './parts/echarts1.vue'
  170. import secharts1 from './parts/echarts2.vue'
  171. import decharts1 from './parts/echarts3.vue'
  172. import pecharts1 from './parts/echarts4.vue'
  173. import aecharts1 from './parts/echarts5.vue'
  174. // 用户信息
  175. import { UserStore } from '@/store/user'
  176. const userStore = UserStore()
  177. const user = computed(() => userStore.user)
  178. // 路由
  179. const router = useRouter()
  180. const props = defineProps({
  181. carouselList: { type: Array, default: () => [] },
  182. friendList: { type: Array, default: () => [] },
  183. incubatorList: { type: Array, default: () => [] },
  184. achieveList: { type: Array, default: () => [] },
  185. recordList: { type: Array, default: () => [] },
  186. list: { type: Array, default: () => [] }
  187. })
  188. const { carouselList, incubatorList, recordList } = toRefs(props)
  189. const emits = defineEmits(['toActive'])
  190. const active = ref('0')
  191. const recordInfo = ref({})
  192. const newList = ref([
  193. { value: '0', label: '政策信息' },
  194. { value: '1', label: '新闻通知' },
  195. { value: '2', label: '行业动态' }
  196. ])
  197. const toActive = async (item) => {
  198. active.value = item.value
  199. emits('toActive', item.value)
  200. }
  201. const toRedirect = (data) => {
  202. const to = get(data, 'to')
  203. if (to) window.open(to)
  204. }
  205. const getUrl = (item) => {
  206. if (item) return `${import.meta.env.VITE_APP_HOST}${item.uri}`
  207. }
  208. const getFile = (item) => {
  209. if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
  210. }
  211. // 查看详情
  212. const toView = (item, type) => {
  213. if (type == '0') router.push({ path: '/news/detail', query: { id: item.id || item._id } })
  214. else {
  215. if (user.value.id) {
  216. if (type == '1') router.push({ path: '/base/detail', query: { id: item.id || item._id } })
  217. else router.push({ path: '/achievement/detail', query: { id: item.id || item._id } })
  218. } else ElMessage({ message: '未登录!', type: 'error' })
  219. }
  220. }
  221. // 查看更多
  222. const toMore = (type) => {
  223. if (type == '0') router.push({ path: '/news' })
  224. if (type == '1') router.push({ path: '/base' })
  225. if (type == '2') router.push({ path: '/nine' })
  226. }
  227. // 地区
  228. const getArea = (data) => {
  229. if (data) return data.join('-')
  230. else return '暂无地区'
  231. }
  232. // 富文本处理
  233. const removeHtmlStyle = (html) => {
  234. let relStyle = /style\s*?=\s*?([‘"])[\s\S]*?\1/g //去除样式
  235. let relTag = /<.+?>/g //去除标签
  236. let relClass = /class\s*?=\s*?([‘"])[\s\S]*?\1/g // 清除类名
  237. let newHtml = ''
  238. if (html) {
  239. newHtml = html.replace(relStyle, '')
  240. newHtml = newHtml.replace(relTag, '')
  241. newHtml = newHtml.replace(relClass, '')
  242. }
  243. return newHtml
  244. }
  245. const handleMouseOver = (index) => {
  246. incubatorList.value[index].hover = true
  247. }
  248. const handleMousOut = (index) => {
  249. incubatorList.value[index].hover = false
  250. }
  251. // 选择数据分析
  252. const toSelect = (item) => {
  253. recordInfo.value = item
  254. }
  255. // 查看合作伙伴下级
  256. const toFriend = (item) => {
  257. console.log(item)
  258. router.push({ path: '/friend/detail', query: { code: item.code } })
  259. }
  260. // 请求
  261. onMounted(() => {
  262. setTimeout(async () => {
  263. await Animation()
  264. }, 2000)
  265. })
  266. // 选择数据分析
  267. const Animation = () => {
  268. if (recordList.value && recordList.value.length > 0) {
  269. for (const val of recordList.value) {
  270. useNumberAnimation({
  271. from: 0,
  272. to: val.num,
  273. duration: 3000,
  274. onProgress: (v) => {
  275. if (v) val.num = v.toFixed(0)
  276. }
  277. })
  278. }
  279. }
  280. }
  281. watch(
  282. recordList,
  283. (item) => {
  284. recordInfo.value = item[0]
  285. },
  286. {
  287. deep: true
  288. }
  289. )
  290. </script>
  291. <style scoped lang="scss">
  292. .page {
  293. .title {
  294. display: flex;
  295. align-items: end;
  296. justify-content: center;
  297. margin: 30px;
  298. .image {
  299. margin: 0 10px;
  300. vertical-align: middle;
  301. border-style: none;
  302. }
  303. .title_center {
  304. font-size: $global-font-size-28;
  305. font-weight: 600;
  306. }
  307. }
  308. .one {
  309. max-width: 1700px;
  310. margin: 0 auto;
  311. height: 680px;
  312. display: flex;
  313. .one_left {
  314. width: 65%;
  315. .image {
  316. height: 100%;
  317. width: 100%;
  318. }
  319. }
  320. .one_right {
  321. width: 35%;
  322. padding: 0 0 0 10px;
  323. .right_1 {
  324. display: flex;
  325. align-items: center;
  326. justify-content: space-between;
  327. .right_left {
  328. font-size: $global-font-size-20;
  329. .tab {
  330. margin: 0 15px 0 0;
  331. cursor: pointer;
  332. }
  333. .active {
  334. color: #006cff;
  335. position: relative;
  336. }
  337. .active::after {
  338. position: absolute;
  339. bottom: -15px;
  340. left: 50%;
  341. margin-left: -10px;
  342. width: 14px;
  343. height: 8px;
  344. background: url(/images/icon-downarw.png) no-repeat;
  345. content: '';
  346. }
  347. }
  348. .right_right {
  349. font-size: 16px;
  350. padding: 5px;
  351. color: #fff;
  352. background-color: #006cff;
  353. border-radius: 40px;
  354. cursor: default;
  355. }
  356. .right_right:hover {
  357. background-color: #475b86;
  358. }
  359. }
  360. .right_2 {
  361. height: 630px;
  362. overflow: hidden;
  363. margin: 20px 0 0 0;
  364. .list {
  365. display: flex;
  366. border-bottom: 1px dashed #e5e5e5;
  367. .left {
  368. width: 150px;
  369. margin: 0 10px 0 0;
  370. .image {
  371. width: 150px;
  372. height: 100px;
  373. }
  374. }
  375. .right {
  376. width: 750px;
  377. padding: 10px 0;
  378. .new_title {
  379. font-size: $global-font-size-18;
  380. font-weight: 600;
  381. color: #2e343c;
  382. cursor: default;
  383. }
  384. .new_title:hover {
  385. color: #006cff;
  386. }
  387. .new_content {
  388. margin: 10px 0;
  389. }
  390. .new_time {
  391. color: #999;
  392. font-size: $global-font-size-14;
  393. }
  394. }
  395. }
  396. }
  397. }
  398. }
  399. .two {
  400. max-width: 1700px;
  401. margin: 0 auto 10px;
  402. .two_1 {
  403. display: flex;
  404. align-items: center;
  405. justify-content: space-between;
  406. height: 111px;
  407. background-image: linear-gradient(0deg, #eeeffb 0, #fff 100%), linear-gradient(#fff, #fff);
  408. background-blend-mode: normal, normal;
  409. box-shadow: 0 0 16px 0 rgba(72, 117, 229, 0.5);
  410. border-radius: 6px;
  411. .twoList {
  412. text-align: center;
  413. width: 340px;
  414. border-right: 1px solid #d6d9e2;
  415. cursor: default;
  416. .two_num {
  417. color: #1054ee;
  418. span:first-child {
  419. font-size: 28px;
  420. font-family: '微软雅黑';
  421. line-height: 28px;
  422. height: 28px;
  423. overflow: hidden;
  424. display: inline-block;
  425. position: relative;
  426. font-weight: bold;
  427. }
  428. span:last-child {
  429. font-size: 20px;
  430. }
  431. }
  432. .two_title {
  433. margin: 10px 0 0 0;
  434. font-size: 18px;
  435. color: #676767;
  436. }
  437. }
  438. }
  439. .two_2 {
  440. margin: 10px 0 0 0;
  441. .two_title {
  442. height: 90px;
  443. line-height: 90px;
  444. text-align: center;
  445. font-size: 30px;
  446. color: #323232;
  447. }
  448. .two_content {
  449. margin: 20px 0 0 0;
  450. }
  451. }
  452. }
  453. .thr {
  454. background: #f1f6f9;
  455. background-image: url(/images/con1-bg.png);
  456. background-size: 100% 100%;
  457. padding: 10px 0 0 0;
  458. .more {
  459. max-width: 1700px;
  460. margin: 0 auto 10px;
  461. display: flex;
  462. justify-content: flex-end;
  463. .more_title {
  464. font-size: 16px;
  465. padding: 5px;
  466. color: #fff;
  467. background-color: #006cff;
  468. border-radius: 40px;
  469. cursor: default;
  470. }
  471. .more_title:hover {
  472. background-color: #475b86;
  473. }
  474. }
  475. .thr_1 {
  476. padding: 10px 0 10px;
  477. .w_1700 {
  478. max-width: 1700px;
  479. margin: 0 auto;
  480. display: flex;
  481. justify-content: space-between;
  482. flex-wrap: wrap;
  483. .list {
  484. margin-bottom: 15px;
  485. padding-top: 18px;
  486. width: 413px;
  487. padding: 20px;
  488. background-color: #ffffff;
  489. border-radius: 10px;
  490. .other_1 {
  491. display: flex;
  492. align-items: center;
  493. margin: 0 0 20px 0;
  494. .round {
  495. flex: 0 0 auto;
  496. margin-right: 6px;
  497. width: 12px;
  498. height: 12px;
  499. border-radius: 50%;
  500. border: 2.4px solid #2374ff;
  501. }
  502. .name {
  503. font-family: PingFangSC-Medium;
  504. font-size: 20px;
  505. font-weight: 500;
  506. overflow: hidden;
  507. text-overflow: ellipsis;
  508. display: -webkit-box;
  509. -webkit-line-clamp: 1;
  510. -webkit-box-orient: vertical;
  511. }
  512. }
  513. .other_2 {
  514. margin: 0 0 10px 22px;
  515. font-family: PingFangSC-Medium;
  516. font-size: 18px;
  517. font-weight: 500;
  518. overflow: hidden;
  519. text-overflow: ellipsis;
  520. display: -webkit-box;
  521. -webkit-line-clamp: 1;
  522. -webkit-box-orient: vertical;
  523. span {
  524. color: #7e8288;
  525. }
  526. }
  527. }
  528. .list:hover {
  529. box-shadow: 0px 10px 30px #d5eaf3;
  530. }
  531. }
  532. }
  533. }
  534. .four {
  535. .more {
  536. max-width: 1700px;
  537. margin: 0 auto 10px;
  538. display: flex;
  539. justify-content: flex-end;
  540. .more_title {
  541. font-size: 16px;
  542. padding: 5px;
  543. color: #fff;
  544. background-color: #006cff;
  545. border-radius: 40px;
  546. cursor: default;
  547. }
  548. .more_title:hover {
  549. background-color: #475b86;
  550. }
  551. }
  552. .four_1 {
  553. max-width: 1700px;
  554. margin: 0 auto 10px;
  555. display: flex;
  556. justify-content: space-between;
  557. .list {
  558. cursor: pointer;
  559. width: 420px;
  560. height: 500px;
  561. position: relative;
  562. transition: all 0.5s ease-in-out;
  563. transform-style: preserve-3d;
  564. .list_1 {
  565. width: 420px;
  566. height: 500px;
  567. .image {
  568. width: 420px;
  569. height: 250px;
  570. }
  571. .square {
  572. position: relative;
  573. width: 0;
  574. height: 0;
  575. border-right: 238px solid transparent;
  576. margin-top: -43px;
  577. z-index: 1;
  578. }
  579. .square0 {
  580. border-bottom: 40px solid #00a9bb;
  581. }
  582. .square1 {
  583. border-bottom: 40px solid rgb(28, 102, 231);
  584. }
  585. .square2 {
  586. border-bottom: 40px solid rgb(104, 45, 255);
  587. }
  588. .square3 {
  589. border-bottom: 40px solid rgb(28, 102, 231);
  590. }
  591. .content {
  592. padding: 12px 20px;
  593. height: 250px;
  594. .name {
  595. height: 28px;
  596. line-height: 28px;
  597. font-family: PingFangSC-Medium;
  598. font-size: 22px;
  599. color: #fff;
  600. font-weight: 500;
  601. margin-bottom: 12px;
  602. overflow: hidden;
  603. text-overflow: ellipsis;
  604. display: -webkit-box;
  605. -webkit-line-clamp: 1;
  606. -webkit-box-orient: vertical;
  607. }
  608. .other_1 {
  609. color: #fff;
  610. overflow: hidden;
  611. text-overflow: ellipsis;
  612. display: -webkit-box;
  613. -webkit-line-clamp: 3;
  614. -webkit-box-orient: vertical;
  615. font-size: 16px;
  616. line-height: 21px;
  617. font-weight: 400;
  618. margin-bottom: 10px;
  619. }
  620. .button {
  621. text-align: center;
  622. button {
  623. width: 165px;
  624. height: 40px;
  625. border: 1px solid #fff;
  626. line-height: 36px;
  627. text-align: center;
  628. color: #fff;
  629. font-size: 16px;
  630. background: inherit;
  631. margin: 65px auto 0px;
  632. display: block;
  633. }
  634. }
  635. }
  636. .content0 {
  637. background-image: linear-gradient(180deg, rgba(0, 181, 182, 0), #00a9bb 0, #0098d2);
  638. }
  639. .content1 {
  640. background-image: linear-gradient(rgba(28, 102, 231, 0) 0%, rgb(28, 102, 231) 0%, rgb(76, 81, 236) 100%);
  641. }
  642. .content2 {
  643. background-image: linear-gradient(179deg, rgba(127, 76, 255, 0) 0%, rgb(104, 45, 255) 0%, rgb(117, 45, 255) 100%);
  644. }
  645. .content3 {
  646. background-image: linear-gradient(rgba(28, 102, 231, 0) 0%, rgb(28, 102, 231) 0%, rgb(76, 81, 236) 100%);
  647. }
  648. }
  649. .list_2 {
  650. width: 420px;
  651. height: 500px;
  652. .content {
  653. padding: 12px 20px;
  654. height: 500px;
  655. .name {
  656. height: 28px;
  657. line-height: 28px;
  658. font-family: PingFangSC-Medium;
  659. font-size: 24px;
  660. color: #fff;
  661. font-weight: 500;
  662. margin-bottom: 12px;
  663. overflow: hidden;
  664. text-overflow: ellipsis;
  665. display: -webkit-box;
  666. -webkit-line-clamp: 1;
  667. -webkit-box-orient: vertical;
  668. }
  669. .other_1 {
  670. height: 360px;
  671. color: #fff;
  672. overflow: hidden;
  673. text-overflow: ellipsis;
  674. display: -webkit-box;
  675. -webkit-line-clamp: 9;
  676. -webkit-box-orient: vertical;
  677. font-size: 14px;
  678. line-height: 21px;
  679. font-weight: 400;
  680. margin-bottom: 38px;
  681. }
  682. .button {
  683. text-align: center;
  684. button {
  685. width: 165px;
  686. height: 40px;
  687. border: 1px solid #fff;
  688. line-height: 36px;
  689. text-align: center;
  690. color: #fff;
  691. font-size: 16px;
  692. background: inherit;
  693. margin: 30px auto 0px;
  694. display: block;
  695. }
  696. }
  697. }
  698. .content0 {
  699. background-image: linear-gradient(180deg, rgba(0, 181, 182, 0), #00a9bb 0, #0098d2);
  700. }
  701. .content1 {
  702. background-image: linear-gradient(rgba(28, 102, 231, 0) 0%, rgb(28, 102, 231) 0%, rgb(76, 81, 236) 100%);
  703. }
  704. .content2 {
  705. background-image: linear-gradient(179deg, rgba(127, 76, 255, 0) 0%, rgb(104, 45, 255) 0%, rgb(117, 45, 255) 100%);
  706. }
  707. .content3 {
  708. background-image: linear-gradient(rgba(28, 102, 231, 0) 0%, rgb(28, 102, 231) 0%, rgb(76, 81, 236) 100%);
  709. }
  710. }
  711. .menuTrue {
  712. display: none;
  713. transition: all 0.5s ease-in-out;
  714. transform-style: preserve-3d;
  715. }
  716. }
  717. }
  718. .join {
  719. margin: auto;
  720. width: 100%;
  721. position: relative;
  722. overflow: hidden;
  723. display: flex;
  724. padding-top: 48px;
  725. justify-content: center;
  726. .join_bg {
  727. margin: 0 auto;
  728. max-width: 1700px;
  729. position: absolute;
  730. z-index: -100;
  731. top: 0;
  732. height: 300px;
  733. background: linear-gradient(270deg, #7aa4ff 39.53%, #b7fff5 81.34%);
  734. mix-blend-mode: normal;
  735. opacity: 0.1;
  736. filter: blur(67.957px);
  737. }
  738. .join_scroll {
  739. margin: 0 auto;
  740. max-width: 1920px;
  741. min-width: 1700px;
  742. position: relative;
  743. overflow: hidden;
  744. .join_shadow {
  745. margin: 0 auto;
  746. width: 100%;
  747. min-width: 1700px;
  748. position: absolute;
  749. z-index: 1;
  750. display: flex;
  751. justify-content: space-between;
  752. .join_shadow_left {
  753. background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 43.52%);
  754. position: absolute;
  755. z-index: 1;
  756. width: 552px;
  757. height: 400px;
  758. top: 0;
  759. right: -150px;
  760. transform: matrix(0, 1, 1, 0, 0, 0);
  761. }
  762. .join_shadow_right {
  763. background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 43.52%);
  764. position: absolute;
  765. z-index: 1;
  766. width: 552px;
  767. height: 400px;
  768. top: 0;
  769. transform: rotate(90deg);
  770. left: -150px;
  771. }
  772. }
  773. .join_top {
  774. display: flex;
  775. transform: translate3d(-50%, 0, 0);
  776. width: -webkit-max-content;
  777. width: max-content;
  778. animation: masked-animation 120s linear 1s infinite;
  779. margin-left: 280px;
  780. .join_item {
  781. margin-right: 16px;
  782. background: #fff;
  783. opacity: 0.9;
  784. border: 1px solid #fff;
  785. border-radius: 4px;
  786. padding: 20px;
  787. width: 430px;
  788. .image {
  789. margin-bottom: 10px;
  790. width: 200px;
  791. height: 140px;
  792. border-radius: 4px;
  793. }
  794. .name {
  795. font-weight: 600;
  796. font-size: 16px;
  797. line-height: 26px;
  798. overflow: hidden;
  799. text-overflow: ellipsis;
  800. white-space: nowrap;
  801. cursor: default;
  802. }
  803. }
  804. }
  805. @keyframes masked-animation {
  806. 0% {
  807. transform: translateZ(0);
  808. }
  809. 100% {
  810. transform: translate3d(-50%, 0, 0);
  811. }
  812. }
  813. }
  814. }
  815. }
  816. }
  817. </style>