hjyd的手机端
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.

80 lines
2.0 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="one_stop_container">
  3. <div class="header_wrap">
  4. <HeadLine
  5. themeTitle="一站式设计+制造"
  6. title="的产业链模式"
  7. line1="产品梦工厂一家公司全部帮您搞定,减少供应商数量就能有效防止供应商扯皮/推诿"
  8. line2="不仅帮您省心、省力,还能帮您节约30%的资金投入"
  9. />
  10. </div>
  11. <div class="design_cards">
  12. <div class="card">
  13. <div class="img"></div>
  14. <div class="btn_wrap">
  15. <p>工业设计</p>
  16. <div class="btn">查看详情</div>
  17. </div>
  18. </div>
  19. <div class="card"></div>
  20. <div class="card"></div>
  21. <div class="card"></div>
  22. <div class="card"></div>
  23. <div class="card"></div>
  24. </div>
  25. </div>
  26. </template>
  27. <script setup>
  28. import HeadLine from 'cpns/HeadLine'
  29. </script>
  30. <style lang="scss" scoped>
  31. .one_stop_container {
  32. .header_wrap {
  33. padding: 0 10px 0 10px;
  34. }
  35. .design_cards {
  36. display: grid;
  37. grid-template-columns: repeat(2, 1fr);
  38. grid-template-rows: repeat(3, 1fr);
  39. padding: 0 7px;
  40. box-sizing: border-box;
  41. row-gap: 7px;
  42. column-gap: 7px;
  43. .card {
  44. flex: 1;
  45. border-radius: 3px;
  46. background: #fff;
  47. .img {
  48. width: 100%;
  49. height: 88px;
  50. background: #000;
  51. }
  52. .btn_wrap {
  53. display: flex;
  54. align-items: center;
  55. justify-content: space-between;
  56. padding: 10px 12px 10px 16px;
  57. box-sizing: border-box;
  58. font-size: 7px;
  59. font-family: Source Han Sans CN;
  60. font-weight: 400;
  61. color: #020208;
  62. .btn {
  63. background: #f94622;
  64. border-radius: 8px;
  65. padding: 5px 9px;
  66. display: flex;
  67. align-items: center;
  68. justify-content: center;
  69. font-size: 7px;
  70. font-family: Source Han Sans CN;
  71. font-weight: 400;
  72. color: #ffffff;
  73. }
  74. }
  75. }
  76. }
  77. }
  78. </style>