bigTitle.vue 860 B

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