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.

86 lines
1.5 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
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="headline_container">
  3. <h2 class="title_h2">
  4. {{ flip ? title : '' }}
  5. <span :class="theme ? 'theme theme_color' : 'theme'">{{
  6. themeTitle
  7. }}</span>
  8. {{ !flip ? title : '' }}
  9. </h2>
  10. <div class="scale">
  11. <p class="line1" v-if="line1">{{ line1 }}</p>
  12. <p class="line2" v-if="line2">{{ line2 }}</p>
  13. </div>
  14. </div>
  15. </template>
  16. <script setup>
  17. const props = defineProps({
  18. themeTitle: {
  19. type: String,
  20. default: '',
  21. },
  22. flip: {
  23. type: Boolean,
  24. default: false,
  25. },
  26. title: {
  27. type: String,
  28. },
  29. line1: {
  30. type: String,
  31. },
  32. line2: {
  33. type: String,
  34. },
  35. theme: {
  36. type: Boolean,
  37. default: false,
  38. },
  39. })
  40. </script>
  41. <style lang="scss" scoped>
  42. .headline_container {
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. padding: 36px 0;
  47. box-sizing: border-box;
  48. .title_h2 {
  49. font-size: 11px;
  50. font-family: Source Han Sans CN;
  51. font-weight: 500;
  52. color: #191919;
  53. margin-bottom: 10px;
  54. display: flex;
  55. align-items: center;
  56. }
  57. .theme {
  58. color: $home-color;
  59. }
  60. .theme_color {
  61. color: $theme-color;
  62. }
  63. .scale {
  64. font-size: 14px;
  65. transform: scale(0.5);
  66. width: 200%;
  67. .line1 {
  68. font-family: Source Han Sans CN;
  69. font-weight: 300;
  70. color: #595959;
  71. line-height: 16px;
  72. text-align: center;
  73. }
  74. .line2 {
  75. font-family: Alibaba PuHuiTi;
  76. font-weight: 300;
  77. color: #595959;
  78. text-align: center;
  79. line-height: 9px;
  80. margin-top: 4px;
  81. }
  82. }
  83. }
  84. </style>