index.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808
  1. <template>
  2. <div class="market" id="market">
  3. <div class="market-page">
  4. <div class="page-top">
  5. <div class="img">
  6. <img src="@/assets/images/core.jpg" />
  7. </div>
  8. <div class="desc">
  9. <h3>{{ t('market.img.title') }} {{ t('market.img.title02') }}</h3>
  10. <p>{{ t('market.img.desc') }}</p>
  11. </div>
  12. </div>
  13. </div>
  14. <!--导航-->
  15. <div class="page-nav-container">
  16. <div class="nav-container">
  17. <div class="nav-txt">
  18. <n-breadcrumb separator=">">
  19. <n-breadcrumb-item>
  20. <n-icon :component="MdHome" /><router-link to="/home">{{ t('common.navigate.home') }}</router-link>
  21. </n-breadcrumb-item>
  22. <n-breadcrumb-item> <n-icon :component="IosFiling" />{{ t('common.navigate.market') }} </n-breadcrumb-item>
  23. </n-breadcrumb>
  24. </div>
  25. <div class="search">
  26. <n-input @keydown.enter="keyDown" type="text" size="large" round :placeholder="t('report.content.keyword')" v-model:value="keyword" clearable>
  27. <template #suffix>
  28. <a class="search-btn" @click="handleSearch"><n-icon :component="MdSearch" size="30" color="#0e7a0d" /></a>
  29. </template>
  30. </n-input>
  31. </div>
  32. </div>
  33. </div>
  34. <!--调研分析-->
  35. <!-- <div class="market-survey">
  36. <div class="container">
  37. <div class="report-title title">
  38. <h2>{{t('market.survey.title')}}</h2>
  39. </div>
  40. <div class="row">
  41. <div class="row-box">
  42. <n-card size="medium" content-style="display:flex">
  43. <div class="box-content">
  44. <span class="iconfont icon-fenxi f30"></span>
  45. <div>
  46. <h2>{{t('market.survey.fsttitle')}}</h2>
  47. <div class="desc">
  48. {{t('market.survey.fstdesc')}}
  49. </div>
  50. </div>
  51. </div>
  52. </n-card>
  53. </div>
  54. <div class="row-box">
  55. <n-card size="medium" content-style="display:flex">
  56. <div class="box-content">
  57. <span class="iconfont icon-chanyelian f30"></span>
  58. <div>
  59. <h2>{{t('market.survey.sndtitle')}}</h2>
  60. <div class="desc">
  61. {{t('market.survey.snddesc')}}
  62. </div>
  63. </div>
  64. </div>
  65. </n-card>
  66. </div>
  67. <div class="row-box">
  68. <n-card size="medium" content-style="display:flex">
  69. <div class="box-content">
  70. <span class="iconfont icon-qudaofenxi f30"></span>
  71. <div>
  72. <h2>{{t('market.survey.trdtitle')}}</h2>
  73. <div class="desc">
  74. {{t('market.survey.trddesc')}}
  75. </div>
  76. </div>
  77. </div>
  78. </n-card>
  79. </div>
  80. </div>
  81. </div>
  82. </div> -->
  83. <!--研究方法-->
  84. <div class="market-method">
  85. <div class="container">
  86. <div class="title">
  87. <h2>{{ t('market.method.title') }}</h2>
  88. </div>
  89. <div class="desc">
  90. <p>{{ t('market.method.desc') }}</p>
  91. </div>
  92. <div class="row">
  93. <div class="row-line">
  94. <div class="line-img"><span class="iconfont icon-shichang f70"></span></div>
  95. <h5>{{ t('market.method.proBg') }}</h5>
  96. </div>
  97. <div class="row-arraow">
  98. <img v-if="pcShow" src="@/assets/images/arrow.png" />
  99. <n-icon v-else :component="MdArrowRoundDown" :size="70" color="#87da58" />
  100. </div>
  101. <div class="row-line">
  102. <div class="line-img"><span class="iconfont icon-shejiyukaifa- f70"></span></div>
  103. <h5>{{ t('market.method.design') }}</h5>
  104. </div>
  105. <div class="row-arraow">
  106. <img v-if="pcShow" src="@/assets/images/arrow.png" />
  107. <n-icon v-else :component="MdArrowRoundDown" :size="70" color="#87da58" />
  108. </div>
  109. <div class="row-line">
  110. <div class="line-img"><span class="iconfont icon-tuandui f70"></span></div>
  111. <h5>{{ t('market.method.team') }}</h5>
  112. </div>
  113. <div class="row-arraow">
  114. <img v-if="pcShow" src="@/assets/images/arrow.png" />
  115. <n-icon v-else :component="MdArrowRoundDown" :size="70" color="#87da58" />
  116. </div>
  117. <div class="row-line">
  118. <div class="line-img"><span class="iconfont icon-qudaofenxi f70"></span></div>
  119. <h5>{{ t('market.method.channel') }}</h5>
  120. </div>
  121. <div class="row-arraow">
  122. <img v-if="pcShow" src="@/assets/images/arrow.png" />
  123. <n-icon v-else :component="MdArrowRoundDown" :size="70" color="#87da58" />
  124. </div>
  125. <div class="row-line">
  126. <div class="line-img"><span class="iconfont icon-zhihang f70"></span></div>
  127. <h5>{{ t('market.method.execute') }}</h5>
  128. </div>
  129. </div>
  130. </div>
  131. </div>
  132. <!--服务范围-->
  133. <div class="service-scope">
  134. <div class="container">
  135. <div class="title">
  136. <h2>{{ t('market.service.title') }}</h2>
  137. </div>
  138. <div class="service-content">
  139. <div class="sv-box">
  140. <div class="sv-title" @click="show01 = !show01">
  141. <span>{{ t('market.service.fstTitle') }}</span>
  142. <div class="sv-icon"><n-icon :component="show01 ? IosRemove : IosAdd" size="30" color="#000" /></div>
  143. </div>
  144. <transition name="sv">
  145. <div class="sv-desc" v-show="show01">
  146. <p>{{ t('market.service.fstDesc01') }}</p>
  147. <p>{{ t('market.service.fstDesc02') }}</p>
  148. </div>
  149. </transition>
  150. </div>
  151. <div class="sv-box">
  152. <div class="sv-title" @click="show02 = !show02">
  153. <span>{{ t('market.service.sndTitle') }}</span>
  154. <div class="sv-icon"><n-icon :component="show02 ? IosRemove : IosAdd" size="30" color="#000" /></div>
  155. </div>
  156. <transition name="sv">
  157. <div class="sv-desc" v-show="show02">
  158. <p>{{ t('market.service.sndDesc01') }}</p>
  159. <p>{{ t('market.service.sndDesc02') }}</p>
  160. </div>
  161. </transition>
  162. </div>
  163. <div class="sv-box">
  164. <div class="sv-title" @click="show03 = !show03">
  165. <span>{{ t('market.service.thrTitle') }}</span>
  166. <div class="sv-icon"><n-icon :component="show03 ? IosRemove : IosAdd" size="30" color="#000" /></div>
  167. </div>
  168. <transition name="sv">
  169. <div class="sv-desc" v-show="show03">
  170. <p>{{ t('market.service.thrDesc') }}</p>
  171. </div>
  172. </transition>
  173. </div>
  174. <div class="sv-box">
  175. <div class="sv-title" @click="show04 = !show04">
  176. <span>{{ t('market.service.forTitle') }}</span>
  177. <div class="sv-icon"><n-icon :component="show04 ? IosRemove : IosAdd" size="30" color="#000" /></div>
  178. </div>
  179. <transition name="sv">
  180. <div class="sv-desc" v-show="show04">
  181. <p>{{ t('market.service.forDesc01') }}</p>
  182. <p>{{ t('market.service.forDesc02') }}</p>
  183. <p>{{ t('market.service.forDesc03') }}</p>
  184. <p>{{ t('market.service.forDesc04') }}</p>
  185. </div>
  186. </transition>
  187. </div>
  188. <div class="sv-box">
  189. <div class="sv-title" @click="show05 = !show05">
  190. <span>{{ t('market.service.fivTitle') }}</span>
  191. <div class="sv-icon"><n-icon :component="show05 ? IosRemove : IosAdd" size="30" color="#000" /></div>
  192. </div>
  193. <transition name="sv">
  194. <div class="sv-desc" v-show="show05">
  195. <p>{{ t('market.service.fivDesc01') }}</p>
  196. <p>{{ t('market.service.fivDesc02') }}</p>
  197. </div>
  198. </transition>
  199. </div>
  200. <div class="sv-box">
  201. <div class="sv-title" @click="show06 = !show06">
  202. <span>{{ t('market.service.sixTitle') }}</span>
  203. <div class="sv-icon"><n-icon :component="show06 ? IosRemove : IosAdd" size="30" color="#000" /></div>
  204. </div>
  205. <transition name="sv">
  206. <div class="sv-desc" v-show="show06">
  207. <p>{{ t('market.service.sixDesc01') }}</p>
  208. <p>{{ t('market.service.sixDesc02') }}</p>
  209. </div>
  210. </transition>
  211. </div>
  212. <div class="sv-box">
  213. <div class="sv-title" @click="show07 = !show07">
  214. <span>{{ t('market.service.sevTitle') }}</span>
  215. <div class="sv-icon"><n-icon :component="show07 ? IosRemove : IosAdd" size="30" color="#000" /></div>
  216. </div>
  217. <transition name="sv">
  218. <div class="sv-desc" v-show="show07">
  219. <p>{{ t('market.service.sevDesc') }}</p>
  220. </div>
  221. </transition>
  222. </div>
  223. <div class="sv-box">
  224. <div class="sv-title" @click="show08 = !show08">
  225. <span>{{ t('market.service.egtTitle') }}</span>
  226. <div class="sv-icon"><n-icon :component="show08 ? IosRemove : IosAdd" size="30" color="#000" /></div>
  227. </div>
  228. <transition name="sv">
  229. <div class="sv-desc" v-show="show08">
  230. <p>{{ t('market.service.egtDesc') }}</p>
  231. </div>
  232. </transition>
  233. </div>
  234. </div>
  235. </div>
  236. </div>
  237. <!--定制化报告研究范围-->
  238. <div class="reports-scope">
  239. <div class="container">
  240. <div class="title">
  241. <h2>{{ t('market.scope.title') }}</h2>
  242. </div>
  243. <div class="reports-content">
  244. <div>
  245. <n-table>
  246. <thead>
  247. <th></th>
  248. <th>{{ t('market.scope.th01') }}</th>
  249. <th>{{ t('market.scope.th02') }}</th>
  250. </thead>
  251. <tbody>
  252. <tr>
  253. <td rowspan="7" align="center">{{ t('market.scope.col01') }}</td>
  254. <td>{{ t('market.scope.row01') }}</td>
  255. <td>{{ t('market.scope.row02') }}</td>
  256. </tr>
  257. <tr>
  258. <td>{{ t('market.scope.row03') }}</td>
  259. <td>{{ t('market.scope.row04') }}</td>
  260. </tr>
  261. <tr>
  262. <td>{{ t('market.scope.row05') }}</td>
  263. <td>{{ t('market.scope.row06') }}</td>
  264. </tr>
  265. <tr>
  266. <td>{{ t('market.scope.row07') }}</td>
  267. <td>{{ t('market.scope.row08') }}</td>
  268. </tr>
  269. <tr>
  270. <td>{{ t('market.scope.row09') }}</td>
  271. <td>{{ t('market.scope.row10') }}</td>
  272. </tr>
  273. <tr>
  274. <td>{{ t('market.scope.row11') }}</td>
  275. <td>{{ t('market.scope.row12') }}</td>
  276. </tr>
  277. <tr>
  278. <td>{{ t('market.scope.row13') }}</td>
  279. <td>{{ t('market.scope.row14') }}</td>
  280. </tr>
  281. <tr>
  282. <td rowspan="4" align="center">{{ t('market.scope.col02') }}</td>
  283. <td>{{ t('market.scope.row15') }}</td>
  284. <td>{{ t('market.scope.row16') }}</td>
  285. </tr>
  286. <tr>
  287. <td>{{ t('market.scope.row17') }}</td>
  288. <td>{{ t('market.scope.row18') }}</td>
  289. </tr>
  290. <tr>
  291. <td>{{ t('market.scope.row19') }}</td>
  292. <td>{{ t('market.scope.row20') }}</td>
  293. </tr>
  294. <tr>
  295. <td>{{ t('market.scope.row21') }}</td>
  296. <td></td>
  297. </tr>
  298. <tr>
  299. <td rowspan="2" align="center">{{ t('market.scope.col03') }}</td>
  300. <td>{{ t('market.scope.row23') }}</td>
  301. <td>{{ t('market.scope.row24') }}</td>
  302. </tr>
  303. <tr>
  304. <td>{{ t('market.scope.row25') }}</td>
  305. <td>{{ t('market.scope.row26') }}</td>
  306. </tr>
  307. </tbody>
  308. </n-table>
  309. </div>
  310. </div>
  311. </div>
  312. </div>
  313. <!--服务覆盖,市场研究-->
  314. <div class="market-sector">
  315. <div class="container">
  316. <div class="title">
  317. <h2>{{ t('market.sector.title') }}</h2>
  318. </div>
  319. <div class="sector-img">
  320. <template v-if="langShow == 'zh-CN'">
  321. <img src="@/assets/images/selector01.jpg" />
  322. <img src="@/assets/images/selector02.jpg" />
  323. </template>
  324. <template v-else>
  325. <img src="@/assets/images/selector01-en.jpg" />
  326. <img src="@/assets/images/selector02-en.jpg" />
  327. </template>
  328. <!-- <img v-if="langShow == 'zh-CN'" src="@/assets/images/selector.png" />
  329. <img v-else src="@/assets/images/selector-en.png" /> -->
  330. </div>
  331. </div>
  332. </div>
  333. <!--地区覆盖-->
  334. <!-- <div class="market-area">
  335. <div class="container">
  336. <div class="title">
  337. <h2>{{t('market.area.title')}}</h2>
  338. </div>
  339. <div class="sector-img">
  340. <img src="@/assets/images/global.jpg"/>
  341. </div>
  342. </div>
  343. </div> -->
  344. <!--案例-->
  345. <div class="market-cases">
  346. <div class="container">
  347. <div class="title">
  348. <h2>{{ t('market.hot.title') }}</h2>
  349. </div>
  350. <div class="cases-box">
  351. <template v-for="item in hots" :key="item">
  352. <div class="box">
  353. <n-card size="medium" content-style="display:flex">
  354. <div class="img">
  355. <img :src="BaseUrl + '/report/' + item.fileName" />
  356. </div>
  357. <div class="text">
  358. <!-- <h4><a @click="viewDetail(item)">{{ item.title }}</a></h4> -->
  359. <h4>
  360. <a :href="(lang === 'zh-CN' ? '' : '/en') + '/reports/' + item.webTitle + '-' + item.id">{{ item.title }}</a>
  361. </h4>
  362. <span>{{ item.publishDate }}</span>
  363. </div>
  364. </n-card>
  365. </div>
  366. </template>
  367. </div>
  368. </div>
  369. </div>
  370. <div class="home-contact" id="home-contact">
  371. <div class="contact-row wow fadeInDown" data-wow-duration="3s" data-wow-delay="0.5s" data-wow-offset="0">
  372. <div class="contact-txt">
  373. <span>{{ t('market.contact.desc') }}</span>
  374. </div>
  375. <div class="contact-btn">
  376. <a @click="handleContact">{{ t('report.detail.custom') }}</a>
  377. </div>
  378. </div>
  379. <div class="contact-img wow fadeInUp" data-wow-duration="2s" data-wow-delay="0s" data-wow-offset="0">
  380. <img src="@/assets/images/swtp.jpg" />
  381. </div>
  382. </div>
  383. <n-modal :show="demandShow" preset="dialog" :title="t('report.detail.subscribe')" @close="demandShow = false" @esc="demandShow = false" @mask-click="demandShow = false" :style="'min-width: 40%'">
  384. <demand @closeDialog="handleCloseDiag" />
  385. </n-modal>
  386. </div>
  387. </template>
  388. <script lang="ts" setup>
  389. import { useLocaleStoreWithOut } from "@/store";
  390. import {
  391. MdHome,
  392. IosFiling,
  393. MdSearch,
  394. IosAdd,
  395. IosRemove,
  396. MdArrowRoundDown,
  397. } from "@vicons/ionicons4";
  398. import {
  399. NBreadcrumb,
  400. NBreadcrumbItem,
  401. NIcon,
  402. NCard,
  403. NModal,
  404. NInput,
  405. NTable,
  406. } from "naive-ui";
  407. import { useI18n } from "#imports";
  408. import { onMounted, onServerPrefetch, ref } from "vue";
  409. import { useRouter } from "vue-router";
  410. import { useUserStore } from "@/store/user";
  411. const config = useRuntimeConfig();
  412. const BaseUrl = ref(config.public.baseUrl);
  413. const { t } = useI18n();
  414. const height = ref<string>();
  415. const demandShow = ref(false); // 需求页面
  416. const hots = ref<ResearchReport[]>(); //市场资讯
  417. const router = useRouter();
  418. const keyword = ref<string>(""); //关键字
  419. const show01 = ref(false),
  420. show02 = ref(false),
  421. show03 = ref(false),
  422. show04 = ref(false),
  423. show05 = ref(false),
  424. show06 = ref(false),
  425. show07 = ref(false),
  426. show08 = ref(false);
  427. const langShow = ref<string>("");
  428. const pcShow = ref<boolean>(true);
  429. const userStore = useUserStore();
  430. const lang = userStore.getLang;
  431. // 关闭diag
  432. function handleCloseDiag() {
  433. demandShow.value = false;
  434. }
  435. // 联系我们
  436. function handleContact() {
  437. demandShow.value = true;
  438. }
  439. function viewDetail(item: ResearchReport) {
  440. const language = lang === "zh-CN" ? "" : "en";
  441. router.push({
  442. name: "reportDetail",
  443. params: { webTitle: item.webTitle + "-" + item.id, lang: language },
  444. });
  445. }
  446. //查询
  447. function handleSearch() {
  448. const language = lang === "zh-CN" ? "" : "en";
  449. router.push({
  450. name: "reports",
  451. params: { keyword: keyword.value, lang: language },
  452. });
  453. }
  454. function keyDown() {
  455. handleSearch();
  456. }
  457. // onServerPrefetch(async () => {
  458. try {
  459. height.value = lang == "zh-CN" ? "200px" : "350px";
  460. const res = await hotResearchList({ lang: lang });
  461. hots.value = res;
  462. langShow.value = lang;
  463. pcShow.value = !isMobile();
  464. } catch (error) {}
  465. // });
  466. // onMounted(async () => {
  467. // height.value = lang == "zh-CN" ? "200px" : "350px";
  468. // //const lang = useLocaleStoreWithOut().getLocale;
  469. // const res = await hotResearchList({ lang: lang });
  470. // hots.value = res.data;
  471. // langShow.value = lang;
  472. // pcShow.value = !isMobile();
  473. // });
  474. useHead({
  475. title: t("common.navigate.market") + "-" + t("defaultSettings.title"),
  476. viewport: "width=device-width,initial-scale=1,maximum-scale=1 ",
  477. charset: "utf-8",
  478. meta: [
  479. {
  480. hid: "keywords",
  481. name: "keywords",
  482. content: t("defaultSettings.keyword"),
  483. },
  484. {
  485. hid: "description",
  486. name: "description",
  487. content: t("defaultSettings.desc"),
  488. },
  489. ],
  490. });
  491. </script>
  492. <style lang="scss" scoped>
  493. .nav-txt .n-breadcrumb .n-breadcrumb-item .n-breadcrumb-item__link {
  494. padding: 0;
  495. }
  496. /**导航栏 */
  497. .nav-container {
  498. display: flex;
  499. justify-content: space-between;
  500. padding-bottom: 8px;
  501. border-bottom: 1px solid #e8e8e8;
  502. align-items: center;
  503. .search {
  504. width: 40%;
  505. .search-btn {
  506. .n-icon {
  507. vertical-align: middle;
  508. }
  509. }
  510. .n-input {
  511. margin-top: 10px;
  512. }
  513. }
  514. }
  515. .page-top {
  516. position: relative;
  517. .img {
  518. width: 100%;
  519. height: 100vh;
  520. img {
  521. width: 100%;
  522. height: 100vh;
  523. }
  524. }
  525. .desc {
  526. position: absolute;
  527. top: 20%;
  528. width: 65%;
  529. color: #fff;
  530. margin: 0 auto;
  531. left: 10%;
  532. > h3 {
  533. color: #fff;
  534. font-size: 48px;
  535. line-height: 1.5;
  536. margin-bottom: 48px;
  537. }
  538. > p {
  539. opacity: 0.8;
  540. font-size: 18px;
  541. color: #fff;
  542. line-height: 1.7;
  543. }
  544. }
  545. }
  546. .row {
  547. display: inline-table;
  548. .row-box {
  549. width: 33%;
  550. float: left;
  551. display: flex;
  552. padding: 20px 10px 0 10px;
  553. }
  554. }
  555. .box-content {
  556. text-align: center;
  557. h2 {
  558. margin-top: 17px;
  559. font-size: 16px;
  560. font-weight: 600;
  561. line-height: 22px;
  562. }
  563. .desc {
  564. font-size: 13px;
  565. line-height: 1.69;
  566. text-align: left;
  567. margin-top: 15px;
  568. height: v-bind("height");
  569. }
  570. }
  571. .market-survey,
  572. .market-method,
  573. .market-sector,
  574. .market-cases {
  575. padding: 50px 0;
  576. }
  577. .market-survey {
  578. background-color: #f2f2f2;
  579. margin-top: 10px;
  580. }
  581. .market-method {
  582. .desc {
  583. padding: 20px 0px 30px;
  584. }
  585. .row {
  586. display: flex;
  587. .row-line {
  588. width: 13%;
  589. text-align: center;
  590. h5 {
  591. font-size: 15px;
  592. }
  593. .line-img {
  594. width: 140px;
  595. height: 140px;
  596. border-radius: 100%;
  597. border: 1px solid #cdcdcd;
  598. display: flex;
  599. align-items: center;
  600. justify-content: center;
  601. }
  602. }
  603. .row-arraow {
  604. margin: 50px 18px 0 18px;
  605. }
  606. }
  607. }
  608. .market-sector {
  609. .sector-img {
  610. width: 100%;
  611. margin: auto;
  612. > img {
  613. width: 50%;
  614. }
  615. }
  616. }
  617. .cases-box {
  618. display: flex;
  619. flex-wrap: wrap;
  620. justify-content: space-between;
  621. .box {
  622. display: flex;
  623. width: 32%;
  624. margin-bottom: 20px;
  625. box-shadow: 2.5px 4.33px 15px 0px rgb(0 0 0 / 15%);
  626. .img {
  627. max-width: 11em;
  628. max-height: 14em;
  629. box-shadow: 7px 0 15px rgba(0, 87, 149, 0.33);
  630. overflow: hidden;
  631. > img {
  632. width: 100%;
  633. }
  634. }
  635. .text {
  636. padding-left: 1.5em;
  637. min-width: 15em;
  638. > h4 {
  639. line-height: 30px;
  640. margin: 0.25rem 0 1rem 0;
  641. transition: all 0.4s ease;
  642. min-height: 90px;
  643. max-height: 90px;
  644. overflow: hidden;
  645. text-overflow: ellipsis;
  646. font-size: 18px;
  647. word-break: break-all;
  648. }
  649. > span {
  650. color: #9f9f9f;
  651. }
  652. }
  653. :hover {
  654. background-color: #18a058;
  655. color: #fff;
  656. span {
  657. color: #fff;
  658. }
  659. }
  660. }
  661. }
  662. .home-contact {
  663. position: relative;
  664. .contact-row {
  665. position: absolute;
  666. left: 12.5%;
  667. top: 160px;
  668. width: 1200px;
  669. display: flex;
  670. justify-content: space-between;
  671. align-items: center;
  672. flex-wrap: wrap;
  673. .contact-txt {
  674. width: 40%;
  675. span {
  676. font-size: 26px;
  677. color: #fff;
  678. font-weight: 600;
  679. }
  680. }
  681. .contact-btn {
  682. width: 30%;
  683. > a {
  684. color: #fff;
  685. font-size: 26px;
  686. background: #18a058;
  687. padding: 15px 25px;
  688. }
  689. }
  690. }
  691. .contact-img {
  692. height: 360px;
  693. overflow: hidden;
  694. > img {
  695. height: 100%;
  696. width: 100%;
  697. object-fit: cover;
  698. }
  699. }
  700. }
  701. .reports-content {
  702. font-weight: 600;
  703. th {
  704. font-size: 17px;
  705. background-color: #9cc2e5;
  706. &:nth-child(1) {
  707. width: 26%;
  708. }
  709. &:nth-child(2),
  710. &:nth-child(3) {
  711. width: 37%;
  712. font-weight: 700;
  713. }
  714. }
  715. tr {
  716. td {
  717. padding: 8px;
  718. background: none;
  719. }
  720. &:nth-child(-n + 7) {
  721. background-color: #f2f2f2;
  722. }
  723. &:nth-child(n + 8):nth-child(-n + 11) {
  724. background-color: #f8f0dc;
  725. }
  726. &:nth-child(n + 12):nth-child(-n + 13) {
  727. background-color: #f2f2f2;
  728. }
  729. }
  730. }
  731. .service-content {
  732. .sv-box {
  733. padding: 20px;
  734. border-bottom: 1px solid #e1e1e1;
  735. .sv-title {
  736. display: flex;
  737. align-items: center;
  738. justify-content: space-between;
  739. font-weight: 700;
  740. font-size: 20px;
  741. cursor: pointer;
  742. }
  743. .sv-desc {
  744. p {
  745. margin-bottom: 0;
  746. }
  747. }
  748. }
  749. }
  750. .sv-enter-active,
  751. .sv-leave-active {
  752. transition: opacity 0.3s ease;
  753. }
  754. .sv-enter-form,
  755. .sv-leave-to {
  756. opacity: 0;
  757. }
  758. .sv-enter-to,
  759. .sv-leave-form {
  760. opacity: 1;
  761. }
  762. </style>