me.wxss 571 B

12345678910111213141516171819202122232425262728293031323334
  1. /* pages/me/me.wxss */
  2. .container_c{
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: center;
  7. padding-top: 5rem;
  8. }
  9. .wd_img{
  10. width: 200rpx;
  11. height: 200rpx;
  12. border-radius: 50%;
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. overflow: hidden;
  17. border: 12rpx solid #f6f6f6c7;
  18. background: rgb(255, 201, 164);
  19. margin-bottom: 20rpx;
  20. }
  21. .wd_img img{
  22. display: flex;
  23. width: 200rpx;
  24. height: 200rpx;
  25. }
  26. .wd_txt{
  27. font-size: 38rpx;
  28. color: #333;
  29. }
  30. .wd_btn{
  31. position: fixed;
  32. bottom: 20%;
  33. color: #333;
  34. }