apply-refound.less 2.2 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-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: 8rpx;
  46. height: 180rpx;
  47. font-size: 30rpx;
  48. width: 100%;
  49. margin: 0;
  50. line-height: 46rpx;
  51. box-sizing: border-box;
  52. }
  53. .num {
  54. padding-right: 24rpx;
  55. padding-bottom: 24rpx;
  56. text-align: right;
  57. font-size: 28rpx;
  58. color: #AAAAAA;
  59. line-height: 40rpx;
  60. }
  61. }
  62. .use-form__input {
  63. margin: 0 40rpx 0;
  64. background: #FFFFFF;
  65. border-radius: 20rpx;
  66. margin-bottom: 48rpx;
  67. display: flex;
  68. flex-direction: column;
  69. .title {
  70. display: inline;
  71. font-size: 30rpx;
  72. color: #131415;
  73. padding-bottom: 24rpx;
  74. font-weight: bold;
  75. .red {
  76. color: #FC1A19;
  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( 315deg, #FF4A00 0%, #FE8C00 100%);
  98. border-radius: 16rpx;
  99. padding: 22rpx 84rpx;
  100. font-weight: 500;
  101. font-size: 32rpx;
  102. color: #fff;
  103. line-height: 44rpx;
  104. }
  105. }
  106. }
  107. }