head.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div>
  3. <div class="head">
  4. <div class="inner">
  5. <div class="headLogo left">
  6. <img src="../../static/images/image 36.png" alt="">
  7. <!-- <span>{{ props.title }}</span> -->
  8. <span>商圈</span>
  9. </div>
  10. <div class="right">
  11. <span>
  12. <em class="home"></em>
  13. 设为首页
  14. </span>
  15. <span>
  16. <em class="collection"></em>
  17. 加入收藏
  18. </span>
  19. </div>
  20. </div>
  21. </div>
  22. <div class="tips">
  23. <div class="inner">
  24. <p v-show="false">注意:广告购买需提交信息,用户与商务人员进行线下金额交易,交易成功后由商务人员后台审核。审核通过,即广告投放成功。</p>
  25. </div>
  26. </div>
  27. </div>
  28. </template>
  29. <script setup>
  30. const props = defineProps({
  31. title: String
  32. });
  33. </script>
  34. <style lang="less" scoped>
  35. // 广告页面头部
  36. .head {
  37. width: 100%;
  38. padding: 15px 0;
  39. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  40. .inner {
  41. width: 1200px;
  42. height: 27px;
  43. }
  44. .headLogo {
  45. >img {
  46. width: 127px;
  47. height: 27px;
  48. padding-right: 15px;
  49. vertical-align: -10px;
  50. border-right: 1px solid #999;
  51. }
  52. >span {
  53. display: inline-block;
  54. width: 100px;
  55. padding-left: 15px;
  56. vertical-align: middle;
  57. font-family: Microsoft YaHei, Microsoft YaHei;
  58. font-weight: 400;
  59. font-size: 18px;
  60. color: #333333;
  61. line-height: 21px;
  62. text-align: left;
  63. font-style: normal;
  64. text-transform: none;
  65. }
  66. }
  67. .right {
  68. span {
  69. margin-left: 26px;
  70. font-family: PingFang SC, PingFang SC;
  71. font-weight: 400;
  72. font-size: 12px;
  73. color: #666666;
  74. line-height: 14px;
  75. text-align: left;
  76. font-style: normal;
  77. text-transform: none;
  78. }
  79. .home,
  80. .collection {
  81. display: inline-block;
  82. width: 16px;
  83. height: 16px;
  84. vertical-align: -3px;
  85. }
  86. .home {
  87. background-image: url("../../static/images/Iconly/Light/Home.png");
  88. }
  89. .collection {
  90. background-image: url("../../static/images/Iconly/Light/Star.png");
  91. }
  92. }
  93. }
  94. //提示信息
  95. .tips {
  96. width: 100%;
  97. height: 70px;
  98. line-height: 70px;
  99. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  100. .inner {
  101. width: 1200px;
  102. height: 70px;
  103. }
  104. p {
  105. font-family: Microsoft YaHei, Microsoft YaHei;
  106. font-weight: 400;
  107. font-size: 16px;
  108. color: #FE0101;
  109. // line-height: 19px;
  110. text-align: left;
  111. font-style: normal;
  112. text-transform: none;
  113. }
  114. }
  115. </style>