index.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* 上层 */
  2. .db {
  3. display: flex;
  4. flex-direction: column;
  5. justify-content: center;
  6. align-items: center;
  7. width: 100%;
  8. height: 324rpx;
  9. background: rgba(250, 250, 250, 1);
  10. border-bottom: 2rpx solid rgba(221, 221, 221, 1);
  11. }
  12. .db image {
  13. width: 150rpx;
  14. height: 150rpx;
  15. border-radius: 50%;
  16. }
  17. .db .changetx {
  18. font-size: 26rpx;
  19. font-family: SourceHanSansCN-Regular;
  20. font-weight: 400;
  21. color: rgba(30, 98, 167, 1);
  22. padding-top: 35rpx;
  23. }
  24. /* 下层 */
  25. .user {
  26. display: flex;
  27. flex-direction: row;
  28. justify-content: space-between;
  29. align-items: center;
  30. width: 100%;
  31. height: 79rpx;
  32. border-bottom: 2rpx solid rgba(221, 221, 221, 1);
  33. }
  34. .user .wz {
  35. font-size: 27rpx;
  36. font-family: SourceHanSansCN-Regular;
  37. font-weight: 400;
  38. color: rgba(34, 34, 34, 1);
  39. padding-left: 29rpx;
  40. }
  41. .user .name {
  42. font-size: 22rpx;
  43. font-family: SourceHanSansCN-Normal;
  44. font-weight: 400;
  45. color: rgba(102, 102, 102, 1);
  46. padding-right: 40rpx;
  47. }
  48. .user image {
  49. width: 18rpx;
  50. height: 30rpx;
  51. padding-right: 30rpx;
  52. }