index.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <div class="top">
  3. <div class="content">
  4. <!-- 左侧 -->
  5. <div class="left">
  6. <img src="../../assets/images/logo.png" alt="" />
  7. <p>尚医通 预约挂号统一平台</p>
  8. </div>
  9. <!-- 右侧 -->
  10. <div class="right">
  11. <p class="help">帮助中心</p>
  12. <p class="login">登录/注册</p>
  13. </div>
  14. </div>
  15. </div>
  16. </template>
  17. <script setup lang="ts">
  18. </script>
  19. <style scoped lang="scss">
  20. .top {
  21. position: fixed;
  22. z-index: 999;
  23. width: 100%;
  24. height: 70px;
  25. display: flex;
  26. justify-content: center;
  27. .content{
  28. width: 1200px;
  29. height: 70px;
  30. background: white;
  31. display: flex;
  32. justify-content: space-between;
  33. .left{
  34. display: flex;
  35. justify-content: center;
  36. align-items: center;
  37. img{
  38. width: 50px;
  39. height: 50px;
  40. margin-right: 10px;
  41. }
  42. p{
  43. font-size: 20px;
  44. color: #55a6fe;
  45. }
  46. }
  47. .right{
  48. display: flex;
  49. align-items: center;
  50. justify-content: center;
  51. font-size: 14px;
  52. color:#bbb;
  53. .help{
  54. margin-right: 10px;
  55. }
  56. }
  57. }
  58. }
  59. </style>