todayOverview.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .overview {
  2. padding: 15px;
  3. &-tabs {
  4. width: 100%;
  5. border: solid 1px #fff;
  6. display: flex;
  7. justify-content: space-between;
  8. border-radius: 5px;
  9. margin-bottom: 18px;
  10. &-item {
  11. width: 50%;
  12. text-align: center;
  13. line-height: 49px;
  14. color: #fff;
  15. font-size: 20px;
  16. font-family: PingFangSC-Regular, PingFang SC;
  17. }
  18. .active {
  19. background-color: #fff;
  20. color: #434343;
  21. }
  22. }
  23. &-content {
  24. padding: 26px 15px;
  25. background-color: #fff;
  26. border-radius: 5px;
  27. &-item {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. padding: 15px;
  32. background-color: #edf3ff;
  33. border-radius: 5px;
  34. margin-bottom: 10px;
  35. &:last-child {
  36. margin-bottom: 0;
  37. }
  38. .title {
  39. color: #535353;
  40. font-size: 15px;
  41. font-family: PingFangSC-Regular, PingFang SC;
  42. margin-bottom: 5px;
  43. }
  44. &-right {
  45. width: 60px;
  46. height: 35px;
  47. line-height: 35px;
  48. text-align: center;
  49. font-size: 30px;
  50. font-weight: bold;
  51. }
  52. }
  53. }
  54. }