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.

54 lines
1.1 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
  1. <template>
  2. <div class="case_detail_intro">
  3. <div class="wrap" v-for="(item, index) in cardIntro" :key="index">
  4. <div class="title">
  5. <div class="xuhao">{{ parseInt(index) + 1 }}</div>
  6. <p>{{ item.title }}</p>
  7. </div>
  8. <div class="desc">{{ item.desc }}</div>
  9. </div>
  10. </div>
  11. </template>
  12. <script setup>
  13. const props = defineProps({
  14. cardIntro: Array,
  15. })
  16. </script>
  17. <style lang="scss" scoped>
  18. .case_detail_intro {
  19. padding: 20px;
  20. zoom: 0.6;
  21. .wrap {
  22. margin-bottom: 10px;
  23. .title {
  24. display: flex;
  25. align-items: center;
  26. font-size: 10px;
  27. font-family: Alibaba PuHuiTi;
  28. font-weight: bold;
  29. color: #000000;
  30. margin-bottom: 7px;
  31. .xuhao {
  32. width: 10px;
  33. height: 10px;
  34. border-radius: 50%;
  35. border: solid 1px #000;
  36. display: flex;
  37. align-items: center;
  38. justify-content: center;
  39. margin-right: 6px;
  40. }
  41. }
  42. .desc {
  43. font-size: 8px;
  44. letter-spacing: 2px;
  45. line-height: 20px;
  46. font-family: Alibaba PuHuiTi;
  47. font-weight: 300;
  48. color: #aaaaaa;
  49. }
  50. }
  51. }
  52. </style>