| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- /* pages/withdrawal/withdrawal.wxss */
- page {
- background: #f5f5f5;
- }
- .message {
- height: 74rpx;
- color: #327ae1;
- font-size: 28rpx;
- line-height: 74rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- background: #e8f2ff;
- }
- .money {
- padding: 30rpx 30rpx 0 30rpx;
- box-sizing: border-box;
- background: #fff;
- }
- .money-content {
- height: 220rpx;
- }
- .money-content-title {
- color: #333;
- font-size: 28rpx;
- }
- .money-content-input {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .input {
- flex: 1;
- color: #333;
- font-size: 68rpx;
- display: flex;
- align-items: center;
- padding: 15rpx 0;
- }
- .input input {
- height: 100%;
- }
- .all {
- font-size: 28rpx;
- color: #327ae1;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .all-icon {
- height: 25rpx;
- width: 25rpx;
- margin-left: 15rpx;
- }
- .hint {
- height: 100rpx;
- color: #999;
- font-size: 28rpx;
- line-height: 100rpx;
- border-top: 2rpx solid #eee;
- }
- .pay-method {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 45rpx;
- box-sizing: border-box;
- }
- .method {
- width: 314rpx;
- height: 98rpx;
- background: #fff;
- border: 2rpx solid #eee;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: flex-start;
- position: relative;
- }
- .wechat {
- width: 56rpx;
- height: 45rpx;
- }
- .alipay {
- height: 56rpx;
- width: 56rpx;
- }
- .pay-text {
- color: #333;
- font-size: 28rpx;
- margin-left: 30rpx;
- }
- .choose-pay {
- height: 24rpx;
- width: 24rpx;
- position: absolute;
- right: 0;
- bottom: 0;
- }
- .button {
- width: 690rpx;
- height: 88rpx;
- color: #fff;
- font-size: 34rpx;
- text-align: center;
- line-height: 88rpx;
- background: #d8d8d8;
- border-radius: 10rpx;
- margin: 30rpx auto;
- }
- .background {
- background: linear-gradient(90deg, rgba(78, 171, 225, 1) 0%, rgba(49, 121, 225, 1) 100%);
- }
- .border {
- border: 2rpx solid #07aaff;
- }
|