ClockIndex.scss 625 B

123456789101112131415161718192021222324252627282930313233
  1. // page {
  2. // background: linear-gradient(to bottom, #F0CABF, #E1CDEE)
  3. // }
  4. .main_bg{
  5. position: fixed;
  6. left: 0;
  7. top: 0;
  8. width: 100vw;
  9. height: 100vh;
  10. z-index: -1;
  11. }
  12. .operate_panel {
  13. display: flex;
  14. flex-direction: row;
  15. flex-wrap: wrap;
  16. padding-left: 40px;
  17. padding-right: 40px;
  18. justify-content: space-between;
  19. }
  20. .operate_card {
  21. background-color: rgba($color: #ffffff, $alpha: 0.25);
  22. width: 320px;
  23. height: 260px;
  24. border-radius: 24px;
  25. margin-bottom: 30px;
  26. display: flex;
  27. flex-direction: column;
  28. box-sizing: border-box;
  29. padding: 36px 40px;
  30. }