ClockIndex.scss 646 B

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