fakeRegistration.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. transform: scale(1.02);
  21. border-color: #4782f1;
  22. border-width: 2rpx;
  23. }
  24. .item_header {
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. margin-bottom: 24rpx;
  29. padding-bottom: 20rpx;
  30. border-bottom: 1rpx dashed #e9ecef;
  31. .name {
  32. font-size: 32rpx;
  33. font-weight: 700;
  34. color: #212529;
  35. }
  36. .phone {
  37. font-size: 26rpx;
  38. color: #6c757d;
  39. padding: 6rpx 16rpx;
  40. border-radius: 16rpx;
  41. }
  42. }
  43. .item_body {
  44. .info_item {
  45. display: flex;
  46. align-items: center;
  47. margin-bottom: 16rpx;
  48. font-size: 26rpx;
  49. line-height: 44rpx;
  50. &:last-child {
  51. margin-bottom: 0;
  52. }
  53. .label {
  54. color: #868e96;
  55. min-width: 120rpx;
  56. font-weight: 500;
  57. }
  58. .value {
  59. color: #495057;
  60. flex: 1;
  61. word-break: break-word;
  62. padding: 4rpx 12rpx;
  63. border-radius: 8rpx;
  64. font-size: 24rpx;
  65. }
  66. }
  67. }
  68. }
  69. .u-loadmore {
  70. margin-top: 30rpx;
  71. margin-bottom: 40rpx;
  72. }
  73. }
  74. .u-empty {
  75. margin-top: 120rpx;
  76. }
  77. }
  78. // 编辑弹窗样式
  79. .edit_dialog {
  80. width: 85%;
  81. max-width: 520rpx;
  82. border-radius: 16rpx;
  83. overflow: hidden;
  84. .dialog_title {
  85. font-size: 34rpx;
  86. font-weight: 700;
  87. color: #212529;
  88. text-align: center;
  89. padding: 36rpx 24rpx;
  90. border-bottom: 1rpx solid #e9ecef;
  91. }
  92. .dialog_content {
  93. padding: 36rpx 28rpx;
  94. .u-form-item {
  95. .u-form-item__label {
  96. font-size: 28rpx;
  97. font-weight: 600;
  98. color: #495057;
  99. margin-bottom: 12rpx;
  100. display: block;
  101. }
  102. .u-input {
  103. border-radius: 8rpx;
  104. border: 1rpx solid #ced4da;
  105. transition: all 0.3s ease;
  106. &:focus {
  107. border-color: #4782f1;
  108. box-shadow: 0 0 0 4rpx rgba(71, 130, 241, 0.1);
  109. background-color: #ffffff;
  110. }
  111. }
  112. }
  113. }
  114. }
  115. }