You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

128 lines
2.2 KiB

1 year ago
1 year ago
1 year ago
1 year ago
  1. /* pagesA/facepeople/facepeople.wxss */
  2. .facepeople{
  3. box-sizing: border-box;
  4. width: 100%;
  5. background-color: #F5F5F5;
  6. height: 100vh;
  7. /* background-color: #F5F5F5; */
  8. }
  9. .facepeople-search{
  10. display: flex;
  11. flex-direction: column;
  12. padding: 20rpx;
  13. }
  14. .search{
  15. width: 100%;
  16. height: 80rpx;
  17. text-align: center;
  18. line-height: 80rpx;
  19. border-radius: 20rpx;
  20. background-color: #ffffff;
  21. box-shadow: 0rpx 0rpx 40rpx #F5F5F5;
  22. }
  23. .facepeople-manage{
  24. box-sizing: border-box;
  25. width: 100%;
  26. margin-top: 20rpx;
  27. padding: 10rpx 20rpx;
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. }
  32. .manage-title{
  33. font-size: 40rpx;
  34. font-weight: bold;
  35. letter-spacing: 5rpx;
  36. }
  37. .manage-create{
  38. width: 22vw;
  39. background-color: #00B7FF;
  40. box-shadow: 0rpx 0rpx 20rpx #F5F5F5;
  41. border-radius: 40rpx;
  42. color: #ffffff;
  43. height: 9vw;
  44. align-items: center;
  45. display: flex;
  46. justify-content: center;
  47. }
  48. .plus{
  49. padding: 4rpx;
  50. border: 1px solid #ffffff;
  51. border-radius: 50%;
  52. font-size: 24rpx;
  53. margin-right: 10rpx;
  54. }
  55. .new{
  56. font-size: 32rpx;
  57. }
  58. .facepeople-list{
  59. box-sizing: border-box;
  60. width: 100%;
  61. padding: 20rpx;
  62. }
  63. .facepeople-item{
  64. box-sizing: border-box;
  65. width: 100%;
  66. height: 120rpx;
  67. background-color: #ffffff;
  68. border-radius: 20rpx;
  69. box-shadow: 0rpx 0rpx 20rpx #F5F5F5;
  70. display: flex;
  71. justify-content: space-between;
  72. align-items: center;
  73. padding: 10rpx 20rpx;
  74. }
  75. .facepeople-left{
  76. display: flex;
  77. align-items: center;
  78. margin: auto 0;
  79. }
  80. .name{
  81. margin-left: 20rpx;
  82. font-size: 14px;
  83. }
  84. .facepeople-date{
  85. color: #00c73cdc;
  86. margin-right: 10rpx;
  87. font-size: 14px;
  88. }
  89. .arrow{
  90. color: #999999;
  91. }
  92. /* 弹出层 */
  93. .popup-face{
  94. width: 70vw;
  95. display: flex;
  96. flex-direction: column;
  97. text-align: center;
  98. }
  99. .face-item{
  100. padding: 20rpx;
  101. border-bottom: 1px solid #eee;
  102. font-size: 34rpx;
  103. }
  104. .addfaces{
  105. width: 90vw;
  106. }
  107. .pic{
  108. width: 100%;
  109. position: relative;
  110. height: 48vw;
  111. }
  112. .picadd{
  113. width: 200px;
  114. height: 200px;
  115. position: absolute;
  116. left: 50%;
  117. top: 50%;
  118. transform: translate(-50%, -50%);
  119. display: flex;
  120. align-items: center;
  121. justify-content: center;
  122. }
  123. .faceimg{
  124. width: 120px;
  125. height: 160px;
  126. border-radius: 10px;
  127. }