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-color: #fff;
  24. border-radius: 32rpx 32rpx 0rpx 0rpx;
  25. .icon-close {
  26. position: absolute;
  27. width: 30rpx;
  28. height: 30rpx;
  29. top: 40rpx;
  30. right: 32rpx;
  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. 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: 0 40rpx 0;
  67. background: #FFFFFF;
  68. border-radius: 20rpx;
  69. margin-bottom: 48rpx;
  70. display: flex;
  71. flex-direction: column;
  72. .title {
  73. display: inline;
  74. font-size: 30rpx;
  75. color: #131415;
  76. padding-bottom: 24rpx;
  77. font-weight: bold;
  78. .red {
  79. color: #FC1A19;
  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( 315deg, #FF4A00 0%, #FE8C00 100%);
  101. border-radius: 16rpx;
  102. padding: 22rpx 84rpx;
  103. font-weight: 500;
  104. font-size: 32rpx;
  105. color: #fff;
  106. line-height: 44rpx;
  107. }
  108. }
  109. }
  110. }