| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .range {
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- line-height: 34rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- margin-bottom: 10rpx;
- padding-left: 20rpx;
- .iconfont {
- font-weight: normal;
- font-size: 24rpx;
- }
- }
- .chart {
- height: 964rpx;
- display: flex;
- flex-direction: column;
- padding-bottom: 40rpx;
- .item {
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 200rpx;
- font-family: PingFang SC, PingFang SC;
- font-size: 24rpx;
- color: #FFFFFF;
- .text {
- display: flex;
- position: absolute;
- top: 0;
- left: 220rpx;
- width: 400rpx;
- line-height: 44rpx;
- .label {
- font-weight: bold;
- font-size: 30rpx;
- color: #333333;
- }
- .tips {
- font-size: 24rpx;
- color: #999999;
- margin-left: 10rpx;
- }
- }
- .text1 {
- position: absolute;
- /* Ensure consistent positioning */
- top: auto;
- /* Reset top to avoid conflict */
- bottom: -40rpx;
- }
- }
- }
- .empty{
- margin-left: -60rpx;
- padding-bottom: 140rpx;
- }
|