applyRefund.scss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .apply-refund {
  2. background-color: #f6f6ff;
  3. min-height: calc(100vh - 44px);
  4. .apply-refund-form {
  5. background-color: #fff;
  6. font-size: 28rpx;
  7. .apply-refund-form-item {
  8. display: flex;
  9. flex-wrap: wrap;
  10. line-height: 100rpx;
  11. padding: 0 34rpx;
  12. border-bottom: solid 2px #f5f5f5;
  13. .apply-refund-form-label {
  14. width: 150rpx;
  15. }
  16. .apply-refund-form-content {
  17. color: #787878;
  18. background-color: #fff;
  19. .money {
  20. color: #fa6400;
  21. }
  22. textarea {
  23. width: 100%;
  24. background-color: #f5f5f5;
  25. font-size: 26rpx;
  26. &:after {
  27. content: attr(data-maxnum);
  28. position: absolute;
  29. right: 10px;
  30. bottom: 3px;
  31. font-size: 12px;
  32. }
  33. }
  34. }
  35. .full-width {
  36. width: 100%;
  37. background-color: #f5f5f5;
  38. padding: 30rpx;
  39. margin-bottom: 30rpx;
  40. border-radius: 5px;
  41. /deep/ .u-add-wrap {
  42. border: 1px dashed #606266;
  43. }
  44. }
  45. }
  46. }
  47. .apply-refund-form-submit {
  48. padding: 0 34rpx;
  49. margin: 50rpx 0;
  50. }
  51. .refund-tips {
  52. padding: 34rpx;
  53. background-color: #fff;
  54. }
  55. .pop-warp {
  56. display: flex;
  57. flex-direction: column;
  58. align-items: center;
  59. justify-content: center;
  60. height: 100%;
  61. .pop-warp-icon {
  62. width: 100rpx;
  63. height: 100rpx;
  64. line-height: 120rpx;
  65. margin: 0 auto;
  66. border-radius: 50%;
  67. background-color: $u-type-primary;
  68. text-align: center;
  69. }
  70. .pop-warp-tips {
  71. color: $u-type-primary;
  72. width: 260rpx;
  73. text-align: center;
  74. margin-top: 30rpx;
  75. }
  76. }
  77. }