chartpage.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .page-box {
  2. height: 600rpx;
  3. background: linear-gradient(#ff8caf, $page-background-color);
  4. .children-box {
  5. display: flex;
  6. align-items: center;
  7. margin-bottom: 40rpx;
  8. .children-avatar {
  9. margin-left: 40rpx;
  10. width: 96rpx;
  11. height: 96rpx;
  12. border-radius: 50rpx;
  13. border: 4rpx solid #FFFFFF;
  14. box-shadow: 0 10rpx 20rpx rgba(0, 0, 0, 0.2);
  15. }
  16. .children-msg {
  17. margin-left: 30rpx;
  18. .children-name {
  19. color: #3B4144;
  20. font-size: 32rpx;
  21. font-weight: bold;
  22. margin-bottom: 10rpx;
  23. }
  24. .children-class {
  25. color: #696969;
  26. font-size: 32rpx;
  27. font-weight: bold;
  28. margin-top: 10rpx;
  29. }
  30. }
  31. }
  32. .chart-container {
  33. margin: 20rpx;
  34. border-radius: $card-border-radius;
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. flex-direction: column;
  39. background-color: #FFFFFF;
  40. .chart-name {
  41. width: 100%;
  42. display: flex;
  43. justify-content: flex-start;
  44. align-items: center;
  45. margin-left: 40rpx;
  46. margin-top: 20rpx;
  47. .chart-name-text {
  48. font-size: 30rpx;
  49. font-weight: bold;
  50. color: #3B4144;
  51. margin-left: 10rpx;
  52. }
  53. .search-box {
  54. display: flex;
  55. align-items: center;
  56. margin-left: auto;
  57. margin-right: 40rpx;
  58. }
  59. }
  60. .charts-box {
  61. width: 100%;
  62. height: 550rpx;
  63. }
  64. }
  65. }