新版梦工厂手机端官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
683 B

2 years ago
  1. <template>
  2. <div class="design_concept_container">
  3. <div class="header_wrap">
  4. <HeadLine title="独有的设计理念" />
  5. </div>
  6. <div class="cards">
  7. <div class="card">card</div>
  8. </div>
  9. </div>
  10. </template>
  11. <script setup>
  12. import HeadLine from 'cpns/HeadLine'
  13. </script>
  14. <style lang="scss" scoped>
  15. .design_concept_container {
  16. .header_wrap {
  17. padding: 27px 0;
  18. background: #dde4f1;
  19. }
  20. .cards {
  21. display: grid;
  22. grid-template-columns: repeat(2, 1fr);
  23. grid-template-rows: repeat(2, 1fr);
  24. .card {
  25. width: 100%;
  26. height: 146px;
  27. display: flex;
  28. flex-direction: column;
  29. align-items: center;
  30. }
  31. }
  32. }
  33. </style>