personnel.wxss 484 B

1234567891011121314151617181920212223242526272829
  1. page {
  2. width: 100%;
  3. height: 100%;
  4. background: #eee;
  5. }
  6. .box {
  7. width: 100%;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. padding-top: 10rpx;
  12. }
  13. .box .view {
  14. width: 90%;
  15. background: white;
  16. display: flex;
  17. flex-direction: column;
  18. height: 200rpx;
  19. justify-content: space-around;
  20. margin-top: 20rpx;
  21. padding-left: 33rpx;
  22. font-size: 28rpx;
  23. font-family: PingFang SC;
  24. font-weight: 500;
  25. color: rgba(77, 77, 77, 1);
  26. border-radius: 10rpx;
  27. }