apply-refound.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. textarea {
  45. padding: 24rpx;
  46. height: 180rpx;
  47. font-size: 30rpx;
  48. width: 100%;
  49. margin: 0;
  50. line-height: 46rpx;
  51. box-sizing: border-box;
  52. &::placeholder {
  53. color: #AAAAAA;
  54. }
  55. }
  56. .num {
  57. padding-right: 24rpx;
  58. padding-bottom: 24rpx;
  59. text-align: right;
  60. font-size: 28rpx;
  61. color: #AAAAAA;
  62. line-height: 40rpx;
  63. }
  64. }
  65. .use-form__input {
  66. margin: 20rpx 40rpx 0;
  67. background: #FFFFFF;
  68. border-radius: 20rpx;
  69. padding: 24rpx;
  70. margin-bottom: 180rpx;
  71. display: flex;
  72. justify-content: space-between;
  73. .title {
  74. display: inline;
  75. font-size: 30rpx;
  76. color: #131415;
  77. .red {
  78. color: #F44541;
  79. }
  80. .sencd {
  81. color: #AAAAAA;
  82. }
  83. }
  84. input {
  85. text-align: right;
  86. font-size: 30rpx;
  87. }
  88. }
  89. .btnSection {
  90. padding: 0 32rpx 58rpx;
  91. button {
  92. margin: 0;
  93. width: 100%;
  94. background: linear-gradient( 90deg, #544F4A 0%, #302F2B 100%);
  95. border-radius: 78rpx;
  96. padding: 22rpx 84rpx;
  97. font-weight: 500;
  98. font-size: 32rpx;
  99. color: #FBEAC9;
  100. line-height: 44rpx;
  101. }
  102. }
  103. }
  104. }