| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* pages/withdrawal-result/withdrawal-result.wxss */
- page {
- background: #f5f5f5;
- }
- .content {
- display: flex;
- align-items: center;
- justify-content: center;
- background: #fff;
- padding: 30rpx 0;
- }
- .content image {
- width: 44rpx;
- height: 287rpx;
- }
- .right {
- height: 287rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-left: 45rpx;
- }
- .top {
- color: #999;
- font-size: 24rpx;
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .top view {
- margin-bottom: 15rpx;
- }
- .bottom {
- flex: 1;
- display: flex;
- align-items: flex-end;
- }
- .wait {
- color: #327ae1;
- font-size: 32rpx;
- }
- .bottom {
- color: #333;
- font-size: 32rpx;
- margin-bottom: 10rpx;
- }
- .button {
- width: 690rpx;
- height: 88rpx;
- color: #fff;
- font-size: 34rpx;
- text-align: center;
- line-height: 88rpx;
- background: linear-gradient(90deg, rgba(78, 171, 225, 1) 0%, rgba(49, 121, 225, 1) 100%);
- border-radius: 10rpx;
- margin: 80rpx auto;
- }
|