apply-refound.less 2.3 KB

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