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.

42 lines
783 B

  1. <template>
  2. <div class="card_detail_title" v-if="title">
  3. <p class="title">
  4. {{ title }}<span class="blue_text">{{ blue_title }}</span>
  5. </p>
  6. <p class="en">{{ en }}</p>
  7. </div>
  8. </template>
  9. <script setup>
  10. const props = defineProps({
  11. title: String,
  12. blue_title: String,
  13. en: String,
  14. })
  15. </script>
  16. <style lang="scss" scoped>
  17. .card_detail_title {
  18. padding: 29px 23px;
  19. display: flex;
  20. align-items: center;
  21. justify-content: space-between;
  22. background: #f9f9f9;
  23. .title {
  24. font-size: 22px;
  25. font-family: DFPYuanW7-GB;
  26. font-weight: 400;
  27. color: #000000;
  28. letter-spacing: 2px;
  29. .blue_text {
  30. color: $theme_color;
  31. }
  32. }
  33. .en {
  34. font-size: 14px;
  35. font-family: 'ZonaPro';
  36. font-weight: bold;
  37. color: #929292;
  38. }
  39. }
  40. </style>