CcerLayout.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <script setup lang="ts">
  2. const {locale} = useI18n();
  3. const flowList = [
  4. {
  5. value: '项目评估',
  6. iconName: 'carbon/dmvr/icon-flow-01',
  7. langKey: 'ccer.flowEvaluation'
  8. },
  9. {
  10. value: '项目设计',
  11. iconName: 'carbon/dmvr/icon-flow-02',
  12. langKey: 'ccer.flowDesign'
  13. },
  14. {
  15. value: '项目公示',
  16. iconName: 'carbon/dmvr/icon-flow-03',
  17. langKey: 'ccer.flowPublicity'
  18. },
  19. {
  20. value: '项目审定与登记',
  21. iconName: 'carbon/dmvr/icon-flow-04',
  22. langKey: 'ccer.flowApp'
  23. },
  24. {
  25. value: '减排量核算',
  26. iconName: 'carbon/dmvr/icon-flow-05',
  27. langKey: 'ccer.flowAccount'
  28. },
  29. {
  30. value: '减排量公示',
  31. iconName: 'carbon/dmvr/icon-flow-06',
  32. langKey: 'ccer.flowEmi'
  33. },
  34. {
  35. value: '减排量核查与登记',
  36. iconName: 'carbon/dmvr/icon-flow-07',
  37. langKey: 'ccer.flowreg'
  38. },
  39. {
  40. value: '项目交易',
  41. iconName: 'carbon/dmvr/icon-flow-08',
  42. langKey: 'ccer.flowtran'
  43. },
  44. ]
  45. const descList = [
  46. {
  47. val: 'CCER是国家核证自愿减排量,是对温室气体减排效果进行量化核证,并在国家温室气体自愿减排交易',
  48. langKey: 'ccer.descItemOne',
  49. },
  50. {
  51. val: '注册登记系统中登记的温室气体减排量。CCER可与碳配额等量互换,全国与地方试点的控排企业可购买CCER用于履约',
  52. langKey: 'ccer.descItemTwo',
  53. },
  54. {
  55. val: '满足国家对其控排要求,还可用于企业、大型活动碳中和',
  56. langKey: 'ccer.descItemThree',
  57. }
  58. ]
  59. </script>
  60. <template>
  61. <BaseDevLayout
  62. subTitle="对于碳资产项目开发,红杉天枰为您提供从开发-签发-交易的一站式全流程服务"
  63. subTitleLangKey="ccer.serviceTitle"
  64. card-title="中国核证自愿减排量(CCER)"
  65. cardTitleLangKey="ccer.descTitle"
  66. :desc-list="descList"
  67. >
  68. <BaseCard
  69. title="CCER能够开发的项目"
  70. lang-key="ccer.projectTitle"
  71. is-text
  72. class="introduce-container max-w-[1080px] mx-auto"
  73. :card-wrapper-style="{
  74. padding: '88px 0'
  75. }">
  76. <ul class="project-list grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-[20px]">
  77. <li class="project-item h-[315px]">
  78. <p class="item-title">{{ $t('ccer.projectItemOne') }}</p>
  79. </li>
  80. <li class="project-item h-[315px]">
  81. <p class="item-title">{{ $t('ccer.projectItemTwo') }}</p>
  82. </li>
  83. <li class="project-item h-[315px]">
  84. <p class="item-title">{{ $t('ccer.projectItemThree') }}</p>
  85. </li>
  86. <li class="project-item h-[315px]">
  87. <p class="item-title">{{ $t('ccer.projectItemFour') }}</p>
  88. </li>
  89. </ul>
  90. </BaseCard>
  91. <BaseCard title="CCER项目开发流程" lang-key="ccer.flowTitle" is-text class="flow-container" :card-wrapper-style="{
  92. padding: '88px 0 163px 0'
  93. }">
  94. <ul class="flow-list grid grid-cols-2 md:grid-cols-8">
  95. <li class="flow-item" v-for="(item, index) in flowList" :key="item.value">
  96. <div class="introduce">
  97. <BaseIcon class="icon" :name="item.iconName" width="56" height="56"/>
  98. <span class="text fz14">{{ $t(item.langKey) }}</span>
  99. </div>
  100. <p class="arrow" v-show="index !== flowList.length - 1"></p>
  101. </li>
  102. </ul>
  103. </BaseCard>
  104. </BaseDevLayout>
  105. </template>
  106. <style scoped lang="scss">
  107. .project-list {
  108. padding-top: 30px;
  109. .project-item {
  110. display: flex;
  111. flex-direction: column;
  112. justify-content: flex-end;
  113. border-radius: 8px;
  114. overflow: hidden;
  115. -webkit-transition: background-size 1s linear;
  116. transition: background-size 1s linear;
  117. .item-title {
  118. display: flex;
  119. align-items: center;
  120. height: 100px;
  121. padding-left: 40px;
  122. line-height: 34px;
  123. font-size: 24px;
  124. color: #fff;
  125. backdrop-filter: blur(10px);
  126. }
  127. &:nth-child(1) {
  128. background: url("~/assets/image/carbo/dmrv/img-project-01.png") center center no-repeat;
  129. background-size: 100% 100%;
  130. }
  131. &:nth-child(2) {
  132. background: url("~/assets/image/carbo/dmrv/img-project-02.png") center center no-repeat;
  133. background-size: 100% 100%;
  134. }
  135. &:nth-child(3) {
  136. background: url("~/assets/image/carbo/dmrv/img-project-03.png") center center no-repeat;
  137. background-size: 100% 100%;
  138. }
  139. &:nth-child(4) {
  140. background: url("~/assets/image/carbo/dmrv/img-project-04.png") center center no-repeat;
  141. background-size: 100% 100%;
  142. }
  143. &:hover {
  144. opacity: 0.9;
  145. background-size: 110% 110%;
  146. }
  147. }
  148. }
  149. .flow-container {
  150. background: #f7fafd url("~/assets/image/carbo/dmrv/bg-flow.png") center bottom no-repeat;
  151. background-size: 100% 240px;
  152. }
  153. .flow-list {
  154. justify-items: center;
  155. width: 100%;
  156. padding: 82px 0;
  157. margin-top: 30px;
  158. border-radius: 8px;
  159. background: #fff;
  160. box-shadow: 0px 0px 30px 0px #8BBCDF33;
  161. .flow-item {
  162. position: relative;
  163. width: 100%;
  164. display: flex;
  165. justify-content: center;
  166. .introduce {
  167. @include flex(y, center, center);
  168. }
  169. .text {
  170. padding-top: 10px;
  171. font-size: 16px;
  172. line-height: 22px;
  173. word-break: keep-all;
  174. white-space: nowrap;
  175. color: #333;
  176. }
  177. .arrow {
  178. position: absolute;
  179. top: 20px;
  180. right: 0;
  181. width: 10px;
  182. height: 20px;
  183. background: url("@/assets/image/carbo/dmrv/icon-ccer-arrow.png") no-repeat;
  184. }
  185. }
  186. }
  187. .en {
  188. .project-list {
  189. .item-title {
  190. font-size: 16px;
  191. line-height: 20px;
  192. }
  193. }
  194. .flow-list {
  195. align-items: flex-start;
  196. .flow-item {
  197. .introduce {
  198. .text {
  199. text-align: center;
  200. white-space: normal;
  201. word-break: normal;
  202. }
  203. .fz14 {
  204. font-size: 14px;
  205. }
  206. }
  207. }
  208. }
  209. }
  210. @media screen and (max-width: 768px) {
  211. .en {
  212. .project-item {
  213. .item-title {
  214. font-size: 20px;
  215. line-height: 22px;
  216. }
  217. }
  218. }
  219. .flow-container {
  220. .flow-list {
  221. gap: 20px;
  222. .flow-item {
  223. &:nth-child(3n) {
  224. p.arrow {
  225. display: block;
  226. }
  227. }
  228. &:nth-child(2n) {
  229. p.arrow {
  230. display: none;
  231. }
  232. }
  233. }
  234. }
  235. }
  236. }
  237. </style>