apply-refound.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* components/apply-refound/apply-refound.wxss */
  2. .useRefound-pop {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. .useRefound-mask {
  9. position: absolute;
  10. top: 0;
  11. left: 0;
  12. right: 0;
  13. bottom: 0;
  14. background-color: rgba(0, 0, 0, 0.6);
  15. }
  16. .useRefound-container {
  17. position: absolute;
  18. left: 0;
  19. right: 0;
  20. bottom: 0;
  21. width: 100%;
  22. background: #F8F8F8;
  23. border-radius: 32rpx 32rpx 0rpx 0rpx;
  24. .icon-close {
  25. position: absolute;
  26. width: 30rpx;
  27. height: 30rpx;
  28. top: 40rpx;
  29. right: 40rpx;
  30. }
  31. .use-title {
  32. font-weight: 600;
  33. font-size: 36rpx;
  34. color: #000000;
  35. line-height: 50rpx;
  36. padding-top: 34rpx;
  37. padding-bottom: 30rpx;
  38. text-align: center;
  39. }
  40. .use-form {
  41. margin: 0 40rpx 0;
  42. background: #FFFFFF;
  43. border-radius: 20rpx;
  44. padding: 22rpx 24rpx 24rpx 30rpx;
  45. textarea {
  46. height: 140rpx;
  47. font-size: 30rpx;
  48. width: 100%;
  49. &::placeholder {
  50. color: #AAAAAA;
  51. }
  52. }
  53. .num {
  54. text-align: right;
  55. font-size: 28rpx;
  56. color: #AAAAAA;
  57. line-height: 40rpx;
  58. }
  59. }
  60. .use-form__input {
  61. margin: 20rpx 40rpx 0;
  62. background: #FFFFFF;
  63. border-radius: 20rpx;
  64. padding: 24rpx;
  65. margin-bottom: 180rpx;
  66. display: flex;
  67. justify-content: space-between;
  68. .title {
  69. display: inline;
  70. font-size: 30rpx;
  71. color: #131415;
  72. .red {
  73. color: #F44541;
  74. }
  75. .sencd {
  76. color: #AAAAAA;
  77. }
  78. }
  79. input {
  80. text-align: right;
  81. font-size: 30rpx;
  82. }
  83. }
  84. .btnSection {
  85. padding: 0 32rpx 58rpx;
  86. button {
  87. margin: 0;
  88. width: 100%;
  89. background: linear-gradient( 90deg, #544F4A 0%, #302F2B 100%);
  90. border-radius: 78rpx;
  91. padding: 22rpx 84rpx;
  92. font-weight: 500;
  93. font-size: 32rpx;
  94. color: #FBEAC9;
  95. line-height: 44rpx;
  96. }
  97. }
  98. }
  99. }