withdrawal-result.wxss 979 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* pages/withdrawal-result/withdrawal-result.wxss */
  2. page {
  3. background: #f5f5f5;
  4. }
  5. .content {
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. background: #fff;
  10. padding: 30rpx 0;
  11. }
  12. .content image {
  13. width: 44rpx;
  14. height: 287rpx;
  15. }
  16. .right {
  17. height: 287rpx;
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: space-between;
  21. margin-left: 45rpx;
  22. }
  23. .top {
  24. color: #999;
  25. font-size: 24rpx;
  26. flex: 1;
  27. display: flex;
  28. flex-direction: column;
  29. }
  30. .top view {
  31. margin-bottom: 15rpx;
  32. }
  33. .bottom {
  34. flex: 1;
  35. display: flex;
  36. align-items: flex-end;
  37. }
  38. .wait {
  39. color: #327ae1;
  40. font-size: 32rpx;
  41. }
  42. .bottom {
  43. color: #333;
  44. font-size: 32rpx;
  45. margin-bottom: 10rpx;
  46. }
  47. .button {
  48. width: 690rpx;
  49. height: 88rpx;
  50. color: #fff;
  51. font-size: 34rpx;
  52. text-align: center;
  53. line-height: 88rpx;
  54. background: linear-gradient(90deg, rgba(78, 171, 225, 1) 0%, rgba(49, 121, 225, 1) 100%);
  55. border-radius: 10rpx;
  56. margin: 80rpx auto;
  57. }