banner.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <div class="banner">
  3. <div class="content">
  4. <p class="notice" v-if="showNotice"><marquee scrollAmount=1 width=512 direction="left" behavior="alternate">【B2B商务】和【优软商城】牵手成功!大家可以更全面、便捷地了解和享受平台的各项服务咯!</marquee><a @click="showNotice = false"><img src="/images/btbBusiness/close.png"></a></p>
  5. <div class="clearfix">
  6. <!-- <h4 class="pull-left">B2B商务</h4>-->
  7. <a class="enter" @click="experience">立即进入</a>
  8. </div>
  9. <p class="first">十年深耕,携您飞跃<br>
  10. 优软B2B商务,为您提供更强大的功能服务</p>
  11. <p>优软平台构造了面向制造业和流通业的垂直B2B,不仅仅提供平台服务,还包括企业内部管理、存货服务、人力资源等。优软平台建立了生产商与供应商之间形成的供需关系,通过一系列工具辅助供需双方形成交易。这是一个企业集合的云端服务,企业通过平台可以完成交易的全过程。</p>
  12. </div>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. name: 'BannerView',
  18. data () {
  19. return {
  20. showNotice: true
  21. }
  22. },
  23. methods: {
  24. experience () {
  25. window.location.href = `${process.env.uasUrl}/#/index`
  26. }
  27. }
  28. }
  29. </script>
  30. <style type="text/scss" lang="scss" scoped>
  31. .banner{
  32. width: 100%;
  33. height: 481px;
  34. min-width: 1190px;
  35. background: url('/images/btbBusiness/btbBanner.png')no-repeat center center;
  36. .content{
  37. width:1190px;
  38. position: relative;
  39. border: 1px solid transparent;
  40. margin: 0 auto;
  41. margin-top: -1px;
  42. padding: 0;
  43. .notice{
  44. position: absolute;
  45. top: 10px;
  46. left: 0px;
  47. width: 1190px;
  48. height: 30px;
  49. line-height: 30px;
  50. font-size: 12px;
  51. color: #fdfbfb;
  52. border-radius: 4px;
  53. padding-left: 30px;
  54. background-color: rgba(255, 255, 255, 0.18);
  55. img{
  56. float: right;
  57. margin: 5px 10px 0px 0px;
  58. }
  59. &::before{
  60. content: '';
  61. display: inline-block;
  62. position: absolute;
  63. top: 7px;
  64. left: 10px;
  65. margin-right: 10px;
  66. width: 20px;
  67. height: 20px;
  68. background: url('/images/btbBusiness/alert.png') no-repeat;
  69. }
  70. }
  71. /* h4{
  72. margin: 120px 0px 60px 0px;
  73. font-family: MicrosoftYaHei-Bold;
  74. font-size: 48px;
  75. line-height: 40px;
  76. letter-spacing: 2px;
  77. color: #fff600;
  78. }*/
  79. .enter{
  80. display: inline-block;
  81. padding-left: 21px;
  82. margin: 134px 0px 60px 230px;
  83. width: 148px;
  84. height: 38px;
  85. line-height: 38px;
  86. background-color: #15d2fc;
  87. border-radius: 19px;
  88. font-size: 18px;
  89. color: #fefefe;
  90. font-family: "Microsoft Yahei", "微软雅黑";
  91. font-weight: bold;
  92. &::after{
  93. content: '';
  94. display: inline-block;
  95. position: relative;
  96. top: 4px;
  97. left: 15px;
  98. width: 20px;
  99. height: 20px;
  100. background: url('/images/btbBusiness/arrow.png') no-repeat;
  101. }
  102. &:hover{
  103. background: #059ec0;
  104. }
  105. }
  106. p.first{
  107. width: 594px;
  108. font-size: 18px;
  109. letter-spacing: 1px;
  110. color: #fcfdfe;
  111. line-height: 33px;
  112. }
  113. p:last-child{
  114. width: 582px;
  115. line-height: 25px;
  116. color: #feffff;
  117. }
  118. }
  119. }
  120. </style>