1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- .charge {
- padding: 40rpx;
- .charge-type {
- display: flex;
- justify-content: space-between;
- border-bottom: solid 1rpx #979797;
- line-height: 80rpx;
- text {
- &:first-child {
- color: #2A2A2A;
- font-size: 28rpx;
- font-weight: 500;
- }
- &:last-child {
- color: #6E6E6E;
- font-size: 24rpx;
- font-weight: 400;
- }
- }
- }
- .charge-rules {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 25rpx 0;
- border-bottom: solid 2rpx #979797;
- view:first-child {
- color: #2A2A2A;
- font-weight: 400;
- }
- view.charge-rules-right {
- width: 70%;
- view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- font-size: 24rpx;
- font-weight: 400;
- color: #6E6E6E;
- line-height: 40rpx;
- }
- }
- }
- .charge-instructions {
- margin-top: 38rpx;
- .charge-instructions-item,
- .charge-instructions-title {
- text-indent: -1.5em;
- margin-left: 1.5em;
- line-height: 40rpx;
- font-size: 24rpx;
- color: #757575;
- }
- }
- .charge-telphone {
- margin-top: 38rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #757575;
- line-height: 40rpx;
- }
- }
|