Head.vue 3.0 KB

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