PcArticle.vue 758 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <div>
  3. <p class="title">{{ title }}</p>
  4. <div class="line"></div>
  5. <div class="item" v-html="text"></div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. props: {
  11. title: String,
  12. text: String,
  13. },
  14. };
  15. </script>
  16. <style lang="scss" scoped>
  17. .title {
  18. height: 50px;
  19. font-size: 35px;
  20. font-family: Proxima Nova;
  21. font-weight: bold;
  22. color: #00213B;
  23. text-align: center;
  24. line-height: 50px;
  25. }
  26. .line {
  27. width: 99px;
  28. height: 4px;
  29. background: #e90000;
  30. margin: 15px auto;
  31. }
  32. :deep(.item) {
  33. font-size: 18px;
  34. font-family: Proxima Nova;
  35. line-height: 30px;
  36. ol{
  37. padding-left: 40px;
  38. list-style: decimal;
  39. }
  40. ul{
  41. padding-left: 40px;
  42. list-style: disc;
  43. }
  44. p{
  45. word-wrap:break-word;
  46. }
  47. }
  48. </style>