apply.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .container {
  2. font-size: 28rpx;
  3. }
  4. .row-title {
  5. color: #888;
  6. margin-bottom: 20rpx;
  7. }
  8. .goods-detail {
  9. padding: 24rpx 20rpx;
  10. }
  11. .goods-detail .left .goods-image {
  12. display: block;
  13. width: 150rpx;
  14. height: 150rpx;
  15. }
  16. .goods-detail .right {
  17. padding-left: 20rpx;
  18. }
  19. /* 服务类型 */
  20. .row-service {
  21. padding: 24rpx 20rpx;
  22. }
  23. .service-switch .switch-item {
  24. height: 38rpx;
  25. line-height: 38rpx;
  26. padding: 10rpx 30rpx;
  27. margin-right: 25rpx;
  28. border-radius: 10rpx;
  29. border: 1px solid rgb(177, 177, 177);
  30. color: #888;
  31. }
  32. .service-switch .switch-item.active {
  33. color: #fc1e56;
  34. border: 1px solid #fc1e56;
  35. }
  36. /* 申请原因 */
  37. .row-textarea {
  38. padding: 24rpx 20rpx;
  39. }
  40. .row-textarea textarea {
  41. width: 100%;
  42. height: 220rpx;
  43. padding: 12rpx;
  44. border: 1rpx solid #e8e8e8;
  45. border-radius: 5rpx;
  46. box-sizing: border-box;
  47. }
  48. /* 退款金额 */
  49. .row-money {
  50. padding: 24rpx 20rpx;
  51. }
  52. .row-money .row-title {
  53. margin-bottom: 0;
  54. margin-right: 30rpx;
  55. }
  56. /* 上传凭证 */
  57. .row-voucher {
  58. padding: 24rpx 20rpx;
  59. }
  60. .row-voucher .image-list:after {
  61. clear: both;
  62. content: " ";
  63. display: table;
  64. }
  65. .row-voucher .image-list image {
  66. display: block;
  67. width: 150rpx;
  68. height: 150rpx;
  69. }
  70. .row-voucher .image-list .image-picker {
  71. width: 150rpx;
  72. height: 150rpx;
  73. border: 1rpx dashed #ccc;
  74. color: #ccc;
  75. }
  76. .row-voucher .image-list .image-picker .choose__icon {
  77. font-size: 56rpx;
  78. margin-bottom: 6rpx;
  79. }
  80. .row-voucher .image-list .image-picker .choose__text {
  81. font-size: 22rpx;
  82. }
  83. .row-voucher .image-list .image-picker, .image-list .image-preview {
  84. margin: 15rpx 30rpx 15rpx 0;
  85. float: left;
  86. }
  87. .row-voucher .image-list .image-picker:nth-child(4n+0),
  88. .row-voucher .image-list .image-preview:nth-child(4n+0) {
  89. margin-right: 0;
  90. }
  91. .row-voucher .image-list .image-preview {
  92. position: relative;
  93. }
  94. .row-voucher .image-list .image-preview .image-delete {
  95. position: absolute;
  96. top: -15rpx;
  97. right: -15rpx;
  98. height: 42rpx;
  99. width: 42rpx;
  100. line-height: 42rpx;
  101. background: rgba(0, 0, 0, 0.64);
  102. border-radius: 50%;
  103. color: #fff;
  104. font-weight: bolder;
  105. font-size: 22rpx;
  106. z-index: 10;
  107. text-align: center;
  108. }