bigTitle.vue 834 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <div class="bigTitle">
  3. <div class="inner">
  4. <img src="../../static/images/Group 1550@2x.png" alt="" class="left">
  5. <h1 class="left">扬州市在第23届江苏农业国际合作洽谈</h1>
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. </script>
  11. <style lang="less" scoped>
  12. // 大标题
  13. .bigTitle {
  14. width: 100%;
  15. height: 70px;
  16. margin-top: 38px;
  17. img {
  18. width: 57px;
  19. height: 52px;
  20. margin: 6px 17px 9px 97px;
  21. vertical-align: middle;
  22. }
  23. h1 {
  24. // width: 860px;
  25. height: 70px;
  26. font-family: PingFang SC, PingFang SC;
  27. font-weight: 600;
  28. font-size: 50px;
  29. color: #028E21;
  30. line-height: 59px;
  31. text-align: left;
  32. font-style: normal;
  33. text-transform: none;
  34. }
  35. }
  36. </style>