| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .chart_content{
- display: flex;
- flex-direction: column;
- height: 520px;
- // background-color: red;
- flex-shrink: 0;
- }
- .chart_top_week{
- margin-top: 30px;
- margin-bottom: 10px;
- height: 20px;
- display: flex;
- flex-direction: row;
- align-items: center;
- position: relative;
- }
- .chart_bottom_week{
- margin-top: 10px;
- margin-bottom: 30px;
- height: 20px;
- display: flex;
- flex-direction: row;
- align-items: center;
- position: relative;
- }
- .chart_detail{
- display: flex;
- position: relative;
- // flex: 1;
- height: 400px;
- overflow: hidden;
- }
- .chart_week_text{
- font-size: 20px;
- line-height: 20px;
- color: #fff;
- opacity: 0.4;
- position: absolute;
- // width: 94px;
- // margin-left: 0px;
- }
- .verticalLine{
- position: absolute;
- top: 0;
- bottom: 0;
- background-color: #5A5A5A;
- -webkit-transform: scaleX(0.5);
- transform: scaleX(0.5);
- transform-origin: left;
- width: 2px;
- }
- .horizontalLine{
- position: absolute;
- left: 0;
- right: 0;
- background-color: #5A5A5A;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- height: 2px;
- }
- .currentLine{
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- height: 2px;
- }
- .lineContent{
- position: absolute;
- top: 0;
- bottom: 0;
- width: 94px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .lineBgView{
- position: relative;
- height: 400px;
- width: 20rpx;
- }
- .detailLine{
- position: absolute;
- left: 0;
- width: 20rpx;
- min-height: 2px;
- }
|