123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /* dispatcher/pages/withdraw/withdraw.wxss */
- @import '../../../templates/nodata/nodata.wxss';
- @import '../../../templates/loading/loading.wxss';
- @import '../dispatch_go/dispatch_go.wxss';
- .header {
- background: #00B7FF;
- padding: 20rpx 30rpx;
- }
- .header-content {
- background: #fff;
- border-radius: 18rpx;
- padding: 30rpx 20rpx;
- }
- .header-text-black {
- color: #333;
- font-size: 32rpx;
- line-height: 45rpx;
- font-weight: bold;
- }
- .header-text-gray {
- color: #999;
- font-size: 28rpx;
- line-height: 40rpx;
- margin-top: 14rpx;
- }
- .header-items {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- margin-top: 30rpx;
- }
- .header-item {
- flex: 1;
- text-align: center;
- position: relative;
- }
- .header-item-icon {
- width: 40rpx;
- height: 40rpx;
- position: relative;
- z-index: 9;
- }
- .header-item-line-left {
- content: "";
- position: absolute;
- top: 20rpx;
- left: 0rpx;
- width: 50%;
- height: 10rpx;
- background: #CECECE;
- }
- .header-item-line-right {
- content: "";
- position: absolute;
- top: 20rpx;
- right: 0rpx;
- width: 50%;
- height: 10rpx;
- background: #CECECE;
- }
- .header-item-text {
- margin-top: 20rpx;
- }
- .bg-blue {
- background: #00B7FF;
- }
- .bg-gray {
- background: #CECECE;
- }
- .text-blue {
- color: #00B7FF;
- font-size: 30rpx;
- line-height: 30rpx;
- }
- .text-gray {
- color: #CECECE;
- font-size: 30rpx;
- line-height: 30rpx;
- }
- .text-gray-small {
- color: #999;
- font-size: 24rpx;
- line-height: 30rpx;
- }
- .footer-box {
- bottom: 0rpx;
- }
|