石墨消解仪
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
997 B

2 years ago
  1. <template>
  2. <div class="header_container">
  3. <Date />
  4. <div class="status_container">
  5. <img :src="Status" class="status_img" alt="" />
  6. <p class="status_text">机器运行状态</p>
  7. </div>
  8. </div>
  9. </template>
  10. <script setup>
  11. import Date from './Date'
  12. import Status from '@/assets/img/status.png'
  13. </script>
  14. <style lang="scss" scoped>
  15. .header_container {
  16. margin-bottom: 20px;
  17. display: flex;
  18. align-items: center;
  19. .status_container {
  20. width: 1362px;
  21. height: 68px;
  22. border-radius: 34px;
  23. background: #ffffff;
  24. margin-left: 20px;
  25. padding: 0 18px;
  26. box-sizing: border-box;
  27. display: flex;
  28. align-items: center;
  29. .status_img {
  30. width: 36px;
  31. height: 36px;
  32. margin-right: 18px;
  33. }
  34. .status_text {
  35. font-family: Source Han Sans CN;
  36. font-size: 22px;
  37. font-weight: 500;
  38. line-height: normal;
  39. letter-spacing: 0.06em;
  40. font-feature-settings: 'kern' on;
  41. color: #1c1c1c;
  42. }
  43. }
  44. }
  45. </style>