apply-refound.less 2.3 KB

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