refund.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .container {
  2. background-color: #f0f1f6;
  3. overflow: hidden;
  4. height: 100vh;
  5. }
  6. .content {
  7. padding: 0 30rpx;
  8. overflow: auto;
  9. height: 100%;
  10. }
  11. .white-panel {
  12. position: relative;
  13. width: 100%;
  14. min-height: 80rpx;
  15. height: fit-content;
  16. background-color: #fff;
  17. border-radius: 24rpx;
  18. padding: 30rpx;
  19. margin: 30rpx 0;
  20. overflow: hidden;
  21. }
  22. .btn_arrow::after {
  23. content: "";
  24. position: absolute;
  25. top: 50%;
  26. right: 20rpx;
  27. transform: translate(-50%, -50%) rotate(45deg);
  28. width: 20rpx;
  29. height: 20rpx;
  30. border: 2rpx solid #43434A;
  31. border-left: none;
  32. border-bottom: none;
  33. }
  34. /* 卡片分割线样式 */
  35. .card-div {
  36. position: relative;
  37. width: 100%;
  38. height: 80rpx;
  39. margin: 20rpx 0;
  40. display: flex;
  41. align-items: center;
  42. }
  43. /* .card-div::before {
  44. width: 100rpx;
  45. height: 100rpx;
  46. border-radius: 50%;
  47. background-color: #f0f1f6;
  48. background-color: red;
  49. position: absolute;
  50. top: 50%;
  51. left: -5rpx;
  52. transform: translate(-50%, 0);
  53. }
  54. .card-div::after {
  55. width: 10rpx;
  56. height: 10rpx;
  57. border-radius: 50%;
  58. background-color: #f0f1f6;
  59. position: absolute;
  60. top: 50%;
  61. right: -5rpx;
  62. transform: translate(-50%, 0);
  63. }
  64. .card-div__line {
  65. margin: 0 30rpx;
  66. } */
  67. /* 辅助样式 */
  68. image {
  69. height: 100%;
  70. }
  71. .text-center {
  72. text-align: center;
  73. }
  74. .text-justify {
  75. text-align: justify;
  76. }
  77. .text-ident {
  78. text-indent: 2rem;
  79. }
  80. .font-bold {
  81. font-weight: bold;
  82. }
  83. .display-flex__ac {
  84. display: flex;
  85. align-items: center;
  86. }
  87. .display-flex__jc {
  88. display: flex;
  89. justify-content: center;
  90. }
  91. .no-padding {
  92. padding: 0 !important;
  93. }
  94. /* 文字颜色-主色 */
  95. .text-color__dominant {
  96. color: #212326;
  97. }
  98. /* 文字颜色-副色 */
  99. .text-color__secondary {
  100. color: #4D4D53;
  101. }
  102. /* 文字颜色-信息色 */
  103. .text-color__info {
  104. color: #999999;
  105. }
  106. /* 文字颜色-警告色 */
  107. .text-color__danger {
  108. color: #FF5D5F;
  109. }