recharge.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .recharge__bg {
  2. width: 100%;
  3. min-height: 100%;
  4. background: #f3f3f3;
  5. }
  6. .recharge__head {
  7. width: 100%;
  8. height: 248rpx;
  9. background-image: linear-gradient(180deg,
  10. #eab86a 0%,
  11. #ff9e88 100%);
  12. text-align: center;
  13. padding-top: 50rpx;
  14. box-sizing: border-box;
  15. }
  16. .recharge__head .title {
  17. font-size: 28rpx;
  18. color: #ffffff;
  19. margin-bottom: 40rpx;
  20. }
  21. .recharge__head .price {
  22. font-size: 48rpx;
  23. color: #ffffff;
  24. font-weight: 600;
  25. }
  26. .recharge__wid {
  27. width: 100%;
  28. padding: 0 20rpx;
  29. box-sizing: border-box;
  30. }
  31. .recharge__content {
  32. position: relative;
  33. width: 100%;
  34. background: #fff;
  35. padding: 54rpx 30rpx 38rpx;
  36. margin-top: 20rpx;
  37. box-sizing: border-box;
  38. }
  39. .recharge__content .title {
  40. text-align: center;
  41. font-size: 28rpx;
  42. color: #7f93ae;
  43. margin-bottom: 54rpx;
  44. }
  45. .recharge__price {
  46. width: 100%;
  47. height: 100rpx;
  48. background: #f6f9fd;
  49. border: 1rpx solid #e5e5e5;
  50. padding-left: 30rpx;
  51. padding-right: 20rpx;
  52. margin-bottom:30rpx;
  53. box-sizing: border-box;
  54. }
  55. .recharge__price text {
  56. float: left;
  57. width: 80rpx;
  58. line-height: 100rpx;
  59. font-size: 28rpx;
  60. color: #7f93ae;
  61. }
  62. .recharge__price input {
  63. float: left;
  64. width: 440rpx;
  65. height: 100rpx;
  66. border: none;
  67. outline: none;
  68. font-size: 28rpx;
  69. color: #4c4c4c;
  70. }
  71. .recharge__btn {
  72. width: 100%;
  73. height: 88rpx;
  74. background: #eab86a;
  75. border-radius: 8rpx;
  76. line-height: 88rpx;
  77. text-align: center;
  78. font-size: 28rpx;
  79. color: #ffffff;
  80. }