handleFile.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /* pages/handleFile/handleFile.wxss */
  2. .handle-file-content {
  3. width: 100%;
  4. height: 100%;
  5. background-color: #f7f7f7;
  6. overflow: hidden;
  7. }
  8. .main-content {
  9. width: 690rpx;
  10. height: calc(100% - 180rpx);
  11. margin: 0 auto;
  12. overflow-y: auto;
  13. }
  14. .file-item {
  15. width: 100%;
  16. height: 160rpx;
  17. background: #FFFFFF;
  18. border-radius: 20rpx;
  19. margin-top: 20rpx;
  20. }
  21. .f-left {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. .f-radio {
  26. width: 40rpx;
  27. height: 40rpx;
  28. border: 2rpx solid #DDDDDD;
  29. border-radius: 50%;
  30. margin-left: 20rpx;
  31. }
  32. .f-radio-active {
  33. background-color: var(--maincolor);
  34. border-color: var(--maincolor);
  35. }
  36. .f-avatar {
  37. width: 80rpx;
  38. height: 80rpx;
  39. border-radius: 50%;
  40. margin: 0 14rpx 0 20rpx;
  41. }
  42. .head-img {
  43. width: 100%;
  44. height: 100%;
  45. border-radius: 50%;
  46. }
  47. .report-text {
  48. padding: 20rpx;
  49. font-size: 26rpx;
  50. font-weight: 400;
  51. color: var(--maincolor);
  52. }
  53. .fu-name {
  54. font-size: 30rpx;
  55. font-weight: bold;
  56. color: #333333;
  57. margin-right: 12rpx;
  58. }
  59. .suer-sex {
  60. width: 30rpx;
  61. height: 30rpx;
  62. }
  63. .img {
  64. width: 30rpx;
  65. height: 30rpx;
  66. }
  67. .fu-date {
  68. font-size: 26rpx;
  69. font-weight: 400;
  70. color: #999999;
  71. }
  72. .f-qrcode {
  73. width: 80rpx;
  74. height: 80rpx;
  75. margin-left: 20rpx;
  76. }
  77. .qrcode-item {
  78. width: 60rpx;
  79. height: 60rpx;
  80. }
  81. .actions {
  82. width: 100%;
  83. height: 80rpx;
  84. position: fixed;
  85. bottom: 60rpx;
  86. background-color: #f7f7f7;
  87. display: flex;
  88. justify-content: center;
  89. align-items: center;
  90. }
  91. .handle-btn {
  92. width: 690rpx;
  93. height: 80rpx;
  94. border-radius: 10rpx;
  95. }
  96. .wrapper {
  97. height: 100%;
  98. }
  99. .model {
  100. width: 540rpx;
  101. height: 280rpx;
  102. background: #FFFFFF;
  103. border-radius: 24rpx;
  104. }
  105. .top-title {
  106. height: 190rpx;
  107. border-bottom: 1rpx solid #DDDDDD;
  108. box-sizing:border-box;
  109. padding-top: 1rpx;
  110. }
  111. .main-title {
  112. font-size: 34rpx;
  113. font-weight: bold;
  114. color: #333333;
  115. text-align: center;
  116. margin-top: 37rpx;
  117. }
  118. .sub-title {
  119. font-size: 26rpx;
  120. text-align: center;
  121. font-weight: 400;
  122. color: #333333;
  123. }
  124. .btn {
  125. width: 270rpx;
  126. height: 90rpx;
  127. box-sizing: border-box;
  128. font-size: 34rpx;
  129. color: #333333;
  130. }
  131. .w-cancel-btn {
  132. font-weight: 400;
  133. }
  134. .w-confirm-btn {
  135. border-left: 1rpx solid #DDDDDD;
  136. font-weight: bold;
  137. }