pass.wxss 1.4 KB

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