1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* pages/waterprice/waterprice.wxss */
- .water-price {
- padding: 0;
- font-size: 28rpx;
- background-color: #FAFCFF;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- color: #686B78;
- }
- .water-price .box .title {
- height: 80rpx;
- line-height: 80rpx;
- padding: 0 40rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: rgba(66, 70, 86, 1);
- background: rgba(250, 252, 255, 1);
- }
- .water-price .box .title .unit {
- color:rgba(104,107,120,1);
- margin-left: 20rpx;
- }
- .water-price .wrap {
- background-color: #FFF;
- padding: 0 40rpx;
- }
- .water-price .item {
- border-bottom: 2rpx solid rgba(174, 203, 228, 0.3);
- display: flex;
- align-items: center;
- padding: 30rpx 0;
- }
- .water-price .item:last-child {
- border-bottom: none;
- }
- .water-price .item .label {
- font-size: 28rpx;
- font-weight: 400;
- color: rgba(104, 107, 120, 1);
- width: 170rpx;
- margin-right: 40rpx;
- }
- .water-price .item .content {
- width: calc(100% - 210rpx);
- font-size: 28rpx;
- font-weight: 400;
- color: rgba(66, 70, 86, 1);
- line-height: 40rpx;
- }
- .water-price .item .content text{
- display: inline-block;
- width: 50%;
- }
- .water-price .tips {
- padding: 0 40rpx;
- margin-top: 34rpx;
- font-size: 28rpx;
- color: rgba(164, 165, 167, 1);
- line-height: 40rpx;
- }
|