index.wxss 913 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**index.wxss**/
  2. .headImg {
  3. display: flex;
  4. flex-direction: row;
  5. align-items: center;
  6. text-align: center;
  7. background: #ffffff;
  8. height: 300rpx;
  9. }
  10. .headImg image{
  11. width: 150rpx;
  12. height: 150rpx;
  13. border-radius: 50%;
  14. text-align: center;
  15. margin-left: 300rpx;
  16. }
  17. .copyright{
  18. color: #8c8c8c;
  19. text-align: center;
  20. margin-top: 20px;
  21. font-size: 14px;
  22. }
  23. .plain {
  24. border: none;
  25. border-color: transparent;
  26. background: #fff;
  27. line-height: 40rpx;
  28. margin: 0px;
  29. }
  30. button::after {
  31. border: none
  32. }
  33. .userinfo {
  34. position: relative;
  35. width: 100%;
  36. background: #fff;
  37. text-align: center;
  38. padding: 30rpx 0;
  39. }
  40. .userinfo .userinfo-avatar {
  41. overflow: hidden;
  42. display: block;
  43. width: 160rpx;
  44. height: 160rpx;
  45. border-radius: 50%;
  46. box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  47. margin: auto;
  48. }
  49. .userinfo .userinfo-name {
  50. font-size: 30rpx;
  51. font-weight: bold;
  52. margin-top: 20rpx;
  53. }