visitorcheck.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. page {
  2. background-color: #f2f2f2;
  3. }
  4. .tab-item {
  5. width: 100%;
  6. box-sizing: border-box;
  7. background-color: #fff;
  8. flex-direction: row;
  9. display: flex;
  10. justify-content: space-around;
  11. align-items: center;
  12. }
  13. .tab-item .item {
  14. height: 80rpx;
  15. font-size: 32rpx;
  16. flex-direction: row;
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. }
  21. .tab-item .item-checked {
  22. color: #6784f4;
  23. border-bottom: 2rpx #6784f4 solid;
  24. }
  25. scroll-view {
  26. width: 100%;
  27. height: 93vh;
  28. box-sizing: border-box;
  29. flex-direction: column;
  30. display: flex;
  31. padding: 20rpx 30rpx 0rpx 30rpx;
  32. }
  33. .list-item {
  34. width: 100%;
  35. height: 200rpx;
  36. flex-direction: row;
  37. display: flex;
  38. align-items: center;
  39. background-color: #fff;
  40. border-radius: 10rpx;
  41. margin-bottom: 20rpx;
  42. position: relative;
  43. }
  44. .list-item .head-img {
  45. width: 140rpx;
  46. height: 140rpx;
  47. border-radius: 50%;
  48. margin-left: 50rpx;
  49. margin-right: 50rpx;
  50. border: 2rpx solid #e5e5e5;
  51. }
  52. .list-item .name {
  53. font-size: 30rpx;
  54. font-weight: 700;
  55. }
  56. .list-item .address {
  57. flex-direction: row;
  58. display: flex;
  59. align-items: center;
  60. }
  61. .list-item .address-img {
  62. width: 28rpx;
  63. height: 30rpx;
  64. margin-right: 10rpx;
  65. }
  66. .list-item .create-time {
  67. font-size: 26rpx;
  68. color: #666;
  69. }
  70. .list-item .status {
  71. position: absolute;
  72. color: greenyellow;
  73. font-size: 28rpx;
  74. right: 30rpx;
  75. }