apply-refound.less 2.2 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: linear-gradient( 180deg, #FFDEE7 0%, #FFFFFF 12%, #FFFFFF 100%);
  23. background-color: #fff;
  24. border-radius: 32rpx 32rpx 0rpx 0rpx;
  25. .icon-close {
  26. position: absolute;
  27. width: 38rpx;
  28. height: 38rpx;
  29. top: 40rpx;
  30. right: 40rpx;
  31. }
  32. .use-title {
  33. font-weight: 600;
  34. font-size: 36rpx;
  35. color: #000000;
  36. line-height: 50rpx;
  37. padding-top: 34rpx;
  38. padding-bottom: 30rpx;
  39. text-align: center;
  40. }
  41. .use-form {
  42. background: #F7F8F9;
  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: 0 40rpx 0;
  62. background: #FFFFFF;
  63. border-radius: 20rpx;
  64. margin-bottom: 48rpx;
  65. display: flex;
  66. flex-direction: column;
  67. .title {
  68. display: inline;
  69. font-size: 30rpx;
  70. color: #131415;
  71. padding-bottom: 24rpx;
  72. .red {
  73. color: #F44541;
  74. }
  75. .sencd {
  76. color: #AAAAAA;
  77. }
  78. }
  79. input {
  80. padding: 20rpx 16rpx;
  81. background: #F7F8F9;
  82. border-radius: 16rpx;
  83. font-size: 30rpx;
  84. &::placeholder {
  85. color: #AAAAAA;
  86. }
  87. }
  88. }
  89. .btnSection {
  90. padding: 0 32rpx 58rpx;
  91. button {
  92. margin: 0;
  93. width: 100%;
  94. background: linear-gradient( 270deg, #FF204B 0%, #FE5B71 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. }