Copyrefund.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. .refund {
  2. width: 100%;
  3. padding: 0 20rpx;
  4. box-sizing: border-box;
  5. }
  6. .list {
  7. width: 100%;
  8. height: 200rpx;
  9. background-color: #fff;
  10. border-radius: 12rpx;
  11. margin-top: 20rpx;
  12. display: flex;
  13. }
  14. .list>image {
  15. width: 180rpx;
  16. height: 178rpx;
  17. border-top-left-radius: 12rpx;
  18. border-bottom-left-radius: 12rpx;
  19. }
  20. .listRight {
  21. width: calc(100% - 180rpx);
  22. height: 200rpx;
  23. padding: 0 20rpx 20rpx 20rpx;
  24. box-sizing: border-box;
  25. }
  26. .listTitle {
  27. color: #595757;
  28. font-size: 28rpx;
  29. margin-top: 24rpx;
  30. }
  31. .listField {
  32. font-size: 24rpx;
  33. color: #AFAFAF;
  34. margin-top: 10rpx;
  35. }
  36. .title {
  37. color: #EE3A43;
  38. font-size: 30rpx;
  39. margin: 20rpx 0;
  40. padding-left: 20rpx;
  41. }
  42. .refundDet {
  43. font-size: 26rpx;
  44. line-height: 60rpx;
  45. color: #595757;
  46. padding: 0 20rpx;
  47. box-sizing: border-box;
  48. }
  49. .listReason {
  50. width: 100%;
  51. height: 80rpx;
  52. padding: 0 20rpx;
  53. box-sizing: border-box;
  54. display: flex;
  55. align-items: center;
  56. justify-content: space-between;
  57. border-bottom: 1px solid #E8E8E8;
  58. }
  59. .listReason .reason {
  60. font-size: 26rpx;
  61. color: #595757;
  62. }
  63. .listReason .bit {
  64. width: 40rpx;
  65. height: 40rpx;
  66. border-radius: 50%;
  67. border: 1px solid #A09FA1;
  68. }
  69. .listReason .current {
  70. position: relative;
  71. }
  72. .listReason .current::after {
  73. content: '';
  74. width: 20rpx;
  75. height: 20rpx;
  76. border-radius: 50%;
  77. background-color: #CF2430;
  78. position: absolute;
  79. left: 10rpx;
  80. top: 10rpx;
  81. z-index: 9;
  82. }
  83. .tips-messages-content {
  84. font-weight: bolder;
  85. }
  86. .bottomBG {
  87. width: 100%;
  88. height: 90rpx;
  89. }
  90. .bottom {
  91. width: 100%;
  92. height: 90rpx;
  93. background-color: #EE3A43;
  94. text-align: center;
  95. color: #fff;
  96. line-height: 90rpx;
  97. font-size: 30rpx;
  98. position: fixed;
  99. left: 0;
  100. bottom: 0;
  101. z-index: 999;
  102. }
  103. .textarea {
  104. width: 100%;
  105. height: 200rpx;
  106. font-size: 28rpx;
  107. color: #3d4145;
  108. padding: 20rpx;
  109. box-sizing: border-box;
  110. }
  111. .suc {
  112. width: 100%;
  113. height: 100%;
  114. background-color: #fff;
  115. text-align: center;
  116. position: fixed;
  117. left: 0;
  118. top: 0;
  119. z-index: 9999;
  120. }
  121. .suc .icon-zfcg {
  122. font-size: 180rpx;
  123. text-align: center;
  124. color: #EE3A43;
  125. padding-top: 100rpx;
  126. }
  127. .sucTitle {
  128. font-size: 40rpx;
  129. color: #000;
  130. margin: 60rpx 0 20rpx 0;
  131. }
  132. .sucTit {
  133. width: 80%;
  134. font-size: 28rpx;
  135. color: #898989;
  136. margin: 0 auto;
  137. }
  138. .backBtn {
  139. width: 90%;
  140. line-height: 80rpx;
  141. text-align: center;
  142. color: #fff;
  143. font-size: 30rpx;
  144. text-align: center;
  145. background-color: #EE3A43;
  146. margin: 40rpx auto 0;
  147. border-radius: 16rpx;
  148. }