12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /* pages/realtimewater.wxss */
- .realtime-water {
- padding: 0;
- overflow-x: hidden;
- }
- .realtime-water .echart {
- height: 622rpx;
- padding: 30rpx;
- background-image: linear-gradient(180deg, #0091ff 0%, #6ca0ff 61%);
- }
- .realtime-water .header {
- height: 46rpx;
- line-height: 46rpx;
- font-size: 28rpx;
- color: #fff;
- }
- .realtime-water .monthbox .unit {
- font-size: 24rpx;
- color: rgba(255, 255, 255, 1);
- line-height: 34rpx;
- position: absolute;
- left: 0;
- top: -30rpx;
- }
- .realtime-water .monthbox {
- width: 100%;
- height: 450rpx;
- margin-top: 60rpx;
- position: relative;
- }
- .col1::before {
- background: #80fdf6;
- }
- .col2::before {
- background: #a9ffc5;
- }
- .col3::before {
- background: #d3ecff;
- }
- .useVolume-list {
- width: 610rpx;
- margin: -90rpx auto 30rpx;
- background: #fff;
- padding: 40rpx;
- border-radius: 8rpx;
- box-shadow: 0 2rpx 40rpx 0 rgba(174, 203, 228, 0.3);
- font-size: 28rpx;
- font-family: PingFangSC;
- font-weight: 400;
- color: rgba(104, 107, 120, 1);
- line-height: 40rpx;
- }
- .useVolume-list.month {
- margin: -100rpx auto 30rpx;
- }
- .useVolume-list view {
- font-size: 28rpx;
- color: #686b78;
- line-height: 98rpx;
- border-bottom: 1rpx solid rgba(174, 203, 228, 0.3);
- }
- .useVolume-list view:last-of-type {
- border: none;
- }
|