headerMobile.vue 619 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <div class="header">
  3. <h3>账户中心</h3>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'headerMobile'
  9. }
  10. </script>
  11. <style scoped type="text/scss" lang="scss">
  12. .header{
  13. text-align: center;
  14. line-height: 1.7rem;
  15. h3{
  16. margin:0;
  17. color:#333;
  18. font-weight: bold;
  19. font-size:.4rem;
  20. &:before{
  21. content: '';
  22. position:relative;
  23. top:-.04rem;
  24. display:inline-block;
  25. width:1.4rem;
  26. height:.38rem;
  27. background:url(/img/logo/uas.png)no-repeat center center/100% 100%;
  28. vertical-align: middle;
  29. margin-right:.2rem;
  30. }
  31. }
  32. }
  33. </style>