searchUser.css 640 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* pages/searchUser/searchUser.wxss */
  2. .search-form {
  3. background-color: #fff;
  4. padding: 10rpx 20rpx;
  5. border-bottom: solid 1px #19be6b;
  6. }
  7. .input {
  8. width: 100%;
  9. }
  10. .button {
  11. white-space: nowrap;
  12. font-size: 24rpx;
  13. }
  14. .result-form {
  15. background-color: #fff;
  16. padding: 20rpx;
  17. margin-top: 20rpx;
  18. }
  19. .form-item {
  20. display: flex;
  21. flex-direction: row;
  22. justify-content: space-between;
  23. align-items: center;
  24. line-height: 3;
  25. border-bottom: #f8f8f8 solid 1px;
  26. }
  27. .form-value {
  28. color: #999;
  29. }
  30. .check-btn {
  31. margin-top: 60rpx;
  32. padding: 0 60rpx;
  33. }
  34. .check-btn button {
  35. font-size: 24rpx;
  36. }