facephoto.wxss 1.8 KB

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