apply-refound.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. z-index: 9;
  9. .useRefound-mask {
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. right: 0;
  14. bottom: 0;
  15. background-color: rgba(0, 0, 0, 0.6);
  16. }
  17. .useRefound-container {
  18. position: absolute;
  19. left: 0;
  20. right: 0;
  21. bottom: 0;
  22. width: 100%;
  23. background: linear-gradient( 180deg, #FFDEE7 0%, #FFFFFF 12%, #FFFFFF 100%);
  24. background-color: #fff;
  25. border-radius: 32rpx 32rpx 0rpx 0rpx;
  26. .icon-close {
  27. position: absolute;
  28. width: 38rpx;
  29. height: 38rpx;
  30. top: 40rpx;
  31. right: 40rpx;
  32. }
  33. .use-title {
  34. font-weight: 600;
  35. font-size: 36rpx;
  36. color: #000000;
  37. line-height: 50rpx;
  38. padding-top: 34rpx;
  39. padding-bottom: 30rpx;
  40. text-align: center;
  41. }
  42. .use-form {
  43. background: #F7F8F9;
  44. border-radius: 20rpx;
  45. padding: 22rpx 24rpx 24rpx 30rpx;
  46. textarea {
  47. height: 140rpx;
  48. font-size: 30rpx;
  49. width: 100%;
  50. &::placeholder {
  51. color: #AAAAAA;
  52. }
  53. }
  54. .num {
  55. text-align: right;
  56. font-size: 28rpx;
  57. color: #AAAAAA;
  58. line-height: 40rpx;
  59. }
  60. }
  61. .use-form__input {
  62. margin: 0 40rpx 0;
  63. background: #FFFFFF;
  64. border-radius: 20rpx;
  65. margin-bottom: 48rpx;
  66. display: flex;
  67. flex-direction: column;
  68. .title {
  69. display: inline;
  70. font-size: 30rpx;
  71. color: #131415;
  72. padding-bottom: 24rpx;
  73. .red {
  74. color: #F44541;
  75. }
  76. .sencd {
  77. color: #AAAAAA;
  78. }
  79. }
  80. input {
  81. padding: 20rpx 16rpx;
  82. background: #F7F8F9;
  83. border-radius: 16rpx;
  84. font-size: 30rpx;
  85. &::placeholder {
  86. color: #AAAAAA;
  87. }
  88. }
  89. }
  90. .btnSection {
  91. padding: 0 32rpx 58rpx;
  92. button {
  93. margin: 0;
  94. width: 100%;
  95. background: linear-gradient( 270deg, #FF204B 0%, #FE5B71 100%);
  96. border-radius: 78rpx;
  97. padding: 22rpx 84rpx;
  98. font-weight: 500;
  99. font-size: 32rpx;
  100. color: #FBEAC9;
  101. line-height: 44rpx;
  102. }
  103. }
  104. }
  105. }