withdraw.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* dispatcher/pages/withdraw/withdraw.wxss */
  2. @import '../../../templates/nodata/nodata.wxss';
  3. @import '../../../templates/loading/loading.wxss';
  4. @import '../dispatch_go/dispatch_go.wxss';
  5. .header {
  6. background: #00B7FF;
  7. padding: 20rpx 30rpx;
  8. }
  9. .header-content {
  10. background: #fff;
  11. border-radius: 18rpx;
  12. padding: 30rpx 20rpx;
  13. }
  14. .header-text-black {
  15. color: #333;
  16. font-size: 32rpx;
  17. line-height: 45rpx;
  18. font-weight: bold;
  19. }
  20. .header-text-gray {
  21. color: #999;
  22. font-size: 28rpx;
  23. line-height: 40rpx;
  24. margin-top: 14rpx;
  25. }
  26. .header-items {
  27. display: flex;
  28. justify-content: space-between;
  29. align-items: flex-start;
  30. margin-top: 30rpx;
  31. }
  32. .header-item {
  33. flex: 1;
  34. text-align: center;
  35. position: relative;
  36. }
  37. .header-item-icon {
  38. width: 40rpx;
  39. height: 40rpx;
  40. position: relative;
  41. z-index: 9;
  42. }
  43. .header-item-line-left {
  44. content: "";
  45. position: absolute;
  46. top: 20rpx;
  47. left: 0rpx;
  48. width: 50%;
  49. height: 10rpx;
  50. background: #CECECE;
  51. }
  52. .header-item-line-right {
  53. content: "";
  54. position: absolute;
  55. top: 20rpx;
  56. right: 0rpx;
  57. width: 50%;
  58. height: 10rpx;
  59. background: #CECECE;
  60. }
  61. .header-item-text {
  62. margin-top: 20rpx;
  63. }
  64. .bg-blue {
  65. background: #00B7FF;
  66. }
  67. .bg-gray {
  68. background: #CECECE;
  69. }
  70. .text-blue {
  71. color: #00B7FF;
  72. font-size: 30rpx;
  73. line-height: 30rpx;
  74. }
  75. .text-gray {
  76. color: #CECECE;
  77. font-size: 30rpx;
  78. line-height: 30rpx;
  79. }
  80. .text-gray-small {
  81. color: #999;
  82. font-size: 24rpx;
  83. line-height: 30rpx;
  84. }
  85. .footer-box {
  86. bottom: 0rpx;
  87. }