facephoto.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. .picker-item {
  26. width: 100%;
  27. background-color: #fff;
  28. padding: 30rpx;
  29. box-sizing: border-box;
  30. flex-direction: row;
  31. display: flex;
  32. align-items: center;
  33. }
  34. .weui-input {
  35. min-height: 60rpx;
  36. flex-direction: row;
  37. border: 2rpx solid #e5e5e5;
  38. border-radius: 8rpx;
  39. display: flex;
  40. justify-content: space-between;
  41. align-items: center;
  42. }
  43. .weui-input .span {
  44. font-size: 24rpx;
  45. color: #666;
  46. margin-left: 16rpx;
  47. }
  48. .weui-input .imgjt {
  49. width: 26rpx;
  50. height: 14rpx;
  51. margin-left: 20rpx;
  52. margin-right: 16rpx;
  53. }
  54. scroll-view{
  55. width: 100%;
  56. height: 83vh;
  57. box-sizing: border-box;
  58. flex-direction: column;
  59. display: flex;
  60. padding: 20rpx 30rpx 0rpx 30rpx;
  61. }
  62. .list-item{
  63. width: 100%;
  64. height: 200rpx;
  65. flex-direction: row;
  66. display: flex;
  67. align-items: center;
  68. background-color: #fff;
  69. border-radius: 10rpx;
  70. margin-bottom: 20rpx;
  71. }
  72. .list-item .head-img{
  73. width: 140rpx;
  74. height: 140rpx;
  75. border-radius: 50%;
  76. margin-left: 50rpx;
  77. margin-right: 50rpx;
  78. border: 2rpx solid #e5e5e5;
  79. }
  80. .list-item .name{
  81. font-size: 30rpx;
  82. font-weight: 700;
  83. }
  84. .list-item .address{
  85. flex-direction: row;
  86. display: flex;
  87. align-items: center;
  88. }
  89. .list-item .address-img{
  90. width: 28rpx;
  91. height: 30rpx;
  92. margin-right: 10rpx;
  93. }
  94. .list-item .create-time{
  95. font-size: 26rpx;
  96. color: #666;
  97. }