detail.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. .uni-app {
  2. display: flex;
  3. flex-direction: column;
  4. overflow: hidden;
  5. .top-container {
  6. width: 100%;
  7. }
  8. .main-container {
  9. width: 100%;
  10. flex: 1;
  11. display: block;
  12. overflow-y: auto;
  13. .header-top {
  14. position: relative;
  15. width: 100%;
  16. padding-bottom: 30rpx;
  17. .bg {
  18. position: absolute;
  19. top: 0;
  20. left: 0;
  21. width: 100%;
  22. height: 160rpx;
  23. }
  24. .card {
  25. position: relative;
  26. width: calc(100% - 64rpx);
  27. border-radius: 10rpx;
  28. background-color: white;
  29. box-shadow: 0 14rpx 16rpx 0 rgba(28,108,255,0.10);
  30. padding: 10rpx;
  31. margin: 0 auto;
  32. }
  33. }
  34. /**
  35. * 相关信息
  36. */
  37. .detail-about-container {
  38. padding: 0 20rpx 10rpx;
  39. }
  40. }
  41. }
  42. // 标题
  43. .title-cell {
  44. font-size: 30rpx;
  45. padding: 20rpx 24rpx;
  46. @include left;
  47. .type-icon {
  48. width: 48rpx;
  49. height: 48rpx;
  50. }
  51. .title-text {
  52. flex: 1;
  53. font-size: 32rpx;
  54. font-weight: 500;
  55. margin-left: 25rpx;
  56. @include ellipsis;
  57. }
  58. .title-status {
  59. font-size: $wk-font-mini;
  60. line-height: normal;
  61. padding: 5rpx 18rpx;
  62. border-radius: 4rpx;
  63. margin-left: 10rpx;
  64. .wk {
  65. margin-right: 10rpx;
  66. font-size: 26rpx;
  67. }
  68. }
  69. .num {
  70. font-size: 26rpx;
  71. color: #666;
  72. margin-left: 15rpx;
  73. }
  74. }
  75. // 主要信息
  76. .main-info {
  77. font-size: 24rpx;
  78. color: $gray;
  79. padding: 0 32rpx;
  80. margin-top: 20rpx;
  81. .info-item {
  82. margin-bottom: 15rpx;
  83. @include left;
  84. .icon {
  85. width: 36rpx;
  86. height: 36rpx;
  87. margin-right: 15rpx;
  88. &.phone {
  89. width: 32rpx;
  90. height: 32rpx;
  91. }
  92. }
  93. }
  94. }
  95. .main-info {
  96. margin-bottom: 25rpx;
  97. }
  98. // header section cell
  99. .relevance-cell {
  100. font-size: 28rpx;
  101. line-height: 1;
  102. border-top: 1rpx solid $border-color;
  103. background-color: white;
  104. padding: 24rpx 25rpx;
  105. @include left;
  106. .cell-icon {
  107. width: 46rpx;
  108. height: 46rpx;
  109. color: $theme-color;
  110. font-size: $wk-font-large;
  111. margin-right: 20rpx;
  112. }
  113. .cell-body {
  114. flex: 1;
  115. color: $theme-color;
  116. font-size: $wk-font-medium;
  117. font-weight: 500;
  118. margin-right: 10rpx;
  119. }
  120. .cell-link {
  121. font-size: $wk-font-sm;
  122. line-height: inherit;
  123. }
  124. }
  125. // 首要联系人
  126. .main-user {
  127. color: $dark;
  128. padding: 20rpx 25rpx;
  129. margin-top: 20rpx;
  130. .cell-icon {
  131. width: 42rpx;
  132. height: 42rpx;
  133. border: 1rpx solid $theme-color;
  134. border-radius: 50%;
  135. margin-right: 10rpx;
  136. @include center;
  137. .icon {
  138. font-size: 24rpx;
  139. color: $theme-color;
  140. }
  141. }
  142. .mobile {
  143. color: $theme-color;
  144. line-height: 1;
  145. font-size: 28rpx;
  146. margin-right: 10rpx;
  147. }
  148. }
  149. /* 审核控制按钮 */
  150. .check-box {
  151. width: 100%;
  152. font-size: 30rpx;
  153. background-color: white;
  154. padding: 20rpx 15rpx;
  155. border-top: 1rpx solid $border-color;
  156. display: flex;
  157. align-content: center;
  158. justify-content: space-between;
  159. .btn {
  160. flex: 1;
  161. height: 75rpx;
  162. line-height: 1.2;
  163. color: white;
  164. font-size: $wk-font-base;
  165. border-radius: 6rpx;
  166. margin-right: 5%;
  167. @include center;
  168. &:last-child {
  169. margin-right: 0;
  170. }
  171. &.success {
  172. background-color: #2DB76F;
  173. }
  174. &.error {
  175. background-color: #F75759;
  176. }
  177. &.cancel {
  178. background-color: #606365;
  179. }
  180. .icon {
  181. font-size: 30rpx;
  182. margin-right: 20rpx;
  183. }
  184. }
  185. .audit-status {
  186. flex: 1;
  187. font-size: 28rpx;
  188. color: $gray;
  189. }
  190. }
  191. .wk-tabs {
  192. &.border {
  193. border-bottom: 1rpx solid #e6e6e6;
  194. }
  195. .wk-tab-item {
  196. font-size: 29rpx;
  197. }
  198. }