大空间消毒机
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.

74 lines
1.6 KiB

2 years ago
  1. <template>
  2. <div class="login_container">
  3. <LoginForm />
  4. <p class="copyright">CopyRight@ xxxxxx公司</p>
  5. <div class="shutdown">
  6. <div class="group">
  7. <img :src="Shutdown" class="icon" alt="" />
  8. <p class="text">关机</p>
  9. </div>
  10. <div class="group">
  11. <img :src="Restart" class="icon" alt="" />
  12. <p class="text">重新启动</p>
  13. </div>
  14. </div>
  15. </div>
  16. </template>
  17. <script setup>
  18. import Restart from '@/assets/img/login/restart.png'
  19. import Shutdown from '@/assets/img/login/shutdown.png'
  20. import LoginForm from 'cpns/LoginForm.vue'
  21. </script>
  22. <style lang="scss" scoped>
  23. .login_container {
  24. background: url(../assets/img/login/back.png) no-repeat;
  25. background-size: 100% 100%;
  26. width: 1280px;
  27. height: 800px;
  28. display: flex;
  29. justify-content: center;
  30. padding-top: 162px;
  31. box-sizing: border-box;
  32. position: relative;
  33. .copyright {
  34. position: absolute;
  35. left: 50%;
  36. transform: translateX(-50%);
  37. bottom: 56px;
  38. font-family: Zona Pro;
  39. font-size: 10px;
  40. font-weight: normal;
  41. letter-spacing: 0.06em;
  42. color: #9e9e9e;
  43. }
  44. .shutdown {
  45. position: absolute;
  46. right: 38px;
  47. bottom: 42px;
  48. display: flex;
  49. align-items: center;
  50. .group {
  51. display: flex;
  52. align-items: center;
  53. cursor: pointer;
  54. .icon {
  55. width: 35px;
  56. height: 35px;
  57. margin-right: 10px;
  58. }
  59. .text {
  60. font-family: Source Han Sans CN;
  61. font-size: 12px;
  62. font-weight: 350;
  63. letter-spacing: 0.06em;
  64. color: #ffffff;
  65. }
  66. &:nth-child(odd) {
  67. margin-right: 40px;
  68. }
  69. }
  70. }
  71. }
  72. </style>