WeekCalendarItem.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. .chart_content{
  2. display: flex;
  3. flex-direction: column;
  4. height: 520px;
  5. // background-color: red;
  6. flex-shrink: 0;
  7. }
  8. .chart_top_week{
  9. margin-top: 30px;
  10. margin-bottom: 10px;
  11. height: 20px;
  12. display: flex;
  13. flex-direction: row;
  14. align-items: center;
  15. position: relative;
  16. }
  17. .chart_bottom_week{
  18. margin-top: 10px;
  19. margin-bottom: 30px;
  20. height: 20px;
  21. display: flex;
  22. flex-direction: row;
  23. align-items: center;
  24. position: relative;
  25. }
  26. .chart_detail{
  27. display: flex;
  28. position: relative;
  29. // flex: 1;
  30. height: 400px;
  31. overflow: hidden;
  32. }
  33. .chart_week_text{
  34. font-size: 20px;
  35. line-height: 20px;
  36. color: #fff;
  37. opacity: 0.4;
  38. position: absolute;
  39. // width: 94px;
  40. // margin-left: 0px;
  41. }
  42. .verticalLine{
  43. position: absolute;
  44. top: 0;
  45. bottom: 0;
  46. background-color: #5A5A5A;
  47. -webkit-transform: scaleX(0.5);
  48. transform: scaleX(0.5);
  49. transform-origin: left;
  50. width: 2px;
  51. }
  52. .horizontalLine{
  53. position: absolute;
  54. left: 0;
  55. right: 0;
  56. background-color: #5A5A5A;
  57. -webkit-transform: scaleY(0.5);
  58. transform: scaleY(0.5);
  59. height: 2px;
  60. }
  61. .currentLine{
  62. -webkit-transform: scaleY(0.5);
  63. transform: scaleY(0.5);
  64. height: 2px;
  65. }
  66. .lineContent{
  67. position: absolute;
  68. top: 0;
  69. bottom: 0;
  70. width: 94px;
  71. display: flex;
  72. flex-direction: row;
  73. align-items: center;
  74. justify-content: center;
  75. }
  76. .lineBgView{
  77. position: relative;
  78. height: 400px;
  79. width: 20rpx;
  80. }
  81. .detailLine{
  82. position: absolute;
  83. left: 0;
  84. width: 20rpx;
  85. min-height: 2px;
  86. }