| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- .fake_registration {
- padding: 0 20rpx;
- min-height: 100vh;
- background-color: #f8f9fa;
- font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
- .fake_list_wrap {
- margin-top: 20rpx;
- min-height: calc(100vh - 120rpx);
- .list_content {
- .fake_item {
- background-color: #ffffff;
- border-radius: 16rpx;
- padding: 32rpx;
- margin-bottom: 16rpx;
- box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.04);
- transition: all 0.3s ease;
- border: 1rpx solid #e9ecef;
- &.selected {
- box-shadow: 0 12rpx 32rpx rgba(71, 130, 241, 0.2);
- border-color: #4782f1;
- border-width: 2rpx;
- }
- .item_header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 24rpx;
- padding-bottom: 20rpx;
- border-bottom: 1rpx dashed #e9ecef;
- .name {
- font-size: 32rpx;
- font-weight: 700;
- color: #212529;
- position: relative;
- padding-left: 20rpx;
- &::before {
- content: '';
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- width: 8rpx;
- height: 8rpx;
- border-radius: 50%;
- background-color: #4782f1;
- }
- }
- .phone {
- font-size: 26rpx;
- color: #6c757d;
- padding: 6rpx 16rpx;
- border-radius: 16rpx;
- }
- }
- .item_body {
- .info_item {
- display: flex;
- align-items: center;
- margin-bottom: 16rpx;
- font-size: 26rpx;
- line-height: 44rpx;
- &:last-child {
- margin-bottom: 0;
- }
- .label {
- color: #868e96;
- min-width: 120rpx;
- font-weight: 500;
- }
- .value {
- color: #495057;
- flex: 1;
- word-break: break-word;
- padding: 4rpx 12rpx;
- border-radius: 8rpx;
- font-size: 24rpx;
- }
- }
- }
- }
- .u-loadmore {
- margin-top: 30rpx;
- margin-bottom: 40rpx;
- }
- }
- .u-empty {
- margin-top: 120rpx;
- }
- }
- // 编辑弹窗样式
- .edit_dialog {
- width: 85%;
- max-width: 520rpx;
- border-radius: 16rpx;
- overflow: hidden;
- .dialog_title {
- font-size: 34rpx;
- font-weight: 700;
- color: #212529;
- text-align: center;
- padding: 36rpx 24rpx;
- border-bottom: 1rpx solid #e9ecef;
- }
- .dialog_content {
- padding: 36rpx 28rpx;
- .u-form-item {
- .u-form-item__label {
- font-size: 28rpx;
- font-weight: 600;
- color: #495057;
- margin-bottom: 12rpx;
- display: block;
- }
- .u-input {
- border-radius: 8rpx;
- border: 1rpx solid #ced4da;
- transition: all 0.3s ease;
- &:focus {
- border-color: #4782f1;
- box-shadow: 0 0 0 4rpx rgba(71, 130, 241, 0.1);
- background-color: #ffffff;
- }
- }
- }
- }
- }
- }
|