fakeRegistration.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. .fake_registration {
  2. padding: 0 20rpx;
  3. min-height: 100vh;
  4. background-color: #f8f9fa;
  5. font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  6. .fake_list_wrap {
  7. margin-top: 20rpx;
  8. min-height: calc(100vh - 120rpx);
  9. .list_content {
  10. .fake_item {
  11. background-color: #ffffff;
  12. border-radius: 16rpx;
  13. padding: 32rpx;
  14. margin-bottom: 16rpx;
  15. box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04);
  16. transition: all 0.3s ease;
  17. border: 1rpx solid #e9ecef;
  18. &.selected {
  19. box-shadow: 0 12rpx 32rpx rgba(71, 130, 241, 0.2);
  20. border-color: #4782f1;
  21. border-width: 2rpx;
  22. }
  23. .item_header {
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. margin-bottom: 24rpx;
  28. padding-bottom: 20rpx;
  29. border-bottom: 1rpx dashed #e9ecef;
  30. .name {
  31. font-size: 32rpx;
  32. font-weight: 700;
  33. color: #212529;
  34. position: relative;
  35. padding-left: 20rpx;
  36. &::before {
  37. content: '';
  38. position: absolute;
  39. left: 0;
  40. top: 50%;
  41. transform: translateY(-50%);
  42. width: 8rpx;
  43. height: 8rpx;
  44. border-radius: 50%;
  45. background-color: #4782f1;
  46. }
  47. }
  48. .phone {
  49. font-size: 26rpx;
  50. color: #6c757d;
  51. padding: 6rpx 16rpx;
  52. border-radius: 16rpx;
  53. }
  54. }
  55. .item_body {
  56. .info_item {
  57. display: flex;
  58. align-items: center;
  59. margin-bottom: 16rpx;
  60. font-size: 26rpx;
  61. line-height: 44rpx;
  62. &:last-child {
  63. margin-bottom: 0;
  64. }
  65. .label {
  66. color: #868e96;
  67. min-width: 120rpx;
  68. font-weight: 500;
  69. }
  70. .value {
  71. color: #495057;
  72. flex: 1;
  73. word-break: break-word;
  74. padding: 4rpx 12rpx;
  75. border-radius: 8rpx;
  76. font-size: 24rpx;
  77. }
  78. }
  79. }
  80. }
  81. .u-loadmore {
  82. margin-top: 30rpx;
  83. margin-bottom: 40rpx;
  84. }
  85. }
  86. .u-empty {
  87. margin-top: 120rpx;
  88. }
  89. }
  90. // 编辑弹窗样式
  91. .edit_dialog {
  92. width: 85%;
  93. max-width: 520rpx;
  94. border-radius: 16rpx;
  95. overflow: hidden;
  96. .dialog_title {
  97. font-size: 34rpx;
  98. font-weight: 700;
  99. color: #212529;
  100. text-align: center;
  101. padding: 36rpx 24rpx;
  102. border-bottom: 1rpx solid #e9ecef;
  103. }
  104. .dialog_content {
  105. padding: 36rpx 28rpx;
  106. .u-form-item {
  107. .u-form-item__label {
  108. font-size: 28rpx;
  109. font-weight: 600;
  110. color: #495057;
  111. margin-bottom: 12rpx;
  112. display: block;
  113. }
  114. .u-input {
  115. border-radius: 8rpx;
  116. border: 1rpx solid #ced4da;
  117. transition: all 0.3s ease;
  118. &:focus {
  119. border-color: #4782f1;
  120. box-shadow: 0 0 0 4rpx rgba(71, 130, 241, 0.1);
  121. background-color: #ffffff;
  122. }
  123. }
  124. }
  125. }
  126. }
  127. }